Paste #111335: Unnamed Server Log Paste

Date: 2023/06/18 05:00:00 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118


[19:13:34] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[19:13:35] [ServerMain/INFO]: Loaded 7 recipes
[19:13:36] [Server thread/INFO]: Starting minecraft server version 1.20.1
[19:13:36] [Server thread/INFO]: Loading properties
[19:13:36] [Server thread/INFO]: This server is running Folia version git-Folia-18 (MC: 1.20.1) (Implementing API version 1.20.1-R0.1-SNAPSHOT) (Git: 7c6e251 on HEAD)
[19:13:36] [Server thread/INFO]: Server Ping Player Sample Count: 12
[19:13:36] [Server thread/INFO]: Using 4 threads for Netty based IO
[19:13:36] [Server thread/WARN]: [!] The timings system cannot be enabled on Folia, and has been scheduled for removal from Paper in the future.
    We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
    For more information please visit: https://github.com/PaperMC/Paper/issues/8948
[19:13:36] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 4 worker threads, and gen parallelism of 4 threads
[19:13:36] [Server thread/INFO]: [io.papermc.paper.threadedregions.TickRegions] Regionised ticking is enabled with 2 tick threads
[19:13:36] [Server thread/INFO]: Default game type: SURVIVAL
[19:13:36] [Server thread/INFO]: Generating keypair
[19:13:36] [Server thread/INFO]: Starting Minecraft server on *:25570
[19:13:36] [Server thread/INFO]: Using default channel type
[19:13:36] [Server thread/INFO]: Paper: Using Java compression from Velocity.
[19:13:36] [Server thread/INFO]: Paper: Using Java cipher from Velocity.
[19:13:37] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.73
[19:13:37] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b0-folia
[19:13:37] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.3.0.2
[19:13:37] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.3.92
[19:13:37] [Server thread/INFO]: [Residence] Loading server plugin Residence v5.1.1.3-Folia
[19:13:37] [Server thread/INFO]: [HuskHomes] Loading server plugin HuskHomes v4.4
[19:13:37] [Server thread/INFO]: [GSit] Loading server plugin GSit v1.4.5
[19:13:37] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.26.3-SNAPSHOT
[19:13:37] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v22.0-dev1
[19:13:37] [Server thread/INFO]: [ChunkyBorder] Loading server plugin ChunkyBorder v1.1.50
[19:13:37] [Server thread/INFO]: [BlockLocker] Loading server plugin BlockLocker v1.12.1-SNAPSHOT
[19:13:37] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[19:13:37] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.73
[19:13:37] [Server thread/INFO]:         __    
[19:13:37] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.73
[19:13:37] [Server thread/INFO]:   |___ |      Running on Bukkit - Folia
[19:13:37] [Server thread/INFO]: 
[19:13:37] [Server thread/INFO]: [LuckPerms] Loading configuration...
[19:13:38] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[19:13:38] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[19:13:38] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[19:13:38] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1185ms)
[19:13:38] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b0-folia
[19:13:38] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[19:13:38] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b0-folia
[19:13:38] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[19:13:38] [Server thread/INFO]: [BlockLocker] Enabling BlockLocker v1.12.1-SNAPSHOT
[19:13:38] [Server thread/INFO]: Preparing level "world"
[19:13:39] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[19:13:39] [Server thread/INFO]: Time elapsed: 14 ms
[19:13:39] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[19:13:39] [Server thread/INFO]: Time elapsed: 4 ms
[19:13:39] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[19:13:39] [Server thread/INFO]: Time elapsed: 5 ms
[19:13:39] [Server thread/INFO]: [CMILib] Enabling CMILib v1.3.0.2
[19:13:40] [Server thread/INFO]: Server version: v1_20_R1 - 1.20.1 - paper
[19:13:40] [Server thread/INFO]: Updated (EN) language file. Took 44ms
[19:13:40] [Server thread/INFO]: [Chunky] Enabling Chunky v1.3.92
[19:13:40] [Server thread/INFO]: [Residence] Enabling Residence v5.1.1.3-Folia
[19:13:40] [Server thread/WARN]: [Residence] You are using an experimental version of Residence Folia
[19:13:40] [Server thread/WARN]: [Residence] If you encounter any problems, please report to https://github.com/Folium-MC/Residence-Maven
[19:13:40] [Server thread/INFO]: [Residence] Loaded (2) groups
[19:13:40] [Server thread/INFO]: [Residence] Found LuckPerms5 Plugin!
[19:13:40] [Server thread/INFO]: [Residence] Scanning for economy systems...
[19:13:40] [Server thread/INFO]: [Residence] Found Vault, but Vault reported no usable economy system...
[19:13:40] [Server thread/INFO]: [Residence] CMIEconomy NOT found!
[19:13:40] [Server thread/INFO]: [Residence] Essentials Economy NOT found!
[19:13:40] [Server thread/INFO]: [Residence] RealShop Economy NOT found!
[19:13:40] [Server thread/INFO]: [Residence] iConomy NOT found!
[19:13:40] [Server thread/INFO]: [Residence] Unable to find an economy system...
[19:13:40] [Server thread/INFO]: [Residence] Loaded world data into memory. (13 ms) -> 1 residences
[19:13:40] [Server thread/INFO]: [Residence] Loaded world_the_end data into memory. (0 ms) -> 0 residences
[19:13:40] [Server thread/INFO]: [Residence] Loaded world_nether data into memory. (0 ms) -> 0 residences
[19:13:41] [Server thread/INFO]: [Residence] Enabled! Version 5.1.1.3-Folia by Zrips & Folium-MC
[19:13:41] [Server thread/INFO]: [HuskHomes] Enabling HuskHomes v4.4
[19:13:41] [Server thread/INFO]: [HuskHomes] Initializing plugin config & locale files...
[19:13:41] [Server thread/INFO]: [HuskHomes] Successfully initialized plugin config & locale files
[19:13:41] [Server thread/INFO]: [HuskHomes] Initializing SQLite database connection...
[19:13:41] [Server thread/INFO]: [HuskHomes] Successfully initialized SQLite database connection
[19:13:41] [Server thread/INFO]: [HuskHomes] Initializing hooks...
[19:13:41] [Server thread/INFO]: [HuskHomes] Successfully initialized hooks
[19:13:41] [Server thread/INFO]: [HuskHomes] Initializing events...
[19:13:41] [Server thread/INFO]: [HuskHomes] Successfully initialized events
[19:13:41] [Server thread/INFO]: [HuskHomes] Initializing commands...
[19:13:41] [Server thread/INFO]: [HuskHomes] Successfully initialized commands
[19:13:41] [Server thread/INFO]: [HuskHomes] Initializing metrics...
[19:13:41] [Server thread/INFO]: [HuskHomes] Successfully initialized metrics
[19:13:41] [Server thread/INFO]: [GSit] Enabling GSit v1.4.5
[19:13:41] [Server thread/INFO]: [GSit] 插件已成功載入
[19:13:41] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.26.3-SNAPSHOT
[19:13:41] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v22.0-dev1
[19:13:41] [Server thread/INFO]: [CoreProtect] 檢測到正在使用開發分支的版本,已跳過使用補丁腳本。
[19:13:41] [Server thread/INFO]: [CoreProtect] 已經成功啟用 CoreProtect Edge ! 
[19:13:41] [Server thread/INFO]: [CoreProtect] 使用 SQLite 進行資料儲存。
[19:13:41] [Server thread/INFO]: --------------------
[19:13:41] [Server thread/INFO]: [CoreProtect] 喜歡 CoreProtect 嗎 ? 加入我們的 Discord !
[19:13:41] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[19:13:41] [Server thread/INFO]: --------------------
[19:13:41] [Server thread/INFO]: [ChunkyBorder] Enabling ChunkyBorder v1.1.50
[19:13:41] [Server thread/INFO]: Done (5.392s)! For help, type "help"
[19:13:41] [Region Scheduler Thread #1/INFO]: Initialising world 'world' before it can be ticked...
[19:13:41] [Region Scheduler Thread #1/INFO]: Initialised world 'world'
[19:13:41] [Region Scheduler Thread #1/INFO]: Timings Reset
[19:13:41] [Region Scheduler Thread #1/INFO]: Initialising world 'world_nether' before it can be ticked...
[19:13:41] [Region Scheduler Thread #1/INFO]: Initialised world 'world_nether'
[19:13:41] [Region Scheduler Thread #0/INFO]: Initialising world 'world_the_end' before it can be ticked...
[19:13:41] [Region Scheduler Thread #0/INFO]: Initialised world 'world_the_end'
[19:13:42] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[19:13:42] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[19:13:43] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[19:13:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] 已找到伺服器 G:馬鈴薯伺服器 - Minecraft(1117462897078059019)
[19:13:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?規則及登入驗證??(1117464669179879515)
[19:13:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?伺服器資料(1117464774201065573)
[19:13:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?規則(1118392724572356688)
[19:13:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?伺服器通知(1119529043809812490)
[19:13:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?伺服相關(1117465401866067978)
[19:13:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?閒聊頻道(1117465294730973245)
[19:13:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?伺服器即時狀態(1117465902150062280)
[19:13:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?紅石討論(1117988597694472243)
[19:13:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?建築討論(1117989140198338620)
[19:13:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?截圖分享(1117989074607816715)
[19:13:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?迷因頻道(1117843638358118511)
[19:13:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?尋找管理員(1117843194667868220)
[19:13:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?贊助資訊(1118097355770691705)
[19:13:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?領地系統(1117476023496364092)
[19:13:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?查看懲罰名單(1117996010027896962)
[19:13:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:edit(1117466712728670228)
[19:13:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:remove(1117466783327191223)
[19:13:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:new_join(1117466811894599843)
[19:13:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:leave(1117466842974408735)
[19:13:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:role(1117466820199329792)
[19:13:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:invite(1117472375290728559)
[19:13:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:commands(1117472388720898138)
[19:13:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:nick(1117473103065387028)
[19:13:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:self-mark(1117473375510593657)
[19:13:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:c-out(1117803870664532100)
[19:13:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:moderators-only(1117470073674805308)
[19:13:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:discord-default-welcome(1118078522095837225)
[19:13:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:transcript(1118069301769949184)
[19:13:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:logs(1118069513703931995)
[19:13:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] 控制台轉送已指派至頻道 TC:c-out(1117803870664532100)
[19:13:43] [pool-17-thread-1/INFO]: [DiscordSRV] This build of DiscordSRV is identical to develop. [latest public dev build]
[19:13:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] 啟用鉤取 LuckPerms
[19:13:43] [User Authenticator #0/INFO]: UUID of player anzai__chiyomi is 9efa81a7-a2fd-4141-8d52-d1470e786e8c
[19:13:43] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[19:13:46] [Region Scheduler Thread #1/INFO]: anzai__chiyomi joined the game
[19:13:46] [Region Scheduler Thread #1/INFO]: anzai__chiyomi[/       ip        ] logged in with entity id 311 at ([world]2.0, 65.0, 1.0)
[19:13:48] [Region Scheduler Thread #0/INFO]: anzai__chiyomi lost connection: Disconnected
[19:13:48] [Region Scheduler Thread #0/INFO]: anzai__chiyomi left the game
[19:14:12] [Region Scheduler Thread #0/INFO]: Stopping the server
[19:14:12] [Region shutdown thread/INFO]: [RegionShutdownThread] Awaiting scheduler termination for 60s
[19:14:12] [Region shutdown thread/INFO]: [RegionShutdownThread] Scheduler halted
[19:14:12] [Region shutdown thread/INFO]: Stopping server
[19:14:12] [Region shutdown thread/INFO]: [BlockLocker] Disabling BlockLocker v1.12.1-SNAPSHOT
[19:14:12] [Region shutdown thread/INFO]: [ChunkyBorder] Disabling ChunkyBorder v1.1.50
[19:14:12] [Region shutdown thread/INFO]: [CoreProtect] Disabling CoreProtect v22.0-dev1
[19:14:12] [Region shutdown thread/INFO]: [CoreProtect] 正在完成資料記錄,請稍候……
[19:14:13] [Region shutdown thread/INFO]: [CoreProtect] 執行成功 ! 關閉 CoreProtect v22.0-dev1 !
[19:14:13] [Region shutdown thread/INFO]: [DiscordSRV] Disabling DiscordSRV v1.26.3-SNAPSHOT
[19:14:13] [DiscordSRV - Shutdown/INFO]: [DiscordSRV] 已儲存已連結帳號,耗時2ms
[19:14:13] [DiscordSRV - Shutdown/INFO]: [DiscordSRV] 伺服器已關閉,耗時533ms
[19:14:13] [Region shutdown thread/INFO]: [GSit] Disabling GSit v1.4.5
[19:14:13] [Region shutdown thread/INFO]: [GSit] 插件已成功禁用
[19:14:13] [Region shutdown thread/INFO]: [HuskHomes] Disabling HuskHomes v4.4
[19:14:13] [Region shutdown thread/INFO]: [HuskHomes] Successfully disabled HuskHomes v4.4
[19:14:13] [Region shutdown thread/INFO]: [Residence] Disabling Residence v5.1.1.3-Folia
[19:14:14] [Region shutdown thread/INFO]: [Residence] Disabled!
[19:14:14] [Region shutdown thread/INFO]: [Chunky] Disabling Chunky v1.3.92
[19:14:14] [Region shutdown thread/INFO]: [CMILib] Disabling CMILib v1.3.0.2
[19:14:14] [Region shutdown thread/INFO]: [Vault] Disabling Vault v1.7.3-b0-folia
[19:14:14] [Region shutdown thread/INFO]: [LuckPerms] Disabling LuckPerms v5.4.73
[19:14:14] [Region shutdown thread/INFO]: [LuckPerms] Starting shutdown process...
[19:14:14] [Region shutdown thread/INFO]: [LuckPerms] Closing storage...
[19:14:14] [Region shutdown thread/INFO]: [LuckPerms] Goodbye!
[19:14:14] [Region shutdown thread/INFO]: [RegionShutdownThread] Halting chunk systems
[19:14:14] [Region shutdown thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world'
[19:14:14] [Region shutdown thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world'
[19:14:14] [Region shutdown thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_nether'
[19:14:14] [Region shutdown thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_nether'
[19:14:14] [Region shutdown thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_the_end'
[19:14:14] [Region shutdown thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_the_end'
[19:14:14] [Region shutdown thread/INFO]: [RegionShutdownThread] Halted chunk systems
[19:14:14] [Region shutdown thread/INFO]: [RegionShutdownThread] Saving chunks around region around chunk [0, 0] in world 'world'
[19:14:14] [Region shutdown thread/INFO]: [ChunkHolderManager] Saved 533 block chunks, 533 entity chunks, 0 poi chunks in world 'world' in 0.69s
[19:14:14] [Region shutdown thread/INFO]: [RegionShutdownThread] Saving chunks around region around chunk [0, 0] in world 'world_nether'
[19:14:15] [Region shutdown thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world_nether' in 0.54s
[19:14:15] [Region shutdown thread/INFO]: [RegionShutdownThread] Saving chunks around region around chunk [0, 0] in world 'world_the_end'
[19:14:15] [Region shutdown thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world_the_end' in 0.13s
[19:14:15] [Region shutdown thread/INFO]: [RegionShutdownThread] Saving players
[19:14:15] [Region shutdown thread/INFO]: Flushing Chunk IO
[19:14:15] [Region shutdown thread/INFO]: Closing Thread Pool
[19:14:15] [Region shutdown thread/INFO]: Closing Server
[19:14:20] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[19:14:21] [ServerMain/INFO]: Loaded 7 recipes
[19:14:21] [Server thread/INFO]: Starting minecraft server version 1.20.1
[19:14:21] [Server thread/INFO]: Loading properties
[19:14:21] [Server thread/INFO]: This server is running Folia version git-Folia-18 (MC: 1.20.1) (Implementing API version 1.20.1-R0.1-SNAPSHOT) (Git: 7c6e251 on HEAD)
[19:14:21] [Server thread/INFO]: Server Ping Player Sample Count: 12
[19:14:21] [Server thread/INFO]: Using 4 threads for Netty based IO
[19:14:21] [Server thread/WARN]: [!] The timings system cannot be enabled on Folia, and has been scheduled for removal from Paper in the future.
    We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
    For more information please visit: https://github.com/PaperMC/Paper/issues/8948
[19:14:21] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 4 worker threads, and gen parallelism of 4 threads
[19:14:21] [Server thread/INFO]: [io.papermc.paper.threadedregions.TickRegions] Regionised ticking is enabled with 2 tick threads
[19:14:21] [Server thread/INFO]: Default game type: SURVIVAL
[19:14:21] [Server thread/INFO]: Generating keypair
[19:14:21] [Server thread/INFO]: Starting Minecraft server on *:25570
[19:14:21] [Server thread/INFO]: Using default channel type
[19:14:21] [Server thread/INFO]: Paper: Using Java compression from Velocity.
[19:14:21] [Server thread/INFO]: Paper: Using Java cipher from Velocity.
[19:14:22] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v4.7.0
[19:14:22] [Server thread/INFO]: [ViaVersion] ViaVersion 4.7.0 is now loaded. Registering protocol transformers and injecting...
[19:14:23] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[19:14:23] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[19:14:23] [Server thread/INFO]: [ViaBackwards] Loading translations...
[19:14:23] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[19:14:23] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.73
[19:14:23] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b0-folia
[19:14:23] [Server thread/INFO]: [HuskHomes] Loading server plugin HuskHomes v4.4
[19:14:23] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.20.0-dev+63-4256909
[19:14:23] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.3.0.2
[19:14:23] [Server thread/INFO]: [InvSee++] Loading server plugin InvSeePlusPlus v0.22.2
[19:14:23] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v4.7.0
[19:14:23] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.3.92
[19:14:23] [Server thread/INFO]: [Residence] Loading server plugin Residence v5.1.1.3-Folia
[19:14:23] [Server thread/INFO]: [NoCheatPlus] Loading server plugin NoCheatPlus v3.17.1-SNAPSHOT-Updated-b164
[19:14:23] [Server thread/INFO]: [NoCheatPlus] onLoad: Early set up of static API, configuration, logging.
[19:14:23] [Server thread/INFO]: [NoCheatPlus] Logging system initialized.
[19:14:23] [Server thread/INFO]: [NoCheatPlus] Detected Minecraft version: 1.20.1
[19:14:23] [Server thread/INFO]: [NFCNotes] Loading server plugin NFCNotes v2.4.0
[19:14:23] [Server thread/INFO]: [MiniMOTD] Loading server plugin MiniMOTD v2.0.12
[19:14:23] [Server thread/INFO]: [LiteBans] Loading server plugin LiteBans v2.12.4
[19:14:23] [Server thread/INFO]: [InvSee++_Give] Loading server plugin InvSeePlusPlus_Give v0.22.2
[19:14:23] [Server thread/INFO]: [InvSee++_Clear] Loading server plugin InvSeePlusPlus_Clear v0.22.2
[19:14:23] [Server thread/INFO]: [HeadDrop] Loading server plugin HeadDrop v4.20
[19:14:23] [Server thread/INFO]: [GSit] Loading server plugin GSit v1.4.5
[19:14:23] [Server thread/INFO]: [FancyNpcs] Loading server plugin FancyNpcs v1.2.1
[19:14:23] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.20.0-dev+63-4256909
[19:14:23] [Server thread/INFO]: [EssentialsGeoIP] Loading server plugin EssentialsGeoIP v2.20.0-dev+63-4256909
[19:14:23] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.20.0-dev+63-4256909
[19:14:23] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.26.3-SNAPSHOT
[19:14:23] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v22.0-dev1
[19:14:23] [Server thread/INFO]: [ChunkyBorder] Loading server plugin ChunkyBorder v1.1.50
[19:14:23] [Server thread/INFO]: [BlockLocker] Loading server plugin BlockLocker v1.12.1-SNAPSHOT
[19:14:23] [Server thread/INFO]: [BetterBoard] Loading server plugin BetterBoard v2.3
[19:14:23] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[19:14:23] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.73
[19:14:24] [Server thread/INFO]:         __    
[19:14:24] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.73
[19:14:24] [Server thread/INFO]:   |___ |      Running on Bukkit - Folia
[19:14:24] [Server thread/INFO]: 
[19:14:24] [Server thread/INFO]: [LuckPerms] Loading configuration...
[19:14:24] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[19:14:25] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[19:14:25] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[19:14:25] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1559ms)
[19:14:25] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b0-folia
[19:14:25] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[19:14:25] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b0-folia
[19:14:25] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[19:14:25] [Server thread/INFO]: [BlockLocker] Enabling BlockLocker v1.12.1-SNAPSHOT
[19:14:25] [Server thread/INFO]: Preparing level "world"
[19:14:25] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[19:14:25] [Server thread/INFO]: Time elapsed: 11 ms
[19:14:25] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[19:14:25] [Server thread/INFO]: Time elapsed: 2 ms
[19:14:25] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[19:14:25] [Server thread/INFO]: Time elapsed: 2 ms
[19:14:25] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.7.0
[19:14:25] [Server thread/INFO]: [HuskHomes] Enabling HuskHomes v4.4
[19:14:26] [Server thread/INFO]: [HuskHomes] Initializing plugin config & locale files...
[19:14:26] [Server thread/INFO]: [HuskHomes] Successfully initialized plugin config & locale files
[19:14:26] [Server thread/INFO]: [HuskHomes] Initializing SQLite database connection...
[19:14:26] [Server thread/INFO]: [HuskHomes] Successfully initialized SQLite database connection
[19:14:26] [Server thread/INFO]: [HuskHomes] Initializing hooks...
[19:14:26] [Server thread/INFO]: [HuskHomes] Successfully initialized hooks
[19:14:26] [Server thread/INFO]: [HuskHomes] Initializing events...
[19:14:26] [Server thread/INFO]: [HuskHomes] Successfully initialized events
[19:14:26] [Server thread/INFO]: [HuskHomes] Initializing commands...
[19:14:26] [Server thread/INFO]: [HuskHomes] Successfully initialized commands
[19:14:26] [Server thread/INFO]: [HuskHomes] Initializing metrics...
[19:14:26] [Server thread/INFO]: [HuskHomes] Successfully initialized metrics
[19:14:26] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.0-dev+63-4256909
[19:14:26] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[19:14:26] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[19:14:26] [Server thread/INFO]: [Essentials] No kits found to migrate.
[19:14:26] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[19:14:26] [Server thread/INFO]: [Essentials] Loaded 38132 items from items.json.
[19:14:26] [Server thread/INFO]: [Essentials] Using locale zh_TW
[19:14:26] [Folia Async Scheduler Thread #1/INFO]: [Essentials] 正在獲得版本資訊……
[19:14:26] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[19:14:26] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[19:14:26] [Server thread/INFO]: [CMILib] Enabling CMILib v1.3.0.2
[19:14:27] [Server thread/INFO]: Server version: v1_20_R1 - 1.20.1 - paper
[19:14:27] [Folia Async Scheduler Thread #1/WARN]: [Essentials] 你正在運行的實驗性 EssentialsX 開發版本 27 已不是最新的開發版本!
[19:14:27] [Folia Async Scheduler Thread #1/WARN]: [Essentials] 特色分支:refactor/folia。
[19:14:27] [Server thread/INFO]: Updated (EN) language file. Took 31ms
[19:14:27] [Server thread/INFO]: [InvSee++] Enabling InvSeePlusPlus v0.22.2
[19:14:27] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.7.0
[19:14:27] [Server thread/INFO]: [Chunky] Enabling Chunky v1.3.92
[19:14:27] [Server thread/INFO]: [Residence] Enabling Residence v5.1.1.3-Folia
[19:14:27] [Server thread/WARN]: [Residence] You are using an experimental version of Residence Folia
[19:14:27] [Server thread/WARN]: [Residence] If you encounter any problems, please report to https://github.com/Folium-MC/Residence-Maven
[19:14:27] [Server thread/INFO]: [Residence] Loaded (2) groups
[19:14:27] [Server thread/INFO]: [Residence] Found LuckPerms5 Plugin!
[19:14:27] [Server thread/INFO]: [Residence] Scanning for economy systems...
[19:14:27] [Server thread/INFO]: [Residence] Found Vault using economy: EssentialsX Economy
[19:14:28] [Server thread/INFO]: [Residence] Loaded world data into memory. (9 ms) -> 1 residences
[19:14:28] [Server thread/INFO]: [Residence] Loaded world_the_end data into memory. (0 ms) -> 0 residences
[19:14:28] [Server thread/INFO]: [Residence] Loaded world_nether data into memory. (0 ms) -> 0 residences
[19:14:28] [Server thread/INFO]: [Residence] Enabled! Version 5.1.1.3-Folia by Zrips & Folium-MC
[19:14:28] [Server thread/INFO]: [NoCheatPlus] Enabling NoCheatPlus v3.17.1-SNAPSHOT-Updated-b164
[19:14:28] [Server thread/INFO]: [NoCheatPlus] McAccess set to: 1.13-1.19|? / Bukkit-API
[19:14:28] [Server thread/INFO]: [NoCheatPlus] Applied block patches for multi client protocol support: water_lily, soil, vine, honey_block, shulker_box
[19:14:28] [Server thread/INFO]: [NoCheatPlus] Update block-info: Block shape patch for multi client protocol support.
[19:14:28] [Server thread/INFO]: [NoCheatPlus] Inventory checks: FastConsume is available, disabled InstantEat.
[19:14:28] [Server thread/INFO]: [NoCheatPlus] Packet level access: ProtocolLib is not available.
[19:14:28] [Server thread/INFO]: [NoCheatPlus] Force disable FastHeal, FastConsume, PacketFrequency and InstantBow on Minecraft 1.9 and later.
[19:14:28] [Server thread/INFO]: [NoCheatPlus] Version 3.17.1-SNAPSHOT-Updated-b164 is enabled.
[19:14:28] [Server thread/INFO]: [NFCNotes] Enabling NFCNotes v2.4.0
[19:14:28] [Server thread/INFO]: [MiniMOTD] Enabling MiniMOTD v2.0.12
[19:14:28] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.12.4
[19:14:28] [Server thread/INFO]: [LiteBans] Using system locale (zh)
[19:14:28] [Server thread/INFO]: [LiteBans] Loaded 4 templates from templates.yml!
[19:14:28] [Server thread/INFO]: [LiteBans] Loading SQL driver: h2 1.4.197 (org.h2.Driver)
[19:14:28] [Server thread/INFO]: [LiteBans] Connecting to database...
[19:14:28] [Server thread/INFO]: [LiteBans] litebans-pool - Starting...
[19:14:28] [Server thread/INFO]: [LiteBans] litebans-pool - Start completed.
[19:14:28] [Server thread/INFO]: [LiteBans] Connected to H2 database successfully (95.5 ms).
[19:14:28] [Server thread/INFO]: [LiteBans] Database connection fully initialized (100.5 ms).
[19:14:28] [Server thread/INFO]: [LiteBans] v2.12.4 enabled. Startup took 199 ms.
[19:14:28] [Server thread/INFO]: [InvSee++_Give] Enabling InvSeePlusPlus_Give v0.22.2
[19:14:28] [Server thread/INFO]: [InvSee++_Clear] Enabling InvSeePlusPlus_Clear v0.22.2
[19:14:28] [Server thread/INFO]: [HeadDrop] Enabling HeadDrop v4.20
[19:14:28] [Server thread/INFO]: 
[19:14:28] [Server thread/INFO]: ██╗  ██╗███████╗ █████╗ ██████╗ ██████╗ ██████╗  █████╗ ██████╗ 
[19:14:28] [Server thread/INFO]: ██║  ██║██╔════╝██╔══██╗██╔══██╗██╔══██╗██╔══██╗██╔══██╗██╔══██╗
[19:14:28] [Server thread/INFO]: ███████║█████╗  ███████║██║  ██║██║  ██║██████╔╝██║  ██║██████╔╝
[19:14:28] [Server thread/INFO]: ██╔══██║██╔══╝  ██╔══██║██║  ██║██║  ██║██╔══██╗██║  ██║██╔═══╝ 
[19:14:28] [Server thread/INFO]: ██║  ██║███████╗██║  ██║██████╔╝██████╔╝██║  ██║╚█████╔╝██║     
[19:14:28] [Server thread/INFO]: ╚═╝  ╚═╝╚══════╝╚═╝  ╚═╝╚═════╝ ╚═════╝ ╚═╝  ╚═╝ ╚════╝ ╚═╝     
[19:14:28] [Server thread/INFO]: 
[19:14:28] [Server thread/INFO]: --------------------------------------------------------------------------
[19:14:28] [Server thread/INFO]: [HeadDrop] HeadDrop 4.20 by RRS
[19:14:29] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[19:14:29] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@57cafe8f
[19:14:29] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[19:14:29] [Server thread/INFO]: [HeadDrop] Website is now online at 0
[19:14:29] [Server thread/INFO]: [HeadDrop] Enabled successfully!
[19:14:29] [Server thread/INFO]: --------------------------------------------------------------------------
[19:14:29] [Server thread/INFO]: [GSit] Enabling GSit v1.4.5
[19:14:29] [Server thread/INFO]: [GSit] 插件已成功載入
[19:14:29] [Server thread/INFO]: [FancyNpcs] Enabling FancyNpcs v1.2.1
[19:14:29] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.20.0-dev+63-4256909
[19:14:29] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[19:14:29] [Server thread/INFO]: [EssentialsGeoIP] Enabling EssentialsGeoIP v2.20.0-dev+63-4256909
[19:14:29] [Server thread/INFO]: [EssentialsGeoIP] This product includes GeoLite2 data created by MaxMind, available from http://www.maxmind.com/.
[19:14:29] [Server thread/INFO]: [EssentialsGeoIP] Starting Metrics. Opt-out using the global bStats config.
[19:14:29] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.20.0-dev+63-4256909
[19:14:29] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[19:14:29] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.26.3-SNAPSHOT
[19:14:29] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v22.0-dev1
[19:14:29] [Server thread/INFO]: [CoreProtect] 檢測到正在使用開發分支的版本,已跳過使用補丁腳本。
[19:14:29] [Server thread/INFO]: [CoreProtect] 已經成功啟用 CoreProtect Edge ! 
[19:14:29] [Server thread/INFO]: [CoreProtect] 使用 SQLite 進行資料儲存。
[19:14:29] [Server thread/INFO]: --------------------
[19:14:29] [Server thread/INFO]: [CoreProtect] 喜歡 CoreProtect 嗎 ? 加入我們的 Discord !
[19:14:29] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[19:14:29] [Server thread/INFO]: --------------------
[19:14:29] [Server thread/INFO]: [ChunkyBorder] Enabling ChunkyBorder v1.1.50
[19:14:29] [Server thread/INFO]: [BetterBoard] Enabling BetterBoard v2.3
[19:14:29] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b0-folia)!
[19:14:29] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.20 (763)
[19:14:29] [Server thread/INFO]: Done (8.285s)! For help, type "help"
[19:14:29] [Region Scheduler Thread #0/INFO]: [NoCheatPlus] Post-enable running...
[19:14:29] [Region Scheduler Thread #0/INFO]: [NoCheatPlus] Post-enable finished.
[19:14:29] [Region Scheduler Thread #1/INFO]: Initialising world 'world' before it can be ticked...
[19:14:29] [Region Scheduler Thread #1/INFO]: Initialised world 'world'
[19:14:29] [Region Scheduler Thread #1/INFO]: Timings Reset
[19:14:29] [Region Scheduler Thread #0/INFO]: Initialising world 'world_nether' before it can be ticked...
[19:14:29] [Region Scheduler Thread #0/INFO]: Initialised world 'world_nether'
[19:14:29] [Region Scheduler Thread #1/INFO]: Initialising world 'world_the_end' before it can be ticked...
[19:14:29] [Region Scheduler Thread #1/INFO]: Initialised world 'world_the_end'
[19:14:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[19:14:30] [Via Async Scheduler 0/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[19:14:30] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[19:14:31] [pool-25-thread-1/INFO]: [DiscordSRV] This build of DiscordSRV is identical to develop. [latest public dev build]
[19:14:31] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[19:14:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] 已找到伺服器 G:馬鈴薯伺服器 - Minecraft(1117462897078059019)
[19:14:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?規則及登入驗證??(1117464669179879515)
[19:14:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?伺服器資料(1117464774201065573)
[19:14:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?規則(1118392724572356688)
[19:14:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?伺服器通知(1119529043809812490)
[19:14:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?伺服相關(1117465401866067978)
[19:14:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?閒聊頻道(1117465294730973245)
[19:14:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?伺服器即時狀態(1117465902150062280)
[19:14:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?紅石討論(1117988597694472243)
[19:14:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?建築討論(1117989140198338620)
[19:14:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?截圖分享(1117989074607816715)
[19:14:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?迷因頻道(1117843638358118511)
[19:14:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?尋找管理員(1117843194667868220)
[19:14:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?贊助資訊(1118097355770691705)
[19:14:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?領地系統(1117476023496364092)
[19:14:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?查看懲罰名單(1117996010027896962)
[19:14:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:edit(1117466712728670228)
[19:14:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:remove(1117466783327191223)
[19:14:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:new_join(1117466811894599843)
[19:14:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:leave(1117466842974408735)
[19:14:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:role(1117466820199329792)
[19:14:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:invite(1117472375290728559)
[19:14:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:commands(1117472388720898138)
[19:14:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:nick(1117473103065387028)
[19:14:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:self-mark(1117473375510593657)
[19:14:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:c-out(1117803870664532100)
[19:14:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:moderators-only(1117470073674805308)
[19:14:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:discord-default-welcome(1118078522095837225)
[19:14:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:transcript(1118069301769949184)
[19:14:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:logs(1118069513703931995)
[19:14:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] 控制台轉送已指派至頻道 TC:c-out(1117803870664532100)
[19:14:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] 啟用鉤取 Essentials
[19:14:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] 啟用鉤取 LuckPerms
[19:14:31] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[19:14:31] [User Authenticator #0/INFO]: UUID of player anzai__chiyomi is 9efa81a7-a2fd-4141-8d52-d1470e786e8c
[19:14:34] [Region Scheduler Thread #0/INFO]: anzai__chiyomi joined the game
[19:14:34] [Region Scheduler Thread #0/INFO]: anzai__chiyomi[/       ip        ] logged in with entity id 310 at ([world]2.0, 65.0, 1.0)
[19:14:38] [Region Scheduler Thread #1/INFO]: Stopping the server
[19:14:38] [Region shutdown thread/INFO]: [RegionShutdownThread] Awaiting scheduler termination for 60s
[19:14:38] [Region shutdown thread/INFO]: [RegionShutdownThread] Scheduler halted
[19:14:38] [Region shutdown thread/INFO]: Stopping server
[19:14:38] [Region shutdown thread/INFO]: [BetterBoard] Disabling BetterBoard v2.3
[19:14:38] [Region shutdown thread/INFO]: [BlockLocker] Disabling BlockLocker v1.12.1-SNAPSHOT
[19:14:38] [Region shutdown thread/INFO]: [ChunkyBorder] Disabling ChunkyBorder v1.1.50
[19:14:38] [Region shutdown thread/INFO]: [CoreProtect] Disabling CoreProtect v22.0-dev1
[19:14:38] [Region shutdown thread/INFO]: [CoreProtect] 正在完成資料記錄,請稍候……
[19:14:39] [Region shutdown thread/INFO]: [CoreProtect] 執行成功 ! 關閉 CoreProtect v22.0-dev1 !
[19:14:39] [Region shutdown thread/INFO]: [DiscordSRV] Disabling DiscordSRV v1.26.3-SNAPSHOT
[19:14:39] [DiscordSRV - Shutdown/INFO]: [DiscordSRV] 已儲存已連結帳號,耗時2ms
[19:14:39] [DiscordSRV - Shutdown/INFO]: [DiscordSRV] 伺服器已關閉,耗時508ms
[19:14:39] [Region shutdown thread/INFO]: [EssentialsChat] Disabling EssentialsChat v2.20.0-dev+63-4256909
[19:14:39] [Region shutdown thread/INFO]: [EssentialsGeoIP] Disabling EssentialsGeoIP v2.20.0-dev+63-4256909
[19:14:39] [Region shutdown thread/INFO]: [EssentialsSpawn] Disabling EssentialsSpawn v2.20.0-dev+63-4256909
[19:14:39] [Region shutdown thread/INFO]: [FancyNpcs] Disabling FancyNpcs v1.2.1
[19:14:39] [Region shutdown thread/INFO]: [GSit] Disabling GSit v1.4.5
[19:14:39] [Region shutdown thread/INFO]: [GSit] 插件已成功禁用
[19:14:39] [Region shutdown thread/INFO]: [HeadDrop] Disabling HeadDrop v4.20
[19:14:39] [Region shutdown thread/INFO]: HeadDrop Disabled.
[19:14:39] [Region shutdown thread/INFO]: [InvSee++_Clear] Disabling InvSeePlusPlus_Clear v0.22.2
[19:14:39] [Region shutdown thread/INFO]: [InvSee++_Give] Disabling InvSeePlusPlus_Give v0.22.2
[19:14:39] [Region shutdown thread/INFO]: [LiteBans] Disabling LiteBans v2.12.4
[19:14:39] [Region shutdown thread/INFO]: [LiteBans] litebans-pool - Shutdown initiated...
[19:14:39] [Region shutdown thread/INFO]: [LiteBans] litebans-pool - Shutdown completed.
[19:14:40] [Region shutdown thread/INFO]: [LiteBans] v2.12.4 disabled.
[19:14:40] [Region shutdown thread/INFO]: [MiniMOTD] Disabling MiniMOTD v2.0.12
[19:14:40] [Region shutdown thread/INFO]: [NFCNotes] Disabling NFCNotes v2.4.0
[19:14:40] [Region shutdown thread/INFO]: [NoCheatPlus] Disabling NoCheatPlus v3.17.1-SNAPSHOT-Updated-b164
[19:14:41] [Region shutdown thread/INFO]: [NoCheatPlus] Added hook: AllViolations(NCP) [1.0].
[19:14:41] [Region shutdown thread/INFO]: [NoCheatPlus] Added hook: ViolationFrequency(NCP) [1.0].
[19:14:41] [Region shutdown thread/INFO]: [NoCheatPlus] Removed hook: ViolationFrequency(NCP) [1.0].
[19:14:41] [Region shutdown thread/INFO]: [NoCheatPlus] Removed hook: AllViolations(NCP) [1.0].
[19:14:41] [Region shutdown thread/INFO]: [NoCheatPlus] Version 3.17.1-SNAPSHOT-Updated-b164 is disabled.
[19:14:41] [Region shutdown thread/INFO]: [Residence] Disabling Residence v5.1.1.3-Folia
[19:14:41] [Region shutdown thread/INFO]: [Residence] Disabled!
[19:14:41] [Region shutdown thread/INFO]: [Chunky] Disabling Chunky v1.3.92
[19:14:41] [Region shutdown thread/INFO]: [ViaBackwards] Disabling ViaBackwards v4.7.0
[19:14:41] [Region shutdown thread/INFO]: [InvSee++] Disabling InvSeePlusPlus v0.22.2
[19:14:41] [Region shutdown thread/INFO]: [CMILib] Disabling CMILib v1.3.0.2
[19:14:41] [Region shutdown thread/INFO]: [Essentials] Disabling Essentials v2.20.0-dev+63-4256909
[19:14:41] [Region shutdown thread/INFO]: [HuskHomes] Disabling HuskHomes v4.4
[19:14:41] [Region shutdown thread/INFO]: [HuskHomes] Successfully disabled HuskHomes v4.4
[19:14:41] [Region shutdown thread/INFO]: [Vault] Disabling Vault v1.7.3-b0-folia
[19:14:41] [Region shutdown thread/INFO]: [LuckPerms] Disabling LuckPerms v5.4.73
[19:14:41] [Region shutdown thread/INFO]: [LuckPerms] Starting shutdown process...
[19:14:41] [Region shutdown thread/INFO]: [LuckPerms] Closing storage...
[19:14:41] [Region shutdown thread/INFO]: [LuckPerms] Goodbye!
[19:14:41] [Region shutdown thread/INFO]: [ViaVersion] Disabling ViaVersion v4.7.0
[19:14:41] [Region shutdown thread/INFO]: [ViaVersion] ViaVersion is disabling, if this is a reload and you experience issues consider rebooting.
[19:14:41] [Region shutdown thread/INFO]: [RegionShutdownThread] Halting chunk systems
[19:14:41] [Region shutdown thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world'
[19:14:41] [Region shutdown thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world'
[19:14:41] [Region shutdown thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_nether'
[19:14:41] [Region shutdown thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_nether'
[19:14:41] [Region shutdown thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_the_end'
[19:14:41] [Region shutdown thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_the_end'
[19:14:41] [Region shutdown thread/INFO]: [RegionShutdownThread] Halted chunk systems
[19:14:41] [Region shutdown thread/INFO]: [RegionShutdownThread] Saving chunks around region around chunk [0, 0] in world 'world'
[19:14:42] [Region shutdown thread/INFO]: [ChunkHolderManager] Saved 565 block chunks, 565 entity chunks, 0 poi chunks in world 'world' in 0.72s
[19:14:42] [Region shutdown thread/INFO]: [RegionShutdownThread] Saving chunks around region around chunk [0, 0] in world 'world_nether'
[19:14:42] [Region shutdown thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world_nether' in 0.58s
[19:14:42] [Region shutdown thread/INFO]: [RegionShutdownThread] Saving chunks around region around chunk [0, 0] in world 'world_the_end'
[19:14:43] [Region shutdown thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world_the_end' in 0.13s
[19:14:43] [Region shutdown thread/INFO]: [RegionShutdownThread] Saving players
[19:14:43] [Region shutdown thread/INFO]: Flushing Chunk IO
[19:14:43] [Region shutdown thread/INFO]: Closing Thread Pool
[19:14:43] [Region shutdown thread/INFO]: Closing Server
[19:14:48] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[19:14:49] [ServerMain/INFO]: Loaded 7 recipes
[19:14:49] [Server thread/INFO]: Starting minecraft server version 1.20.1
[19:14:49] [Server thread/INFO]: Loading properties
[19:14:49] [Server thread/INFO]: This server is running Folia version git-Folia-18 (MC: 1.20.1) (Implementing API version 1.20.1-R0.1-SNAPSHOT) (Git: 7c6e251 on HEAD)
[19:14:49] [Server thread/INFO]: Server Ping Player Sample Count: 12
[19:14:49] [Server thread/INFO]: Using 4 threads for Netty based IO
[19:14:49] [Server thread/WARN]: [!] The timings system cannot be enabled on Folia, and has been scheduled for removal from Paper in the future.
    We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
    For more information please visit: https://github.com/PaperMC/Paper/issues/8948
[19:14:49] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 4 worker threads, and gen parallelism of 4 threads
[19:14:49] [Server thread/INFO]: [io.papermc.paper.threadedregions.TickRegions] Regionised ticking is enabled with 2 tick threads
[19:14:50] [Server thread/INFO]: Default game type: SURVIVAL
[19:14:50] [Server thread/INFO]: Generating keypair
[19:14:50] [Server thread/INFO]: Starting Minecraft server on *:25570
[19:14:50] [Server thread/INFO]: Using default channel type
[19:14:50] [Server thread/INFO]: Paper: Using Java compression from Velocity.
[19:14:50] [Server thread/INFO]: Paper: Using Java cipher from Velocity.
[19:14:51] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v4.7.0
[19:14:51] [Server thread/INFO]: [ViaVersion] ViaVersion 4.7.0 is now loaded. Registering protocol transformers and injecting...
[19:14:51] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[19:14:51] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[19:14:51] [Server thread/INFO]: [ViaBackwards] Loading translations...
[19:14:51] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[19:14:51] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.73
[19:14:51] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b0-folia
[19:14:51] [Server thread/INFO]: [HuskHomes] Loading server plugin HuskHomes v4.4
[19:14:51] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.20.0-dev+63-4256909
[19:14:51] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.3.0.2
[19:14:51] [Server thread/INFO]: [InvSee++] Loading server plugin InvSeePlusPlus v0.22.2
[19:14:51] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v4.7.0
[19:14:51] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.3.92
[19:14:51] [Server thread/INFO]: [Residence] Loading server plugin Residence v5.1.1.3-Folia
[19:14:51] [Server thread/INFO]: [BlockLocker] Loading server plugin BlockLocker v1.12.1-SNAPSHOT
[19:14:51] [Server thread/INFO]: [NoCheatPlus] Loading server plugin NoCheatPlus v3.17.1-SNAPSHOT-Updated-b164
[19:14:51] [Server thread/INFO]: [NoCheatPlus] onLoad: Early set up of static API, configuration, logging.
[19:14:52] [Server thread/INFO]: [NoCheatPlus] Logging system initialized.
[19:14:52] [Server thread/INFO]: [NoCheatPlus] Detected Minecraft version: 1.20.1
[19:14:52] [Server thread/INFO]: [NFCNotes] Loading server plugin NFCNotes v2.4.0
[19:14:52] [Server thread/INFO]: [MiniMOTD] Loading server plugin MiniMOTD v2.0.12
[19:14:52] [Server thread/INFO]: [LiteBans] Loading server plugin LiteBans v2.12.4
[19:14:52] [Server thread/INFO]: [InvSee++_Give] Loading server plugin InvSeePlusPlus_Give v0.22.2
[19:14:52] [Server thread/INFO]: [InvSee++_Clear] Loading server plugin InvSeePlusPlus_Clear v0.22.2
[19:14:52] [Server thread/INFO]: [HeadDrop] Loading server plugin HeadDrop v4.20
[19:14:52] [Server thread/INFO]: [GSit] Loading server plugin GSit v1.4.5
[19:14:52] [Server thread/INFO]: [FancyNpcs] Loading server plugin FancyNpcs v1.2.1
[19:14:52] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.20.0-dev+63-4256909
[19:14:52] [Server thread/INFO]: [EssentialsGeoIP] Loading server plugin EssentialsGeoIP v2.20.0-dev+63-4256909
[19:14:52] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.20.0-dev+63-4256909
[19:14:52] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.26.3-SNAPSHOT
[19:14:52] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v22.0-dev1
[19:14:52] [Server thread/INFO]: [ChunkyBorder] Loading server plugin ChunkyBorder v1.1.50
[19:14:52] [Server thread/INFO]: [ChestShop] Loading server plugin ChestShop v3.12.3-SNAPSHOT (build 385)
[19:14:52] [Server thread/INFO]: [ChestShop] BlockLocker version 1.12.1-SNAPSHOT loaded.
[19:14:52] [Server thread/INFO]: [ChestShop] Residence version 5.1.1.3-Folia loaded.
[19:14:52] [Server thread/INFO]: [BetterBoard] Loading server plugin BetterBoard v2.3
[19:14:52] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[19:14:52] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.73
[19:14:52] [Server thread/INFO]:         __    
[19:14:52] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.73
[19:14:52] [Server thread/INFO]:   |___ |      Running on Bukkit - Folia
[19:14:52] [Server thread/INFO]: 
[19:14:52] [Server thread/INFO]: [LuckPerms] Loading configuration...
[19:14:52] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[19:14:53] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[19:14:53] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[19:14:53] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1502ms)
[19:14:53] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b0-folia
[19:14:53] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[19:14:53] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b0-folia
[19:14:53] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[19:14:53] [Server thread/INFO]: [BlockLocker] Enabling BlockLocker v1.12.1-SNAPSHOT
[19:14:53] [Server thread/INFO]: Preparing level "world"
[19:14:54] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[19:14:54] [Server thread/INFO]: Time elapsed: 8 ms
[19:14:54] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[19:14:54] [Server thread/INFO]: Time elapsed: 1 ms
[19:14:54] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[19:14:54] [Server thread/INFO]: Time elapsed: 1 ms
[19:14:54] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.7.0
[19:14:54] [Server thread/INFO]: [HuskHomes] Enabling HuskHomes v4.4
[19:14:54] [Server thread/INFO]: [HuskHomes] Initializing plugin config & locale files...
[19:14:54] [Server thread/INFO]: [HuskHomes] Successfully initialized plugin config & locale files
[19:14:54] [Server thread/INFO]: [HuskHomes] Initializing SQLite database connection...
[19:14:54] [Server thread/INFO]: [HuskHomes] Successfully initialized SQLite database connection
[19:14:54] [Server thread/INFO]: [HuskHomes] Initializing hooks...
[19:14:54] [Server thread/INFO]: [HuskHomes] Successfully initialized hooks
[19:14:54] [Server thread/INFO]: [HuskHomes] Initializing events...
[19:14:54] [Server thread/INFO]: [HuskHomes] Successfully initialized events
[19:14:54] [Server thread/INFO]: [HuskHomes] Initializing commands...
[19:14:54] [Server thread/INFO]: [HuskHomes] Successfully initialized commands
[19:14:54] [Server thread/INFO]: [HuskHomes] Initializing metrics...
[19:14:54] [Server thread/INFO]: [HuskHomes] Successfully initialized metrics
[19:14:54] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.0-dev+63-4256909
[19:14:54] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[19:14:54] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[19:14:54] [Server thread/INFO]: [Essentials] No kits found to migrate.
[19:14:54] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[19:14:54] [Server thread/INFO]: [Essentials] Loaded 38132 items from items.json.
[19:14:54] [Server thread/INFO]: [Essentials] Using locale zh_TW
[19:14:54] [Folia Async Scheduler Thread #1/INFO]: [Essentials] 正在獲得版本資訊……
[19:14:54] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[19:14:54] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[19:14:54] [Server thread/INFO]: [CMILib] Enabling CMILib v1.3.0.2
[19:14:55] [Server thread/INFO]: Server version: v1_20_R1 - 1.20.1 - paper
[19:14:55] [Folia Async Scheduler Thread #1/WARN]: [Essentials] 你正在運行的實驗性 EssentialsX 開發版本 27 已不是最新的開發版本!
[19:14:55] [Folia Async Scheduler Thread #1/WARN]: [Essentials] 特色分支:refactor/folia。
[19:14:55] [Server thread/INFO]: Updated (EN) language file. Took 35ms
[19:14:55] [Server thread/INFO]: [InvSee++] Enabling InvSeePlusPlus v0.22.2
[19:14:55] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.7.0
[19:14:55] [Server thread/INFO]: [Chunky] Enabling Chunky v1.3.92
[19:14:55] [Server thread/INFO]: [Residence] Enabling Residence v5.1.1.3-Folia
[19:14:55] [Server thread/WARN]: [Residence] You are using an experimental version of Residence Folia
[19:14:55] [Server thread/WARN]: [Residence] If you encounter any problems, please report to https://github.com/Folium-MC/Residence-Maven
[19:14:56] [Server thread/INFO]: [Residence] Loaded (2) groups
[19:14:56] [Server thread/INFO]: [Residence] Found LuckPerms5 Plugin!
[19:14:56] [Server thread/INFO]: [Residence] Scanning for economy systems...
[19:14:56] [Server thread/INFO]: [Residence] Found Vault using economy: EssentialsX Economy
[19:14:56] [Server thread/INFO]: [Residence] Loaded world data into memory. (11 ms) -> 1 residences
[19:14:56] [Server thread/INFO]: [Residence] Loaded world_the_end data into memory. (0 ms) -> 0 residences
[19:14:56] [Server thread/INFO]: [Residence] Loaded world_nether data into memory. (0 ms) -> 0 residences
[19:14:56] [Server thread/INFO]: [Residence] Enabled! Version 5.1.1.3-Folia by Zrips & Folium-MC
[19:14:56] [Server thread/INFO]: [NoCheatPlus] Enabling NoCheatPlus v3.17.1-SNAPSHOT-Updated-b164
[19:14:56] [Server thread/INFO]: [NoCheatPlus] McAccess set to: 1.13-1.19|? / Bukkit-API
[19:14:56] [Server thread/INFO]: [NoCheatPlus] Applied block patches for multi client protocol support: water_lily, soil, vine, honey_block, shulker_box
[19:14:56] [Server thread/INFO]: [NoCheatPlus] Update block-info: Block shape patch for multi client protocol support.
[19:14:56] [Server thread/INFO]: [NoCheatPlus] Inventory checks: FastConsume is available, disabled InstantEat.
[19:14:56] [Server thread/INFO]: [NoCheatPlus] Packet level access: ProtocolLib is not available.
[19:14:56] [Server thread/INFO]: [NoCheatPlus] Force disable FastHeal, FastConsume, PacketFrequency and InstantBow on Minecraft 1.9 and later.
[19:14:56] [Server thread/INFO]: [NoCheatPlus] Version 3.17.1-SNAPSHOT-Updated-b164 is enabled.
[19:14:56] [Server thread/INFO]: [NFCNotes] Enabling NFCNotes v2.4.0
[19:14:56] [Server thread/INFO]: [MiniMOTD] Enabling MiniMOTD v2.0.12
[19:14:56] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.12.4
[19:14:56] [Server thread/INFO]: [LiteBans] Using system locale (zh)
[19:14:56] [Server thread/INFO]: [LiteBans] Loaded 4 templates from templates.yml!
[19:14:56] [Server thread/INFO]: [LiteBans] Loading SQL driver: h2 1.4.197 (org.h2.Driver)
[19:14:56] [Server thread/INFO]: [LiteBans] Connecting to database...
[19:14:56] [Server thread/INFO]: [LiteBans] litebans-pool - Starting...
[19:14:56] [Server thread/INFO]: [LiteBans] litebans-pool - Start completed.
[19:14:56] [Server thread/INFO]: [LiteBans] Connected to H2 database successfully (96.5 ms).
[19:14:56] [Server thread/INFO]: [LiteBans] Database connection fully initialized (101.4 ms).
[19:14:56] [Server thread/INFO]: [LiteBans] v2.12.4 enabled. Startup took 204 ms.
[19:14:56] [Server thread/INFO]: [InvSee++_Give] Enabling InvSeePlusPlus_Give v0.22.2
[19:14:56] [Server thread/INFO]: [InvSee++_Clear] Enabling InvSeePlusPlus_Clear v0.22.2
[19:14:56] [Server thread/INFO]: [HeadDrop] Enabling HeadDrop v4.20
[19:14:56] [Server thread/INFO]: 
[19:14:56] [Server thread/INFO]: ██╗  ██╗███████╗ █████╗ ██████╗ ██████╗ ██████╗  █████╗ ██████╗ 
[19:14:56] [Server thread/INFO]: ██║  ██║██╔════╝██╔══██╗██╔══██╗██╔══██╗██╔══██╗██╔══██╗██╔══██╗
[19:14:56] [Server thread/INFO]: ███████║█████╗  ███████║██║  ██║██║  ██║██████╔╝██║  ██║██████╔╝
[19:14:56] [Server thread/INFO]: ██╔══██║██╔══╝  ██╔══██║██║  ██║██║  ██║██╔══██╗██║  ██║██╔═══╝ 
[19:14:56] [Server thread/INFO]: ██║  ██║███████╗██║  ██║██████╔╝██████╔╝██║  ██║╚█████╔╝██║     
[19:14:56] [Server thread/INFO]: ╚═╝  ╚═╝╚══════╝╚═╝  ╚═╝╚═════╝ ╚═════╝ ╚═╝  ╚═╝ ╚════╝ ╚═╝     
[19:14:56] [Server thread/INFO]: 
[19:14:56] [Server thread/INFO]: --------------------------------------------------------------------------
[19:14:56] [Server thread/INFO]: [HeadDrop] HeadDrop 4.20 by RRS
[19:14:57] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[19:14:57] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@3424425f
[19:14:57] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[19:14:57] [Server thread/INFO]: [HeadDrop] Website is now online at 0
[19:14:57] [Server thread/INFO]: [HeadDrop] Enabled successfully!
[19:14:57] [Server thread/INFO]: --------------------------------------------------------------------------
[19:14:57] [Server thread/INFO]: [GSit] Enabling GSit v1.4.5
[19:14:57] [Server thread/INFO]: [GSit] 插件已成功載入
[19:14:57] [Server thread/INFO]: [FancyNpcs] Enabling FancyNpcs v1.2.1
[19:14:57] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.20.0-dev+63-4256909
[19:14:57] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[19:14:57] [Server thread/INFO]: [EssentialsGeoIP] Enabling EssentialsGeoIP v2.20.0-dev+63-4256909
[19:14:57] [Server thread/INFO]: [EssentialsGeoIP] This product includes GeoLite2 data created by MaxMind, available from http://www.maxmind.com/.
[19:14:57] [Server thread/INFO]: [EssentialsGeoIP] Starting Metrics. Opt-out using the global bStats config.
[19:14:57] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.20.0-dev+63-4256909
[19:14:57] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[19:14:57] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.26.3-SNAPSHOT
[19:14:57] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v22.0-dev1
[19:14:57] [Server thread/INFO]: [CoreProtect] 檢測到正在使用開發分支的版本,已跳過使用補丁腳本。
[19:14:57] [Server thread/INFO]: [CoreProtect] 已經成功啟用 CoreProtect Edge ! 
[19:14:57] [Server thread/INFO]: [CoreProtect] 使用 SQLite 進行資料儲存。
[19:14:57] [Server thread/INFO]: --------------------
[19:14:57] [Server thread/INFO]: [CoreProtect] 喜歡 CoreProtect 嗎 ? 加入我們的 Discord !
[19:14:57] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[19:14:57] [Server thread/INFO]: --------------------
[19:14:57] [Server thread/INFO]: [ChunkyBorder] Enabling ChunkyBorder v1.1.50
[19:14:57] [Server thread/INFO]: [ChestShop] Enabling ChestShop v3.12.3-SNAPSHOT (build 385)
[19:14:58] [Server thread/INFO]: [ChestShop] Found locales hu, es_mx, sv, en, ro, zh_tw, fi, tr, af, ca, da, it, ru, nl, cs, vi, pt_br, he, zh, es, ko, no, fr, el, ja, uk, de, pl, ar, sr
[19:14:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[19:14:58] [Server thread/INFO]: [ChestShop] BlockLocker version 1.12.1-SNAPSHOT loaded.
[19:14:58] [Server thread/INFO]: [ChestShop] Residence version 5.1.1.3-Folia loaded.
[19:14:58] [Server thread/INFO]: [ChestShop] Using EssentialsX Economy as the Economy provider now.
[19:14:58] [Server thread/INFO]: [ChestShop] Vault loaded!
[19:14:58] [Server thread/INFO]: [ChestShop] Using Paper's BlockDestroyEvent instead of the BlockPhysicsEvent!
[19:14:58] [Server thread/INFO]: [ChestShop] Auto-updater is disabled. If you want the plugin to automatically download new releases then set 'TURN_OFF_UPDATES' to 'false' in your config.yml!
[19:14:58] [Server thread/INFO]: [BetterBoard] Enabling BetterBoard v2.3
[19:14:58] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[19:14:58] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b0-folia)!
[19:14:58] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.20 (763)
[19:14:58] [Server thread/INFO]: Done (8.988s)! For help, type "help"
[19:14:58] [Region Scheduler Thread #0/INFO]: [NoCheatPlus] Post-enable running...
[19:14:58] [Region Scheduler Thread #0/INFO]: [NoCheatPlus] Post-enable finished.
[19:14:58] [Region Scheduler Thread #1/INFO]: Initialising world 'world' before it can be ticked...
[19:14:58] [Region Scheduler Thread #1/INFO]: Initialised world 'world'
[19:14:58] [Region Scheduler Thread #1/INFO]: Timings Reset
[19:14:59] [Region Scheduler Thread #1/INFO]: Initialising world 'world_nether' before it can be ticked...
[19:14:59] [Region Scheduler Thread #1/INFO]: Initialised world 'world_nether'
[19:14:59] [Region Scheduler Thread #1/INFO]: Initialising world 'world_the_end' before it can be ticked...
[19:14:59] [Region Scheduler Thread #1/INFO]: Initialised world 'world_the_end'
[19:14:59] [Via Async Scheduler 0/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[19:14:59] [User Authenticator #0/INFO]: UUID of player anzai__chiyomi is 9efa81a7-a2fd-4141-8d52-d1470e786e8c
[19:14:59] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[19:14:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] 已找到伺服器 G:馬鈴薯伺服器 - Minecraft(1117462897078059019)
[19:14:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?規則及登入驗證??(1117464669179879515)
[19:14:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?伺服器資料(1117464774201065573)
[19:14:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?規則(1118392724572356688)
[19:14:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?伺服器通知(1119529043809812490)
[19:14:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?伺服相關(1117465401866067978)
[19:14:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?閒聊頻道(1117465294730973245)
[19:14:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?伺服器即時狀態(1117465902150062280)
[19:14:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?紅石討論(1117988597694472243)
[19:14:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?建築討論(1117989140198338620)
[19:14:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?截圖分享(1117989074607816715)
[19:14:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?迷因頻道(1117843638358118511)
[19:14:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?尋找管理員(1117843194667868220)
[19:14:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?贊助資訊(1118097355770691705)
[19:14:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?領地系統(1117476023496364092)
[19:14:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?查看懲罰名單(1117996010027896962)
[19:14:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:edit(1117466712728670228)
[19:14:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:remove(1117466783327191223)
[19:14:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:new_join(1117466811894599843)
[19:14:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:leave(1117466842974408735)
[19:14:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:role(1117466820199329792)
[19:14:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:invite(1117472375290728559)
[19:14:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:commands(1117472388720898138)
[19:14:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:nick(1117473103065387028)
[19:14:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:self-mark(1117473375510593657)
[19:14:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:c-out(1117803870664532100)
[19:14:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:moderators-only(1117470073674805308)
[19:14:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:discord-default-welcome(1118078522095837225)
[19:14:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:transcript(1118069301769949184)
[19:14:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:logs(1118069513703931995)
[19:14:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] 控制台轉送已指派至頻道 TC:c-out(1117803870664532100)
[19:14:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] 啟用鉤取 Essentials
[19:14:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] 啟用鉤取 LuckPerms
[19:14:59] [pool-26-thread-1/INFO]: [DiscordSRV] This build of DiscordSRV is identical to develop. [latest public dev build]
[19:15:00] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[19:15:02] [Region Scheduler Thread #1/INFO]: anzai__chiyomi joined the game
[19:15:02] [Region Scheduler Thread #1/INFO]: anzai__chiyomi[/       ip        ] logged in with entity id 68 at ([world]2.0, 65.0, 1.0)
[19:15:13] [Region Scheduler Thread #0/INFO]: Stopping the server
[19:15:13] [Region shutdown thread/INFO]: [RegionShutdownThread] Awaiting scheduler termination for 60s
[19:15:13] [Region shutdown thread/INFO]: [RegionShutdownThread] Scheduler halted
[19:15:13] [Region shutdown thread/INFO]: Stopping server
[19:15:13] [Region shutdown thread/INFO]: [BetterBoard] Disabling BetterBoard v2.3
[19:15:13] [Region shutdown thread/INFO]: [ChestShop] Disabling ChestShop v3.12.3-SNAPSHOT (build 385)
[19:15:13] [Region shutdown thread/INFO]: [ChunkyBorder] Disabling ChunkyBorder v1.1.50
[19:15:13] [Region shutdown thread/INFO]: [CoreProtect] Disabling CoreProtect v22.0-dev1
[19:15:13] [Region shutdown thread/INFO]: [CoreProtect] 正在完成資料記錄,請稍候……
[19:15:14] [Region shutdown thread/INFO]: [CoreProtect] 執行成功 ! 關閉 CoreProtect v22.0-dev1 !
[19:15:14] [Region shutdown thread/INFO]: [DiscordSRV] Disabling DiscordSRV v1.26.3-SNAPSHOT
[19:15:14] [DiscordSRV - Shutdown/INFO]: [DiscordSRV] 已儲存已連結帳號,耗時3ms
[19:15:14] [DiscordSRV - Shutdown/INFO]: [DiscordSRV] 伺服器已關閉,耗時539ms
[19:15:14] [Region shutdown thread/INFO]: [EssentialsChat] Disabling EssentialsChat v2.20.0-dev+63-4256909
[19:15:14] [Region shutdown thread/INFO]: [EssentialsGeoIP] Disabling EssentialsGeoIP v2.20.0-dev+63-4256909
[19:15:14] [Region shutdown thread/INFO]: [EssentialsSpawn] Disabling EssentialsSpawn v2.20.0-dev+63-4256909
[19:15:14] [Region shutdown thread/INFO]: [FancyNpcs] Disabling FancyNpcs v1.2.1
[19:15:14] [Region shutdown thread/INFO]: [GSit] Disabling GSit v1.4.5
[19:15:14] [Region shutdown thread/INFO]: [GSit] 插件已成功禁用
[19:15:14] [Region shutdown thread/INFO]: [HeadDrop] Disabling HeadDrop v4.20
[19:15:14] [Region shutdown thread/INFO]: HeadDrop Disabled.
[19:15:14] [Region shutdown thread/INFO]: [InvSee++_Clear] Disabling InvSeePlusPlus_Clear v0.22.2
[19:15:14] [Region shutdown thread/INFO]: [InvSee++_Give] Disabling InvSeePlusPlus_Give v0.22.2
[19:15:14] [Region shutdown thread/INFO]: [LiteBans] Disabling LiteBans v2.12.4
[19:15:14] [Region shutdown thread/INFO]: [LiteBans] litebans-pool - Shutdown initiated...
[19:15:14] [Region shutdown thread/INFO]: [LiteBans] litebans-pool - Shutdown completed.
[19:15:15] [Region shutdown thread/INFO]: [LiteBans] v2.12.4 disabled.
[19:15:15] [Region shutdown thread/INFO]: [MiniMOTD] Disabling MiniMOTD v2.0.12
[19:15:15] [Region shutdown thread/INFO]: [NFCNotes] Disabling NFCNotes v2.4.0
[19:15:15] [Region shutdown thread/INFO]: [NoCheatPlus] Disabling NoCheatPlus v3.17.1-SNAPSHOT-Updated-b164
[19:15:16] [Region shutdown thread/INFO]: [NoCheatPlus] Added hook: AllViolations(NCP) [1.0].
[19:15:16] [Region shutdown thread/INFO]: [NoCheatPlus] Added hook: ViolationFrequency(NCP) [1.0].
[19:15:16] [Region shutdown thread/INFO]: [NoCheatPlus] Removed hook: ViolationFrequency(NCP) [1.0].
[19:15:16] [Region shutdown thread/INFO]: [NoCheatPlus] Removed hook: AllViolations(NCP) [1.0].
[19:15:16] [Region shutdown thread/INFO]: [NoCheatPlus] Version 3.17.1-SNAPSHOT-Updated-b164 is disabled.
[19:15:16] [Region shutdown thread/INFO]: [BlockLocker] Disabling BlockLocker v1.12.1-SNAPSHOT
[19:15:16] [Region shutdown thread/INFO]: [Residence] Disabling Residence v5.1.1.3-Folia
[19:15:16] [Region shutdown thread/INFO]: [Residence] Disabled!
[19:15:16] [Region shutdown thread/INFO]: [Chunky] Disabling Chunky v1.3.92
[19:15:16] [Region shutdown thread/INFO]: [ViaBackwards] Disabling ViaBackwards v4.7.0
[19:15:16] [Region shutdown thread/INFO]: [InvSee++] Disabling InvSeePlusPlus v0.22.2
[19:15:16] [Region shutdown thread/INFO]: [CMILib] Disabling CMILib v1.3.0.2
[19:15:16] [Region shutdown thread/INFO]: [Essentials] Disabling Essentials v2.20.0-dev+63-4256909
[19:15:16] [Region shutdown thread/INFO]: [HuskHomes] Disabling HuskHomes v4.4
[19:15:16] [Region shutdown thread/INFO]: [HuskHomes] Successfully disabled HuskHomes v4.4
[19:15:16] [Region shutdown thread/INFO]: [Vault] Disabling Vault v1.7.3-b0-folia
[19:15:16] [Region shutdown thread/INFO]: [LuckPerms] Disabling LuckPerms v5.4.73
[19:15:16] [Region shutdown thread/INFO]: [LuckPerms] Starting shutdown process...
[19:15:16] [Region shutdown thread/INFO]: [LuckPerms] Closing storage...
[19:15:16] [Region shutdown thread/INFO]: [LuckPerms] Goodbye!
[19:15:16] [Region shutdown thread/INFO]: [ViaVersion] Disabling ViaVersion v4.7.0
[19:15:16] [Region shutdown thread/INFO]: [ViaVersion] ViaVersion is disabling, if this is a reload and you experience issues consider rebooting.
[19:15:16] [Region shutdown thread/INFO]: [RegionShutdownThread] Halting chunk systems
[19:15:16] [Region shutdown thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world'
[19:15:16] [Region shutdown thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world'
[19:15:16] [Region shutdown thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_nether'
[19:15:16] [Region shutdown thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_nether'
[19:15:16] [Region shutdown thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_the_end'
[19:15:16] [Region shutdown thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_the_end'
[19:15:16] [Region shutdown thread/INFO]: [RegionShutdownThread] Halted chunk systems
[19:15:16] [Region shutdown thread/INFO]: [RegionShutdownThread] Saving chunks around region around chunk [0, 0] in world 'world'
[19:15:21] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[19:15:22] [ServerMain/INFO]: Loaded 7 recipes
[19:15:22] [Server thread/INFO]: Starting minecraft server version 1.20.1
[19:15:22] [Server thread/INFO]: Loading properties
[19:15:22] [Server thread/INFO]: This server is running Folia version git-Folia-18 (MC: 1.20.1) (Implementing API version 1.20.1-R0.1-SNAPSHOT) (Git: 7c6e251 on HEAD)
[19:15:22] [Server thread/INFO]: Server Ping Player Sample Count: 12
[19:15:22] [Server thread/INFO]: Using 4 threads for Netty based IO
[19:15:22] [Server thread/WARN]: [!] The timings system cannot be enabled on Folia, and has been scheduled for removal from Paper in the future.
    We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
    For more information please visit: https://github.com/PaperMC/Paper/issues/8948
[19:15:22] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 4 worker threads, and gen parallelism of 4 threads
[19:15:22] [Server thread/INFO]: [io.papermc.paper.threadedregions.TickRegions] Regionised ticking is enabled with 2 tick threads
[19:15:22] [Server thread/INFO]: Default game type: SURVIVAL
[19:15:22] [Server thread/INFO]: Generating keypair
[19:15:22] [Server thread/INFO]: Starting Minecraft server on *:25570
[19:15:22] [Server thread/INFO]: Using default channel type
[19:15:22] [Server thread/INFO]: Paper: Using Java compression from Velocity.
[19:15:22] [Server thread/INFO]: Paper: Using Java cipher from Velocity.
[19:15:23] [Server thread/INFO]: [FramedImage] Using folia scheduler
[19:15:23] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v4.7.0
[19:15:23] [Server thread/INFO]: [ViaVersion] ViaVersion 4.7.0 is now loaded. Registering protocol transformers and injecting...
[19:15:23] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[19:15:24] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[19:15:24] [Server thread/INFO]: [ViaBackwards] Loading translations...
[19:15:24] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[19:15:24] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.73
[19:15:24] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b0-folia
[19:15:24] [Server thread/INFO]: [HuskHomes] Loading server plugin HuskHomes v4.4
[19:15:24] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.20.0-dev+63-4256909
[19:15:24] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.3.0.2
[19:15:24] [Server thread/INFO]: [InvSee++] Loading server plugin InvSeePlusPlus v0.22.2
[19:15:24] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v4.7.0
[19:15:24] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.3.92
[19:15:24] [Server thread/INFO]: [Residence] Loading server plugin Residence v5.1.1.3-Folia
[19:15:24] [Server thread/INFO]: [BlockLocker] Loading server plugin BlockLocker v1.12.1-SNAPSHOT
[19:15:24] [Server thread/INFO]: [NoCheatPlus] Loading server plugin NoCheatPlus v3.17.1-SNAPSHOT-Updated-b164
[19:15:24] [Server thread/INFO]: [NoCheatPlus] onLoad: Early set up of static API, configuration, logging.
[19:15:24] [Server thread/INFO]: [NoCheatPlus] Logging system initialized.
[19:15:24] [Server thread/INFO]: [NoCheatPlus] Detected Minecraft version: 1.20.1
[19:15:24] [Server thread/INFO]: [NFCNotes] Loading server plugin NFCNotes v2.4.0
[19:15:24] [Server thread/INFO]: [MiniMOTD] Loading server plugin MiniMOTD v2.0.12
[19:15:24] [Server thread/INFO]: [LiteBans] Loading server plugin LiteBans v2.12.4
[19:15:24] [Server thread/INFO]: [InvSee++_Give] Loading server plugin InvSeePlusPlus_Give v0.22.2
[19:15:24] [Server thread/INFO]: [InvSee++_Clear] Loading server plugin InvSeePlusPlus_Clear v0.22.2
[19:15:24] [Server thread/INFO]: [HeadDrop] Loading server plugin HeadDrop v4.20
[19:15:24] [Server thread/INFO]: [GSit] Loading server plugin GSit v1.4.5
[19:15:24] [Server thread/INFO]: [FramedImage] Loading server plugin FramedImage v1.5
[19:15:24] [Server thread/INFO]: [FancyNpcs] Loading server plugin FancyNpcs v1.2.1
[19:15:24] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.20.0-dev+63-4256909
[19:15:24] [Server thread/INFO]: [EssentialsGeoIP] Loading server plugin EssentialsGeoIP v2.20.0-dev+63-4256909
[19:15:24] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.20.0-dev+63-4256909
[19:15:24] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.26.3-SNAPSHOT
[19:15:24] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v22.0-dev1
[19:15:24] [Server thread/INFO]: [ChunkyBorder] Loading server plugin ChunkyBorder v1.1.50
[19:15:24] [Server thread/INFO]: [ChestShop] Loading server plugin ChestShop v3.12.3-SNAPSHOT (build 385)
[19:15:24] [Server thread/INFO]: [ChestShop] BlockLocker version 1.12.1-SNAPSHOT loaded.
[19:15:24] [Server thread/INFO]: [ChestShop] Residence version 5.1.1.3-Folia loaded.
[19:15:24] [Server thread/INFO]: [BetterBoard] Loading server plugin BetterBoard v2.3
[19:15:24] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[19:15:24] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.73
[19:15:25] [Server thread/INFO]:         __    
[19:15:25] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.73
[19:15:25] [Server thread/INFO]:   |___ |      Running on Bukkit - Folia
[19:15:25] [Server thread/INFO]: 
[19:15:25] [Server thread/INFO]: [LuckPerms] Loading configuration...
[19:15:25] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[19:15:25] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[19:15:25] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[19:15:26] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1519ms)
[19:15:26] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b0-folia
[19:15:26] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[19:15:26] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b0-folia
[19:15:26] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[19:15:26] [Server thread/INFO]: [BlockLocker] Enabling BlockLocker v1.12.1-SNAPSHOT
[19:15:26] [Server thread/INFO]: Preparing level "world"
[19:15:26] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[19:15:26] [Server thread/INFO]: Time elapsed: 10 ms
[19:15:26] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[19:15:26] [Server thread/INFO]: Time elapsed: 3 ms
[19:15:26] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[19:15:26] [Server thread/INFO]: Time elapsed: 1 ms
[19:15:26] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.7.0
[19:15:26] [Server thread/INFO]: [HuskHomes] Enabling HuskHomes v4.4
[19:15:26] [Server thread/INFO]: [HuskHomes] Initializing plugin config & locale files...
[19:15:26] [Server thread/INFO]: [HuskHomes] Successfully initialized plugin config & locale files
[19:15:26] [Server thread/INFO]: [HuskHomes] Initializing SQLite database connection...
[19:15:26] [Server thread/INFO]: [HuskHomes] Successfully initialized SQLite database connection
[19:15:26] [Server thread/INFO]: [HuskHomes] Initializing hooks...
[19:15:26] [Server thread/INFO]: [HuskHomes] Successfully initialized hooks
[19:15:26] [Server thread/INFO]: [HuskHomes] Initializing events...
[19:15:26] [Server thread/INFO]: [HuskHomes] Successfully initialized events
[19:15:26] [Server thread/INFO]: [HuskHomes] Initializing commands...
[19:15:26] [Server thread/INFO]: [HuskHomes] Successfully initialized commands
[19:15:26] [Server thread/INFO]: [HuskHomes] Initializing metrics...
[19:15:26] [Server thread/INFO]: [HuskHomes] Successfully initialized metrics
[19:15:26] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.0-dev+63-4256909
[19:15:26] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[19:15:27] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[19:15:27] [Server thread/INFO]: [Essentials] No kits found to migrate.
[19:15:27] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[19:15:27] [Server thread/INFO]: [Essentials] Loaded 38132 items from items.json.
[19:15:27] [Server thread/INFO]: [Essentials] Using locale zh_TW
[19:15:27] [Folia Async Scheduler Thread #1/INFO]: [Essentials] 正在獲得版本資訊……
[19:15:27] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[19:15:27] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[19:15:27] [Server thread/INFO]: [CMILib] Enabling CMILib v1.3.0.2
[19:15:27] [Server thread/INFO]: Server version: v1_20_R1 - 1.20.1 - paper
[19:15:28] [Folia Async Scheduler Thread #1/WARN]: [Essentials] 你正在運行的實驗性 EssentialsX 開發版本 27 已不是最新的開發版本!
[19:15:28] [Folia Async Scheduler Thread #1/WARN]: [Essentials] 特色分支:refactor/folia。
[19:15:28] [Server thread/INFO]: Updated (EN) language file. Took 31ms
[19:15:28] [Server thread/INFO]: [InvSee++] Enabling InvSeePlusPlus v0.22.2
[19:15:28] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.7.0
[19:15:28] [Server thread/INFO]: [Chunky] Enabling Chunky v1.3.92
[19:15:28] [Server thread/INFO]: [Residence] Enabling Residence v5.1.1.3-Folia
[19:15:28] [Server thread/WARN]: [Residence] You are using an experimental version of Residence Folia
[19:15:28] [Server thread/WARN]: [Residence] If you encounter any problems, please report to https://github.com/Folium-MC/Residence-Maven
[19:15:28] [Server thread/INFO]: [Residence] Loaded (2) groups
[19:15:28] [Server thread/INFO]: [Residence] Found LuckPerms5 Plugin!
[19:15:28] [Server thread/INFO]: [Residence] Scanning for economy systems...
[19:15:28] [Server thread/INFO]: [Residence] Found Vault using economy: EssentialsX Economy
[19:15:28] [Server thread/INFO]: [Residence] Loaded world data into memory. (10 ms) -> 1 residences
[19:15:28] [Server thread/INFO]: [Residence] Loaded world_the_end data into memory. (0 ms) -> 0 residences
[19:15:28] [Server thread/INFO]: [Residence] Loaded world_nether data into memory. (0 ms) -> 0 residences
[19:15:28] [Server thread/INFO]: [Residence] Enabled! Version 5.1.1.3-Folia by Zrips & Folium-MC
[19:15:28] [Server thread/INFO]: [NoCheatPlus] Enabling NoCheatPlus v3.17.1-SNAPSHOT-Updated-b164
[19:15:28] [Server thread/INFO]: [NoCheatPlus] McAccess set to: 1.13-1.19|? / Bukkit-API
[19:15:28] [Server thread/INFO]: [NoCheatPlus] Applied block patches for multi client protocol support: water_lily, soil, vine, honey_block, shulker_box
[19:15:28] [Server thread/INFO]: [NoCheatPlus] Update block-info: Block shape patch for multi client protocol support.
[19:15:28] [Server thread/INFO]: [NoCheatPlus] Inventory checks: FastConsume is available, disabled InstantEat.
[19:15:28] [Server thread/INFO]: [NoCheatPlus] Packet level access: ProtocolLib is not available.
[19:15:28] [Server thread/INFO]: [NoCheatPlus] Force disable FastHeal, FastConsume, PacketFrequency and InstantBow on Minecraft 1.9 and later.
[19:15:28] [Server thread/INFO]: [NoCheatPlus] Version 3.17.1-SNAPSHOT-Updated-b164 is enabled.
[19:15:28] [Server thread/INFO]: [NFCNotes] Enabling NFCNotes v2.4.0
[19:15:28] [Server thread/INFO]: [MiniMOTD] Enabling MiniMOTD v2.0.12
[19:15:29] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.12.4
[19:15:29] [Server thread/INFO]: [LiteBans] Using system locale (zh)
[19:15:29] [Server thread/INFO]: [LiteBans] Loaded 4 templates from templates.yml!
[19:15:29] [Server thread/INFO]: [LiteBans] Loading SQL driver: h2 1.4.197 (org.h2.Driver)
[19:15:29] [Server thread/INFO]: [LiteBans] Connecting to database...
[19:15:29] [Server thread/INFO]: [LiteBans] litebans-pool - Starting...
[19:15:30] [Server thread/INFO]: [LiteBans] litebans-pool - Start completed.
[19:15:30] [Server thread/INFO]: [LiteBans] Connected to H2 database successfully (91 ms).
[19:15:30] [Server thread/INFO]: [LiteBans] Database connection fully initialized (95.3 ms).
[19:15:30] [Server thread/INFO]: [LiteBans] v2.12.4 enabled. Startup took 192 ms.
[19:15:30] [Server thread/INFO]: [InvSee++_Give] Enabling InvSeePlusPlus_Give v0.22.2
[19:15:30] [Server thread/INFO]: [InvSee++_Clear] Enabling InvSeePlusPlus_Clear v0.22.2
[19:15:30] [Server thread/INFO]: [HeadDrop] Enabling HeadDrop v4.20
[19:15:30] [Server thread/INFO]: 
[19:15:30] [Server thread/INFO]: ██╗  ██╗███████╗ █████╗ ██████╗ ██████╗ ██████╗  █████╗ ██████╗ 
[19:15:30] [Server thread/INFO]: ██║  ██║██╔════╝██╔══██╗██╔══██╗██╔══██╗██╔══██╗██╔══██╗██╔══██╗
[19:15:30] [Server thread/INFO]: ███████║█████╗  ███████║██║  ██║██║  ██║██████╔╝██║  ██║██████╔╝
[19:15:30] [Server thread/INFO]: ██╔══██║██╔══╝  ██╔══██║██║  ██║██║  ██║██╔══██╗██║  ██║██╔═══╝ 
[19:15:30] [Server thread/INFO]: ██║  ██║███████╗██║  ██║██████╔╝██████╔╝██║  ██║╚█████╔╝██║     
[19:15:30] [Server thread/INFO]: ╚═╝  ╚═╝╚══════╝╚═╝  ╚═╝╚═════╝ ╚═════╝ ╚═╝  ╚═╝ ╚════╝ ╚═╝     
[19:15:30] [Server thread/INFO]: 
[19:15:30] [Server thread/INFO]: --------------------------------------------------------------------------
[19:15:30] [Server thread/INFO]: [HeadDrop] HeadDrop 4.20 by RRS
[19:15:30] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[19:15:30] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@519538ff
[19:15:30] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[19:15:30] [Server thread/INFO]: [HeadDrop] Website is now online at 0
[19:15:30] [Server thread/INFO]: [HeadDrop] Enabled successfully!
[19:15:30] [Server thread/INFO]: --------------------------------------------------------------------------
[19:15:30] [Server thread/INFO]: [GSit] Enabling GSit v1.4.5
[19:15:30] [Server thread/INFO]: [GSit] 插件已成功載入
[19:15:30] [Server thread/INFO]: [FramedImage] Enabling FramedImage v1.5
[19:15:30] [Server thread/INFO]: [FramedImage] Successfully injected!
[19:15:30] [Server thread/INFO]: [FancyNpcs] Enabling FancyNpcs v1.2.1
[19:15:30] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.20.0-dev+63-4256909
[19:15:30] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[19:15:30] [Server thread/INFO]: [EssentialsGeoIP] Enabling EssentialsGeoIP v2.20.0-dev+63-4256909
[19:15:30] [Server thread/INFO]: [EssentialsGeoIP] This product includes GeoLite2 data created by MaxMind, available from http://www.maxmind.com/.
[19:15:30] [Server thread/INFO]: [EssentialsGeoIP] Starting Metrics. Opt-out using the global bStats config.
[19:15:30] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.20.0-dev+63-4256909
[19:15:30] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[19:15:30] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.26.3-SNAPSHOT
[19:15:30] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v22.0-dev1
[19:15:30] [Server thread/INFO]: [CoreProtect] 檢測到正在使用開發分支的版本,已跳過使用補丁腳本。
[19:15:30] [Server thread/INFO]: [CoreProtect] 已經成功啟用 CoreProtect Edge ! 
[19:15:30] [Server thread/INFO]: [CoreProtect] 使用 SQLite 進行資料儲存。
[19:15:30] [Server thread/INFO]: --------------------
[19:15:30] [Server thread/INFO]: [CoreProtect] 喜歡 CoreProtect 嗎 ? 加入我們的 Discord !
[19:15:30] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[19:15:30] [Server thread/INFO]: --------------------
[19:15:30] [Server thread/INFO]: [ChunkyBorder] Enabling ChunkyBorder v1.1.50
[19:15:30] [Server thread/INFO]: [ChestShop] Enabling ChestShop v3.12.3-SNAPSHOT (build 385)
[19:15:31] [Server thread/INFO]: [ChestShop] Found locales hu, es_mx, sv, en, ro, zh_tw, fi, tr, af, ca, da, it, ru, nl, cs, vi, pt_br, he, zh, es, ko, no, fr, el, ja, uk, de, pl, ar, sr
[19:15:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[19:15:31] [Server thread/INFO]: [ChestShop] BlockLocker version 1.12.1-SNAPSHOT loaded.
[19:15:31] [Server thread/INFO]: [ChestShop] Residence version 5.1.1.3-Folia loaded.
[19:15:31] [Server thread/INFO]: [ChestShop] Using EssentialsX Economy as the Economy provider now.
[19:15:31] [Server thread/INFO]: [ChestShop] Vault loaded!
[19:15:31] [Server thread/INFO]: [ChestShop] Using Paper's BlockDestroyEvent instead of the BlockPhysicsEvent!
[19:15:31] [Server thread/INFO]: [ChestShop] Auto-updater is disabled. If you want the plugin to automatically download new releases then set 'TURN_OFF_UPDATES' to 'false' in your config.yml!
[19:15:31] [Server thread/INFO]: [BetterBoard] Enabling BetterBoard v2.3
[19:15:31] [pool-26-thread-1/WARN]: [DiscordSRV] Update check failed due to unexpected json response: Cannot invoke "github.scarsz.discordsrv.dependencies.google.gson.JsonObject.get(String)" because the return value of "github.scarsz.discordsrv.dependencies.google.gson.JsonObject.getAsJsonObject(String)" is null ({"url":"https://api.github.com/repos/DiscordSRV/DiscordSRV/compare/1b6e3bf8ee2f7ddaf3ac71e550a1cac17d238668...5be23613ba9a77f308defc7e781be2b3c1198bbe","html_url":"https://github.com/DiscordSRV/DiscordSRV/compare/1b6e3bf8ee2f7ddaf3ac71e550a1cac17d238668...5be23613ba9a77f308defc7e781be2b3c1198bbe","permalink_url":"https://github.com/DiscordSRV/DiscordSRV/compare/DiscordSRV:1b6e3bf...DiscordSRV:5be2361","diff_url":"https://github.com/DiscordSRV/DiscordSRV/compare/1b6e3bf8ee2f7ddaf3ac71e550a1cac17d238668...5be23613ba9a77f308defc7e781be2b3c1198bbe.diff","patch_url":"https://github.com/DiscordSRV/DiscordSRV/compare/1b6e3bf8ee2f7ddaf3ac71e550a1cac17d238668...5be23613ba9a77f308defc7e781be2b3c1198bbe.patch","base_commit":{"sha":"1b6e3bf8ee2f7ddaf3ac71e550a1cac17d238668","node_id":"MDY6Q29tbWl0NDkzNTIwMzA6MWI2ZTNiZjhlZTJmN2RkYWYzYWM3MWU1NTBhMWNhYzE3ZDIzODY2OA==","commit":{"author":{"name":"Scarsz","email":"truescarsz@gmail.com","date":"2017-09-23T03:29:21Z"},"committer":{"name":"Scarsz","email":"truescarsz@gmail.com","date":"2017-09-23T03:29:21Z"},"message":"v15.3 except it compiles this time","tree":{"sha":"af56fa00daf04520d5ca61f78b405449af2d7f73","url":"https://api.github.com/repos/DiscordSRV/DiscordSRV/git/trees/af56fa00daf04520d5ca61f78b405449af2d7f73"},"url":"https://api.github.com/repos/DiscordSRV/DiscordSRV/git/commits/1b6e3bf8ee2f7ddaf3ac71e550a1cac17d238668","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/DiscordSRV/DiscordSRV/commits/1b6e3bf8ee2f7ddaf3ac71e550a1cac17d238668","html_url":"https://github.com/DiscordSRV/DiscordSRV/commit/1b6e3bf8ee2f7ddaf3ac71e550a1cac17d238668","comments_url":"https://api.github.com/repos/DiscordSRV/DiscordSRV/commits/1b6e3bf8ee2f7ddaf3ac71e550a1cac17d238668/comments","author":{"login":"Scarsz","id":7691988,"node_id":"MDQ6VXNlcjc2OTE5ODg=","avatar_url":"https://avatars.githubusercontent.com/u/7691988?v=4","gravatar_id":"","url":"https://api.github.com/users/Scarsz","html_url":"https://github.com/Scarsz","followers_url":"https://api.github.com/users/Scarsz/followers","following_url":"https://api.github.com/users/Scarsz/following{/other_user}","gists_url":"https://api.github.com/users/Scarsz/gists{/gist_id}","starred_url":"https://api.github.com/users/Scarsz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Scarsz/subscriptions","organizations_url":"https://api.github.com/users/Scarsz/orgs","repos_url":"https://api.github.com/users/Scarsz/repos","events_url":"https://api.github.com/users/Scarsz/events{/privacy}","received_events_url":"https://api.github.com/users/Scarsz/received_events","type":"User","site_admin":false},"committer":{"login":"Scarsz","id":7691988,"node_id":"MDQ6VXNlcjc2OTE5ODg=","avatar_url":"https://avatars.githubusercontent.com/u/7691988?v=4","gravatar_id":"","url":"https://api.github.com/users/Scarsz","html_url":"https://github.com/Scarsz","followers_url":"https://api.github.com/users/Scarsz/followers","following_url":"https://api.github.com/users/Scarsz/following{/other_user}","gists_url":"https://api.github.com/users/Scarsz/gists{/gist_id}","starred_url":"https://api.github.com/users/Scarsz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Scarsz/subscriptions","organizations_url":"https://api.github.com/users/Scarsz/orgs","repos_url":"https://api.github.com/users/Scarsz/repos","events_url":"https://api.github.com/users/Scarsz/events{/privacy}","received_events_url":"https://api.github.com/users/Scarsz/received_events","type":"User","site_admin":false},"parents":[{"sha":"004b8a0e217da81e1c10cae8ca26117ae8f3b8ab","url":"https://api.github.com/repos/DiscordSRV/DiscordSRV/commits/004b8a0e217da81e1c10cae8ca26117ae8f3b8ab","html_url":"https://github.com/DiscordSRV/DiscordSRV/commit/004b8a0e217da81e1c10cae8ca26117ae8f3b8ab"}]},"merge_base_commit":{"sha":"1b6e3bf8ee2f7ddaf3ac71e550a1cac17d238668","node_id":"MDY6Q29tbWl0NDkzNTIwMzA6MWI2ZTNiZjhlZTJmN2RkYWYzYWM3MWU1NTBhMWNhYzE3ZDIzODY2OA==","commit":{"author":{"name":"Scarsz","email":"truescarsz@gmail.com","date":"2017-09-23T03:29:21Z"},"committer":{"name":"Scarsz","email":"truescarsz@gmail.com","date":"2017-09-23T03:29:21Z"},"message":"v15.3 except it compiles this time","tree":{"sha":"af56fa00daf04520d5ca61f78b405449af2d7f73","url":"https://api.github.com/repos/DiscordSRV/DiscordSRV/git/trees/af56fa00daf04520d5ca61f78b405449af2d7f73"},"url":"https://api.github.com/repos/DiscordSRV/DiscordSRV/git/commits/1b6e3bf8ee2f7ddaf3ac71e550a1cac17d238668","comment_count":0,"verification":{"verified":false,"reason":"unsigned","signature":null,"payload":null}},"url":"https://api.github.com/repos/DiscordSRV/DiscordSRV/commits/1b6e3bf8ee2f7ddaf3ac71e550a1cac17d238668","html_url":"https://github.com/DiscordSRV/DiscordSRV/commit/1b6e3bf8ee2f7ddaf3ac71e550a1cac17d238668","comments_url":"https://api.github.com/repos/DiscordSRV/DiscordSRV/commits/1b6e3bf8ee2f7ddaf3ac71e550a1cac17d238668/comments","author":{"login":"Scarsz","id":7691988,"node_id":"MDQ6VXNlcjc2OTE5ODg=","avatar_url":"https://avatars.githubusercontent.com/u/7691988?v=4","gravatar_id":"","url":"https://api.github.com/users/Scarsz","html_url":"https://github.com/Scarsz","followers_url":"https://api.github.com/users/Scarsz/followers","following_url":"https://api.github.com/users/Scarsz/following{/other_user}","gists_url":"https://api.github.com/users/Scarsz/gists{/gist_id}","starred_url":"https://api.github.com/users/Scarsz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Scarsz/subscriptions","organizations_url":"https://api.github.com/users/Scarsz/orgs","repos_url":"https://api.github.com/users/Scarsz/repos","events_url":"https://api.github.com/users/Scarsz/events{/privacy}","received_events_url":"https://api.github.com/users/Scarsz/received_events","type":"User","site_admin":false},"committer":{"login":"Scarsz","id":7691988,"node_id":"MDQ6VXNlcjc2OTE5ODg=","avatar_url":"https://avatars.githubusercontent.com/u/7691988?v=4","gravatar_id":"","url":"https://api.github.com/users/Scarsz","html_url":"https://github.com/Scarsz","followers_url":"https://api.github.com/users/Scarsz/followers","following_url":"https://api.github.com/users/Scarsz/following{/other_user}","gists_url":"https://api.github.com/users/Scarsz/gists{/gist_id}","starred_url":"https://api.github.com/users/Scarsz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Scarsz/subscriptions","organizations_url":"https://api.github.com/users/Scarsz/orgs","repos_url":"https://api.github.com/users/Scarsz/repos","events_url":"https://api.github.com/users/Scarsz/events{/privacy}","received_events_url":"https://api.github.com/users/Scarsz/received_events","type":"User","site_admin":false},"parents":[{"sha":"004b8a0e217da81e1c10cae8ca26117ae8f3b8ab","url":"https://api.github.com/repos/DiscordSRV/DiscordSRV/commits/004b8a0e217da81e1c10cae8ca26117ae8f3b8ab","html_url":"https://github.com/DiscordSRV/DiscordSRV/commit/004b8a0e217da81e1c10cae8ca26117ae8f3b8ab"}]},"status":"ahead","ahead_by":2686,"behind_by":0,"total_commits":2686})
[19:15:31] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[19:15:31] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b0-folia)!
[19:15:31] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.20 (763)
[19:15:31] [Server thread/INFO]: Done (9.370s)! For help, type "help"
[19:15:31] [Region Scheduler Thread #0/INFO]: [NoCheatPlus] Post-enable running...
[19:15:31] [Region Scheduler Thread #0/INFO]: [NoCheatPlus] Post-enable finished.
[19:15:31] [Region Scheduler Thread #0/INFO]: [FramedImage] Loading 0 images.
[19:15:31] [Region Scheduler Thread #1/INFO]: Initialising world 'world' before it can be ticked...
[19:15:31] [Region Scheduler Thread #1/INFO]: Initialised world 'world'
[19:15:31] [Region Scheduler Thread #1/INFO]: Timings Reset
[19:15:32] [Region Scheduler Thread #0/INFO]: /127.0.0.1:55808 lost connection: Internal Exception: java.lang.StringIndexOutOfBoundsException: begin 10, end 9, length 9
[19:15:32] [Region Scheduler Thread #0/INFO]: /127.0.0.1:55801 lost connection: Internal Exception: java.lang.StringIndexOutOfBoundsException: begin 10, end 9, length 9
[19:15:32] [Region Scheduler Thread #1/INFO]: Initialising world 'world_nether' before it can be ticked...
[19:15:32] [Region Scheduler Thread #1/INFO]: Initialised world 'world_nether'
[19:15:32] [Region Scheduler Thread #1/INFO]: Initialising world 'world_the_end' before it can be ticked...
[19:15:32] [Region Scheduler Thread #1/INFO]: Initialised world 'world_the_end'
[19:15:32] [Via Async Scheduler 0/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[19:15:32] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[19:15:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] 已找到伺服器 G:馬鈴薯伺服器 - Minecraft(1117462897078059019)
[19:15:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?規則及登入驗證??(1117464669179879515)
[19:15:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?伺服器資料(1117464774201065573)
[19:15:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?規則(1118392724572356688)
[19:15:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?伺服器通知(1119529043809812490)
[19:15:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?伺服相關(1117465401866067978)
[19:15:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?閒聊頻道(1117465294730973245)
[19:15:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?伺服器即時狀態(1117465902150062280)
[19:15:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?紅石討論(1117988597694472243)
[19:15:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?建築討論(1117989140198338620)
[19:15:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?截圖分享(1117989074607816715)
[19:15:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?迷因頻道(1117843638358118511)
[19:15:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?尋找管理員(1117843194667868220)
[19:15:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?贊助資訊(1118097355770691705)
[19:15:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?領地系統(1117476023496364092)
[19:15:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:?查看懲罰名單(1117996010027896962)
[19:15:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:edit(1117466712728670228)
[19:15:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:remove(1117466783327191223)
[19:15:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:new_join(1117466811894599843)
[19:15:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:leave(1117466842974408735)
[19:15:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:role(1117466820199329792)
[19:15:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:invite(1117472375290728559)
[19:15:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:commands(1117472388720898138)
[19:15:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:nick(1117473103065387028)
[19:15:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:self-mark(1117473375510593657)
[19:15:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:c-out(1117803870664532100)
[19:15:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:moderators-only(1117470073674805308)
[19:15:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:discord-default-welcome(1118078522095837225)
[19:15:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:transcript(1118069301769949184)
[19:15:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:logs(1118069513703931995)
[19:15:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] 控制台轉送已指派至頻道 TC:c-out(1117803870664532100)
[19:15:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] 啟用鉤取 Essentials
[19:15:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] 啟用鉤取 LuckPerms
[19:15:33] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[19:15:42] [Region Scheduler Thread #0/INFO]: /127.0.0.1:55828 lost connection: Internal Exception: java.lang.StringIndexOutOfBoundsException: begin 10, end 9, length 9
[19:16:57] [Region Scheduler Thread #0/INFO]: Stopping the server
[19:16:57] [Region shutdown thread/INFO]: [RegionShutdownThread] Awaiting scheduler termination for 60s
[19:16:57] [Region shutdown thread/INFO]: [RegionShutdownThread] Scheduler halted
[19:16:57] [Region shutdown thread/INFO]: Stopping server
[19:16:57] [Region shutdown thread/INFO]: [BetterBoard] Disabling BetterBoard v2.3
[19:16:57] [Region shutdown thread/INFO]: [ChestShop] Disabling ChestShop v3.12.3-SNAPSHOT (build 385)
[19:16:57] [Region shutdown thread/INFO]: [ChunkyBorder] Disabling ChunkyBorder v1.1.50
[19:16:57] [Region shutdown thread/INFO]: [CoreProtect] Disabling CoreProtect v22.0-dev1
[19:16:57] [Region shutdown thread/INFO]: [CoreProtect] 正在完成資料記錄,請稍候……
[19:16:58] [Region shutdown thread/INFO]: [CoreProtect] 執行成功 ! 關閉 CoreProtect v22.0-dev1 !
[19:16:58] [Region shutdown thread/INFO]: [DiscordSRV] Disabling DiscordSRV v1.26.3-SNAPSHOT
[19:16:58] [DiscordSRV - Shutdown/INFO]: [DiscordSRV] 已儲存已連結帳號,耗時2ms
[19:16:58] [DiscordSRV - Shutdown/INFO]: [DiscordSRV] 伺服器已關閉,耗時577ms
[19:16:58] [Region shutdown thread/INFO]: [EssentialsChat] Disabling EssentialsChat v2.20.0-dev+63-4256909
[19:16:58] [Region shutdown thread/INFO]: [EssentialsGeoIP] Disabling EssentialsGeoIP v2.20.0-dev+63-4256909
[19:16:58] [Region shutdown thread/INFO]: [EssentialsSpawn] Disabling EssentialsSpawn v2.20.0-dev+63-4256909
[19:16:58] [Region shutdown thread/INFO]: [FancyNpcs] Disabling FancyNpcs v1.2.1
[19:16:58] [Region shutdown thread/INFO]: [FramedImage] Disabling FramedImage v1.5
[19:16:58] [Region shutdown thread/INFO]: [GSit] Disabling GSit v1.4.5
[19:16:58] [Region shutdown thread/INFO]: [GSit] 插件已成功禁用
[19:16:58] [Region shutdown thread/INFO]: [HeadDrop] Disabling HeadDrop v4.20
[19:16:58] [Region shutdown thread/INFO]: HeadDrop Disabled.
[19:16:58] [Region shutdown thread/INFO]: [InvSee++_Clear] Disabling InvSeePlusPlus_Clear v0.22.2
[19:16:58] [Region shutdown thread/INFO]: [InvSee++_Give] Disabling InvSeePlusPlus_Give v0.22.2
[19:16:58] [Region shutdown thread/INFO]: [LiteBans] Disabling LiteBans v2.12.4
[19:16:58] [Region shutdown thread/INFO]: [LiteBans] litebans-pool - Shutdown initiated...
[19:16:58] [Region shutdown thread/INFO]: [LiteBans] litebans-pool - Shutdown completed.
[19:16:59] [Region shutdown thread/INFO]: [LiteBans] v2.12.4 disabled.
[19:16:59] [Region shutdown thread/INFO]: [MiniMOTD] Disabling MiniMOTD v2.0.12
[19:16:59] [Region shutdown thread/INFO]: [NFCNotes] Disabling NFCNotes v2.4.0
[19:16:59] [Region shutdown thread/INFO]: [NoCheatPlus] Disabling NoCheatPlus v3.17.1-SNAPSHOT-Updated-b164
[19:17:00] [Region shutdown thread/INFO]: [NoCheatPlus] Added hook: AllViolations(NCP) [1.0].
[19:17:00] [Region shutdown thread/INFO]: [NoCheatPlus] Added hook: ViolationFrequency(NCP) [1.0].
[19:17:00] [Region shutdown thread/INFO]: [NoCheatPlus] Removed hook: ViolationFrequency(NCP) [1.0].
[19:17:00] [Region shutdown thread/INFO]: [NoCheatPlus] Removed hook: AllViolations(NCP) [1.0].
[19:17:00] [Region shutdown thread/INFO]: [NoCheatPlus] Version 3.17.1-SNAPSHOT-Updated-b164 is disabled.
[19:17:00] [Region shutdown thread/INFO]: [BlockLocker] Disabling BlockLocker v1.12.1-SNAPSHOT
[19:17:00] [Region shutdown thread/INFO]: [Residence] Disabling Residence v5.1.1.3-Folia
[19:17:00] [Region shutdown thread/INFO]: [Residence] Disabled!
[19:17:00] [Region shutdown thread/INFO]: [Chunky] Disabling Chunky v1.3.92
[19:17:00] [Region shutdown thread/INFO]: [ViaBackwards] Disabling ViaBackwards v4.7.0
[19:17:00] [Region shutdown thread/INFO]: [InvSee++] Disabling InvSeePlusPlus v0.22.2
[19:17:00] [Region shutdown thread/INFO]: [CMILib] Disabling CMILib v1.3.0.2
[19:17:00] [Region shutdown thread/INFO]: [Essentials] Disabling Essentials v2.20.0-dev+63-4256909
[19:17:00] [Region shutdown thread/INFO]: [HuskHomes] Disabling HuskHomes v4.4
[19:17:00] [Region shutdown thread/INFO]: [HuskHomes] Successfully disabled HuskHomes v4.4
[19:17:00] [Region shutdown thread/INFO]: [Vault] Disabling Vault v1.7.3-b0-folia
[19:17:00] [Region shutdown thread/INFO]: [LuckPerms] Disabling LuckPerms v5.4.73
[19:17:00] [Region shutdown thread/INFO]: [LuckPerms] Starting shutdown process...
[19:17:00] [Region shutdown thread/INFO]: [LuckPerms] Closing storage...
[19:17:00] [Region shutdown thread/INFO]: [LuckPerms] Goodbye!
[19:17:00] [Region shutdown thread/INFO]: [ViaVersion] Disabling ViaVersion v4.7.0
[19:17:00] [Region shutdown thread/INFO]: [ViaVersion] ViaVersion is disabling, if this is a reload and you experience issues consider rebooting.
[19:17:00] [Region shutdown thread/INFO]: [RegionShutdownThread] Halting chunk systems
[19:17:00] [Region shutdown thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world'
[19:17:00] [Region shutdown thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world'
[19:17:00] [Region shutdown thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_nether'
[19:17:00] [Region shutdown thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_nether'
[19:17:00] [Region shutdown thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_the_end'
[19:17:00] [Region shutdown thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_the_end'
[19:17:00] [Region shutdown thread/INFO]: [RegionShutdownThread] Halted chunk systems
[19:17:00] [Region shutdown thread/INFO]: [RegionShutdownThread] Saving chunks around region around chunk [0, 0] in world 'world'
[19:17:01] [Region shutdown thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world' in 0.68s
[19:17:01] [Region shutdown thread/INFO]: [RegionShutdownThread] Saving chunks around region around chunk [0, 0] in world 'world_nether'
[19:17:01] [Region shutdown thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world_nether' in 0.49s
[19:17:01] [Region shutdown thread/INFO]: [RegionShutdownThread] Saving chunks around region around chunk [0, 0] in world 'world_the_end'
[19:17:01] [Region shutdown thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world_the_end' in 0.11s
[19:17:02] [Region shutdown thread/INFO]: [RegionShutdownThread] Saving players
[19:17:02] [Region shutdown thread/INFO]: Flushing Chunk IO
[19:17:02] [Region shutdown thread/INFO]: Closing Thread Pool
[19:17:02] [Region shutdown thread/INFO]: Closing Server