Paste #131487: Latest Log 2.0

Date: 2025/03/01 10:20:51 UTC-08: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
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189


[17:11:54] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.5+11-LTS; Eclipse Adoptium Temurin-21.0.5+11) on Linux 5.15.0-121-generic (amd64)
[17:11:54] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.3-76-master@27e4ddc (2024-11-30T10:07:53Z) for Minecraft 1.21.3
[17:11:55] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[17:11:56] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/Citizens-2.0.37-b3738.jar'...
[17:11:57] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/Citizens-2.0.37-b3738.jar' in 1188ms.
[17:11:58] [ServerMain/INFO]: [PluginInitializerManager] Initialized 49 plugins
[17:11:58] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (2):
 - ChessCraft (0.5.1), FancyNpcs (2.4.1.231)
[17:11:58] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (47):
 - AdvancedJobs (1.6.13), AdvancedModels (1.3.3), AuraSkills (2.2.6), ChatFeelings (4.14.4), ChatManager (4.0.2), Chunky (1.4.28), Citizens (2.0.37-SNAPSHOT (build 3738)), CustomAnvil (1.6.12), DecentHolograms (2.8.12), DragonSlayer (0.14.3_Jeppa), DragonTimer (1.5.13), EconomyBridge (1.2.0), EntityClearer (3.8.0), Essentials (2.20.1), EssentialsChat (2.20.1), EssentialsWarpGUI (3.1), ExcellentShop (4.13.0), GPExtension (4.5.31), GPFlags (5.13.6), GSit (2.2.0), Geyser-Spigot (2.6.1-SNAPSHOT), GriefPrevention (16.18.4), LevelledMobs (4.2.0.1 b93), LibsDisguises (10.0.44-SNAPSHOT), LuckPerms (5.4.146), Multiverse-Core (4.3.14), Multiverse-Inventories (4.2.6), MythicMobs (5.8.0-2df54aca), Orebfuscator (5.5.1), PlaceholderAPI (2.11.6), ProtocolLib (5.3.0), RealEstate (1.2), SetSpawn (5.3), SkipNight (1.8.2), Sleeper (1.6.2), StackMob (5.10.1), Telekinesis (1.5.2), TradeManager (1.4.0), Vault (1.7.3-b131), Veinminer (2.3.1), ViaVersion (5.2.1), WildRTP (2.6.1), WorldEdit (7.3.10-beta-01+cb9fd58), ajLeaderboards (2.9.0), floodgate (2.2.4-SNAPSHOT (b116-0e3163c)), nightcore (2.7.2), packetevents (2.7.0)
[17:12:00] [ServerMain/WARN]: resource-pack-id missing, using default of dd156e8c-5397-3af6-9381-61b032bed9a2
[17:12:00] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[17:12:00] [ServerMain/INFO]: [MCTypeRegistry] Initialising converters for DataConverter...
[17:12:01] [ServerMain/INFO]: [MCTypeRegistry] Finished initialising converters for DataConverter in 176.8ms
[17:12:03] [Worker-Main-1/ERROR]: Invalid path in pack: wasd.lib:function/util/on_join_TonsCatGang 1_21_3 (TonsCatGang).mcfunction, ignoring
[17:12:03] [ServerMain/INFO]: Loaded 1510 recipes
[17:12:03] [ServerMain/ERROR]: Failed to load function wasd.magic:zzz/69
java.util.concurrent.CompletionException: java.lang.IllegalArgumentException: Whilst parsing command on line 3: Can't find element 'wasd.lib:reverse_fall_damage' of type 'minecraft:damage_type' at position 41: ...all_damage<--[HERE]
    at java.base/java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:315) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:320) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1770) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.IllegalArgumentException: Whilst parsing command on line 3: Can't find element 'wasd.lib:reverse_fall_damage' of type 'minecraft:damage_type' at position 41: ...all_damage<--[HERE]
    at net.minecraft.commands.functions.CommandFunction.fromLines(CommandFunction.java:86) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.ServerFunctionLibrary.lambda$reload$3(ServerFunctionLibrary.java:92) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    ... 3 more
[17:12:03] [ServerMain/ERROR]: Failed to load function wasd.magic:zzz/68
java.util.concurrent.CompletionException: java.lang.IllegalArgumentException: Whilst parsing command on line 3: Can't find element 'wasd.lib:reverse_fall_damage' of type 'minecraft:damage_type' at position 41: ...all_damage<--[HERE]
    at java.base/java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:315) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:320) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1770) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.IllegalArgumentException: Whilst parsing command on line 3: Can't find element 'wasd.lib:reverse_fall_damage' of type 'minecraft:damage_type' at position 41: ...all_damage<--[HERE]
    at net.minecraft.commands.functions.CommandFunction.fromLines(CommandFunction.java:86) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.ServerFunctionLibrary.lambda$reload$3(ServerFunctionLibrary.java:92) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    ... 3 more
[17:12:03] [ServerMain/ERROR]: Failed to load function wasd.magic:zzz/67
java.util.concurrent.CompletionException: java.lang.IllegalArgumentException: Whilst parsing command on line 3: Can't find element 'wasd.lib:reverse_fall_damage' of type 'minecraft:damage_type' at position 41: ...all_damage<--[HERE]
    at java.base/java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:315) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:320) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1770) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.IllegalArgumentException: Whilst parsing command on line 3: Can't find element 'wasd.lib:reverse_fall_damage' of type 'minecraft:damage_type' at position 41: ...all_damage<--[HERE]
    at net.minecraft.commands.functions.CommandFunction.fromLines(CommandFunction.java:86) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.ServerFunctionLibrary.lambda$reload$3(ServerFunctionLibrary.java:92) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    ... 3 more
[17:12:03] [ServerMain/ERROR]: Failed to load function wasd.magic:zzz/76
java.util.concurrent.CompletionException: java.lang.IllegalArgumentException: Whilst parsing command on line 3: Can't find element 'wasd.lib:reverse_fall_damage' of type 'minecraft:damage_type' at position 41: ...all_damage<--[HERE]
    at java.base/java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:315) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:320) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1770) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.IllegalArgumentException: Whilst parsing command on line 3: Can't find element 'wasd.lib:reverse_fall_damage' of type 'minecraft:damage_type' at position 41: ...all_damage<--[HERE]
    at net.minecraft.commands.functions.CommandFunction.fromLines(CommandFunction.java:86) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.ServerFunctionLibrary.lambda$reload$3(ServerFunctionLibrary.java:92) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    ... 3 more
[17:12:03] [ServerMain/ERROR]: Failed to load function wasd.magic:zzz/75
java.util.concurrent.CompletionException: java.lang.IllegalArgumentException: Whilst parsing command on line 3: Can't find element 'wasd.lib:reverse_fall_damage' of type 'minecraft:damage_type' at position 41: ...all_damage<--[HERE]
    at java.base/java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:315) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:320) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1770) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.IllegalArgumentException: Whilst parsing command on line 3: Can't find element 'wasd.lib:reverse_fall_damage' of type 'minecraft:damage_type' at position 41: ...all_damage<--[HERE]
    at net.minecraft.commands.functions.CommandFunction.fromLines(CommandFunction.java:86) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.ServerFunctionLibrary.lambda$reload$3(ServerFunctionLibrary.java:92) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    ... 3 more
[17:12:03] [ServerMain/ERROR]: Failed to load function wasd.magic:zzz/74
java.util.concurrent.CompletionException: java.lang.IllegalArgumentException: Whilst parsing command on line 3: Can't find element 'wasd.lib:reverse_fall_damage' of type 'minecraft:damage_type' at position 41: ...all_damage<--[HERE]
    at java.base/java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:315) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:320) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1770) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.IllegalArgumentException: Whilst parsing command on line 3: Can't find element 'wasd.lib:reverse_fall_damage' of type 'minecraft:damage_type' at position 41: ...all_damage<--[HERE]
    at net.minecraft.commands.functions.CommandFunction.fromLines(CommandFunction.java:86) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.ServerFunctionLibrary.lambda$reload$3(ServerFunctionLibrary.java:92) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    ... 3 more
[17:12:03] [ServerMain/ERROR]: Failed to load function wasd.magic:zzz/79
java.util.concurrent.CompletionException: java.lang.IllegalArgumentException: Whilst parsing command on line 2: Can't find element 'wasd.lib:reverse_fall_damage' of type 'minecraft:damage_type' at position 40: ...all_damage<--[HERE]
    at java.base/java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:315) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:320) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1770) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.IllegalArgumentException: Whilst parsing command on line 2: Can't find element 'wasd.lib:reverse_fall_damage' of type 'minecraft:damage_type' at position 40: ...all_damage<--[HERE]
    at net.minecraft.commands.functions.CommandFunction.fromLines(CommandFunction.java:86) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.ServerFunctionLibrary.lambda$reload$3(ServerFunctionLibrary.java:92) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    ... 3 more
[17:12:03] [ServerMain/ERROR]: Failed to load function wasd.magic:zzz/48
java.util.concurrent.CompletionException: java.lang.IllegalArgumentException: Whilst parsing command on line 5: Can't find element 'wasd.lib:electric' of type 'minecraft:damage_type' at position 29: ...b:electric<--[HERE]
    at java.base/java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:315) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:320) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1770) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.IllegalArgumentException: Whilst parsing command on line 5: Can't find element 'wasd.lib:electric' of type 'minecraft:damage_type' at position 29: ...b:electric<--[HERE]
    at net.minecraft.commands.functions.CommandFunction.fromLines(CommandFunction.java:86) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.ServerFunctionLibrary.lambda$reload$3(ServerFunctionLibrary.java:92) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    ... 3 more
[17:12:03] [ServerMain/ERROR]: Failed to load function wasd.magic:zzz/59
java.util.concurrent.CompletionException: java.lang.IllegalArgumentException: Whilst parsing command on line 2: Can't find element 'wasd.lib:wind' of type 'minecraft:damage_type' at position 65: ...d.lib:wind<--[HERE]
    at java.base/java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:315) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:320) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1770) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.IllegalArgumentException: Whilst parsing command on line 2: Can't find element 'wasd.lib:wind' of type 'minecraft:damage_type' at position 65: ...d.lib:wind<--[HERE]
    at net.minecraft.commands.functions.CommandFunction.fromLines(CommandFunction.java:86) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.ServerFunctionLibrary.lambda$reload$3(ServerFunctionLibrary.java:92) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    ... 3 more
[17:12:03] [ServerMain/ERROR]: Failed to load function wasd.magic:zzz/58
java.util.concurrent.CompletionException: java.lang.IllegalArgumentException: Whilst parsing command on line 2: Can't find element 'wasd.lib:wind' of type 'minecraft:damage_type' at position 65: ...d.lib:wind<--[HERE]
    at java.base/java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:315) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:320) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1770) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.IllegalArgumentException: Whilst parsing command on line 2: Can't find element 'wasd.lib:wind' of type 'minecraft:damage_type' at position 65: ...d.lib:wind<--[HERE]
    at net.minecraft.commands.functions.CommandFunction.fromLines(CommandFunction.java:86) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.ServerFunctionLibrary.lambda$reload$3(ServerFunctionLibrary.java:92) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    ... 3 more
[17:12:03] [ServerMain/ERROR]: Failed to load function wasd.magic:zzz/57
java.util.concurrent.CompletionException: java.lang.IllegalArgumentException: Whilst parsing command on line 2: Can't find element 'wasd.lib:wind' of type 'minecraft:damage_type' at position 65: ...d.lib:wind<--[HERE]
    at java.base/java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:315) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:320) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1770) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.IllegalArgumentException: Whilst parsing command on line 2: Can't find element 'wasd.lib:wind' of type 'minecraft:damage_type' at position 65: ...d.lib:wind<--[HERE]
    at net.minecraft.commands.functions.CommandFunction.fromLines(CommandFunction.java:86) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.ServerFunctionLibrary.lambda$reload$3(ServerFunctionLibrary.java:92) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    ... 3 more
[17:12:03] [ServerMain/ERROR]: Failed to load function wasd.magic:zzz/50
java.util.concurrent.CompletionException: java.lang.IllegalArgumentException: Whilst parsing command on line 5: Can't find element 'wasd.lib:electric' of type 'minecraft:damage_type' at position 29: ...b:electric<--[HERE]
    at java.base/java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:315) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:320) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1770) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.IllegalArgumentException: Whilst parsing command on line 5: Can't find element 'wasd.lib:electric' of type 'minecraft:damage_type' at position 29: ...b:electric<--[HERE]
    at net.minecraft.commands.functions.CommandFunction.fromLines(CommandFunction.java:86) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.ServerFunctionLibrary.lambda$reload$3(ServerFunctionLibrary.java:92) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    ... 3 more
[17:12:03] [ServerMain/ERROR]: Failed to load function wasd.magic:zzz/49
java.util.concurrent.CompletionException: java.lang.IllegalArgumentException: Whilst parsing command on line 5: Can't find element 'wasd.lib:electric' of type 'minecraft:damage_type' at position 29: ...b:electric<--[HERE]
    at java.base/java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:315) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:320) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1770) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.IllegalArgumentException: Whilst parsing command on line 5: Can't find element 'wasd.lib:electric' of type 'minecraft:damage_type' at position 29: ...b:electric<--[HERE]
    at net.minecraft.commands.functions.CommandFunction.fromLines(CommandFunction.java:86) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.ServerFunctionLibrary.lambda$reload$3(ServerFunctionLibrary.java:92) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    ... 3 more
[17:12:03] [ServerMain/ERROR]: Couldn't load advancements: [minecraft:wander_add_map, minecraft:give_quest_trader_trade]
[17:12:03] [ServerMain/INFO]: Loaded 1766 advancements
[17:12:04] [Server thread/INFO]: Starting minecraft server version 1.21.3
[17:12:04] [Server thread/INFO]: Loading properties
[17:12:04] [Server thread/INFO]: This server is running Paper version 1.21.3-76-master@27e4ddc (2024-11-30T10:07:53Z) (Implementing API version 1.21.3-R0.1-SNAPSHOT)
[17:12:04] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[17:12:04] [Server thread/INFO]: Server Ping Player Sample Count: 12
[17:12:04] [Server thread/INFO]: Using 4 threads for Netty based IO
[17:12:04] [Server thread/INFO]: [MoonriseCommon] Paper is using 1 worker threads, 1 I/O threads
[17:12:04] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using population gen parallelism: true
[17:12:04] [Server thread/INFO]: Default game type: SURVIVAL
[17:12:04] [Server thread/INFO]: Generating keypair
[17:12:05] [Server thread/INFO]: Starting Minecraft server on 50.115.1.158:25565
[17:12:05] [Server thread/INFO]: Using epoll channel type
[17:12:05] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[17:12:05] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
[17:12:05] [Server thread/WARN]: [FancyNpcs] Loading Paper plugin in the legacy plugin loading logic. This is not recommended and may introduce some differences into load order. It's highly recommended you move away from this if you are wanting to use Paper plugins.
[17:12:05] [Server thread/WARN]: [ChessCraft] Loading Paper plugin in the legacy plugin loading logic. This is not recommended and may introduce some differences into load order. It's highly recommended you move away from this if you are wanting to use Paper plugins.
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loading 2 libraries... please wait
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/com/zaxxer/HikariCP/6.0.0/HikariCP-6.0.0.jar
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/it/unimi/dsi/fastutil-core/8.5.13/fastutil-core-8.5.13.jar
[17:12:05] [Server thread/INFO]: [nightcore] Server version detected as Paper 1.21.3.
[17:12:05] [Server thread/INFO]: [nightcore] [Core Components] ENTITY_ID_GENERATOR: Loaded
[17:12:05] [Server thread/INFO]: [nightcore] [Core Components] ITEM_NBT_COMPRESSOR: Loaded
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Veinminer] Loading 4 libraries... please wait
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Veinminer] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/org/jetbrains/kotlin/kotlin-stdlib/2.1.0/kotlin-stdlib-2.1.0.jar
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Veinminer] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/org/jetbrains/annotations/13.0/annotations-13.0.jar
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Veinminer] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/org/jetbrains/kotlinx/kotlinx-serialization-json/1.8.0/kotlinx-serialization-json-1.8.0.jar
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Veinminer] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/org/jetbrains/kotlinx/kotlinx-serialization-json-jvm/1.8.0/kotlinx-serialization-json-jvm-1.8.0.jar
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Veinminer] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/org/jetbrains/kotlinx/kotlinx-serialization-core-jvm/1.8.0/kotlinx-serialization-core-jvm-1.8.0.jar
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Veinminer] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/org/jetbrains/kotlinx/kotlinx-coroutines-core/1.10.1/kotlinx-coroutines-core-1.10.1.jar
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Veinminer] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/org/jetbrains/kotlinx/kotlinx-coroutines-core-jvm/1.10.1/kotlinx-coroutines-core-jvm-1.10.1.jar
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Veinminer] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/de/miraculixx/kpaper/1.2.1/kpaper-1.2.1.jar
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Veinminer] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/org/jetbrains/kotlinx/kotlinx-coroutines-jdk8/1.7.1/kotlinx-coroutines-jdk8-1.7.1.jar
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Veinminer] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.8.22/kotlin-stdlib-jdk8-1.8.22.jar
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Veinminer] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.8.22/kotlin-stdlib-jdk7-1.8.22.jar
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Custom Anvil] Loading 1 libraries... please wait
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Custom Anvil] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/org/jetbrains/kotlin/kotlin-stdlib/2.0.21/kotlin-stdlib-2.0.21.jar
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Custom Anvil] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/org/jetbrains/annotations/13.0/annotations-13.0.jar
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 5 libraries... please wait
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/ch/ethz/globis/phtree/phtree/2.8.1/phtree-2.8.1.jar
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/org/joml/joml/1.10.8/joml-1.10.8.jar
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/it/unimi/dsi/fastutil/8.5.15/fastutil-8.5.15.jar
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-platform-bukkit/4.3.3/adventure-platform-bukkit-4.3.3.jar
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-platform-api/4.3.3/adventure-platform-api-4.3.3.jar
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.3/adventure-text-serializer-bungeecord-4.3.3.jar
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-platform-facet/4.3.3/adventure-platform-facet-4.3.3.jar
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-platform-viaversion/4.3.3/adventure-platform-viaversion-4.3.3.jar
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-text-minimessage/4.17.0/adventure-text-minimessage-4.17.0.jar
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.jar
[17:12:05] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-key/4.17.0/adventure-key-4.17.0.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedJobs] Loading 2 libraries... please wait
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedJobs] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/com/zaxxer/HikariCP/3.4.5/HikariCP-3.4.5.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedJobs] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedJobs] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loading 4 libraries... please wait
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-api/4.16.0/adventure-api-4.16.0.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-key/4.16.0/adventure-key-4.16.0.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-platform-bukkit/4.3.2/adventure-platform-bukkit-4.3.2.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-platform-api/4.3.2/adventure-platform-api-4.3.2.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.2/adventure-text-serializer-bungeecord-4.3.2.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-platform-facet/4.3.2/adventure-platform-facet-4.3.2.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-platform-viaversion/4.3.2/adventure-platform-viaversion-4.3.2.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-text-minimessage/4.16.0/adventure-text-minimessage-4.16.0.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-text-serializer-gson/4.16.0/adventure-text-serializer-gson-4.16.0.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-text-serializer-json/4.16.0/adventure-text-serializer-json-4.16.0.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/option/1.0.0/option-1.0.0.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [GPExtension] Loading 5 libraries... please wait
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [GPExtension] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [GPExtension] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-key/4.17.0/adventure-key-4.17.0.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [GPExtension] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [GPExtension] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [GPExtension] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [GPExtension] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-text-serializer-legacy/4.17.0/adventure-text-serializer-legacy-4.17.0.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [GPExtension] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-text-serializer-gson/4.17.0/adventure-text-serializer-gson-4.17.0.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [GPExtension] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-text-serializer-json/4.17.0/adventure-text-serializer-json-4.17.0.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [GPExtension] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/option/1.0.0/option-1.0.0.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [GPExtension] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [GPExtension] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/com/google/auto/service/auto-service-annotations/1.1.1/auto-service-annotations-1.1.1.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [GPExtension] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/gs/mclo/api/4.0.3/api-4.0.3.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [GPExtension] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-platform-bukkit/4.3.3/adventure-platform-bukkit-4.3.3.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [GPExtension] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-platform-api/4.3.3/adventure-platform-api-4.3.3.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [GPExtension] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.3/adventure-text-serializer-bungeecord-4.3.3.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [GPExtension] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [GPExtension] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [GPExtension] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-platform-facet/4.3.3/adventure-platform-facet-4.3.3.jar
[17:12:06] [Server thread/INFO]: [SpigotLibraryLoader] [GPExtension] Loaded library /home/minecraft/multicraft/servers/server2597317/default/libraries/net/kyori/adventure-platform-viaversion/4.3.3/adventure-platform-viaversion-4.3.3.jar
[17:12:06] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.4.28
[17:12:06] [Server thread/INFO]: [Sleeper] Loading server plugin Sleeper v1.6.2
[17:12:06] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[17:12:06] [Server thread/INFO]: [WildRTP] Loading server plugin WildRTP v2.6.1
[17:12:06] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.2.1
[17:12:06] [Server thread/INFO]: [ViaVersion] ViaVersion 5.2.1 is now loaded. Registering protocol transformers and injecting...
[17:12:07] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[17:12:07] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[17:12:07] [Server thread/INFO]: [TradeManager] Loading server plugin TradeManager v1.4.0
[17:12:07] [Server thread/INFO]: [Telekinesis] Loading server plugin Telekinesis v1.5.2
[17:12:07] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.146
[17:12:07] [Server thread/INFO]: [FancyNpcs] Loading server plugin FancyNpcs v2.4.1.231
[17:12:07] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.12
[17:12:07] [Server thread/INFO]: [ChessCraft] Loading server plugin ChessCraft v0.5.1
[17:12:07] [Server thread/INFO]: [SetSpawn] Loading server plugin SetSpawn v5.3
[17:12:07] [Server thread/INFO]: [nightcore] Loading server plugin nightcore v2.7.2
[17:12:07] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.3.0
[17:12:07] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.21.3) has not yet been tested! Proceed with caution.
[17:12:07] [Server thread/INFO]: [Veinminer] Loading server plugin Veinminer v2.3.1
[17:12:07] [Server thread/INFO]: [SkipNight] Loading server plugin SkipNight v1.8.2
[17:12:07] [Server thread/INFO]: [EconomyBridge] Loading server plugin EconomyBridge v1.2.0
[17:12:07] [Server thread/INFO]: [Custom Anvil] Loading server plugin CustomAnvil v1.6.12
[17:12:07] [Server thread/INFO]: [floodgate] Loading server plugin floodgate v2.2.4-SNAPSHOT (b116-0e3163c)
[17:12:08] [Server thread/INFO]: [floodgate] Took 303ms to boot Floodgate
[17:12:08] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[17:12:08] [Server thread/INFO]: [Orebfuscator] Loading server plugin Orebfuscator v5.5.1
[17:12:08] [Server thread/INFO]: [Geyser-Spigot] Loading server plugin Geyser-Spigot v2.6.1-SNAPSHOT
[17:12:08] [Server thread/INFO]: [Geyser-Spigot] Loading extensions...
[17:12:08] [Server thread/INFO]: [Geyser-Spigot] Loaded 0 extension(s)
[17:12:08] [Server thread/INFO]: [WorldEdit] Loading server plugin WorldEdit v7.3.10-beta-01+cb9fd58
[17:12:09] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@33b3bc65]
[17:12:09] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.20.1
[17:12:09] [Server thread/INFO]: [EssentialsWarpGUI] Loading server plugin EssentialsWarpGUI v3.1
[17:12:09] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.14
[17:12:09] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.37-SNAPSHOT (build 3738)
[17:12:09] [Server thread/INFO]: [DragonSlayer] Loading server plugin DragonSlayer v0.14.3_Jeppa
[17:12:09] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.9.0
[17:12:09] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[17:12:09] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[17:12:09] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[17:12:09] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[17:12:09] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[17:12:09] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[17:12:09] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[17:12:09] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[17:12:09] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[17:12:09] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[17:12:09] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[17:12:09] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[17:12:09] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[17:12:09] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[17:12:09] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[17:12:09] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[17:12:09] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.20.1
[17:12:09] [Server thread/INFO]: [DragonTimer] Loading server plugin DragonTimer v1.5.13
[17:12:09] [Server thread/INFO]: [Multiverse-Inventories] Loading server plugin Multiverse-Inventories v4.2.6
[17:12:09] [Server thread/INFO]: [ChatFeelings] Loading server plugin ChatFeelings v4.14.4
[17:12:09] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.7.0
[17:12:10] [Server thread/INFO]: [AdvancedJobs] Loading server plugin AdvancedJobs v1.6.13
[17:12:10] [Server thread/INFO]: [ChatManager] Loading server plugin ChatManager v4.0.2
[17:12:10] [Server thread/INFO]: [LibsDisguises] Loading server plugin LibsDisguises v10.0.44-SNAPSHOT
[17:12:10] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.8.0-2df54aca
[17:12:10] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[17:12:10] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[17:12:10] [Server thread/INFO]: [LevelledMobs] Loading server plugin LevelledMobs v4.2.0.1 b93
[17:12:10] [Server thread/INFO]: [LevelledMobs] Loading commands
[17:12:10] [Server thread/INFO]: [AuraSkills] Loading server plugin AuraSkills v2.2.6
[17:12:10] [Server thread/INFO]: [StackMob] Loading server plugin StackMob v5.10.1
[17:12:10] [Server thread/INFO]: [EntityClearer] Loading server plugin EntityClearer v3.8.0
[17:12:10] [Server thread/INFO]: [GSit] Loading server plugin GSit v2.2.0
[17:12:10] [Server thread/INFO]: [AdvancedModels] Loading server plugin AdvancedModels v1.3.3
[17:12:10] [Server thread/INFO]: [ExcellentShop] Loading server plugin ExcellentShop v4.13.0
[17:12:10] [Server thread/INFO]: [GriefPrevention] Loading server plugin GriefPrevention v16.18.4
[17:12:10] [Server thread/INFO]: [RealEstate] Loading server plugin RealEstate v1.2
[17:12:10] [Server thread/INFO]: [GPExtension] Loading server plugin GPExtension v4.5.31
[17:12:10] [Server thread/INFO]: [GPFlags] Loading server plugin GPFlags v5.13.6
[17:12:10] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[17:12:10] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.146
[17:12:11] [Server thread/INFO]:         __    
[17:12:11] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.146
[17:12:11] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[17:12:11] [Server thread/INFO]: 
[17:12:11] [Server thread/INFO]: [LuckPerms] Loading configuration...
[17:12:11] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[17:12:11] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[17:12:12] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[17:12:12] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1380ms)
[17:12:12] [Server thread/INFO]: [nightcore] Enabling nightcore v2.7.2
[17:12:12] [Server thread/INFO]: [nightcore] Found economy provider: EssentialsX Economy
[17:12:12] [Server thread/INFO]: [nightcore] [DEBUG] Inject post-loading code...
[17:12:12] [Server thread/INFO]: [nightcore] Plugin loaded in 47 ms!
[17:12:12] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.3.0
[17:12:12] [Server thread/INFO]: [Veinminer] Enabling Veinminer v2.3.1
[17:12:12] [Server thread/INFO]: [EconomyBridge] Enabling EconomyBridge v1.2.0
[17:12:12] [Server thread/INFO]: [EconomyBridge] Powered by nightcore
[17:12:12] [Server thread/INFO]: [EconomyBridge] Registered 'dummy' item handler.
[17:12:12] [Server thread/INFO]: [EconomyBridge] Currency registered: 'xp_points'.
[17:12:12] [Server thread/INFO]: [EconomyBridge] Currency registered: 'xp_level'.
[17:12:12] [Server thread/INFO]: [EconomyBridge] Currency registered: 'gold'.
[17:12:12] [Server thread/INFO]: [EconomyBridge] Currency registered: 'diamond'.
[17:12:12] [Server thread/INFO]: [EconomyBridge] Currency registered: 'emerald'.
[17:12:12] [Server thread/INFO]: [EconomyBridge] [DEBUG] Inject post-loading code...
[17:12:12] [Server thread/INFO]: [EconomyBridge] Plugin loaded in 87 ms!
[17:12:12] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[17:12:12] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[17:12:12] [Server thread/INFO]: [nightcore] Found permissions provider: SuperPerms
[17:12:12] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[17:12:12] [DefaultDispatcher-worker-1/INFO]: [VeinminerUpdater] veinminer is outdated. Installed: 2.3.1 -> Latest: 2.3.2
[17:12:12] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[17:12:12] [Server thread/INFO]: [nightcore] Found chat provider: LuckPerms
[17:12:12] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[17:12:12] [Server thread/INFO]: [EconomyBridge] Vault detected! Loading currency...
[17:12:12] [Server thread/INFO]: [EconomyBridge] Currency registered: 'vault'.
[17:12:12] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.3.10-beta-01+cb9fd58
[17:12:12] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[17:12:12] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[17:12:13] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_21_3.PaperweightAdapter as the Bukkit adapter
[17:12:13] [Server thread/INFO]: Preparing level "TonsCatGangworld"
[17:12:14] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[17:12:14] [Server thread/INFO]: Preparing spawn area: 0%
[17:12:15] [Server thread/INFO]: Preparing spawn area: 0%
[17:12:15] [Server thread/INFO]: Time elapsed: 801 ms
[17:12:15] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[17:12:15] [Server thread/INFO]: Preparing spawn area: 0%
[17:12:16] [Server thread/INFO]: Time elapsed: 509 ms
[17:12:16] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[17:12:16] [Server thread/INFO]: Preparing spawn area: 0%
[17:12:16] [Server thread/INFO]: Time elapsed: 290 ms
[17:12:16] [Server thread/INFO]: [Chunky] Enabling Chunky v1.4.28
[17:12:16] [Server thread/INFO]: [Sleeper] Enabling Sleeper v1.6.2
[17:12:16] [Server thread/INFO]: [Sleeper] Sleeper Version 1.6.2 Has Been Enabled!
[17:12:16] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[17:12:16] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[17:12:16] [Server thread/INFO]: [WildRTP] Enabling WildRTP v2.6.1
[17:12:16] [Server thread/INFO]: [WildRTP] WildRTP by Joni
[17:12:16] [Server thread/INFO]: [WildRTP] Thank you for using my plugin!
[17:12:16] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.2.1
[17:12:16] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21.2-1.21.3 (768)
[17:12:17] [Server thread/INFO]: [TradeManager] Enabling TradeManager v1.4.0
[17:12:17] [Thread-16/INFO]: [WildRTP] You are running the latest version!
[17:12:17] [Server thread/INFO]: [Telekinesis] Enabling Telekinesis v1.5.2
[17:12:17] [Server thread/INFO]: [Telekinesis] Telekinesis has been enabled!
[17:12:17] [Server thread/INFO]: [Telekinesis] MythicMobs integration enabled!
[17:12:17] [Server thread/INFO]: [FancyNpcs] Enabling FancyNpcs v2.4.1.231
[17:12:18] [Thread-17/WARN]: [FancyNpcs] 
-------------------------------------------------------
You are not using the latest version of the FancyNpcs plugin.
Please update to the newest version (2.4.2).
https://modrinth.com/plugin/FancyNpcs
-------------------------------------------------------

[17:12:18] [FancyLogger/INFO]: [FancyNpcs] (Thread-17) WARN: You are not using the latest version of the FancyNpcs plugin.
[17:12:18] [FancyLogger/INFO]: [FancyNpcs] (Server thread) INFO: FancyNpcs (2.4.1.231) has been enabled.
[17:12:18] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.12
[17:12:18] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.3! Trying to find NMS support
[17:12:18] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R2' loaded!
[17:12:18] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[17:12:18] [Server thread/INFO]: [ChessCraft] Enabling ChessCraft v0.5.1
[17:12:18] [Server thread/INFO]: [ChessCraft] Initializing database...
[17:12:18] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ChessCraft-HikariPool - Starting...
[17:12:19] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] ChessCraft-HikariPool - Added connection conn0: url=jdbc:h2:/home/minecraft/multicraft/servers/server2597317/default/plugins/ChessCraft/database user=
[17:12:19] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ChessCraft-HikariPool - Start completed.
[17:12:19] [Server thread/INFO]: [org.flywaydb.core.FlywayExecutor] Database: jdbc:h2:/home/minecraft/multicraft/servers/server2597317/default/plugins/ChessCraft/database (H2 2.3)
[17:12:20] [Server thread/INFO]: [org.flywaydb.core.internal.command.DbValidate] Successfully validated 1 migration (execution time 00:00.072s)
[17:12:20] [Server thread/INFO]: [org.flywaydb.core.internal.command.DbMigrate] Current version of schema "PUBLIC": 1
[17:12:20] [Server thread/INFO]: [org.flywaydb.core.internal.command.DbMigrate] Schema "PUBLIC" is up to date. No migration necessary.
[17:12:20] [Server thread/INFO]: [ChessCraft] Done.
[17:12:20] [Server thread/INFO]: [SetSpawn] Enabling SetSpawn v5.3
[17:12:20] [Server thread/INFO]: [SetSpawn] Enabled!
[17:12:20] [Server thread/INFO]: [SkipNight] Enabling SkipNight v1.8.2
[17:12:21] [Server thread/INFO]: [SkipNight] PlayerActivity not found, disabling Idle/Away features
[17:12:21] [Server thread/INFO]: [SkipNight] SkipNight loaded - By mattboy9921 (Special thanks to RoyCurtis, iamliammckimm, CRX VrynzX, Scarsz, Aikar, mbaxter, zml, Selida and ViMaSter)
[17:12:21] [Server thread/INFO]: [Custom Anvil] Enabling CustomAnvil v1.6.12
[17:12:21] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.4-SNAPSHOT (b116-0e3163c)
[17:12:21] [Server thread/INFO]: [Orebfuscator] Enabling Orebfuscator v5.5.1
[17:12:21] [Server thread/INFO]: [Geyser-Spigot] Enabling Geyser-Spigot v2.6.1-SNAPSHOT
[17:12:22] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.1
[17:12:22] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[17:12:22] [Server thread/WARN]: [Essentials] Version mismatch! Please update EssentialsWarpGUI to the same version.
[17:12:22] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[17:12:22] [Server thread/INFO]: [Essentials] No kits found to migrate.
[17:12:22] [Server thread/INFO]: [Essentials] Loaded 39094 items from items.json.
[17:12:22] [Server thread/INFO]: [Essentials] Using locale en_US
[17:12:22] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[17:12:22] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[17:12:22] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[17:12:22] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[17:12:22] [Server thread/INFO]: [EssentialsWarpGUI] Enabling EssentialsWarpGUI v3.1
[17:12:22] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.14
[17:12:22] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.14" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[17:12:22] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[17:12:22] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: TonsCatGang
[17:12:22] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[17:12:23] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn
[17:12:23] [Server thread/INFO]: Preparing spawn area: 0%
[17:12:23] [Server thread/INFO]: Time elapsed: 767 ms
[17:12:24] [Server thread/INFO]: Preparing start region for dimension minecraft:terra
[17:12:24] [Server thread/INFO]: Preparing spawn area: 0%
[17:12:24] [Server thread/INFO]: Time elapsed: 117 ms
[17:12:24] [Server thread/INFO]: [Multiverse-Core] 5 - World(s) loaded.
[17:12:24] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[17:12:24] [Server thread/INFO]: [Multiverse-Core] Version 4.3.14 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[17:12:24] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.37-SNAPSHOT (build 3738)
[17:12:24] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[17:12:24] [Server thread/ERROR]: Error occurred while enabling Citizens v2.0.37-SNAPSHOT (build 3738) (Is it up to date?)
java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_21_R3/boss/CraftBossBar
    at Citizens-2.0.37-b3738.jar/net.citizensnpcs.nms.v1_21_R3.util.NMSImpl.<clinit>(NMSImpl.java:2735) ~[Citizens-2.0.37-b3738.jar:?]
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:534) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:513) ~[?:?]
    at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.forName(AbstractDefaultRulesReflectionProxy.java:68) ~[reflection-rewriter-runtime-0.0.3.jar:?]
    at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.forName(Unknown Source) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at Citizens-2.0.37-b3738.jar/net.citizensnpcs.api.util.SpigotUtil.lambda$getMinecraftPackage$1(SpigotUtil.java:176) ~[Citizens-2.0.37-b3738.jar:?]
    at Citizens-2.0.37-b3738.jar/net.citizensnpcs.api.util.SpigotUtil.getMinecraftPackage(SpigotUtil.java:181) ~[Citizens-2.0.37-b3738.jar:?]
    at Citizens-2.0.37-b3738.jar/net.citizensnpcs.Citizens.onEnable(Citizens.java:326) ~[Citizens-2.0.37-b3738.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:768) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:530) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:326) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1234) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_21_R3.boss.CraftBossBar
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 21 more
[17:12:24] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.37-SNAPSHOT (build 3738)
[17:12:24] [Server thread/INFO]: [DragonSlayer] Enabling DragonSlayer v0.14.3_Jeppa
[17:12:24] [Server thread/INFO]: [DragonSlayer] Checking for updates...
[17:12:24] [Server thread/INFO]: [DragonSlayer] You're running the latest plugin version!
[17:12:24] [Server thread/INFO]: [DragonSlayer] Events 1.9+ enabled!
[17:12:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: dragonslayer [0.14.3_Jeppa]
[17:12:24] [Server thread/INFO]: [DragonSlayer] ProtocolLib found...
[17:12:24] [Server thread/INFO]: [DragonSlayer] ...starting Metrics...
[17:12:24] [Server thread/INFO]: [DragonSlayer] Vault dependency found, rewards will be enabled!
[17:12:25] [Server thread/INFO]: [DragonSlayer] PlaceholderAPI found, will be used!
[17:12:25] [Server thread/INFO]: [DragonSlayer] Essentials found, will be used!
[17:12:25] [Server thread/INFO]: [DragonSlayer] EssentialsChat found, will be used!
[17:12:25] [Server thread/INFO]: [DragonSlayer] 1 endgateways found on TonsCatGangworld_the_end with 19 free slots...
[17:12:25] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.9.0
[17:12:25] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[17:12:26] [Server thread/INFO]: [ajLeaderboards] Loaded 36 boards
[17:12:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.9.0]
[17:12:26] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[17:12:26] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.9.0 by ajgeiss0702 enabled!
[17:12:26] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.20.1
[17:12:26] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[17:12:26] [Server thread/INFO]: [DragonTimer] Enabling DragonTimer v1.5.13
[17:12:26] [Server thread/INFO]: [DragonTimer] Checking for updates...
[17:12:26] [Server thread/INFO]: [DragonTimer] You're running the latest plugin version!
[17:12:26] [Server thread/INFO]: [DragonTimer] DragonSlayer found, will be used!
[17:12:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: dragontimer [1.5.13]
[17:12:26] [Server thread/INFO]: [DragonTimer] PlaceholderAPI found, will be used!
[17:12:26] [Server thread/INFO]: [Multiverse-Inventories] Enabling Multiverse-Inventories v4.2.6
[17:12:26] [Server thread/INFO]: [Multiverse-Inventories 4.2.6] enabled.
[17:12:26] [Server thread/INFO]: [ChatFeelings] Enabling ChatFeelings v4.14.4
[17:12:26] [Server thread/INFO]: [ChatFeelings] Checking repository to maximize support...
[17:12:27] [Server thread/INFO]: [ChatFeelings] Hooking into Essentials...
[17:12:27] [Server thread/INFO]: [ChatFeelings] Hooking into PlaceholderAPI...
[17:12:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chatfeelings [4.14.4]
[17:12:27] [Server thread/INFO]: [packetevents] Enabling packetevents v2.7.0
[17:12:27] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[17:12:27] [Server thread/INFO]: [AdvancedJobs] Enabling AdvancedJobs v1.6.13
[17:12:27] [packetevents-update-check-thread/INFO]: [packetevents] You are running the latest release of PacketEvents. Your build: (2.7.0)
[17:12:28] [pool-46-thread-1/INFO]: [ajLeaderboards] You are up to date! (2.9.0)
[17:12:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedjobs [1.0.0]
[17:12:28] [Server thread/INFO]: [ChatManager] Enabling ChatManager v4.0.2
[17:12:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chatmanager [4.0.2]
[17:12:28] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v10.0.44-SNAPSHOT
[17:12:28] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises (1).jar
[17:12:28] [Server thread/INFO]: [LibsDisguises] Discovered nms version: (Package: {Not package relocated}) (LD: v1_21_R2) (MC: 1.21.3)
[17:12:28] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1534
[17:12:28] [Server thread/INFO]: [LibsDisguises] Build Date: 19/02/2025 04:09
[17:12:28] [Server thread/ERROR]: [LibsDisguises] You are running an outdated version of Minecraft, you are currently using 1.21.3, you should update to a minimum of 1.21.4
[17:12:29] [Server thread/INFO]: [LibsDisguises] If you own the plugin, place the premium jar downloaded from https://www.spigotmc.org/resources/libs-disguises.32453/ in plugins/LibsDisguises/
[17:12:29] [Server thread/INFO]: [LibsDisguises] You are running the free version, commands limited to non-players and operators. (Console, Command Blocks, Admins)
[17:12:29] [Server thread/INFO]: [LibsDisguises] Config 'TallSelfDisguises' is set to 'SCALED', LD will scale down (when possible) oversized disguises from self disguise. https://www.spigotmc.org/wiki/lib-s-disguises-faq/#tall-disguises-self-disguises
[17:12:30] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[17:12:30] [Server thread/INFO]: [LibsDisguises] Loaded 1 custom disguise
[17:12:30] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[17:12:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: libsdisguises [1.0.0]
[17:12:30] [Server thread/INFO]: [LibsDisguises] PlaceholderAPI support enabled
[17:12:30] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.8.0-2df54aca
[17:12:30] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.21.3)...
[17:12:30] [Server thread/INFO]: [MythicMobs] The server is running Paper; enabled Paper exclusive functionality
[17:12:31] [Server thread/INFO]: [MythicMobs] Mythic Citizens Support has been enabled!
[17:12:31] [Server thread/INFO]: [MythicMobs] Mythic GriefPrevention Support has been enabled!
[17:12:31] [Server thread/INFO]: [MythicMobs] Mythic LibsDisguises Support has been enabled!
[17:12:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[17:12:31] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[17:12:31] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[17:12:31] [Server thread/INFO]: [MythicMobs] Base directory /home/minecraft/multicraft/servers/server2597317/default/plugins/MythicMobs/data
[17:12:31] [Server thread/INFO]: [MythicMobs] Module directory /home/minecraft/multicraft/servers/server2597317/default/plugins/MythicMobs/data/worlds
[17:12:33] [Server thread/INFO]: [MythicMobs] Loading Packs...
[17:12:33] [Server thread/INFO]: [MythicMobs] Loading Items...
[17:12:33] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[17:12:33] [Server thread/INFO]: [MythicMobs] Loading Skills...
[17:12:33] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[17:12:33] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[17:12:33] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[17:12:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 9 mobs.
[17:12:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[17:12:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[17:12:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 38 skills.
[17:12:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 random spawns.
[17:12:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 mythic items.
[17:12:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[17:12:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[17:12:33] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[17:12:34] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[17:12:34] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs Premium v5.8.0 ( build 2df54aca ) has been successfully loaded!
[17:12:34] [Server thread/INFO]: [LevelledMobs] Enabling LevelledMobs v4.2.0.1 b93
[17:12:34] [Server thread/INFO]: [LevelledMobs] Enabling commands
[17:12:34] [Server thread/INFO]: [LevelledMobs] Building reflection cache, use simple names: true
[17:12:34] [Server thread/INFO]: [LevelledMobs] Using NMS version 1.21.3 for nametag support
[17:12:34] [Server thread/INFO]: [LevelledMobs] File Loader: Loading files...
[17:12:34] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'settings.yml'...
[17:12:34] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'messages.yml'...
[17:12:34] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'externalplugins.yml'...
[17:12:34] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'rules.yml'...
[17:12:34] [Server thread/INFO]: [LevelledMobs] Current rules hash: 00cc5f98e394bdc782052a9cc8ff42fd56c11d060978e61728af13be264c6ef0
[17:12:34] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'customdrops.yml'...
[17:12:34] [Server thread/INFO]: [LevelledMobs] Listeners: Registering event listeners...
[17:12:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: LevelledMobs [4.2.0.1 b93]
[17:12:34] [Server thread/INFO]: [LevelledMobs] Running misc procedures
[17:12:34] [Server thread/INFO]: [LevelledMobs] Tasks: Starting async nametag auto update task...
[17:12:34] [Server thread/INFO]: [LevelledMobs] Start-up complete (took 178ms)
[17:12:34] [Server thread/INFO]: [AuraSkills] Enabling AuraSkills v2.2.6
[17:12:34] [Server thread/INFO]: [AuraSkills] Loaded 21 message files
[17:12:34] [Server thread/WARN]: java.lang.reflect.InvocationTargetException
[17:12:34] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:74)
[17:12:34] [Server thread/WARN]:     at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502)
[17:12:35] [Server thread/WARN]:     at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486)
[17:12:35] [Server thread/WARN]:     at AuraSkills-2.2.6.jar//dev.aurelium.auraskills.bukkit.hooks.HookRegistrar.createHook(HookRegistrar.java:62)
[17:12:35] [Server thread/WARN]:     at AuraSkills-2.2.6.jar//dev.aurelium.auraskills.bukkit.hooks.HookRegistrar.registerHooks(HookRegistrar.java:38)
[17:12:35] [Server thread/WARN]:     at AuraSkills-2.2.6.jar//dev.aurelium.auraskills.bukkit.config.BukkitConfigProvider.loadOptions(BukkitConfigProvider.java:78)
[17:12:35] [Server thread/WARN]:     at AuraSkills-2.2.6.jar//dev.aurelium.auraskills.bukkit.AuraSkills.onEnable(AuraSkills.java:211)
[17:12:35] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[17:12:35] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[17:12:35] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[17:12:35] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[17:12:35] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655)
[17:12:35] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604)
[17:12:35] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:768)
[17:12:35] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:530)
[17:12:35] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:326)
[17:12:35] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1234)
[17:12:35] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340)
[17:12:35] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[17:12:35] [Server thread/WARN]: Caused by: java.lang.IllegalArgumentException: No enum constant org.bukkit.ChatColor.GREY
[17:12:35] [Server thread/WARN]:     at java.base/java.lang.Enum.valueOf(Enum.java:293)
[17:12:35] [Server thread/WARN]:     at org.bukkit.ChatColor.valueOf(ChatColor.java:15)
[17:12:35] [Server thread/WARN]:     at AuraSkills-2.2.6.jar//dev.aurelium.auraskills.bukkit.hooks.HologramsHook.lambda$loadConfig$0(HologramsHook.java:42)
[17:12:35] [Server thread/WARN]:     at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197)
[17:12:35] [Server thread/WARN]:     at java.base/java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1708)
[17:12:35] [Server thread/WARN]:     at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509)
[17:12:35] [Server thread/WARN]:     at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499)
[17:12:35] [Server thread/WARN]:     at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:575)
[17:12:35] [Server thread/WARN]:     at java.base/java.util.stream.AbstractPipeline.evaluateToArrayNode(AbstractPipeline.java:260)
[17:12:35] [Server thread/WARN]:     at java.base/java.util.stream.ReferencePipeline.toArray(ReferencePipeline.java:616)
[17:12:35] [Server thread/WARN]:     at java.base/java.util.stream.ReferencePipeline.toArray(ReferencePipeline.java:622)
[17:12:35] [Server thread/WARN]:     at java.base/java.util.stream.ReferencePipeline.toList(ReferencePipeline.java:627)
[17:12:35] [Server thread/WARN]:     at AuraSkills-2.2.6.jar//dev.aurelium.auraskills.bukkit.hooks.HologramsHook.loadConfig(HologramsHook.java:43)
[17:12:35] [Server thread/WARN]:     at AuraSkills-2.2.6.jar//dev.aurelium.auraskills.bukkit.hooks.HologramsHook.<init>(HologramsHook.java:36)
[17:12:35] [Server thread/WARN]:     at AuraSkills-2.2.6.jar//dev.aurelium.auraskills.bukkit.hooks.DecentHologramsHook.<init>(DecentHologramsHook.java:19)
[17:12:35] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62)
[17:12:35] [Server thread/WARN]:     ... 18 more
[17:12:35] [Server thread/WARN]: [AuraSkills] Failed to register hook DecentHolograms: Failed to construct hook using reflection: null
[17:12:35] [Server thread/WARN]: dev.aurelium.auraskills.common.hooks.HookRegistrationException: Failed to construct hook using reflection: null
[17:12:35] [Server thread/WARN]:     at AuraSkills-2.2.6.jar//dev.aurelium.auraskills.bukkit.hooks.HookRegistrar.createHook(HookRegistrar.java:65)
[17:12:35] [Server thread/WARN]:     at AuraSkills-2.2.6.jar//dev.aurelium.auraskills.bukkit.hooks.HookRegistrar.registerHooks(HookRegistrar.java:38)
[17:12:35] [Server thread/WARN]:     at AuraSkills-2.2.6.jar//dev.aurelium.auraskills.bukkit.config.BukkitConfigProvider.loadOptions(BukkitConfigProvider.java:78)
[17:12:35] [Server thread/WARN]:     at AuraSkills-2.2.6.jar//dev.aurelium.auraskills.bukkit.AuraSkills.onEnable(AuraSkills.java:211)
[17:12:35] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[17:12:35] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[17:12:35] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[17:12:35] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[17:12:35] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655)
[17:12:35] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604)
[17:12:35] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:768)
[17:12:35] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:530)
[17:12:35] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:326)
[17:12:35] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1234)
[17:12:35] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340)
[17:12:35] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[17:12:35] [Server thread/INFO]: [AuraSkills] Successfully registered hook LuckPerms
[17:12:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: auraskills [2.2.6]
[17:12:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aureliumskills [2.2.6]
[17:12:35] [Server thread/INFO]: [AuraSkills] Successfully registered hook PlaceholderAPI
[17:12:35] [Server thread/INFO]: [AuraSkills] Successfully registered hook ProtocolLib
[17:12:35] [Server thread/INFO]: [AuraSkills] Successfully registered hook Vault
[17:12:35] [Server thread/INFO]: [AuraSkills] Successfully registered hook MythicMobs
[17:12:35] [Server thread/INFO]: [AuraSkills] Loaded 150 config options in 91 ms
[17:12:35] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.3! Trying to find NMS support
[17:12:35] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R2' loaded!
[17:12:35] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AuraSkills' to create a bStats instance!
[17:12:35] [Server thread/INFO]: [AuraSkills] Loaded 3 blocked/disabled worlds
[17:12:35] [Server thread/INFO]: [AuraSkills] [ACF] Enabled Asynchronous Tab Completion Support!
[17:12:35] [Server thread/INFO]: [StackMob] Enabling StackMob v5.10.1
[17:12:35] [Server thread/INFO]: [StackMob] StackMob v5.10.1 by antiPerson and contributors.
[17:12:35] [Server thread/INFO]: [StackMob] GitHub: https://github.com/Nathat23/StackMob-5 Discord: https://discord.gg/fz9xzuB
[17:12:35] [Server thread/INFO]: [StackMob] Loading config files...
[17:12:35] [Server thread/INFO]: [StackMob] Registering hooks and trait checks...
[17:12:35] [Server thread/INFO]: [StackMob] Registering events, commands and tasks...
[17:12:35] [Server thread/INFO]: [StackMob] Detected server version V1_21
[17:12:35] [Server thread/INFO]: [EntityClearer] Enabling EntityClearer v3.8.0
[17:12:35] [Thread-26/INFO]: [StackMob] A new version is currently available. (5.10.2)
[17:12:35] [Server thread/INFO]: [EntityClearer] Enabled MythicMobs hook!
[17:12:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: entityclearer [1]
[17:12:35] [Server thread/INFO]: [EntityClearer] Enabled PlaceholderAPI hook!
[17:12:35] [Server thread/INFO]: [GSit] Enabling GSit v2.2.0
[17:12:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [2.2.0]
[17:12:35] [Server thread/INFO]: [GSit] The plugin was successfully enabled.
[17:12:35] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
[17:12:35] [Server thread/INFO]: [AdvancedModels] Enabling AdvancedModels v1.3.3
[17:12:36] [Server thread/INFO]: [AdvancedModels] Loaded 47 models successfully.
[17:12:36] [Server thread/INFO]: [ExcellentShop] Enabling ExcellentShop v4.13.0
[17:12:36] [Server thread/INFO]: [ExcellentShop] Powered by nightcore
[17:12:36] [Server thread/INFO]: [ExcellentShop] Read database configuration...
[17:12:36] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[17:12:36] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@11ddfeed
[17:12:36] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[17:12:36] [Server thread/INFO]: [ExcellentShop] Registered 'dummy' product handler.
[17:12:36] [Server thread/INFO]: [ExcellentShop] Registered 'bukkit_item' product handler.
[17:12:36] [Server thread/INFO]: [ExcellentShop] Registered 'bukkit_command' product handler.
[17:12:36] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[17:12:36] [Server thread/INFO]: [ExcellentShop] Loaded 1 product cart UIs!
[17:12:36] [Server thread/INFO]: [ExcellentShop] [Virtual Shop] Static Shops Loaded: 1
[17:12:36] [Server thread/INFO]: [ExcellentShop] [Virtual Shop] Rotating Shops Loaded: 0
[17:12:36] [Server thread/INFO]: [ExcellentShop] [Virtual Shop] Loaded 1 shop layouts!
[17:12:36] [Server thread/ERROR]: [ExcellentShop] [Auction] Unknown currency: ''. Skipping.
[17:12:36] [Server thread/INFO]: [ExcellentShop] [Auction] Allowed currencies: [vault]
[17:12:36] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Starting...
[17:12:36] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-2 - Added connection org.sqlite.jdbc4.JDBC4Connection@67b21559
[17:12:36] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Start completed.
[17:12:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentshop [4.13.0]
[17:12:36] [Server thread/INFO]: [ExcellentShop] [DEBUG] Inject post-loading code...
[17:12:36] [Server thread/INFO]: [ExcellentShop] Plugin loaded in 599 ms!
[17:12:36] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.18.4
[17:12:36] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
[17:12:36] [Server thread/INFO]: [GriefPrevention] 77 total claims loaded.
[17:12:37] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
[17:12:37] [Server thread/INFO]: [GriefPrevention] Finished loading data (File Mode).
[17:12:37] [Server thread/INFO]: [GriefPrevention] Boot finished.
[17:12:37] [Server thread/INFO]: [RealEstate] Enabling RealEstate v1.2
[17:12:37] [Server thread/INFO]: [RealEstate] Vault has been detected and enabled.
[17:12:37] [Server thread/INFO]: [RealEstate] Vault is using EssentialsX Economy as the economy plugin.
[17:12:37] [Server thread/INFO]: [RealEstate] Vault is using LuckPerms for the permissions.
[17:12:37] [Server thread/INFO]: [RealEstate] Found WorldEdit, using version 7.3.10-beta-01+cb9fd58
[17:12:37] [Server thread/INFO]: [RealEstate] Found Essentials, using version 2.20.1
[17:12:37] [Server thread/INFO]: [RealEstate] Customizable messages loaded.
[17:12:37] [Server thread/INFO]: [RealEstate] /resources/schematics
[17:12:37] [Server thread/INFO]: [RealEstate] plugins/RealEstate/schematics
[17:12:37] [Server thread/INFO]: [RealEstate] /resources/schematics/.includeme
[17:12:37] [Server thread/INFO]: [RealEstate] plugins/RealEstate/schematics/.includeme
[17:12:37] [Server thread/INFO]: [RealEstate] /resources/languages
[17:12:37] [Server thread/INFO]: [RealEstate] plugins/RealEstate/languages
[17:12:37] [Server thread/INFO]: [RealEstate] /resources/languages/pt-br.yml
[17:12:37] [Server thread/INFO]: [RealEstate] plugins/RealEstate/languages/pt-br.yml
[17:12:37] [Server thread/INFO]: [RealEstate] /resources/Abandoned_inventories
[17:12:37] [Server thread/INFO]: [RealEstate] plugins/RealEstate/Abandoned_inventories
[17:12:37] [Server thread/INFO]: [RealEstate] /resources/Abandoned_inventories/.includeme
[17:12:37] [Server thread/INFO]: [RealEstate] plugins/RealEstate/Abandoned_inventories/.includeme
[17:12:37] [Server thread/INFO]: [GPExtension] Enabling GPExtension v4.5.31
[17:12:37] [Server thread/INFO]: [GriefPrevGUI] Paper detected, using PaperCommandManager
[17:12:37] [Server thread/INFO]: [GPExtension] [ACF] Enabled Asynchronous Tab Completion Support!
[17:12:38] [Server thread/INFO]: [GPFlags] Enabling GPFlags v5.13.6
[17:12:38] [Server thread/INFO]: [GPFlags] Finished loading configuration.
[17:12:38] [Server thread/INFO]: [GPFlags] Finished loading data.
[17:12:38] [Server thread/INFO]: [GPFlags] Successfully loaded in 0.84 seconds
[17:12:39] [Thread-31/WARN]: [GPFlags] You are using GPFlags version 5.13.6 which is outdated. Please update to version 5.13.7 at https://modrinth.com/plugin/gpflags.
[17:12:39] [Server thread/INFO]: [spark] Starting background profiler...
[17:12:39] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[17:12:39] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[17:12:39] [Server thread/INFO]: [Geyser-Spigot] 
[17:12:39] [Server thread/INFO]: [Geyser-Spigot] Loading Geyser version 2.6.1-b764 (git-master-778c081)
[17:12:39] [Server thread/INFO]: [Geyser-Spigot] 
[17:12:39] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[17:12:42] [epollEventLoopGroup-4-1/INFO]: [Geyser-Spigot] Started Geyser on 50.115.1.158:25565
[17:12:42] [Server thread/INFO]: [Geyser-Spigot] Done (2.792s)! Run /geyser help for help!
[17:12:42] [Server thread/INFO]: Done preparing level "TonsCatGangworld" (28.551s)
[17:12:42] [Server thread/INFO]: Running delayed init tasks
[17:12:42] [Craft Scheduler Thread - 7 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[17:12:42] [Craft Scheduler Thread - 13 - Essentials/INFO]: [Essentials] Fetching version information...
[17:12:42] [Craft Scheduler Thread - 7 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[17:12:42] [Craft Scheduler Thread - 30 - ExcellentShop/INFO]: [ExcellentShop] Initialized product data clean up...
[17:12:42] [Craft Scheduler Thread - 4 - DecentHolograms/INFO]: 
A newer version of DecentHolograms is available. Download it from: 
- https://www.spigotmc.org/resources/96927/
- https://modrinth.com/plugin/decentholograms
[17:12:42] [Craft Scheduler Thread - 17 - ChatFeelings/INFO]: [ChatFeelings] 
[17:12:42] [Craft Scheduler Thread - 17 - ChatFeelings/INFO]: [ChatFeelings] Having issues? Got a question? Join our support discord: zachduda.com/discord
[17:12:42] [Craft Scheduler Thread - 7 - DecentHolograms/INFO]: [DecentHolograms] Loaded 26 holograms!
[17:12:42] [Server thread/WARN]: [Custom Anvil] Duplicate registered enchantment name. Please check that configuration is using namespace.
[17:12:42] [Craft Scheduler Thread - 11 - LevelledMobs/WARN]: [LevelledMobs] LevelledMobs Update Checker Notice:
[17:12:42] [Craft Scheduler Thread - 11 - LevelledMobs/WARN]: [LevelledMobs] Your LevelledMobs version is outdated! Please update to v4.3.0 as soon as possible. (You're running v4.2.0.1)
[17:12:43] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[17:12:44] [Server thread/INFO]: [AuraSkills] Loaded 11 skills with 312 total sources
[17:12:44] [Server thread/INFO]: [AuraSkills] Loaded 9 stats and 17 traits
[17:12:44] [Server thread/INFO]: [AuraSkills] Loaded 22 pattern rewards and 0 level rewards
[17:12:44] [Server thread/INFO]: [AuraSkills] Loaded 53 loot entries in 4 pools and 2 tables
[17:12:44] [Server thread/INFO]: [AuraSkills] Loaded 6 menus
[17:12:44] [Server thread/INFO]: [GriefPrevGUI] Found Floodgate, Enabling bedrock gui system
[17:12:44] [Server thread/INFO]: GriefPrevention plugin is found, Loading ....
[17:12:44] [User Authenticator #0/INFO]: UUID of player EndersWolf3072 is 42d87202-d9c5-46bd-9851-5af97b80c2cf
[17:12:44] [Server thread/INFO]: 
 ██████╗ ██████╗ ███████╗██╗  ██╗████████╗███████╗███╗   ██╗███████╗██╗ ██████╗ ███╗   ██╗
██║  ███╗██████╔╝█████╗   ╚███╔╝    ██║   █████╗  ██╔██╗ ██║███████╗██║██║   ██║██╔██╗ ██║
██║   ██║██╔═══╝ ██╔══╝   ██╔██╗    ██║   ██╔══╝  ██║╚██╗██║╚════██║██║██║   ██║██║╚██╗██║
╚██████╔╝██║     ███████╗██╔╝ ██╗   ██║   ███████╗██║ ╚████║███████║██║╚██████╔╝██║ ╚████║
 ╚═════╝ ╚═╝     ╚══════╝╚═╝  ╚═╝   ╚═╝   ╚══════╝╚═╝  ╚═══╝╚══════╝╚═╝ ╚═════╝ ╚═╝  ╚═══╝
                                 By Edward v3             

[17:12:44] [Server thread/INFO]: [GriefPrevGUI] Found PlaceholderAPI
[17:12:44] [Server thread/INFO]: [GriefPrevGUI] Config reloaded successfully.
[17:12:44] [Server thread/INFO]: [GriefPrevGUI] Hooking into Vault
[17:12:44] [Server thread/INFO]: [GriefPrevGUI] Hooked into Vault. with provider EssentialsX Economy
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Loaded 92 player data in 26ms
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Initializing RegionsManager...
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Initializing regions...
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Initialized 133 regions in 168ms
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Loading GUI: ClaimMenu_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Reloading config for ClaimMenu_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Loading GUI: ClaimInfo_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Reloading config for ClaimInfo_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Loading GUI: ClaimDelete_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Reloading config for ClaimDelete_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Loading GUI: ClaimDeleteAll_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Reloading config for ClaimDeleteAll_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Loading GUI: ClaimBlock_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Reloading config for ClaimBlock_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Loading GUI: TrustList_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Reloading config for TrustList_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Loading GUI: BlackList_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Reloading config for BlackList_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Loading GUI: Whitelist_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Reloading config for Whitelist_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Loading GUI: ClaimInvites_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Reloading config for ClaimInvites_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Loading GUI: ClaimBlockSelector_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Reloading config for ClaimBlockSelector_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Loading GUI: PlayerList_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Reloading config for PlayerList_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Loading GUI: ClaimBlock_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Reloading config for ClaimBlock_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Loading GUI: ClaimLeaveAll_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Reloading config for ClaimLeaveAll_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Loading GUI: ClaimLeave_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Reloading config for ClaimLeave_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Loading GUI: ClaimUpgradeNoEnter_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Reloading config for ClaimUpgradeNoEnter_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Loading GUI: ClaimList_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Reloading config for ClaimList_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Loading GUI: ExpiringClaimList_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Reloading config for ExpiringClaimList_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Loading GUI: IconSelector_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Reloading config for IconSelector_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Loading GUI: ClaimUpgrade_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Reloading config for ClaimUpgrade_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Loading GUI: ClaimUpgradeBiomeSelector_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Reloading config for ClaimUpgradeBiomeSelector_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Loading GUI: ClaimKick_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Reloading config for ClaimKick_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Loading GUI: WarpList_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Reloading config for WarpList_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Loading GUI: ClaimPermissions_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Reloading config for ClaimPermissions_EN.yml
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] Loaded gui theme: nature successfully
[17:12:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gpextension [1.0]
[17:12:45] [Server thread/INFO]: [GPExtension] [STDOUT] Fetched content: version: 4.5.33

[17:12:45] [Server thread/WARN]: Nag author(s): '[Edward]' of 'GPExtension v4.5.31' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[17:12:45] [Server thread/INFO]: [GriefPrevGUI] 🚨  New version available for Grief Prevention GUI! You are currently running version 4.5.31, but the latest available version is 4.5.33. Please update as soon as possible to ensure optimal functionality!
[17:12:45] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playertime due to a missing plugin: PlayerTime
[17:12:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[17:12:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: griefprevention [1.7.0]
[17:12:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[17:12:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.7.3]
[17:12:45] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playerstats due to a missing plugin: PlayerStats
[17:12:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: servertime [3.2]
[17:12:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[17:12:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: Advancements [1.7]
[17:12:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: objective [4.2.0]
[17:12:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: playerlist [3.0.8]
[17:12:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: otherplayer [2.1.0]
[17:12:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: multiverse [1.0.1]
[17:12:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: sbtags [1.0.1]
[17:12:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[17:12:45] [Server thread/INFO]: 13 placeholder hook(s) registered!
[17:12:45] [Server thread/WARN]: [MythicMobs] Error initializing default entity magic values. Please report this.
[17:12:45] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "org.bukkit.entity.EntityType.getEntityClass()" because "type" is null
[17:12:45] [Server thread/WARN]:     at org.bukkit.RegionAccessor.spawnEntity(RegionAccessor.java:407)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.adapters.BukkitEntityType.spawnEntity(BukkitEntityType.java:69)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.entities.BukkitCustom.spawn(BukkitCustom.java:37)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.api.mobs.entities.MythicEntityType.initializeDefaultValues(MythicEntityType.java:161)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.BukkitBootstrap.initializeMagicEntityValues(BukkitBootstrap.java:472)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:12:45] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[17:12:45] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474)
[17:12:45] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1245)
[17:12:45] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340)
[17:12:45] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[17:12:45] [Server thread/WARN]: [MythicMobs] Error initializing default entity magic values. Please report this.
[17:12:45] [Server thread/WARN]: java.lang.IllegalArgumentException: Villager.Profession cannot be null
[17:12:45] [Server thread/WARN]:     at com.google.common.base.Preconditions.checkArgument(Preconditions.java:143)
[17:12:45] [Server thread/WARN]:     at org.bukkit.craftbukkit.entity.CraftVillagerZombie.setVillagerProfession(CraftVillagerZombie.java:34)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.entities.BukkitBabyZombieVillager.spawn(BukkitBabyZombieVillager.java:53)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.api.mobs.entities.MythicEntityType.initializeDefaultValues(MythicEntityType.java:161)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.BukkitBootstrap.initializeMagicEntityValues(BukkitBootstrap.java:472)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:12:45] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[17:12:45] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474)
[17:12:45] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1245)
[17:12:45] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340)
[17:12:45] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[17:12:45] [Server thread/WARN]: [MythicMobs] Error initializing default entity magic values. Please report this.
[17:12:45] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "org.bukkit.entity.EntityType.getEntityClass()" because "type" is null
[17:12:45] [Server thread/WARN]:     at org.bukkit.RegionAccessor.spawnEntity(RegionAccessor.java:407)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.adapters.BukkitEntityType.spawnEntity(BukkitEntityType.java:69)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.entities.BukkitCustom.spawn(BukkitCustom.java:37)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.api.mobs.entities.MythicEntityType.initializeDefaultValues(MythicEntityType.java:161)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.BukkitBootstrap.initializeMagicEntityValues(BukkitBootstrap.java:472)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:12:45] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[17:12:45] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474)
[17:12:45] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1245)
[17:12:45] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340)
[17:12:45] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[17:12:45] [Server thread/WARN]: [MythicMobs] Error initializing default entity magic values. Please report this.
[17:12:45] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "org.bukkit.entity.EntityType.getEntityClass()" because "type" is null
[17:12:45] [Server thread/WARN]:     at org.bukkit.RegionAccessor.spawnEntity(RegionAccessor.java:407)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.adapters.BukkitEntityType.spawnEntity(BukkitEntityType.java:69)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.entities.BukkitCustom.spawn(BukkitCustom.java:37)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.api.mobs.entities.MythicEntityType.initializeDefaultValues(MythicEntityType.java:161)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.BukkitBootstrap.initializeMagicEntityValues(BukkitBootstrap.java:472)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:12:45] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[17:12:45] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474)
[17:12:45] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1245)
[17:12:45] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340)
[17:12:45] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[17:12:45] [Server thread/WARN]: [MythicMobs] Error initializing default entity magic values. Please report this.
[17:12:45] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "org.bukkit.entity.EntityType.getEntityClass()" because "type" is null
[17:12:45] [Server thread/WARN]:     at org.bukkit.RegionAccessor.spawnEntity(RegionAccessor.java:407)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.adapters.BukkitEntityType.spawnEntity(BukkitEntityType.java:69)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.entities.BukkitCustom.spawn(BukkitCustom.java:37)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.api.mobs.entities.MythicEntityType.initializeDefaultValues(MythicEntityType.java:161)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.BukkitBootstrap.initializeMagicEntityValues(BukkitBootstrap.java:472)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:12:45] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[17:12:45] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474)
[17:12:45] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1245)
[17:12:45] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340)
[17:12:45] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[17:12:45] [Server thread/WARN]: [MythicMobs] Error initializing default entity magic values. Please report this.
[17:12:45] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "org.bukkit.entity.EntityType.getEntityClass()" because "type" is null
[17:12:45] [Server thread/WARN]:     at org.bukkit.RegionAccessor.spawnEntity(RegionAccessor.java:407)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.adapters.BukkitEntityType.spawnEntity(BukkitEntityType.java:69)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.entities.BukkitCustom.spawn(BukkitCustom.java:37)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.api.mobs.entities.MythicEntityType.initializeDefaultValues(MythicEntityType.java:161)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.BukkitBootstrap.initializeMagicEntityValues(BukkitBootstrap.java:472)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:12:45] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[17:12:45] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474)
[17:12:45] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1245)
[17:12:45] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340)
[17:12:45] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[17:12:45] [Server thread/WARN]: [MythicMobs] Error initializing default entity magic values. Please report this.
[17:12:45] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "org.bukkit.entity.EntityType.getEntityClass()" because "type" is null
[17:12:45] [Server thread/WARN]:     at org.bukkit.RegionAccessor.spawnEntity(RegionAccessor.java:407)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.adapters.BukkitEntityType.spawnEntity(BukkitEntityType.java:69)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.entities.BukkitCustom.spawn(BukkitCustom.java:37)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.api.mobs.entities.MythicEntityType.initializeDefaultValues(MythicEntityType.java:161)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.BukkitBootstrap.initializeMagicEntityValues(BukkitBootstrap.java:472)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:12:45] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[17:12:45] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474)
[17:12:45] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1245)
[17:12:45] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340)
[17:12:45] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[17:12:45] [Server thread/WARN]: [MythicMobs] Error initializing default entity magic values. Please report this.
[17:12:45] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "org.bukkit.entity.EntityType.getEntityClass()" because "type" is null
[17:12:45] [Server thread/WARN]:     at org.bukkit.RegionAccessor.spawnEntity(RegionAccessor.java:407)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.adapters.BukkitEntityType.spawnEntity(BukkitEntityType.java:69)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.entities.BukkitCustom.spawn(BukkitCustom.java:37)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.api.mobs.entities.MythicEntityType.initializeDefaultValues(MythicEntityType.java:161)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.BukkitBootstrap.initializeMagicEntityValues(BukkitBootstrap.java:472)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:12:45] [Server thread/WARN]:     at MythicMobs-5.8.0.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:12:45] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[17:12:45] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474)
[17:12:45] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1245)
[17:12:45] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340)
[17:12:45] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[17:12:46] [Server thread/INFO]: [ExcellentShop] [Chest Shop] Shops Loaded: 137
[17:12:46] [Server thread/WARN]: [TradeManager] **************************************************************************************************************************
[17:12:46] [Server thread/WARN]: [TradeManager] * There is a new version of TradeManager available!
[17:12:46] [Server thread/WARN]: [TradeManager] *  
[17:12:46] [Server thread/WARN]: [TradeManager] * Your version:   1.4.0
[17:12:46] [Server thread/WARN]: [TradeManager] * Latest version: 1.4.2
[17:12:46] [Server thread/WARN]: [TradeManager] *  
[17:12:46] [Server thread/WARN]: [TradeManager] * Please update to the newest version.
[17:12:46] [Server thread/WARN]: [TradeManager] *  
[17:12:46] [Server thread/WARN]: [TradeManager] * Download:
[17:12:46] [Server thread/WARN]: [TradeManager] *   https://www.spigotmc.org/resources/trademanager-1-20-1-21-1-customize-trades-prevent-trades-oraxen-itemsadder-support.117737/
[17:12:46] [Server thread/WARN]: [TradeManager] *  
[17:12:46] [Server thread/WARN]: [TradeManager] * Support:
[17:12:46] [Server thread/WARN]: [TradeManager] *   https://discord.gg/kTa77dHWNx
[17:12:46] [Server thread/WARN]: [TradeManager] *  
[17:12:46] [Server thread/WARN]: [TradeManager] * Donate:
[17:12:46] [Server thread/WARN]: [TradeManager] *   https://paypal.me/cantbejohn
[17:12:46] [Server thread/WARN]: [TradeManager] **************************************************************************************************************************
[17:12:46] [Server thread/INFO]: Done (52.096s)! For help, type "help"
[17:12:46] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 4017ms or 80 ticks behind
[17:12:46] [Craft Scheduler Thread - 18 - Vault/INFO]: [Vault] Checking for Updates ... 
[17:12:46] [Craft Scheduler Thread - 18 - Vault/INFO]: [Vault] No new version available
[17:12:46] [Craft Scheduler Thread - 11 - ChatFeelings/INFO]: [ChatFeelings] Update Available! You're running v4.14.4, while the latest is v4.15.0
[17:12:47] [Server thread/INFO]: [EntityClearer] TPS monitoring activated.
[17:12:48] [Server thread/INFO]: [AdvancedJobs] Successfully hooked into ProtocolLib, PlaceholderAPI, Geyser-Spigot, Essentials, Vault, LuckPerms, ViaVersion.
[17:12:48] [Server thread/INFO]: [AdvancedModels] Successfully hooked into ProtocolLib, AuraSkills, PlaceholderAPI, MythicMobs, Geyser-Spigot, Essentials, Vault, LuckPerms, ViaVersion.
[17:13:06] [Server thread/INFO]: [GriefPrevGUI] Loaded Player Data for EndersWolf3072.
[17:13:06] [Server thread/INFO]: EndersWolf3072[/172.68.88.228:59486] logged in with entity id 4825 at ([Terra]16481.334569301856, 65.0625, 11742.381147622864)
[17:13:07] [Craft Scheduler Thread - 23 - ajLeaderboards/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[17:13:10] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2500ms or 50 ticks behind
[17:14:35] [Server thread/INFO]: EndersWolf3072 issued server command: /citizens:npc list
[17:14:35] [Server thread/ERROR]: Command exception: /citizens:npc list
org.bukkit.command.CommandException: Cannot execute command 'citizens:npc' in plugin Citizens v2.0.37-SNAPSHOT (build 3738) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.command.brigadier.bukkit.BukkitCommandNode$BukkitBrigCommand.run(BukkitCommandNode.java:82) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at com.mojang.brigadier.context.ContextChain.runExecutable(ContextChain.java:73) ~[brigadier-1.3.10.jar:?]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:31) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:19) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.commands.execution.UnboundEntryAction.lambda$bind$0(UnboundEntryAction.java:8) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.commands.execution.CommandQueueEntry.execute(CommandQueueEntry.java:5) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.commands.execution.ExecutionContext.runCommandQueue(ExecutionContext.java:103) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.commands.Commands.executeCommandInContext(Commands.java:448) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.commands.Commands.performCommand(Commands.java:355) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.commands.Commands.performCommand(Commands.java:342) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.commands.Commands.performCommand(Commands.java:337) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performUnsignedChatCommand(ServerGamePacketListenerImpl.java:2241) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$11(ServerGamePacketListenerImpl.java:2215) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:154) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1577) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:207) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:128) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1554) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1547) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:138) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1498) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1508) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1344) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[17:15:01] [Server thread/INFO]: EndersWolf3072 issued server command: /citizens:npc create
[17:15:01] [Server thread/ERROR]: Command exception: /citizens:npc create
org.bukkit.command.CommandException: Cannot execute command 'citizens:npc' in plugin Citizens v2.0.37-SNAPSHOT (build 3738) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.command.brigadier.bukkit.BukkitCommandNode$BukkitBrigCommand.run(BukkitCommandNode.java:82) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at com.mojang.brigadier.context.ContextChain.runExecutable(ContextChain.java:73) ~[brigadier-1.3.10.jar:?]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:31) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:19) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.commands.execution.UnboundEntryAction.lambda$bind$0(UnboundEntryAction.java:8) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.commands.execution.CommandQueueEntry.execute(CommandQueueEntry.java:5) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.commands.execution.ExecutionContext.runCommandQueue(ExecutionContext.java:103) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.commands.Commands.executeCommandInContext(Commands.java:448) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.commands.Commands.performCommand(Commands.java:355) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.commands.Commands.performCommand(Commands.java:342) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.commands.Commands.performCommand(Commands.java:337) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performUnsignedChatCommand(ServerGamePacketListenerImpl.java:2241) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$11(ServerGamePacketListenerImpl.java:2215) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:154) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1577) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:207) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:128) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1554) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1547) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.util.thread.BlockableEventLoop.runAllTasks(BlockableEventLoop.java:117) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1504) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1344) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340) ~[paper-1.21.3.jar:1.21.3-76-27e4ddc]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[17:15:49] [Server thread/INFO]: ---------------[ Player List ]---------------
[17:15:49] [Server thread/INFO]: Online Players 1/50: EndersWolf3072
[17:16:00] [Server thread/INFO]: EndersWolf3072 lost connection: Disconnected
[17:18:53] [Server thread/INFO]: ---------------[ Player List ]---------------
[17:18:53] [Server thread/INFO]: Online Players 0/50: 
[17:21:56] [Server thread/INFO]: ---------------[ Player List ]---------------
[17:21:56] [Server thread/INFO]: Online Players 0/50: 
[17:25:00] [Server thread/INFO]: ---------------[ Player List ]---------------
[17:25:00] [Server thread/INFO]: Online Players 0/50: 
[17:28:03] [Server thread/INFO]: ---------------[ Player List ]---------------
[17:28:03] [Server thread/INFO]: Online Players 0/50: 
[17:31:07] [Server thread/INFO]: ---------------[ Player List ]---------------
[17:31:07] [Server thread/INFO]: Online Players 0/50: 
[17:34:10] [Server thread/INFO]: ---------------[ Player List ]---------------
[17:34:10] [Server thread/INFO]: Online Players 0/50: 
[17:37:14] [Server thread/INFO]: ---------------[ Player List ]---------------
[17:37:14] [Server thread/INFO]: Online Players 0/50: 
[17:40:17] [Server thread/INFO]: ---------------[ Player List ]---------------
[17:40:17] [Server thread/INFO]: Online Players 0/50: 
[17:43:21] [Server thread/INFO]: ---------------[ Player List ]---------------
[17:43:21] [Server thread/INFO]: Online Players 0/50: 
[17:46:24] [Server thread/INFO]: ---------------[ Player List ]---------------
[17:46:24] [Server thread/INFO]: Online Players 0/50: 
[17:49:28] [Server thread/INFO]: ---------------[ Player List ]---------------
[17:49:28] [Server thread/INFO]: Online Players 0/50: 
[17:52:31] [Server thread/INFO]: ---------------[ Player List ]---------------
[17:52:31] [Server thread/INFO]: Online Players 0/50: 
[17:55:35] [Server thread/INFO]: ---------------[ Player List ]---------------
[17:55:35] [Server thread/INFO]: Online Players 0/50: 
[17:56:54] [User Authenticator #1/INFO]: UUID of player Barfbag21 is de578a10-9473-44ad-871a-10e4403e579a
[17:58:06] [Server thread/INFO]: [GriefPrevGUI] Loaded Player Data for Barfbag21.
[17:58:06] [Server thread/INFO]: Barfbag21[/172.69.34.106:17258] logged in with entity id 6768 at ([TonsCatGangworld_nether]193.54830303600997, 250.0, 331.28413384070467)
[17:58:06] [Server thread/INFO]: Barfbag21 joined the game
[17:58:38] [Server thread/INFO]: ---------------[ Player List ]---------------
[17:58:38] [Server thread/INFO]: Online Players 1/50: Barfbag21
[18:00:00] [Server thread/INFO]: [DragonTimer] It's Respawn time ! 18:00!
[18:00:34] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give Barfbag21 230640.0
[18:00:34] [Server thread/INFO]: $230,640 added to [Helper] Daddy_Barfbag21 account. New balance: $27,966,384.48
[18:01:42] [Server thread/INFO]: ---------------[ Player List ]---------------
[18:01:42] [Server thread/INFO]: Online Players 1/50: Barfbag21
[18:04:45] [Server thread/INFO]: ---------------[ Player List ]---------------
[18:04:45] [Server thread/INFO]: Online Players 1/50: Barfbag21
[18:05:21] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give Barfbag21 234375.0
[18:05:21] [Server thread/INFO]: $234,375 added to [Helper] Daddy_Barfbag21 account. New balance: $28,200,759.48
[18:07:49] [Server thread/INFO]: ---------------[ Player List ]---------------
[18:07:49] [Server thread/INFO]: Online Players 1/50: Barfbag21
[18:10:02] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give Barfbag21 238140.0
[18:10:02] [Server thread/INFO]: $238,140 added to [Helper] Daddy_Barfbag21 account. New balance: $28,438,899.48
[18:10:52] [Server thread/INFO]: ---------------[ Player List ]---------------
[18:10:52] [Server thread/INFO]: Online Players 1/50: Barfbag21
[18:12:19] [Server thread/INFO]: TONSCATGANGWORLD: Common entities will be removed in 30 seconds!
[18:12:19] [Server thread/INFO]: TONSCATGANGWORLD_NETHER: Common entities will be removed in 30 seconds!
[18:12:19] [Server thread/INFO]: TONSCATGANGWORLD_THE_END: Common entities will be removed in 30 seconds!
[18:12:19] [Server thread/INFO]: SPAWN: Common entities will be removed in 30 seconds!
[18:12:19] [Server thread/INFO]: TERRA: Common entities will be removed in 30 seconds!
[18:12:44] [Server thread/INFO]: TONSCATGANGWORLD: Common entities will be removed in 5 seconds!
[18:12:44] [Server thread/INFO]: TONSCATGANGWORLD_NETHER: Common entities will be removed in 5 seconds!
[18:12:44] [Server thread/INFO]: TONSCATGANGWORLD_THE_END: Common entities will be removed in 5 seconds!
[18:12:44] [Server thread/INFO]: SPAWN: Common entities will be removed in 5 seconds!
[18:12:44] [Server thread/INFO]: TERRA: Common entities will be removed in 5 seconds!
[18:12:45] [Server thread/INFO]: TONSCATGANGWORLD: Common entities will be removed in 4 seconds!
[18:12:45] [Server thread/INFO]: TONSCATGANGWORLD_NETHER: Common entities will be removed in 4 seconds!
[18:12:45] [Server thread/INFO]: TONSCATGANGWORLD_THE_END: Common entities will be removed in 4 seconds!
[18:12:45] [Server thread/INFO]: SPAWN: Common entities will be removed in 4 seconds!
[18:12:45] [Server thread/INFO]: TERRA: Common entities will be removed in 4 seconds!
[18:12:46] [Server thread/INFO]: TONSCATGANGWORLD: Common entities will be removed in 3 seconds!
[18:12:46] [Server thread/INFO]: TONSCATGANGWORLD_NETHER: Common entities will be removed in 3 seconds!
[18:12:46] [Server thread/INFO]: TONSCATGANGWORLD_THE_END: Common entities will be removed in 3 seconds!
[18:12:46] [Server thread/INFO]: SPAWN: Common entities will be removed in 3 seconds!
[18:12:46] [Server thread/INFO]: TERRA: Common entities will be removed in 3 seconds!
[18:12:47] [Server thread/INFO]: TONSCATGANGWORLD: Common entities will be removed in 2 seconds!
[18:12:47] [Server thread/INFO]: TONSCATGANGWORLD_NETHER: Common entities will be removed in 2 seconds!
[18:12:47] [Server thread/INFO]: TONSCATGANGWORLD_THE_END: Common entities will be removed in 2 seconds!
[18:12:47] [Server thread/INFO]: SPAWN: Common entities will be removed in 2 seconds!
[18:12:47] [Server thread/INFO]: TERRA: Common entities will be removed in 2 seconds!
[18:12:48] [Server thread/INFO]: TONSCATGANGWORLD: Common entities will be removed in 1 second!
[18:12:48] [Server thread/INFO]: TONSCATGANGWORLD_NETHER: Common entities will be removed in 1 second!
[18:12:48] [Server thread/INFO]: TONSCATGANGWORLD_THE_END: Common entities will be removed in 1 second!
[18:12:48] [Server thread/INFO]: SPAWN: Common entities will be removed in 1 second!
[18:12:48] [Server thread/INFO]: TERRA: Common entities will be removed in 1 second!
[18:12:49] [Server thread/INFO]: TONSCATGANGWORLD: Removed 0 entities!
[18:12:49] [Server thread/INFO]: TONSCATGANGWORLD_NETHER: Removed 0 entities!
[18:12:49] [Server thread/INFO]: TONSCATGANGWORLD_THE_END: Removed 0 entities!
[18:12:49] [Server thread/INFO]: SPAWN: Removed 0 entities!
[18:12:49] [Server thread/INFO]: TERRA: Removed 0 entities!
[18:13:56] [Server thread/INFO]: ---------------[ Player List ]---------------
[18:13:56] [Server thread/INFO]: Online Players 1/50: Barfbag21
[18:14:45] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give Barfbag21 241935.0
[18:14:45] [Server thread/INFO]: $241,935 added to [Helper] Daddy_Barfbag21 account. New balance: $28,680,834.48
[18:16:59] [Server thread/INFO]: ---------------[ Player List ]---------------
[18:16:59] [Server thread/INFO]: Online Players 1/50: Barfbag21
[18:19:40] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give Barfbag21 245760.0
[18:19:40] [Server thread/INFO]: $245,760 added to [Helper] Daddy_Barfbag21 account. New balance: $28,926,594.48
[18:20:03] [Server thread/INFO]: ---------------[ Player List ]---------------
[18:20:03] [Server thread/INFO]: Online Players 1/50: Barfbag21