Paste #123600: Edit of paste 123573: Unnamed Server Log Paste

Date: 2024/06/09 06:52:57 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste Edit Of Paste 123573 View Edit Report
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
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417


[15:48:15] [ServerMain/ERROR]: [DirectoryProviderSource] Error preparing plugin context: Directory 'plugins/citizensapi.jar' failed to update!
java.lang.RuntimeException: Directory 'plugins/citizensapi.jar' failed to update!
    at io.papermc.paper.plugin.provider.source.FileProviderSource.prepareContext(FileProviderSource.java:51) ~[paper-1.20.4.jar:git-Paper-496]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.lambda$prepareContext$1(DirectoryProviderSource.java:33) ~[paper-1.20.4.jar:git-Paper-496]
    at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:183) ~[?:?]
    at java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) ~[?:?]
    at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?]
    at java.util.Iterator.forEachRemaining(Iterator.java:133) ~[?:?]
    at java.util.Spliterators$IteratorSpliterator.forEachRemaining(Spliterators.java:1845) ~[?:?]
    at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]
    at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]
    at java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:150) ~[?:?]
    at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:173) ~[?:?]
    at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]
    at java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.walkFiles(DirectoryProviderSource.java:59) ~[paper-1.20.4.jar:git-Paper-496]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.prepareContext(DirectoryProviderSource.java:31) ~[paper-1.20.4.jar:git-Paper-496]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.prepareContext(DirectoryProviderSource.java:17) ~[paper-1.20.4.jar:git-Paper-496]
    at io.papermc.paper.plugin.util.EntrypointUtil.registerProvidersFromSource(EntrypointUtil.java:14) ~[paper-1.20.4.jar:git-Paper-496]
    at io.papermc.paper.plugin.PluginInitializerManager.load(PluginInitializerManager.java:101) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.Main.main(Main.java:120) ~[paper-1.20.4.jar:git-Paper-496]
    at org.bukkit.craftbukkit.Main.main(Main.java:326) ~[paper-1.20.4.jar:git-Paper-496]
    at io.papermc.paperclip.Paperclip.lambda$main$0(Paperclip.java:42) ~[app:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: org.bukkit.plugin.InvalidPluginException: java.lang.IllegalArgumentException: plugins/citizensapi.jar does not contain a paper-plugin.yml or plugin.yml! Could not determine plugin type, cannot load a plugin from it!
    at io.papermc.paper.plugin.provider.source.FileProviderSource.checkUpdate(FileProviderSource.java:109) ~[paper-1.20.4.jar:git-Paper-496]
    at io.papermc.paper.plugin.provider.source.FileProviderSource.prepareContext(FileProviderSource.java:49) ~[paper-1.20.4.jar:git-Paper-496]
    ... 21 more
Caused by: java.lang.IllegalArgumentException: plugins/citizensapi.jar does not contain a paper-plugin.yml or plugin.yml! Could not determine plugin type, cannot load a plugin from it!
    at io.papermc.paper.plugin.provider.source.FileProviderSource.getPluginName(FileProviderSource.java:118) ~[paper-1.20.4.jar:git-Paper-496]
    at io.papermc.paper.plugin.provider.source.FileProviderSource.checkUpdate(FileProviderSource.java:90) ~[paper-1.20.4.jar:git-Paper-496]
    at io.papermc.paper.plugin.provider.source.FileProviderSource.prepareContext(FileProviderSource.java:49) ~[paper-1.20.4.jar:git-Paper-496]
    ... 21 more
[15:48:23] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[15:48:28] [ServerMain/INFO]: Loaded 1174 recipes
[15:48:28] [ServerMain/INFO]: Loaded 1271 advancements
[15:48:29] [Server thread/INFO]: Starting minecraft server version 1.20.4
[15:48:29] [Server thread/WARN]: ****************************
[15:48:29] [Server thread/WARN]: YOU ARE RUNNING THIS SERVER AS AN ADMINISTRATIVE OR ROOT USER. THIS IS NOT ADVISED.
[15:48:29] [Server thread/WARN]: YOU ARE OPENING YOURSELF UP TO POTENTIAL RISKS WHEN DOING THIS.
[15:48:29] [Server thread/WARN]: FOR MORE INFORMATION, SEE https://madelinemiller.dev/blog/root-minecraft-server/
[15:48:29] [Server thread/WARN]: ****************************
[15:48:29] [Server thread/INFO]: Loading properties
[15:48:29] [Server thread/INFO]: This server is running Paper version git-Paper-496 (MC: 1.20.4) (Implementing API version 1.20.4-R0.1-SNAPSHOT) (Git: 7ac24a1 on ver/1.20.4)
[15:48:30] [Server thread/INFO]: Server Ping Player Sample Count: 12
[15:48:30] [Server thread/INFO]: Using 4 threads for Netty based IO
[15:48:30] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
    For more information please visit: https://github.com/PaperMC/Paper/issues/8948
[15:48:30] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and gen parallelism of 1 threads
[15:48:31] [Server thread/INFO]: Default game type: SURVIVAL
[15:48:31] [Server thread/INFO]: Generating keypair
[15:48:31] [Server thread/INFO]: Starting Minecraft server on *:55568
[15:48:31] [Server thread/INFO]: Using epoll channel type
[15:48:31] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[15:48:31] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[15:48:31] [Server thread/WARN]: [io.netty.util.internal.MacAddressUtil] Failed to find a usable hardware address from the network interfaces; using random bytes: ****:****:****:****:****:****:****:****
[15:48:32] [Server thread/INFO]: [SpigotLibraryLoader] [SuperiorSkyblock2] Loading 1 libraries... please wait
[15:48:32] [Server thread/INFO]: [SpigotLibraryLoader] [SuperiorSkyblock2] Loaded library /home/********/skyblock/libraries/org/openjdk/nashorn/nashorn-core/15.4/nashorn-core-15.4.jar
[15:48:32] [Server thread/INFO]: [SpigotLibraryLoader] [SuperiorSkyblock2] Loaded library /home/********/skyblock/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[15:48:32] [Server thread/INFO]: [SpigotLibraryLoader] [SuperiorSkyblock2] Loaded library /home/********/skyblock/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[15:48:32] [Server thread/INFO]: [SpigotLibraryLoader] [SuperiorSkyblock2] Loaded library /home/********/skyblock/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[15:48:32] [Server thread/INFO]: [SpigotLibraryLoader] [SuperiorSkyblock2] Loaded library /home/********/skyblock/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[15:48:32] [Server thread/INFO]: [SpigotLibraryLoader] [SuperiorSkyblock2] Loaded library /home/********/skyblock/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[15:48:34] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loading 2 libraries... please wait
[15:48:34] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/********/skyblock/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[15:48:34] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/********/skyblock/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[15:48:34] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/********/skyblock/libraries/it/unimi/dsi/fastutil-core/8.5.13/fastutil-core-8.5.13.jar
[15:48:34] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loading 3 libraries... please wait
[15:48:34] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/********/skyblock/libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
[15:48:34] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/********/skyblock/libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
[15:48:34] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/********/skyblock/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[15:48:34] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/********/skyblock/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[15:48:34] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/********/skyblock/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[15:48:34] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/********/skyblock/libraries/net/kyori/adventure-text-serializer-gson/4.14.0/adventure-text-serializer-gson-4.14.0.jar
[15:48:34] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/********/skyblock/libraries/net/kyori/adventure-text-serializer-json/4.14.0/adventure-text-serializer-json-4.14.0.jar
[15:48:34] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/********/skyblock/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[15:48:34] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/********/skyblock/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.0/adventure-text-serializer-bungeecord-4.3.0.jar
[15:48:34] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/********/skyblock/libraries/net/kyori/adventure-text-serializer-legacy/4.13.0/adventure-text-serializer-legacy-4.13.0.jar
[15:48:34] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loading 2 libraries... please wait
[15:48:34] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/********/skyblock/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[15:48:34] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/********/skyblock/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[15:48:34] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/********/skyblock/libraries/it/unimi/dsi/fastutil/8.5.11/fastutil-8.5.11.jar
[15:48:34] [Server thread/INFO]: [AzLink] Folia support enabled successfully.
[15:48:34] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loading 10 libraries... please wait
[15:48:35] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/skyblock/libraries/org/springframework/spring-expression/6.0.6/spring-expression-6.0.6.jar
[15:48:35] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/skyblock/libraries/org/springframework/spring-core/6.0.6/spring-core-6.0.6.jar
[15:48:35] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/skyblock/libraries/org/springframework/spring-jcl/6.0.6/spring-jcl-6.0.6.jar
[15:48:35] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/skyblock/libraries/org/apache/httpcomponents/httpmime/4.5.13/httpmime-4.5.13.jar
[15:48:35] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/skyblock/libraries/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar
[15:48:35] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/skyblock/libraries/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar
[15:48:35] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/skyblock/libraries/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
[15:48:35] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/skyblock/libraries/commons-codec/commons-codec/1.11/commons-codec-1.11.jar
[15:48:35] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/skyblock/libraries/org/joml/joml/1.10.5/joml-1.10.5.jar
[15:48:35] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/skyblock/libraries/net/kyori/adventure-text-minimessage/4.17.0/adventure-text-minimessage-4.17.0.jar
[15:48:35] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/skyblock/libraries/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.jar
[15:48:35] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/skyblock/libraries/net/kyori/adventure-key/4.17.0/adventure-key-4.17.0.jar
[15:48:35] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/skyblock/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[15:48:35] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/skyblock/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[15:48:35] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/skyblock/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[15:48:35] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/skyblock/libraries/net/kyori/adventure-text-serializer-plain/4.17.0/adventure-text-serializer-plain-4.17.0.jar
[15:48:35] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/skyblock/libraries/net/kyori/adventure-text-serializer-ansi/4.17.0/adventure-text-serializer-ansi-4.17.0.jar
[15:48:35] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/skyblock/libraries/net/kyori/ansi/1.0.3/ansi-1.0.3.jar
[15:48:35] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/skyblock/libraries/net/kyori/adventure-platform-bukkit/4.3.2/adventure-platform-bukkit-4.3.2.jar
[15:48:35] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/skyblock/libraries/net/kyori/adventure-platform-api/4.3.2/adventure-platform-api-4.3.2.jar
[15:48:35] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/skyblock/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.2/adventure-text-serializer-bungeecord-4.3.2.jar
[15:48:35] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/skyblock/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[15:48:35] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/skyblock/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[15:48:35] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/skyblock/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[15:48:35] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/skyblock/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[15:48:35] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/skyblock/libraries/net/kyori/adventure-platform-facet/4.3.2/adventure-platform-facet-4.3.2.jar
[15:48:35] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/skyblock/libraries/net/kyori/adventure-platform-viaversion/4.3.2/adventure-platform-viaversion-4.3.2.jar
[15:48:35] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/skyblock/libraries/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar
[15:48:35] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/skyblock/libraries/org/apache/commons/commons-lang3/3.14.0/commons-lang3-3.14.0.jar
[15:48:35] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/skyblock/libraries/gs/mclo/java/2.2.1/java-2.2.1.jar
[15:48:35] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_20_R3.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[15:48:41] [Server thread/WARN]: Legacy plugin IPWhitelist v1.7 does not specify an api-version.
[15:48:41] [Server thread/WARN]: Legacy plugin CommandNPC v1.9.1 does not specify an api-version.
[15:48:41] [Server thread/WARN]: Legacy plugin AntiSpam v0.1 does not specify an api-version.
[15:48:41] [Server thread/WARN]: Legacy plugin KitCreator v1.1 does not specify an api-version.
[15:48:41] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v4.7.0
[15:48:41] [Server thread/INFO]: [ViaVersion] ViaVersion 4.7.0 is now loaded. Registering protocol transformers and injecting...
[15:48:42] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[15:48:42] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.102
[15:48:42] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[15:48:43] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[15:48:43] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.10.1-SNAPSHOT-778;c77d341
[15:48:46] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@72f274de]
[15:48:46] [Server thread/INFO]: [SuperiorSkyblock2] Loading server plugin SuperiorSkyblock2 v2024.1
[15:48:46] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.3
[15:48:46] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.2.1-SNAPSHOT-689
[15:48:48] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.9+5934e49
[15:48:48] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[15:48:48] [Server thread/INFO]: [HolographicDisplays] Loading server plugin HolographicDisplays v3.0.4
[15:48:48] [Server thread/INFO]: [LibsDisguises] Loading server plugin LibsDisguises v10.0.44
[15:48:48] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.34-SNAPSHOT (build 3429)
[15:48:48] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.6.2-3e052553
[15:48:48] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[15:48:48] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[15:48:48] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0-dev+81-cde7184
[15:48:48] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.4.7.14
[15:48:48] [Server thread/INFO]: [nightcore] Loading server plugin nightcore v2.6.1
[15:48:48] [Server thread/INFO]: [Dungeons] Loading server plugin Dungeons v3.4.6
[15:48:48] [Server thread/INFO]: [Jobs] Loading server plugin Jobs v5.2.2.2
[15:48:48] [Server thread/INFO]: [GCore] Loading server plugin GCore v8.47.1
[15:48:48] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR4.0.6.1
[15:48:48] [Server thread/INFO]: [ChatReaction] Loading server plugin ChatReaction v1.8.0
[15:48:48] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v5.2.2.3
[15:48:48] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.21.0-dev+81-cde7184
[15:48:48] [Server thread/INFO]: [Codex] Loading server plugin Codex v1.15.1
[15:48:48] [Server thread/INFO]: [NametagEdit] Loading server plugin NametagEdit v4.5.23
[15:48:48] [Server thread/INFO]: [nCore] Loading server plugin nCore v1.0.7
[15:48:48] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.8.0
[15:48:49] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[15:48:49] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[15:48:49] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[15:48:49] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[15:48:49] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[15:48:49] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[15:48:49] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[15:48:49] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[15:48:49] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[15:48:49] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[15:48:49] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[15:48:49] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[15:48:49] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[15:48:49] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[15:48:49] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[15:48:49] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[15:48:49] [Server thread/INFO]: [NexEngine] Loading server plugin NexEngine v2.2.11
[15:48:49] [Server thread/INFO]: [BeautyQuests] Loading server plugin BeautyQuests v0.20.1
[15:48:49] [Server thread/INFO]: [OldCombatMechanics] Loading server plugin OldCombatMechanics v2.0.2
[15:48:49] [Server thread/INFO]: [LaggRemover] Loading server plugin LaggRemover v2.0.6
[15:48:49] [Server thread/INFO]: [SafeTrade] Loading server plugin SafeTrade v1.1.1
[15:48:49] [Server thread/INFO]: [LagAssist] Loading server plugin LagAssist v2.29.1
[15:48:49] [Server thread/INFO]: [ClearLag] Loading server plugin ClearLag v3.2.2
[15:48:49] [Server thread/INFO]: [AzLink] Loading server plugin AzLink v1.3.1
[15:48:49] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.25
[15:48:49] [Server thread/INFO]: [FriendsSpigot] Loading server plugin FriendsSpigot v1.0.9.7
[15:48:49] [Server thread/INFO]: [AntiAFKPlus] Loading server plugin AntiAFKPlus v3.2.1
[15:48:49] [Server thread/INFO]: [VoxelSniper] Loading server plugin VoxelSniper v8.13.0
[15:48:49] [Server thread/INFO]: [VoteParty] Loading server plugin VoteParty v2.31
[15:48:49] [Server thread/INFO]: [CustomCommands] Loading server plugin CustomCommands v4.3.0
[15:48:49] [Server thread/INFO]: [Oraxen] Loading server plugin Oraxen v1.175.0
[15:48:49] [Server thread/INFO]: [goBrush] Loading server plugin goBrush v3.8.0-72
[15:48:49] [Server thread/INFO]: [IPWhitelist] Loading server plugin IPWhitelist v1.7
[15:48:49] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.1.5
[15:48:49] [Server thread/INFO]: [CommandNPC] Loading server plugin CommandNPC v1.9.1
[15:48:49] [Server thread/INFO]: [MineableSpawners] Loading server plugin MineableSpawners v3.1.5
[15:48:49] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.0-dev+81-cde7184
[15:48:49] [Server thread/INFO]: [ItemJoin] Loading server plugin ItemJoin v5.2.5-SNAPSHOT-b847
[15:48:49] [Server thread/INFO]: [AntiSpam] Loading server plugin AntiSpam v0.1
[15:48:49] [Server thread/INFO]: [RoseStacker] Loading server plugin RoseStacker v1.5.20
[15:48:49] [Server thread/INFO]: [Arceon] Loading server plugin Arceon v0.4.2_1.16+
[15:48:49] [Server thread/INFO]: [goPaint] Loading server plugin goPaint v3.1.0-79
[15:48:49] [Server thread/INFO]: [BungeeGuard] Loading server plugin BungeeGuard v1.4.1
[15:48:49] [Server thread/INFO]: [BattlePass] Loading server plugin BattlePass v3.15.5
[15:48:49] [Server thread/INFO]: [Infiniteannouncements] Loading server plugin Infiniteannouncements v2.4.1
[15:48:49] [Server thread/INFO]: [Duels] Loading server plugin Duels v3.5.3
[15:48:49] [Server thread/INFO]: [ExploitGuard] Loading server plugin ExploitGuard v1.5.3
[15:48:49] [Server thread/INFO]: [InteractiveChat] Loading server plugin InteractiveChat v4.2.10.2
[15:48:49] [Server thread/INFO]: [maps] Loading server plugin maps v3.7.1
[15:48:49] [Server thread/INFO]: [KitCreator] Loading server plugin KitCreator v1.1
[15:48:49] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.13.7-Release
[15:48:49] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[15:48:49] [Server thread/INFO]: [GemsEconomy] Loading server plugin GemsEconomy v4.9.2
[15:48:49] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.2
[15:48:49] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[15:48:49] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.102
[15:48:51] [Server thread/INFO]:         __    
[15:48:51] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.102
[15:48:51] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[15:48:51] [Server thread/INFO]: 
[15:48:51] [Server thread/INFO]: [LuckPerms] Loading configuration...
[15:48:52] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[15:48:53] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[15:48:54] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[15:48:55] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 5541ms)
[15:48:55] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[15:48:55] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[15:48:55] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[15:48:55] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[15:48:55] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[15:48:55] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.10.1-SNAPSHOT-778;c77d341
[15:48:55] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[15:48:55] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[15:48:55] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[15:48:55] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[15:48:56] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_20_R3.PaperweightFaweAdapter as the Bukkit adapter
[15:48:58] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.2.1-SNAPSHOT-689
[15:48:58] [Server thread/INFO]: [nightcore] Enabling nightcore v2.6.1
[15:48:58] [Server thread/WARN]: [nightcore] Locale file for 'fr' language not found. Using default 'en' locale.
[15:48:58] [Server thread/INFO]: [nightcore] Found permissions provider: LuckPerms
[15:48:58] [Server thread/INFO]: [nightcore] Found economy provider: EssentialsX Economy
[15:48:58] [Server thread/INFO]: [nightcore] Found chat provider: LuckPerms
[15:48:58] [Server thread/INFO]: [nightcore] Server Version: 1.20.4 ✔
[15:48:58] [Server thread/INFO]: [nightcore] Entity Id Counter: OK ✔
[15:48:58] [ForkJoinPool.commonPool-worker-1/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 15 build(s) out of date.
You are running build 778, the latest version is build 793.
Update at https://www.spigotmc.org/resources/13932/
[15:48:58] [Server thread/INFO]: [nightcore] Item NBT Compress: OK ✔
[15:48:58] [Server thread/INFO]: [nightcore] Plugin loaded in 462 ms!
[15:48:58] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR4.0.6.1
[15:48:58] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.11
[15:48:58] [Server thread/INFO]: [NexEngine] Seems like we have Paper based fork here...
[15:48:58] [Server thread/WARN]: [NexEngine] ==================================
[15:48:58] [Server thread/WARN]: [NexEngine] WARNING: You're running an outdated/deprecated server version (Unknown)!
[15:48:58] [Server thread/WARN]: [NexEngine] Support for this version will be dropped soon.
[15:48:58] [Server thread/WARN]: [NexEngine] Please, upgrade your server to at least 1.18.2.
[15:48:58] [Server thread/WARN]: [NexEngine] ==================================
[15:48:58] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[15:48:58] [Server thread/INFO]: [NexEngine] Successfully hooked with EssentialsX Economy economy
[15:48:58] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[15:48:58] [Server thread/INFO]: [NexEngine] Plugin loaded in 135 ms!
[15:48:58] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.25
[15:48:59] [Server thread/INFO]: [ItemJoin] Enabling ItemJoin v5.2.5-SNAPSHOT-b847
[15:48:59] [Server thread/INFO]: [ExploitGuard] Enabling ExploitGuard v1.5.3
[15:48:59] [Server thread/WARN]: java.lang.ClassNotFoundException: net.minecraft.server.v1_20_R3.EntityPlayer
[15:48:59] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197)
[15:48:59] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[15:48:59] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:520)
[15:48:59] [Server thread/WARN]:     at java.base/java.lang.Class.forName0(Native Method)
[15:48:59] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Class.java:375)
[15:48:59] [Server thread/WARN]:     at ExploitGuard.jar//io.github.confuser2188.packetlistener_eg.Reflection.getNMSClass(Reflection.java:34)
[15:48:59] [Server thread/WARN]:     at ExploitGuard.jar//io.github.confuser2188.packetlistener_eg.PacketListener.<init>(PacketListener.java:22)
[15:48:59] [Server thread/WARN]:     at ExploitGuard.jar//io.github.confuser2188.exploitguard.Main.onEnable(Main.java:36)
[15:48:59] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:287)
[15:48:59] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:188)
[15:48:59] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[15:48:59] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[15:48:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:639)
[15:48:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:550)
[15:48:59] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:275)
[15:48:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1131)
[15:48:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[15:48:59] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[15:48:59] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "java.lang.Class.getDeclaredField(String)" because "clazz" is null
[15:48:59] [Server thread/WARN]:     at ExploitGuard.jar//io.github.confuser2188.packetlistener_eg.Reflection.getField(Reflection.java:69)
[15:48:59] [Server thread/WARN]:     at ExploitGuard.jar//io.github.confuser2188.packetlistener_eg.PacketListener.<init>(PacketListener.java:22)
[15:48:59] [Server thread/WARN]:     at ExploitGuard.jar//io.github.confuser2188.exploitguard.Main.onEnable(Main.java:36)
[15:48:59] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:287)
[15:48:59] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:188)
[15:48:59] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[15:48:59] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[15:48:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:639)
[15:48:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:550)
[15:48:59] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:275)
[15:48:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1131)
[15:48:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[15:48:59] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[15:48:59] [Server thread/INFO]: [GemsEconomy] Enabling GemsEconomy v4.9.2
[15:48:59] [Server thread/INFO]: ----------------------------------------------------------
[15:48:59] [Server thread/INFO]: 
[15:48:59] [Server thread/INFO]: YOU ARE RUNNING AN UNSUPPORTED VERSION OF SPIGOT!
[15:48:59] [Server thread/INFO]: 
[15:48:59] [Server thread/INFO]: GemsEconomy Cheques functionality will at best be limited. Please don't come
[15:48:59] [Server thread/INFO]: complaining to me, the developer of GemsEconomy, when something breaks,
[15:48:59] [Server thread/INFO]: because running an unsupported version will cause exactly this. I do
[15:48:59] [Server thread/INFO]: in no way accept responsibility for ANY damage caused to a server running
[15:48:59] [Server thread/INFO]: an unsupported version of Spigot. It is recommended that you change to
[15:48:59] [Server thread/INFO]: a supported version of Spigot. Supported versions are 1.13, 1.14 & 1.15.
[15:48:59] [Server thread/INFO]:  Versions marked with an asterisk (*) may have limited functionality.
[15:48:59] [Server thread/INFO]: 
[15:48:59] [Server thread/INFO]: ----------------------------------------------------------
[15:48:59] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[15:48:59] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[15:48:59] [Server thread/WARN]: Whilst this makes it possible to use BungeeCord, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[15:48:59] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[15:48:59] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[15:48:59] [Server thread/INFO]: Preparing level "acubia"
[15:48:59] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[15:49:00] [Server thread/INFO]: Time elapsed: 354 ms
[15:49:00] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[15:49:00] [Server thread/INFO]: Time elapsed: 238 ms
[15:49:00] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.7.0
[15:49:00] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: Unknown (765) (765)
[15:49:00] [Server thread/WARN]: [ViaVersion] ViaVersion does not have any compatible versions for this server version!
[15:49:00] [Server thread/WARN]: [ViaVersion] Please remember that ViaVersion only adds support for versions newer than the server version.
[15:49:00] [Server thread/WARN]: [ViaVersion] If you need support for older versions you may need to use one or more ViaVersion addons too.
[15:49:00] [Server thread/WARN]: [ViaVersion] In that case please read the ViaVersion resource page carefully or use https://jo0001.github.io/ViaSetup
[15:49:00] [Server thread/WARN]: [ViaVersion] and if you're still unsure, feel free to join our Discord-Server for further assistance.
[15:49:00] [Server thread/WARN]: [ViaVersion] Couldn't find reflection methods/fields to access Channel from player.
Login race condition fixer will be disabled.
 Some plugins that use ViaAPI on join event may work incorrectly.
java.lang.NoSuchFieldException: NetworkManager
    at com.viaversion.viaversion.bukkit.listeners.JoinListener.findField(JoinListener.java:80) ~[ViaVersion-4.7.0.jar:?]
    at com.viaversion.viaversion.bukkit.listeners.JoinListener.<clinit>(JoinListener.java:50) ~[ViaVersion-4.7.0.jar:?]
    at com.viaversion.viaversion.bukkit.platform.BukkitViaLoader.load(BukkitViaLoader.java:83) ~[ViaVersion-4.7.0.jar:?]
    at com.viaversion.viaversion.ViaManagerImpl.onServerLoaded(ViaManagerImpl.java:156) ~[ViaVersion-4.7.0.jar:?]
    at com.viaversion.viaversion.ViaVersionPlugin.onEnable(ViaVersionPlugin.java:122) ~[ViaVersion-4.7.0.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:287) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:188) ~[paper-1.20.4.jar:git-Paper-496]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.4.jar:git-Paper-496]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:639) ~[paper-1.20.4.jar:git-Paper-496]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:550) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:671) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:431) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:309) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1131) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-496]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[15:49:00] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: ViaVersion
[15:49:00] [Server thread/INFO]: [SuperiorSkyblock2] Enabling SuperiorSkyblock2 v2024.1
[15:49:01] [Server thread/INFO]: Preparing start region for dimension minecraft:superiorworld
[15:49:03] [Server thread/INFO]: Time elapsed: 1601 ms
[15:49:03] [Server thread/INFO]: [SuperiorSkyblock2] Enabling the module bank...
[15:49:03] [Server thread/INFO]: [SuperiorSkyblock2] Finished enabling the module bank (Took 7ms)
[15:49:03] [Server thread/INFO]: [SuperiorSkyblock2] Enabling the module missions...
[15:49:03] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_4
[15:49:03] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_2
[15:49:03] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_5
[15:49:03] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_3
[15:49:04] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_1
[15:49:04] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_4
[15:49:04] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_2
[15:49:04] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_3
[15:49:04] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_1
[15:49:04] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_3
[15:49:04] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_1
[15:49:04] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_5
[15:49:04] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_2
[15:49:05] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_4
[15:49:05] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_3
[15:49:05] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_1
[15:49:05] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_2
[15:49:05] [Server thread/WARN]: Plugin 'SuperiorSkyblock2' is creating timing 'Plugin: SuperiorSkyblock2 v2024.1 Event: DynamicRegisteredListener::IslandSchematicPasteEvent(IslandSchematicPasteEvent)' - this is deprecated behavior, please report it to the authors: Ome_R
[15:49:05] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission explorer_2
[15:49:05] [Server thread/WARN]: Plugin 'SuperiorSkyblock2' is creating timing 'Plugin: SuperiorSkyblock2 v2024.1 Event: DynamicRegisteredListener::IslandSchematicPasteEvent(IslandSchematicPasteEvent)' - this is deprecated behavior, please report it to the authors: Ome_R
[15:49:05] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission explorer_1
[15:49:05] [Server thread/INFO]: [SuperiorSkyblock2] Finished enabling the module missions (Took 2078ms)
[15:49:05] [Server thread/INFO]: [SuperiorSkyblock2] Enabling the module generators...
[15:49:05] [Server thread/INFO]: [SuperiorSkyblock2] Finished enabling the module generators (Took 10ms)
[15:49:05] [Server thread/INFO]: [SuperiorSkyblock2] Enabling the module upgrades...
[15:49:05] [Server thread/INFO]: [SuperiorSkyblock2] Finished enabling the module upgrades (Took 38ms)
[15:49:05] [Server thread/INFO]: [SuperiorSkyblock2] Loading messages started...
[15:49:06] [Server thread/INFO]: [SuperiorSkyblock2]  - Found 699 messages in the language files.
[15:49:06] [Server thread/INFO]: [SuperiorSkyblock2] Loading messages done (Took 627ms)
[15:49:06] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic mycel.schematic (DefaultSchematicParser)
[15:49:07] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic desert_the_end.schematic (DefaultSchematicParser)
[15:49:07] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic marine.schematic (DefaultSchematicParser)
[15:49:07] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic desert_nether.schematic (DefaultSchematicParser)
[15:49:07] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic normal.schematic (DefaultSchematicParser)
[15:49:07] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic mycel_nether.schematic (DefaultSchematicParser)
[15:49:07] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic tropic.schematic (DefaultSchematicParser)
[15:49:08] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic desert.schematic (DefaultSchematicParser)
[15:49:08] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic mycel_the_end.schematic (DefaultSchematicParser)
[15:49:08] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic normal_nether.schematic (DefaultSchematicParser)
[15:49:08] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic normal_the_end.schematic (DefaultSchematicParser)
[15:49:08] [Server thread/WARN]: [SuperiorSkyblock2] [biomes.yml] Biome 'WOODED_HILLS' is not valid, skipping...
[15:49:09] [Server thread/WARN]: [SuperiorSkyblock2] [member-role.yml] Invalid role name: Member
[15:49:09] [Server thread/WARN]: [SuperiorSkyblock2] [member-role.yml] Invalid role name: Moderator
[15:49:09] [Server thread/WARN]: [SuperiorSkyblock2] [member-role.yml] Invalid role name: Leader
[15:49:09] [Server thread/INFO]: [SuperiorSkyblock2] Trying to connect to local database (SQLite)...
[15:49:09] [Server thread/INFO]: [SuperiorSkyblock2] Successfully established connection with local database!
[15:49:09] [Server thread/INFO]: [SuperiorSkyblock2] Creating a backup file...
[15:49:09] [Server thread/INFO]: [SuperiorSkyblock2] Backup done!
[15:49:09] [Server thread/INFO]: [SuperiorSkyblock2] Starting to load players...
[15:49:09] [Server thread/INFO]: [SuperiorSkyblock2] Finished loading 17 players (Took 20ms)
[15:49:09] [Server thread/INFO]: [SuperiorSkyblock2] Starting to load islands...
[15:49:09] [Server thread/INFO]: [SuperiorSkyblock2] Finished loading 6 islands (Took 177ms)
[15:49:09] [Server thread/INFO]: [SuperiorSkyblock2] Starting to load grid...
[15:49:09] [Server thread/INFO]: [SuperiorSkyblock2] Finished grid!
[15:49:09] [Server thread/INFO]: [SuperiorSkyblock2] Starting to load stacked blocks...
[15:49:09] [Server thread/INFO]: [SuperiorSkyblock2] Finished stacked blocks!
[15:49:10] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.3
[15:49:10] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[15:49:10] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.9+5934e49
[15:49:10] [Server thread/INFO]: [WorldGuard] (acubia) TNT ignition is PERMITTED.
[15:49:10] [Server thread/INFO]: [WorldGuard] (acubia) Lighters are PERMITTED.
[15:49:10] [Server thread/INFO]: [WorldGuard] (acubia) Lava fire is PERMITTED.
[15:49:10] [Server thread/INFO]: [WorldGuard] (acubia) Fire spread is UNRESTRICTED.
[15:49:10] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'acubia'
[15:49:10] [Server thread/INFO]: [WorldGuard] (acubia_the_end) TNT ignition is PERMITTED.
[15:49:10] [Server thread/INFO]: [WorldGuard] (acubia_the_end) Lighters are PERMITTED.
[15:49:10] [Server thread/INFO]: [WorldGuard] (acubia_the_end) Lava fire is PERMITTED.
[15:49:10] [Server thread/INFO]: [WorldGuard] (acubia_the_end) Fire spread is UNRESTRICTED.
[15:49:10] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'acubia_the_end'
[15:49:10] [Server thread/INFO]: [WorldGuard] (SuperiorWorld) TNT ignition is PERMITTED.
[15:49:10] [Server thread/INFO]: [WorldGuard] (SuperiorWorld) Lighters are PERMITTED.
[15:49:10] [Server thread/INFO]: [WorldGuard] (SuperiorWorld) Lava fire is PERMITTED.
[15:49:10] [Server thread/INFO]: [WorldGuard] (SuperiorWorld) Fire spread is UNRESTRICTED.
[15:49:10] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'SuperiorWorld'
[15:49:10] [Server thread/INFO]: [WorldGuard] Loading region data...
[15:49:11] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[15:49:11] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" 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--].
[15:49:11] [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.
[15:49:11] [Server thread/INFO]: Preparing start region for dimension minecraft:azriel_instance
[15:49:12] [Server thread/INFO]: Time elapsed: 821 ms
[15:49:12] [Server thread/INFO]: [WorldGuard] (azriel_instance) TNT ignition is PERMITTED.
[15:49:12] [Server thread/INFO]: [WorldGuard] (azriel_instance) Lighters are PERMITTED.
[15:49:12] [Server thread/INFO]: [WorldGuard] (azriel_instance) Lava fire is PERMITTED.
[15:49:12] [Server thread/INFO]: [WorldGuard] (azriel_instance) Fire spread is UNRESTRICTED.
[15:49:12] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'azriel_instance'
[15:49:12] [Server thread/INFO]: Preparing start region for dimension minecraft:donjon_acubia
[15:49:12] [Server thread/INFO]: Time elapsed: 106 ms
[15:49:12] [Server thread/INFO]: [WorldGuard] (donjon_acubia) TNT ignition is PERMITTED.
[15:49:12] [Server thread/INFO]: [WorldGuard] (donjon_acubia) Lighters are PERMITTED.
[15:49:12] [Server thread/INFO]: [WorldGuard] (donjon_acubia) Lava fire is PERMITTED.
[15:49:12] [Server thread/INFO]: [WorldGuard] (donjon_acubia) Fire spread is UNRESTRICTED.
[15:49:12] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'donjon_acubia'
[15:49:12] [Server thread/INFO]: [WorldGuard] (newmap) TNT ignition is PERMITTED.
[15:49:12] [Server thread/INFO]: [WorldGuard] (newmap) Lighters are PERMITTED.
[15:49:12] [Server thread/INFO]: [WorldGuard] (newmap) Lava fire is PERMITTED.
[15:49:12] [Server thread/INFO]: [WorldGuard] (newmap) Fire spread is UNRESTRICTED.
[15:49:12] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'newmap'
[15:49:12] [Server thread/INFO]: Preparing start region for dimension minecraft:azriel_dungeon
[15:49:12] [Server thread/INFO]: Time elapsed: 145 ms
[15:49:12] [Server thread/INFO]: [WorldGuard] (azriel_dungeon) TNT ignition is PERMITTED.
[15:49:12] [Server thread/INFO]: [WorldGuard] (azriel_dungeon) Lighters are PERMITTED.
[15:49:12] [Server thread/INFO]: [WorldGuard] (azriel_dungeon) Lava fire is PERMITTED.
[15:49:12] [Server thread/INFO]: [WorldGuard] (azriel_dungeon) Fire spread is UNRESTRICTED.
[15:49:12] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'azriel_dungeon'
[15:49:13] [Server thread/INFO]: Preparing start region for dimension minecraft:seaassets
[15:49:13] [Server thread/INFO]: Time elapsed: 136 ms
[15:49:13] [Server thread/INFO]: [WorldGuard] (seaassets) TNT ignition is PERMITTED.
[15:49:13] [Server thread/INFO]: [WorldGuard] (seaassets) Lighters are PERMITTED.
[15:49:13] [Server thread/INFO]: [WorldGuard] (seaassets) Lava fire is PERMITTED.
[15:49:13] [Server thread/INFO]: [WorldGuard] (seaassets) Fire spread is UNRESTRICTED.
[15:49:13] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'seaassets'
[15:49:13] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: maxxspawn
[15:49:13] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[15:49:13] [Server thread/INFO]: [WorldGuard] (acubiabyneoc) TNT ignition is PERMITTED.
[15:49:13] [Server thread/INFO]: [WorldGuard] (acubiabyneoc) Lighters are PERMITTED.
[15:49:13] [Server thread/INFO]: [WorldGuard] (acubiabyneoc) Lava fire is PERMITTED.
[15:49:13] [Server thread/INFO]: [WorldGuard] (acubiabyneoc) Fire spread is UNRESTRICTED.
[15:49:13] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'acubiabyneoc'
[15:49:14] [Server thread/INFO]: Preparing start region for dimension minecraft:island
[15:49:14] [Server thread/INFO]: Time elapsed: 143 ms
[15:49:14] [Server thread/INFO]: [WorldGuard] (Island) TNT ignition is PERMITTED.
[15:49:14] [Server thread/INFO]: [WorldGuard] (Island) Lighters are PERMITTED.
[15:49:14] [Server thread/INFO]: [WorldGuard] (Island) Lava fire is PERMITTED.
[15:49:14] [Server thread/INFO]: [WorldGuard] (Island) Fire spread is UNRESTRICTED.
[15:49:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Island'
[15:49:14] [Server thread/INFO]: [Multiverse-Core] 10 - World(s) loaded.
[15:49:14] [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.
[15:49:14] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[15:49:14] [Server thread/INFO]: [HolographicDisplays] Enabling HolographicDisplays v3.0.4
[15:49:14] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v10.0.44
[15:49:14] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises-10.0.44-Free.jar
[15:49:14] [Server thread/INFO]: [LibsDisguises] Discovered nms version: (Package: v1_20_R3) (LD: v1_20_R3) (MC: 1.20.4)
[15:49:14] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1314
[15:49:14] [Server thread/INFO]: [LibsDisguises] Build Date: 10/04/2024 02:12
[15:49:14] [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/
[15:49:14] [Server thread/INFO]: [LibsDisguises] You are running the free version, commands limited to non-players and operators. (Console, Command Blocks, Admins)
[15:49:14] [Server thread/INFO]: [LibsDisguises] Config 'TallSelfDisguises' is set to 'false', LD will hide oversized disguises from self disguise. https://www.spigotmc.org/wiki/lib-s-disguises-faq/#tall-disguises-self-disguises
[15:49:18] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[15:49:18] [Server thread/INFO]: [LibsDisguises] Loaded 1 custom disguise
[15:49:18] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[15:49:18] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: LibsDisguises
[15:49:18] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.34-SNAPSHOT (build 3429)
[15:49:18] [Server thread/INFO]: [Citizens] Loading external libraries
[15:49:21] [Server thread/INFO]: [Citizens] Detected system language [[fr]]. If youd like you can contribute to Citizens translations via our Discord! https://discord.gg/Q6pZGSR
[15:49:21] [Server thread/ERROR]: [Citizens] v2.0.34-SNAPSHOT (build 3429) n'est pas compatible avec Minecraft vv1_20_R3 - essayez de mettre à jour votre version de Citizen. Désactivation.
[15:49:21] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.34-SNAPSHOT (build 3429)
[15:49:21] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.6.2-3e052553
[15:49:21] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.20.4)...
[15:49:21] [Server thread/INFO]: [MythicMobs] The server is running Paper; enabled Paper exclusive functionality
[15:49:23] [Server thread/INFO]: [MythicMobs] Mythic HolographicDisplays Support has been enabled!
[15:49:23] [Server thread/INFO]: [MythicMobs] Mythic LibsDisguises Support has been enabled!
[15:49:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mythic [5.0.0]
[15:49:24] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[15:49:24] [Server thread/INFO]: [MythicMobs] Mythic ProtocolLib Support has been enabled!
[15:49:24] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[15:49:24] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[15:49:24] [Server thread/INFO]: [MythicMobs] Base directory /home/********/skyblock/plugins/MythicMobs/data
[15:49:24] [Server thread/INFO]: [MythicMobs] Module directory /home/********/skyblock/plugins/MythicMobs/data/worlds
[15:49:27] [Server thread/INFO]: [MythicMobs] Loading Packs...
[15:49:28] [Server thread/INFO]: [MythicMobs] Loading Items...
[15:49:28] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[15:49:28] [Server thread/INFO]: [MythicMobs] Loading Skills...
[15:49:28] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<caster.hp><&fs><caster.mhp>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:49:28] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<caster.hp><&fs><caster.mhp>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:49:28] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<caster.hp><&fs><caster.mhp>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:49:28] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<caster.hp><&fs><caster.mhp>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:49:28] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic shoot
[15:49:28] [Server thread/WARN]: [MythicMobs] --| File: /home/********/skyblock/plugins/MythicMobs/Skills/skeleton_skills.yml
[15:49:28] [Server thread/WARN]: [MythicMobs] --| Error Message: Custom damage types require MythicMobs Premium to use.
[15:49:28] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: shoot{type=ARROW;velocity=0.5;damage=5;accuracy=1}
[15:49:29] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[15:49:29] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[15:49:29] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[15:49:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition mobsinradius
[15:49:29] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mobsInRadius{types=Skeleton_Warrior,Skeleton_Archer,Skeleton_Shaman;amount=1to100;radius=10}
[15:49:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition mobsinradius
[15:49:29] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mobsInRadius{types=Skeleton_Warrior,Skeleton_Archer,Skeleton_Shaman;amount=1to100;radius=10}
[15:49:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition mobsinradius
[15:49:29] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mobsInRadius{types=Skeleton_Warrior,Skeleton_Archer,Skeleton_Shaman;amount=1to100;radius=10}
[15:49:29] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MIR{r=10;t=Skeleton_Warrior,Skeleton_Archer,Skeleton_Shaman}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[15:49:29] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MIR{r=10;t=Skeleton_Warrior,Skeleton_Archer,Skeleton_Shaman}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[15:49:29] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MIR{r=10;t=Skeleton_Warrior,Skeleton_Archer,Skeleton_Shaman}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[15:49:29] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MIR{r=10;t=Skeleton_Warrior,Skeleton_Archer,Skeleton_Shaman}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[15:49:29] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MIR{r=10;t=Skeleton_Warrior,Skeleton_Archer,Skeleton_Shaman}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[15:49:29] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MIR{r=10;t=Skeleton_Warrior,Skeleton_Archer,Skeleton_Shaman}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[15:49:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Skill: Lich_King_Teleport | File: /home/********/skyblock/plugins/MythicMobs/Skills/skeleton_skills.yml
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{type=Lich_King_Shadow;amount=1;radius=0;yRadius=0;onSurface=true}
[15:49:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Skill: Lich_King_Teleport | File: /home/********/skyblock/plugins/MythicMobs/Skills/skeleton_skills.yml
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{type=Lich_King_Shadow;amount=1;radius=0;yRadius=0;onSurface=true}
[15:49:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic projectile
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Skill: Lich_King_Scythe_Throw | File: /home/********/skyblock/plugins/MythicMobs/Skills/skeleton_skills.yml
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Invalid bullet mob type specified
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: projectile{bulletType=MOB;mob=Lich_King_Scythe;onEnd=Lich_King_Scythe_Throw_Summon;onHit=Lich_King_Scythe_Throw_Attack_DAMAGE;v=31;i=1;hR=1;vR=1;mr=27;hnp=true;hO=0;sE=false;sB=false;hs=false;hfs=0;syo=1.5;tyo=1.5}
[15:49:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Skill: Lich_King_Scythe_Throw_Summon | File: /home/********/skyblock/plugins/MythicMobs/Skills/skeleton_skills.yml
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{type=Lich_King_Scythe_Back;amount=1;radius=0;yRadius=0;onSurface=true}
[15:49:29] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MIR{r=100;t=Lich_King_Scythe_Back;target=armorstands}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[15:49:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic missile
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Skill: Lich_King_Scythe_Throw_Summon_MISSILE_SUDO | File: /home/********/skyblock/plugins/MythicMobs/Skills/skeleton_skills.yml
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Invalid bullet mob type specified
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: missile{bulletType=MOB;mob=Lich_King_Scythe;onHit=Lich_King_Scythe_Throw_hit_Back;onEnd=Lich_King_Scythe_Throw_End_Back;md=100;mr=400;v=31;i=1;hR=1;vR=1;in=2;sE=false;sB=false;syo=0.8;tyo=0.8;HitTarget=true;HitTargetOnly=true}
[15:49:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic projectile
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Skill: Lich_King_Tornado | File: /home/********/skyblock/plugins/MythicMobs/Skills/skeleton_skills.yml
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Invalid bullet mob type specified
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: projectile{bulletType=MOB;mob=Lich_King_Shadow_Tornado;onHit=Lich_King_Tornado_DAMAGE;v=15;i=1;hR=1;vR=1;mr=35;hnp=true;hO=0;sE=false;sB=false;hs=true;hfs=1;syo=1.5;tyo=1.5}
[15:49:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic projectile
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Skill: Lich_King_Tornado | File: /home/********/skyblock/plugins/MythicMobs/Skills/skeleton_skills.yml
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Invalid bullet mob type specified
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: projectile{bulletType=MOB;mob=Lich_King_Shadow_Tornado;onHit=Lich_King_Tornado_DAMAGE;v=15;i=1;hR=1;vR=1;mr=35;hnp=true;hO=90;sE=false;sB=false;hs=true;hfs=1;syo=1.5;tyo=1.5}
[15:49:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic projectile
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Skill: Lich_King_Tornado | File: /home/********/skyblock/plugins/MythicMobs/Skills/skeleton_skills.yml
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Invalid bullet mob type specified
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: projectile{bulletType=MOB;mob=Lich_King_Shadow_Tornado;onHit=Lich_King_Tornado_DAMAGE;v=15;i=1;hR=1;vR=1;mr=35;hnp=true;hO=180;sE=false;sB=false;hs=true;hfs=1;syo=1.5;tyo=1.5}
[15:49:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic projectile
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Skill: Lich_King_Tornado | File: /home/********/skyblock/plugins/MythicMobs/Skills/skeleton_skills.yml
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Invalid bullet mob type specified
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: projectile{bulletType=MOB;mob=Lich_King_Shadow_Tornado;onHit=Lich_King_Tornado_DAMAGE;v=15;i=1;hR=1;vR=1;mr=35;hnp=true;hO=270;sE=false;sB=false;hs=true;hfs=1;syo=1.5;tyo=1.5}
[15:49:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic projectile
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Skill: Lich_King_Tornado | File: /home/********/skyblock/plugins/MythicMobs/Skills/skeleton_skills.yml
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Invalid bullet mob type specified
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: projectile{bulletType=MOB;mob=Lich_King_Shadow_Tornado;onHit=Lich_King_Tornado_DAMAGE;v=15;i=1;hR=1;vR=1;mr=35;hnp=true;hO=45;sE=false;sB=false;hs=true;hfs=1;syo=1.5;tyo=1.5}
[15:49:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic projectile
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Skill: Lich_King_Tornado | File: /home/********/skyblock/plugins/MythicMobs/Skills/skeleton_skills.yml
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Invalid bullet mob type specified
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: projectile{bulletType=MOB;mob=Lich_King_Shadow_Tornado;onHit=Lich_King_Tornado_DAMAGE;v=15;i=1;hR=1;vR=1;mr=35;hnp=true;hO=135;sE=false;sB=false;hs=true;hfs=1;syo=1.5;tyo=1.5}
[15:49:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic projectile
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Skill: Lich_King_Tornado | File: /home/********/skyblock/plugins/MythicMobs/Skills/skeleton_skills.yml
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Invalid bullet mob type specified
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: projectile{bulletType=MOB;mob=Lich_King_Shadow_Tornado;onHit=Lich_King_Tornado_DAMAGE;v=15;i=1;hR=1;vR=1;mr=35;hnp=true;hO=225;sE=false;sB=false;hs=true;hfs=1;syo=1.5;tyo=1.5}
[15:49:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic projectile
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Skill: Lich_King_Tornado | File: /home/********/skyblock/plugins/MythicMobs/Skills/skeleton_skills.yml
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Invalid bullet mob type specified
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: projectile{bulletType=MOB;mob=Lich_King_Shadow_Tornado;onHit=Lich_King_Tornado_DAMAGE;v=15;i=1;hR=1;vR=1;mr=35;hnp=true;hO=315;sE=false;sB=false;hs=true;hfs=1;syo=1.5;tyo=1.5}
[15:49:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic projectile
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Skill: Lich_King_Tornado | File: /home/********/skyblock/plugins/MythicMobs/Skills/skeleton_skills.yml
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Invalid bullet mob type specified
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: projectile{bulletType=MOB;mob=Lich_King_Shadow_Tornado;onHit=Lich_King_Tornado_DAMAGE;v=15;i=1;hR=1;vR=1;mr=35;hnp=true;hO=0;sE=false;sB=false;hs=true;hfs=1;syo=1.5;tyo=1.5}
[15:49:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic projectile
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Skill: Lich_King_Tornado | File: /home/********/skyblock/plugins/MythicMobs/Skills/skeleton_skills.yml
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Invalid bullet mob type specified
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: projectile{bulletType=MOB;mob=Lich_King_Shadow_Tornado;onHit=Lich_King_Tornado_DAMAGE;v=15;i=1;hR=1;vR=1;mr=35;hnp=true;hO=90;sE=false;sB=false;hs=true;hfs=1;syo=1.5;tyo=1.5}
[15:49:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic projectile
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Skill: Lich_King_Tornado | File: /home/********/skyblock/plugins/MythicMobs/Skills/skeleton_skills.yml
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Invalid bullet mob type specified
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: projectile{bulletType=MOB;mob=Lich_King_Shadow_Tornado;onHit=Lich_King_Tornado_DAMAGE;v=15;i=1;hR=1;vR=1;mr=35;hnp=true;hO=180;sE=false;sB=false;hs=true;hfs=1;syo=1.5;tyo=1.5}
[15:49:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic projectile
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Skill: Lich_King_Tornado | File: /home/********/skyblock/plugins/MythicMobs/Skills/skeleton_skills.yml
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Invalid bullet mob type specified
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: projectile{bulletType=MOB;mob=Lich_King_Shadow_Tornado;onHit=Lich_King_Tornado_DAMAGE;v=15;i=1;hR=1;vR=1;mr=35;hnp=true;hO=270;sE=false;sB=false;hs=true;hfs=1;syo=1.5;tyo=1.5}
[15:49:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Mob: NPCGREETFX | File: /home/********/skyblock/plugins/MythicMobs/Mobs/littleroom/NPC.yml
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill NPCgreetfx
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=NPCgreetfx}
[15:49:29] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Mob: azriel_minion_pet | File: /home/********/skyblock/plugins/MythicMobs/Packs/littleroom/Mobs/azriel_minion_pet.yml
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill azriel_bookpage_drop
[15:49:29] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=azriel_bookpage_drop}
[15:49:29] [Server thread/INFO]: [MythicMobs] ✓ Loaded 61 mobs.
[15:49:29] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[15:49:29] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[15:49:29] [Server thread/INFO]: [MythicMobs] ✓ Loaded 358 skills.
[15:49:29] [Server thread/INFO]: [MythicMobs] ✓ Loaded 1 random spawns.
[15:49:29] [Server thread/INFO]: [MythicMobs] ✓ Loaded 19 mythic items.
[15:49:29] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 drop tables.
[15:49:29] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[15:49:29] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[15:49:30] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[15:49:30] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs v5.6.2 ( build 3e052553 ) has been successfully loaded!
[15:49:30] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
[15:49:30] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: MythicMobs
[15:49:30] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+81-cde7184
[15:49:31] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[15:49:31] [Server thread/INFO]: [Essentials] No kits found to migrate.
[15:49:31] [Server thread/INFO]: [Essentials] Loaded 39094 items from items.json.
[15:49:31] [Server thread/INFO]: [Essentials] Using locale fr
[15:49:31] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[15:49:32] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[15:49:32] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[15:49:32] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[15:49:32] [Server thread/INFO]: [CMILib] Enabling CMILib v1.4.7.14
[15:49:33] [Server thread/INFO]: Server version: v1_20_R3 - 1.20.4 - paper  git-Paper-496 (MC: 1.20.4)
[15:49:33] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[15:49:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmil [**.**.**.**]
[15:49:34] [Server thread/INFO]: PlaceholderAPI hooked.
[15:49:34] [Server thread/INFO]: Updated (EN) language file. Took 63ms
[15:49:34] [Server thread/INFO]: [Dungeons] Enabling Dungeons v3.4.6
[15:49:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: dungeons [3.4.6]
[15:49:34] [Server thread/INFO]: [Jobs] Enabling Jobs v5.2.2.2
[15:49:34] [Server thread/INFO]: ------------- Jobs -------------
[15:49:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: jobsr [**.**.**.**]
[15:49:34] [Server thread/INFO]: PlaceholderAPI hooked.
[15:49:34] [Server thread/INFO]: Connected to database (SqLite)
[15:49:34] [Server thread/INFO]: Loaded 8 titles
[15:49:34] [Server thread/INFO]: Loaded 69 protected blocks timers
[15:49:34] [Server thread/INFO]: Loaded 1402 custom item names
[15:49:34] [Server thread/INFO]: Loaded 82 custom entity names
[15:49:34] [Server thread/INFO]: Loaded 2 custom MythicMobs names
[15:49:34] [Server thread/INFO]: Loaded 38 custom enchant names
[15:49:34] [Server thread/INFO]: Loaded 43 custom enchant names
[15:49:34] [Server thread/INFO]: Loaded 16 custom color names
[15:49:34] [Server thread/INFO]: Update shops items icon section and use 'ItemStack' instead
[15:49:34] [Server thread/INFO]: Loaded 4 shop items
[15:49:34] [Server thread/INFO]: Loaded 1 quests for Crafter
[15:49:34] [Server thread/INFO]: Loaded 1 quests for Weaponsmith
[15:49:34] [Server thread/INFO]: Loaded 1 quests for Fisherman
[15:49:34] [Server thread/INFO]: Loaded 1 quests for Digger
[15:49:34] [Server thread/INFO]: Loaded 1 quests for Miner
[15:49:34] [Server thread/INFO]: Loaded 1 quests for Woodcutter
[15:49:34] [Server thread/INFO]: Loaded 1 quests for Hunter
[15:49:34] [Server thread/INFO]: Loaded 1 quests for Enchanter
[15:49:34] [Server thread/INFO]: Loaded 1 quests for Farmer
[15:49:34] [Server thread/INFO]: Loaded 1 quests for Explorer
[15:49:34] [Server thread/INFO]: Loaded 1 quests for Brewer
[15:49:34] [Server thread/INFO]: Loaded 1 quests for Builder
[15:49:34] [Server thread/INFO]: Loaded 12 jobs
[15:49:34] [Server thread/INFO]: Loaded 0 boosted items
[15:49:34] [Server thread/INFO]: Loaded 1 furnace for reassigning.
[15:49:35] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
[15:49:35] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
[15:49:35] [Server thread/INFO]: Preloaded 2 players data in 0.02
[15:49:35] [Server thread/INFO]: WorldGuard detected.
[15:49:35] [Server thread/INFO]: MythicMobs 5.x detected.
[15:49:35] [Server thread/INFO]: [Jobs] MythicMobs was found - Enabling capabilities.
[15:49:35] [Server thread/INFO]: [Jobs] Loaded 1 block protection entries. 4ms
[15:49:35] [Server thread/INFO]: Plugin has been enabled successfully.
[15:49:35] [Server thread/INFO]: ------------------------------------
[15:49:35] [Server thread/INFO]: [GCore] Enabling GCore v8.47.1
[15:49:35] [Server thread/INFO]: [GCore-migration] Already processed v7 -> v8 (config)
[15:49:35] [Server thread/INFO]: [GCore-migration] Already processed v7 -> v8 (data)
[15:49:35] [Server thread/INFO]: [GCore-migration] Already processed v8.4 -> v8.5
[15:49:35] [Server thread/INFO]: [GCore-migration] Already processed v8.8 -> v8.9
[15:49:35] [Server thread/INFO]: [GCore-migration] Already processed v8.23 -> v8.24
[15:49:35] [Server thread/INFO]: [GCore-migration] Already processed v8.24 -> v8.25
[15:49:35] [Server thread/INFO]: [GCore-migration] Already processed v8.29 -> v8.30
[15:49:35] [Server thread/INFO]: [GCore-8.47.1] Found server version MC_1_20_R1
[15:49:35] [Server thread/INFO]: [GCore-8.47.1] Loading materials...
[15:49:36] [Server thread/INFO]: [GCore-8.47.1] Loading sounds...
[15:49:36] [Server thread/INFO]: [GCore-8.47.1] Loading particles...
[15:49:36] [Server thread/INFO]: [GCore-8.47.1] Enabled currency VAULT
[15:49:36] [Server thread/INFO]: [GCore-8.47.1] Enabled currency XP_LEVEL
[15:49:36] [Server thread/INFO]: [GCore-8.47.1] Enabled currency XP
[15:49:36] [Server thread/INFO]: [GCore-8.47.1] Loading texts...
[15:49:36] [Server thread/INFO]: [GCore-8.47.1] Text durationformatdays doesn't exist in default files (not even in en_US)
[15:49:36] [Server thread/INFO]: [GCore-8.47.1] Loaded 1 missing text from default lang for generic.yml : durationFormatDays
[15:49:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gcore [1.0.0]
[15:49:36] [Server thread/INFO]: [GCore-8.47.1] Enabled integration for PlaceholderAPI
[15:49:36] [Server thread/INFO]: [GCore-8.47.1] Enabled integration for MythicMobs
[15:49:36] [Server thread/INFO]: [GCore-8.47.1] Initializing worker and caches
[15:49:36] [Server thread/INFO]: [GCore-8.47.1] Enabled NPC manager with ProtocolLib
[15:49:36] [Server thread/INFO]: [GCore-8.47.1] Registering integrations
[15:49:36] [Server thread/INFO]: [GCore-8.47.1] Initializing tasks and listeners
[15:49:36] [Server thread/INFO]: [GCore-8.47.1] Successfully enabled
[15:49:36] [Server thread/INFO]: [ChatReaction] Enabling ChatReaction v1.8.0
[15:49:37] [Server thread/INFO]: [ChatReaction] You are using Spigot! Tooltips in reaction start messages are enabled!
[15:49:37] [Server thread/INFO]: [ChatReaction] 0 words loaded!
[15:49:37] [Server thread/INFO]: [ChatReaction] Reaction stats are disabled!!
[15:49:37] [Server thread/INFO]: [ChatReaction] [STDOUT] ---------------------------
[15:49:37] [Server thread/WARN]: Nag author(s): '[extended_clip]' of 'ChatReaction v1.8.0' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[15:49:37] [Server thread/INFO]: [ChatReaction] [STDOUT]      ChatReaction Updater
[15:49:37] [Server thread/INFO]: [ChatReaction] [STDOUT]  
[15:49:37] [Server thread/INFO]: [ChatReaction] [STDOUT] Could not connect to spigotmc.org
[15:49:37] [Server thread/INFO]: [ChatReaction] [STDOUT] to check for updates! 
[15:49:37] [Server thread/INFO]: [ChatReaction] [STDOUT]  
[15:49:37] [Server thread/INFO]: [ChatReaction] [STDOUT] ---------------------------
[15:49:37] [Server thread/INFO]: [ChatReaction] [STDOUT] ---------------------------
[15:49:37] [Server thread/INFO]: [ChatReaction] [STDOUT]      ChatReaction Updater
[15:49:37] [Server thread/INFO]: [ChatReaction] [STDOUT]  
[15:49:37] [Server thread/INFO]: [ChatReaction] [STDOUT] You are running 1.8.0
[15:49:37] [Server thread/INFO]: [ChatReaction] [STDOUT] The latest version
[15:49:37] [Server thread/INFO]: [ChatReaction] [STDOUT] of ChatReaction!
[15:49:37] [Server thread/INFO]: [ChatReaction] [STDOUT]  
[15:49:37] [Server thread/INFO]: [ChatReaction] [STDOUT] ---------------------------
[15:49:37] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v5.2.2.3
[15:49:37] [Server thread/INFO]: [ExcellentCrates] Powered by nightcore
[15:49:37] [Server thread/INFO]: [ExcellentCrates] Using Internal hologram handler.
[15:49:37] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[15:49:37] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@5b881c3e
[15:49:37] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[15:49:37] [Server thread/INFO]: [ExcellentCrates] Registered currency: xp
[15:49:37] [Server thread/INFO]: [ExcellentCrates] Registered currency: levels
[15:49:37] [Server thread/INFO]: [ExcellentCrates] Registered currency: money
[15:49:37] [Server thread/INFO]: [ExcellentCrates] Loaded 8 crate openings.
[15:49:37] [Server thread/INFO]: [ExcellentCrates] Loaded 4 crate keys.
[15:49:37] [Server thread/INFO]: [ExcellentCrates] Loaded 4 rarities!
[15:49:37] [Server thread/INFO]: [ExcellentCrates] Loaded 4 crates.
[15:49:37] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[15:49:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: excellentcrates [**.**.**.**]
[15:49:37] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 631 ms!
[15:49:37] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.21.0-dev+81-cde7184
[15:49:37] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[15:49:37] [Server thread/INFO]: [Codex] Enabling Codex v1.15.1
[15:49:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: codex [1.15.1]
[15:49:37] [Server thread/INFO]: [Codex] Has been enabled! Version: 1.15.1
[15:49:37] [Server thread/INFO]: [Codex] Thanks for using my plugin!  ~Ajneb97
[15:49:37] [Server thread/INFO]: [NametagEdit] Enabling NametagEdit v4.5.23
[15:49:37] [Server thread/INFO]: [NametagEdit] Successfully loaded using bukkit version: v1_20_R3
[15:49:37] [Server thread/INFO]: [NametagEdit] Found LuckPerms! Hooking in.
[15:49:37] [Server thread/INFO]: [nCore] Enabling nCore v1.0.7
[15:49:37] [Server thread/INFO]: [nCore] Enabled nCore
[15:49:38] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.8.0
[15:49:38] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[15:49:39] [Server thread/INFO]: [ajLeaderboards] Loaded 4 boards
[15:49:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ajlb [2.8.0]
[15:49:39] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[15:49:39] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.8.0 by ajgeiss0702 enabled!
[15:49:39] [Server thread/INFO]: [BeautyQuests] Enabling BeautyQuests v0.20.1
[15:49:39] [Server thread/INFO]: [BeautyQuests] ------------ BeautyQuests ------------
[15:49:39] [Server thread/WARN]: [BeautyQuests] The Minecraft version 1_20_R3 is not supported by BeautyQuests.
[15:49:39] [Server thread/WARN]: [BeautyQuests] Some functionnalities of the plugin have not been enabled.
[15:49:39] [Server thread/INFO]: [BeautyQuests] Loaded language fr_FR (0.058s)!
[15:49:39] [Server thread/INFO]: [BeautyQuests] Loaded start particles: REDSTONE in shape POINT with color R255 G255 B0
[15:49:39] [Server thread/INFO]: [BeautyQuests] Loaded talk particles: VILLAGER_HAPPY in shape BAR
[15:49:39] [Server thread/INFO]: [BeautyQuests] Loaded next particles: SMOKE_NORMAL in shape SPOT
[15:49:39] [Server thread/INFO]: [WorldGuard] Registering session handler fr.skytasul.quests.utils.compatibility.worldguard.WorldGuardEntryHandler
[15:49:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: beautyquests [0.20.1]
[15:49:39] [Server thread/INFO]: [BeautyQuests] Placeholders registered !
[15:49:39] [Server thread/ERROR]: [BeautyQuests] No NPC plugin installed - please install Citizens or znpcs
[15:49:39] [Server thread/ERROR]: [BeautyQuests] This is a fatal error. Now disabling.
[15:49:39] [Server thread/INFO]: [WorldGuard] Unregistering session handler fr.skytasul.quests.utils.compatibility.worldguard.WorldGuardEntryHandler
[15:49:39] [Server thread/INFO]: [OldCombatMechanics] Enabling OldCombatMechanics v2.0.2
[15:49:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ocm [2.0.2]
[15:49:39] [Server thread/WARN]: [OldCombatMechanics] Configured world world not found, skipping...
[15:49:39] [Server thread/WARN]: [OldCombatMechanics] Configured world world_nether not found, skipping...
[15:49:39] [Server thread/WARN]: [OldCombatMechanics] Configured world world_the_end not found, skipping...
[15:49:40] [Server thread/INFO]: [OldCombatMechanics] OldCombatMechanics v2.0.2 has been enabled
[15:49:40] [Server thread/INFO]: [LaggRemover] Enabling LaggRemover v2.0.6
[15:49:40] [Server thread/INFO]: [LaggRemover] [STDOUT] 
    __                      ____                                         _    _____
   / /   ____ _____ _____ _/ __ \___  ____ ___  ____ _   _____  _____   | |  / /__ \
  / /   / __ `/ __ `/ __ `/ /_/ / _ \/ __ `__ \/ __ \ | / / _ \/ ___/   | | / /__/ /
 / /___/ /_/ / /_/ / /_/ / _, _/  __/ / / / / / /_/ / |/ /  __/ /       | |/ // __/
/_____/\__,_/\__, /\__, /_/ |_|\___/_/ /_/ /_/\____/|___/\___/_/        |___//____/
            /____//____/

[15:49:40] [Server thread/WARN]: Nag author(s): '[drew6017]' of 'LaggRemover v2.0.6' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[15:49:40] [Server thread/INFO]: [LaggRemover] Loaded 0 module(s)
[15:49:40] [Server thread/INFO]: [LaggRemover] The LaggRemover AI is now active!
[15:49:40] [Server thread/INFO]: [LaggRemover] LaggRemover has been enabled!
[15:49:40] [Server thread/INFO]: [SafeTrade] Enabling SafeTrade v1.1.1
[15:49:40] [Server thread/INFO]: [LagAssist] Enabling LagAssist v2.29.1
[15:49:40] [Server thread/INFO]: [LagAssist] [STDOUT] [mined.to] - KIT
[15:49:40] [Server thread/WARN]: Nag author(s): '[Stefatorus, EntryRise]' of 'LagAssist v2.29.1' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[15:49:40] [Server thread/INFO]: LagAssist » Enabling Systems:
[15:49:40] [Server thread/INFO]:     [] Economy manager
[15:49:40] [Server thread/INFO]:     [] Smart Mob Tools.
[15:49:40] [Server thread/INFO]:     [] MicroFeatures.
[15:49:40] [Server thread/INFO]:     [] Hopper Manager.
[15:49:40] [Server thread/INFO]:     [] Redstone Culler.
[15:49:40] [Server thread/INFO]:     [] Physics-Tweaker.
[15:49:40] [Server thread/INFO]:     [] Lag Monitor.
[15:49:40] [Server thread/INFO]:     [] MapVisualizer.
[15:49:40] [Server thread/INFO]:     [] Chunk Analyser.
[15:49:40] [Server thread/INFO]:     [] Chunk Limiter.
[15:49:40] [Server thread/INFO]:     [] StatsAnalyse.
[15:49:40] [Server thread/INFO]:     [] Spawner Manager.
[15:49:40] [Server thread/ERROR]: Error occurred while enabling LagAssist v2.29.1 (Is it up to date?)
java.lang.IllegalArgumentException: Material cannot be null
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:143) ~[guava-32.1.2-jre.jar:?]
    at org.bukkit.inventory.ItemStack.<init>(ItemStack.java:86) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.inventory.ItemStack.<init>(ItemStack.java:74) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.inventory.ItemStack.<init>(ItemStack.java:61) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at com.entryrise.lagassist.utils.V1_13.getStatics(V1_13.java:38) ~[Lagassist_2.30.jar:?]
    at com.entryrise.lagassist.utils.VersionMgr.getStatics(VersionMgr.java:27) ~[Lagassist_2.30.jar:?]
    at com.entryrise.lagassist.gui.DataGUI.setItems(DataGUI.java:72) ~[Lagassist_2.30.jar:?]
    at com.entryrise.lagassist.gui.DataGUI.Enabler(DataGUI.java:58) ~[Lagassist_2.30.jar:?]
    at com.entryrise.lagassist.Main.EnableClasses(Main.java:98) ~[Lagassist_2.30.jar:?]
    at com.entryrise.lagassist.Main.onEnable(Main.java:67) ~[Lagassist_2.30.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:287) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:188) ~[paper-1.20.4.jar:git-Paper-496]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.4.jar:git-Paper-496]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:639) ~[paper-1.20.4.jar:git-Paper-496]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:550) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:671) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:431) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:309) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1131) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-496]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[15:49:40] [Server thread/INFO]: [LagAssist] Disabling LagAssist v2.29.1
[15:49:40] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
[15:49:40] [Server thread/INFO]: [ClearLag] Using version-adapter: LatestVersionAdapter
[15:49:40] [Server thread/INFO]: [ClearLag] Loading modules...
[15:49:40] [Server thread/WARN]: [ClearLag] Clearlag failed to use the internal TPS tracker during initialization. Reverted to estimation... (net.minecraft.server.v1_20_R3.MinecraftServer)
[15:49:40] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[15:49:40] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[15:49:40] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[15:49:40] [Thread-13/INFO]: [ClearLag] Checking for updates compatible with your bukkit version [1.20]...
[15:49:40] [Server thread/INFO]: [AzLink] Enabling AzLink v1.3.1
[15:49:40] [Server thread/INFO]: [AzLink] Starting HTTP server
[15:49:40] [nioEventLoopGroup-3-1/INFO]: [AzLink] HTTP server started on /[0:0:0:0:0:0:0:0]:25588
[15:49:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: azlink [1.3.1]
[15:49:40] [Server thread/INFO]: [AzLink] PlaceholderAPI expansion enabled
[15:49:40] [Server thread/INFO]: [FriendsSpigot] Enabling FriendsSpigot v1.0.9.7
[15:49:40] [Thread-13/INFO]: [ClearLag] No updates found!
[15:49:40] [Folia Async Scheduler Thread #0/WARN]: [AzLink] A new update of AzLink is available: v1.3.5
[15:49:40] [Folia Async Scheduler Thread #0/WARN]: [AzLink] You can download it on https://azuriom.com/azlink
[15:49:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: friends [1.0.0]
[15:49:40] [Server thread/INFO]: Amis » The plugin was loaded successfully! [MC1.13 - 1.16]
[15:49:40] [Server thread/INFO]: Amis » Found (0) spigot-extensions!
[15:49:40] [Server thread/INFO]: [AntiAFKPlus] Enabling AntiAFKPlus v3.2.1
[15:49:40] [Server thread/INFO]: [VoxelSniper] Enabling VoxelSniper v8.13.0
[15:49:41] [Folia Async Scheduler Thread #1/INFO]: [AzLink] Successfully connected to https://acubia.fr
[15:49:41] [Server thread/INFO]: [VoxelSniper] Registered 70 Sniper Brushes with 136 handles.
[15:49:41] [Server thread/INFO]: [VoxelSniper] Registered Sniper Listener.
[15:49:41] [Server thread/INFO]: [VoteParty] Enabling VoteParty v2.31
[15:49:41] [Thread-16/INFO]: Checking for updates...
[15:49:42] [Server thread/WARN]: Plugin 'VoteParty' is creating timing 'Commands' - this is deprecated behavior, please report it to the authors: Glare, Clip, Sxtanna
[15:49:42] [Server thread/INFO]: [VoteParty] [ACF] Enabled Asynchronous Tab Completion Support!
[15:49:42] [Server thread/INFO]: 
 _  _  ____
/ )( \(  _ \
\ \/ / ) __/ VoteParty v2.31
 \__/ (__)   Server Version: git-Paper-496 (MC: 1.20.4)

[15:49:42] [Server thread/WARN]: Plugin 'VoteParty' is creating timing 'Command: vp' - this is deprecated behavior, please report it to the authors: Glare, Clip, Sxtanna
[15:49:42] [Server thread/WARN]: Plugin 'VoteParty' is creating timing 'Command: vp help' - this is deprecated behavior, please report it to the authors: Glare, Clip, Sxtanna
[15:49:42] [Server thread/WARN]: Plugin 'VoteParty' is creating timing 'Command: vp reload' - this is deprecated behavior, please report it to the authors: Glare, Clip, Sxtanna
[15:49:42] [Server thread/WARN]: Plugin 'VoteParty' is creating timing 'Command: vp givecrate' - this is deprecated behavior, please report it to the authors: Glare, Clip, Sxtanna
[15:49:42] [Server thread/WARN]: Plugin 'VoteParty' is creating timing 'Command: vp startparty' - this is deprecated behavior, please report it to the authors: Glare, Clip, Sxtanna
[15:49:42] [Server thread/WARN]: Plugin 'VoteParty' is creating timing 'Command: vp addvote' - this is deprecated behavior, please report it to the authors: Glare, Clip, Sxtanna
[15:49:42] [Server thread/WARN]: Plugin 'VoteParty' is creating timing 'Command: vp checkvotes' - this is deprecated behavior, please report it to the authors: Glare, Clip, Sxtanna
[15:49:42] [Server thread/WARN]: Plugin 'VoteParty' is creating timing 'Command: vp giveparty' - this is deprecated behavior, please report it to the authors: Glare, Clip, Sxtanna
[15:49:42] [Server thread/WARN]: Plugin 'VoteParty' is creating timing 'Command: vp resetvotes' - this is deprecated behavior, please report it to the authors: Glare, Clip, Sxtanna
[15:49:42] [Server thread/WARN]: Plugin 'VoteParty' is creating timing 'Command: vp setcounter' - this is deprecated behavior, please report it to the authors: Glare, Clip, Sxtanna
[15:49:42] [Server thread/WARN]: Plugin 'VoteParty' is creating timing 'Command: vp totalvotes' - this is deprecated behavior, please report it to the authors: Glare, Clip, Sxtanna
[15:49:42] [Server thread/WARN]: Plugin 'VoteParty' is creating timing 'Command: vp claim' - this is deprecated behavior, please report it to the authors: Glare, Clip, Sxtanna
[15:49:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: voteparty [2.0]
[15:49:42] [Server thread/INFO]: [CustomCommands] Enabling CustomCommands v4.3.0
[15:49:42] [Server thread/INFO]: [CustomCommands-migration] Already processed v3 -> v4 (config)
[15:49:42] [Server thread/INFO]: [CustomCommands-migration] Already processed v3 -> v4 (data)
[15:49:42] [Server thread/WARN]: [PlaceholderAPI] Failed to load expansion gcore. Identifier is already in use.
[15:49:42] [Server thread/INFO]: [CustomCommands-4.3.0] Enabled integration for PlaceholderAPI
[15:49:43] [Server thread/INFO]: [CustomCommands-4.3.0] Errors were found when loading CustomCommand helpserver :
[15:49:43] [Server thread/INFO]: [CustomCommands-4.3.0] - missing String at path patterns.a.pattern
[15:49:43] [Server thread/INFO]: [CustomCommands-4.3.0] Errors were found when loading CustomCommand discord :
[15:49:43] [Server thread/INFO]: [CustomCommands-4.3.0] - missing String at path patterns.a.pattern
[15:49:43] [Server thread/INFO]: [CustomCommands-4.3.0] Successfully loaded 3 custom commands : complex, discord, helpserver
[15:49:43] [Server thread/INFO]: [CustomCommands-4.3.0] Loading texts...
[15:49:43] [Server thread/INFO]: [CustomCommands-4.3.0] Successfully enabled
[15:49:43] [Server thread/INFO]: [Oraxen] Enabling Oraxen v1.175.0
[15:49:43] [Server thread/INFO]: Oraxen | Version v1_20_R3 has been detected.
[15:49:43] [Server thread/INFO]: Oraxen | Oraxen will use the NMSHandler for this version.
[15:49:44] [Server thread/INFO]: Oraxen | Slicing gui-textures to 1.20.2-format...
[15:49:45] [Server thread/INFO]: Oraxen | Successfully sliced gui-textures for 1.20.2
[15:49:45] [Server thread/INFO]: Oraxen | Converting global lang file to individual language files...
[15:49:46] [Server thread/INFO]: Oraxen | Verifying formatting for textures and models...
[15:49:46] [Server thread/INFO]: Oraxen | No broken models or textures were found in the resourcepack

[15:49:46] [Server thread/INFO]: Oraxen | Generating atlas-file for 1.19.3+ Resource Pack format
[15:49:46] [Server thread/INFO]: 
[15:49:46] [Server thread/INFO]: Oraxen | Attempting to merge imported font files...
[15:49:46] [Server thread/INFO]: Oraxen | Merged 2 duplicate font files into a final assets/minecraft/font/default.json
[15:49:46] [Server thread/INFO]: Oraxen | The imported font files have not been deleted.
[15:49:46] [Server thread/INFO]: Oraxen | If anything seems wrong, there might be conflicting unicodes assigned.
[15:49:46] [Server thread/INFO]: 
[15:49:46] [Server thread/INFO]: Oraxen | Successfully loaded on Debian GNU/Linux 11 (bullseye)
[15:49:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: oraxen [1.175.0]
[15:49:47] [Server thread/INFO]: Oraxen | Plugin "PlaceholderAPI" detected, enabling hooks
[15:49:47] [Server thread/INFO]: Oraxen | Plugin "MythicMobs" detected, enabling hooks
[15:49:47] [Server thread/INFO]: [goBrush] Enabling goBrush v3.8.0-72
[15:49:47] [Server thread/INFO]: [IPWhitelist] Enabling IPWhitelist v1.7*
[15:49:47] [Server thread/INFO]: [TAB] Enabling TAB v4.1.5
[15:49:48] [Server thread/INFO]: [TAB] Loaded NMS hook in 274ms
[15:49:48] [Server thread/INFO]: [TAB] Enabled in 217ms
[15:49:48] [Server thread/INFO]: [CommandNPC] Enabling CommandNPC v1.9.1*
[15:49:48] [Server thread/INFO]: ---------------------{CommandNPC Error}---------------------
[15:49:48] [Server thread/INFO]:                            Topic
[15:49:48] [Server thread/INFO]:                    Required Dependencies
[15:49:48] [Server thread/INFO]: 
[15:49:48] [Server thread/INFO]:     Citizens 2 not found! commandnpc will now shut down. 
[15:49:48] [Server thread/INFO]: 
[15:49:48] [Server thread/INFO]:        Class: commandnpc   Method: onEnable() 
[15:49:48] [Server thread/INFO]: 
[15:49:48] [Server thread/INFO]: ---------------------{CommandNPC Error}---------------------
[15:49:48] [Server thread/INFO]: [CommandNPC] Disabling CommandNPC v1.9.1
[15:49:48] [Server thread/INFO]: [MineableSpawners] Enabling MineableSpawners v3.1.5
[15:49:48] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.0-dev+81-cde7184
[15:49:48] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[15:49:48] [Server thread/INFO]: [AntiSpam] Enabling AntiSpam v0.1*
[15:49:48] [Server thread/WARN]: [AntiSpam] Could not save config.yml to plugins/AntiSpam/config.yml because config.yml already exists.
[15:49:48] [Server thread/WARN]: [AntiSpam] Could not save black_list.yml to plugins/AntiSpam/black_list.yml because black_list.yml already exists.
[15:49:48] [Server thread/INFO]: 
[15:49:48] [Server thread/INFO]: 
[15:49:48] [Server thread/INFO]: AntiSpam > Plugin activated, using the version: 0.1
[15:49:48] [Server thread/INFO]: 
[15:49:48] [Server thread/INFO]: 
[15:49:48] [Server thread/INFO]: [RoseStacker] Enabling RoseStacker v1.5.20
[15:49:48] [Server thread/INFO]: [RoseStacker] Initializing using RoseGarden v1.2.4
[15:49:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: rosestacker [1.5.20]
[15:49:49] [Server thread/INFO]: [Arceon] Enabling Arceon v0.4.2_1.16+
[15:49:49] [Server thread/INFO]: [Arceon] Arceon loading...
[15:49:49] [Server thread/INFO]: [Arceon] Loading config...
[15:49:49] [Server thread/INFO]: [Arceon] Loaded 11 fonts!
[15:49:50] [Server thread/INFO]: [goPaint] Enabling goPaint v3.1.0-79
[15:49:50] [Server thread/INFO]: [BungeeGuard] Enabling BungeeGuard v1.4.1
[15:49:50] [Server thread/INFO]: [BungeeGuard] Using Paper's PlayerHandshakeEvent to listen for connections.
[15:49:50] [Server thread/INFO]: [BattlePass] Enabling BattlePass v3.15.5
[15:49:50] [Server thread/INFO]: [BattlePass] [STDOUT] [BattlePass] You are using invalid version of Minecraft [v1_20_R3]!
[15:49:50] [Server thread/WARN]: Nag author(s): '[]' of 'BattlePass v3.15.5' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[15:49:50] [Server thread/INFO]: [BattlePass] Finished loading the week-2 quests. All quests loaded successfully.
[15:49:50] [Server thread/INFO]: [BattlePass] Finished loading the week-1 quests. All quests loaded successfully.
[15:49:50] [Server thread/INFO]: [BattlePass] Finished loading the week-4 quests. All quests loaded successfully.
[15:49:50] [Server thread/INFO]: [BattlePass] Finished loading the week-3 quests. All quests loaded successfully.
[15:49:50] [Server thread/INFO]: [BattlePass] Finished loading the daily quests. All quests loaded successfully.
[15:49:50] [Server thread/INFO]: [BattlePass] Successfully loaded the pass type with the id: premium
[15:49:50] [Server thread/INFO]: [BattlePass] Successfully loaded the pass type with the id: free
[15:49:50] [Server thread/INFO]: [BattlePass] Hooked into ChatReaction
[15:49:50] [Server thread/INFO]: [BattlePass] Hooked into ExcellentCrates
[15:49:50] [Server thread/INFO]: [BattlePass] Hooked into Jobs
[15:49:50] [Server thread/INFO]: [BattlePass] Using internal version as PluginVersion{major=5, minor=6, bugfix=2} for loading MythicMobs.
[15:49:50] [Server thread/INFO]: [BattlePass] Hooked into MythicMobs
[15:49:50] [Server thread/INFO]: [BattlePass] Hooked into SuperiorSkyblock2
[15:49:50] [Server thread/INFO]: [BattlePass] Register PlaceholderAPI placeholders
[15:49:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: battlepass [1.1]
[15:49:50] [Server thread/INFO]: [Infiniteannouncements] Enabling Infiniteannouncements v2.4.1
[15:49:50] [Server thread/INFO]:  
[15:49:50] [Server thread/INFO]: ====================================
[15:49:50] [Server thread/INFO]: Plugin name: Infiniteannouncements
[15:49:50] [Server thread/INFO]: Version: 2.4.1
[15:49:50] [Server thread/INFO]: Core version: 0.7.25
[15:49:50] [Server thread/INFO]: ====================================
[15:49:50] [Server thread/INFO]:  
[15:49:50] [Server thread/INFO]: [Infiniteannouncements] Loaded locale "en_US"
[15:49:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: infiniteannouncements [1.0.0]
[15:49:51] [Server thread/INFO]: [Duels] Enabling Duels v3.5.3
[15:49:51] [Server thread/INFO]: [Duels] Successfully hooked into 'Essentials'!
[15:49:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: duels [1.0]
[15:49:51] [Server thread/INFO]: [Duels] Successfully hooked into 'PlaceholderAPI'!
[15:49:51] [Server thread/INFO]: [Duels] Using Economy Provider: com.earth2me.essentials.economy.vault.VaultEconomyProvider
[15:49:51] [Server thread/INFO]: [Duels] Successfully hooked into 'Vault'!
[15:49:51] [Server thread/INFO]: [Duels] Successfully hooked into 'WorldGuard'!
[15:49:51] [Server thread/INFO]: [Duels] KitManagerImpl: Loaded 5 kit(s).
[15:49:51] [Server thread/INFO]: [Duels] ArenaManagerImpl: Loaded 1 arena(s).
[15:49:51] [Server thread/INFO]: [Duels] PlayerInfoManager: Lobby location was not set, using acubia's spawn location as default. Use the command /duels setlobby in-game to set the lobby location.
[15:49:51] [Server thread/INFO]: [Duels] QueueManager: Loaded 0 queue(s).
[15:49:51] [Server thread/INFO]: [Duels] QueueSignManagerImpl: Loaded 0 queue sign(s).
[15:49:51] [Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v4.2.10.2
[15:49:52] [Server thread/INFO]: [InteractiveChat] Opened Sqlite database successfully
[15:49:52] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Essentials!
[15:49:52] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ViaVersion!
[15:49:52] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into LuckPerms!
[15:49:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: interactivechat [**.**.**.**]
[15:49:52] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[15:49:52] [Server thread/INFO]: [maps] Enabling maps v3.7.1
[15:49:52] [Server thread/WARN]: [maps] Could not save maps_config.yml to plugins/maps/maps_config.yml because maps_config.yml already exists.
[15:49:52] [Server thread/ERROR]: [maps] Invalid server version
[15:49:52] [Server thread/ERROR]: [maps] This plugin is not compatible with this server version.
[15:49:52] [Server thread/ERROR]: [maps] "maps" is compatible with 1.16.5 - 1.20
[15:49:52] [Server thread/INFO]: [maps] Disabling maps v3.7.1
[15:49:52] [Server thread/INFO]: [KitCreator] Enabling KitCreator v1.1*
[15:49:52] [Server thread/INFO]: [KitCreator] KitCreator has been enabled!
[15:49:52] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.7-Release
[15:49:52] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[15:49:53] [Server thread/INFO]: [DeluxeMenus] 18 GUI menus loaded!
[15:49:53] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[15:49:53] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[15:49:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxemenus [1.13.7-Release]
[15:49:53] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.2
[15:49:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[15:49:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[15:49:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[15:49:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[15:49:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[15:49:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[15:49:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[15:49:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[15:49:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[15:49:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[15:49:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[15:49:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[15:49:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[15:49:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[15:49:53] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[15:49:54] [Server thread/INFO]: Starting remote control listener
[15:49:54] [Server thread/INFO]: Thread RCON Listener started
[15:49:54] [Server thread/INFO]: RCON running on 0.0.0.0:25575
[15:49:54] [Server thread/INFO]: Running delayed init tasks
[15:49:54] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[15:49:54] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[15:49:54] [Craft Scheduler Thread - 49 - InteractiveChat/INFO]: [InteractiveChat] Loading languages...
[15:49:54] [Craft Scheduler Thread - 61 - Vault/INFO]: [Vault] Checking for Updates ... 
[15:49:54] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:49:54] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] [Importing models]
[15:49:54] [Craft Scheduler Thread - 16 - ItemJoin/INFO]: [ItemJoin] Hooked into { Multiverse-Core, WorldGuard, PlaceholderAPI, ProtocolLib, Vault }
[15:49:54] [Craft Scheduler Thread - 16 - ItemJoin/INFO]: [ItemJoin] 1 Custom item(s) loaded!
[15:49:54] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:49:54] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing blacksmith.bbmodel.
[15:49:54] [Craft Scheduler Thread - 22 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[15:49:54] [Craft Scheduler Thread - 27 - Essentials/INFO]: [Essentials] Récupération des informations de version...
[15:49:54] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:49:54] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing npcgreeting.bbmodel.
[15:49:54] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:49:54] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing shadow_fx.bbmodel.
[15:49:54] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:49:54] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:49:54] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing nm_seahorse_black.bbmodel.
[15:49:54] [Craft Scheduler Thread - 48 - Duels/INFO]: [Duels] No updates were available. You are on the latest version!
[15:49:54] [Craft Scheduler Thread - 28 - CMILib/INFO]: New version of CMILib was detected. Please update it
[15:49:54] [Craft Scheduler Thread - 61 - Vault/INFO]: [Vault] No new version available
[15:49:54] [Craft Scheduler Thread - 39 - VoteParty/INFO]: [VoteParty] There is an update available: 2.38
[15:49:54] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:49:54] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing nm_seahorse_blue.bbmodel.
[15:49:54] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:49:54] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing nm_seahorse_green.bbmodel.
[15:49:54] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:49:54] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing nm_seahorse_purple.bbmodel.
[15:49:54] [Craft Scheduler Thread - 44 - RoseStacker/INFO]: [RoseStacker] Fetched 128 translation locales.
[15:49:54] [Server thread/INFO]: [SuperiorSkyblock2] Using RoseStacker as a spawners provider.
[15:49:54] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:49:54] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing nm_seahorse_red.bbmodel.
[15:49:54] [Server thread/INFO]: [SuperiorSkyblock2] Using RoseStacker as a stacked-blocks provider.
[15:49:54] [Craft Scheduler Thread - 18 - ItemJoin/INFO]: [ItemJoin] Your current version: v5.2.5-SNAPSHOT
[15:49:54] [Craft Scheduler Thread - 18 - ItemJoin/INFO]: [ItemJoin] This SNAPSHOT is outdated and a release version is now available.
[15:49:54] [Craft Scheduler Thread - 18 - ItemJoin/INFO]: [ItemJoin] A new version is available: v6.0.7-RELEASE
[15:49:54] [Craft Scheduler Thread - 18 - ItemJoin/INFO]: [ItemJoin] Get it from: https://github.com/RockinChaos/itemjoin/releases/latest
[15:49:54] [Craft Scheduler Thread - 18 - ItemJoin/INFO]: [ItemJoin] If you wish to auto update, please type /ItemJoin Upgrade
[15:49:54] [Server thread/INFO]: [SuperiorSkyblock2] Using LuckPerms as a permissions provider.
[15:49:54] [Server thread/INFO]: [SuperiorSkyblock2] Hooked into Essentials for support of vanish status of players.
[15:49:54] [Server thread/INFO]: [SuperiorSkyblock2] Hooked into Essentials for support of afk status of players.
[15:49:54] [Server thread/INFO]: [SuperiorSkyblock2] Using Vault as an economy provider.
[15:49:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: superior [2024.1]
[15:49:54] [Server thread/INFO]: [SuperiorSkyblock2] Using PlaceholderAPI for placeholders support.
[15:49:54] [Server thread/INFO]: [SuperiorSkyblock2] Detected PaperSpigot - Using async chunk-loading support with PaperMC.
[15:49:54] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[15:49:54] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (Essentials)
[15:49:54] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (LuckPerms)
[15:49:54] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] Plugin ModelEngine vR4.0.6.1 generated an exception while executing task 17
java.lang.RuntimeException: null
    at com.ticxo.modelengine.api.ModelEngineAPI.createActiveModel(ModelEngineAPI.java:185) ~[ModelEngine-4.0.6.1F.jar:?]
    at com.ticxo.modelengine.api.ModelEngineAPI.createActiveModel(ModelEngineAPI.java:179) ~[ModelEngine-4.0.6.1F.jar:?]
    at com.ticxo.modelengine.core.data.V3Data.lambda$convert$2(V3Data.java:84) ~[ModelEngine-4.0.6.1F.jar:?]
    at java.util.Map.forEach(Map.java:713) ~[?:?]
    at com.ticxo.modelengine.core.data.V3Data.convert(V3Data.java:83) ~[ModelEngine-4.0.6.1F.jar:?]
    at com.ticxo.modelengine.core.data.DataUpdater.convertToSavedData(DataUpdater.java:37) ~[ModelEngine-4.0.6.1F.jar:?]
    at com.ticxo.modelengine.core.listener.WorldListener.loadEntities(WorldListener.java:57) ~[ModelEngine-4.0.6.1F.jar:?]
    at com.ticxo.modelengine.core.listener.WorldListener.lambda$onEntityLoad$0(WorldListener.java:34) ~[ModelEngine-4.0.6.1F.jar:?]
    at java.lang.Iterable.forEach(Iterable.java:75) ~[?:?]
    at com.ticxo.modelengine.core.generator.ModelGeneratorImpl.lambda$executeQueuedTask$4(ModelGeneratorImpl.java:137) ~[ModelEngine-4.0.6.1F.jar:?]
    at java.util.concurrent.ConcurrentHashMap.computeIfPresent(ConcurrentHashMap.java:1828) ~[?:?]
    at com.ticxo.modelengine.core.generator.ModelGeneratorImpl.executeQueuedTask(ModelGeneratorImpl.java:136) ~[ModelEngine-4.0.6.1F.jar:?]
    at com.ticxo.modelengine.core.generator.ModelGeneratorImpl.importModelsInternal(ModelGeneratorImpl.java:267) ~[ModelEngine-4.0.6.1F.jar:?]
    at com.ticxo.modelengine.core.generator.ModelGeneratorImpl.lambda$importModels$0(ModelGeneratorImpl.java:84) ~[ModelEngine-4.0.6.1F.jar:?]
    at com.ticxo.modelengine.api.utils.ticker.DualTicker.lambda$queueIOTask$6(DualTicker.java:75) ~[ModelEngine-4.0.6.1F.jar:?]
    at com.ticxo.modelengine.api.utils.ticker.Task.tick(Task.java:25) ~[ModelEngine-4.0.6.1F.jar:?]
    at java.util.ArrayList.removeIf(ArrayList.java:1672) ~[?:?]
    at java.util.ArrayList.removeIf(ArrayList.java:1660) ~[?:?]
    at com.ticxo.modelengine.api.utils.ticker.PseudoThread.tick(PseudoThread.java:77) ~[ModelEngine-4.0.6.1F.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.4.jar:git-Paper-496]
    at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[paper-1.20.4.jar:git-Paper-496]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[paper-1.20.4.jar:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[15:49:55] [Server thread/INFO]: Loaded 1174 recipes
[15:49:55] [Server thread/INFO]: Loaded 1271 advancements
[15:49:57] [Server thread/INFO]: [PlaceholderAPI] An update for PlaceholderAPI (v2.11.6) is available at:
[15:49:57] [Server thread/INFO]: [PlaceholderAPI] https://www.spigotmc.org/resources/placeholderapi.6245/
[15:49:57] [Server thread/WARN]: [ViaVersion] There is a newer plugin version available: 4.10.2, you're on: 4.7.0
[15:49:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.5]
[15:49:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[15:49:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.8.1]
[15:49:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gemseconomy [1.6]
[15:49:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: checkitem [2.7.1]
[15:49:57] [Server thread/INFO]: 5 placeholder hook(s) registered! 3 placeholder hook(s) have an update available.
[15:49:57] [Server thread/INFO]: Done (88.690s)! For help, type "help"
[15:49:57] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 3743ms or 74 ticks behind
[15:49:57] [Server thread/INFO]: Timings Reset
[15:49:57] [Craft Scheduler Thread - 44 - Oraxen/INFO]: Oraxen | Automatic upload of the resource pack is enabled, uploading...
[15:49:58] [Craft Scheduler Thread - 27 - Essentials/WARN]: [Essentials] Vous êtes en retard de 12 version(s) de développement d‘EssentialsX !
[15:49:58] [Craft Scheduler Thread - 27 - Essentials/WARN]: [Essentials] Téléchargez-la ici : https://essentialsx.net/downloads.html
[15:49:59] [Craft Scheduler Thread - 44 - Oraxen/INFO]: Oraxen | Resourcepack uploaded to [REDACTED]
[15:50:00] [Craft Scheduler Thread - 49 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[15:50:01] [Server thread/INFO]:     >> Dungeons loaded 0 Grids
[15:50:01] [Server thread/INFO]:     >> Dungeons loaded 1 Dungeons
[15:50:01] [Server thread/INFO]:     >> Dungeons loaded 2 Structures
[15:50:01] [Server thread/INFO]:     >> Dungeons loaded 1 Entities
[15:50:01] [Server thread/INFO]:     >> Dungeons loaded 1 Loot Tables
[15:50:01] [Server thread/INFO]:     >> Dungeons loaded 2 Placed Structures
[15:50:01] [Server thread/INFO]:     >> Dungeons loaded 0 Scoreboards
[15:50:01] [Server thread/INFO]:     >> Dungeons loaded 0 Loadouts
[15:50:01] [Server thread/INFO]:     >> Dungeons loaded 1 Restrictions
[15:50:01] [Server thread/INFO]:     >> Dungeons loaded 1 Objectives
[15:50:01] [Server thread/INFO]:     >> Dungeons loaded 0 Backpacks
[15:50:01] [Server thread/INFO]:     >> Dungeons loaded 0 Packages
[15:50:01] [Server thread/INFO]:     >> Dungeons loaded 0 Boosters
[15:50:03] [Server thread/INFO]: Dungeons loaded files after Multiverse-Core loaded
[15:50:22] [User Authenticator #0/INFO]: UUID of player sowayy_ is 023ed5d8-d4ac-4fc1-8e6a-67761da9fcf8
[15:50:23] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "java.lang.reflect.Field.get(Object)" because "field" is null
[15:50:23] [Server thread/WARN]:     at ExploitGuard.jar//io.github.confuser2188.packetlistener_eg.Reflection.getFieldValue(Reflection.java:61)
[15:50:23] [Server thread/WARN]:     at ExploitGuard.jar//io.github.confuser2188.packetlistener_eg.PacketListener.getNetworkManager(PacketListener.java:41)
[15:50:23] [Server thread/WARN]:     at ExploitGuard.jar//io.github.confuser2188.packetlistener_eg.PacketListener.addPlayer(PacketListener.java:47)
[15:50:23] [Server thread/WARN]:     at ExploitGuard.jar//io.github.confuser2188.packetlistener_eg.PacketListener.onJoin(PacketListener.java:72)
[15:50:23] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor69.execute(Unknown Source)
[15:50:23] [Server thread/WARN]:     at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77)
[15:50:23] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81)
[15:50:23] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[15:50:23] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[15:50:23] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126)
[15:50:23] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.a(PlayerList.java:345)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.a(ServerConfigurationPacketListenerImpl.java:134)
[15:50:23] [Server thread/WARN]:     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(ServerboundFinishConfigurationPacket.java:18)
[15:50:23] [Server thread/WARN]:     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(ServerboundFinishConfigurationPacket.java:9)
[15:50:23] [Server thread/WARN]:     at net.minecraft.network.protocol.PlayerConnectionUtils.lambda$ensureRunningOnSameThread$0(PlayerConnectionUtils.java:54)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[15:50:23] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.d(IAsyncTaskHandler.java:149)
[15:50:23] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(IAsyncTaskHandlerReentrant.java:24)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1465)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:194)
[15:50:23] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.x(IAsyncTaskHandler.java:123)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.bl(MinecraftServer.java:1442)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1365)
[15:50:23] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.c(IAsyncTaskHandler.java:133)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w_(MinecraftServer.java:1343)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1232)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[15:50:23] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[15:50:23] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "java.lang.reflect.Field.get(Object)" because "field" is null
[15:50:23] [Server thread/WARN]:     at ExploitGuard.jar//io.github.confuser2188.packetlistener_eg.Reflection.getFieldValue(Reflection.java:61)
[15:50:23] [Server thread/WARN]:     at ExploitGuard.jar//io.github.confuser2188.packetlistener_eg.PacketListener.getNetworkManager(PacketListener.java:42)
[15:50:23] [Server thread/WARN]:     at ExploitGuard.jar//io.github.confuser2188.packetlistener_eg.PacketListener.addPlayer(PacketListener.java:47)
[15:50:23] [Server thread/WARN]:     at ExploitGuard.jar//io.github.confuser2188.packetlistener_eg.PacketListener.onJoin(PacketListener.java:72)
[15:50:23] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor69.execute(Unknown Source)
[15:50:23] [Server thread/WARN]:     at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77)
[15:50:23] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81)
[15:50:23] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[15:50:23] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[15:50:23] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126)
[15:50:23] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.a(PlayerList.java:345)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.a(ServerConfigurationPacketListenerImpl.java:134)
[15:50:23] [Server thread/WARN]:     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(ServerboundFinishConfigurationPacket.java:18)
[15:50:23] [Server thread/WARN]:     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(ServerboundFinishConfigurationPacket.java:9)
[15:50:23] [Server thread/WARN]:     at net.minecraft.network.protocol.PlayerConnectionUtils.lambda$ensureRunningOnSameThread$0(PlayerConnectionUtils.java:54)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[15:50:23] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.d(IAsyncTaskHandler.java:149)
[15:50:23] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(IAsyncTaskHandlerReentrant.java:24)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1465)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:194)
[15:50:23] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.x(IAsyncTaskHandler.java:123)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.bl(MinecraftServer.java:1442)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1365)
[15:50:23] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.c(IAsyncTaskHandler.java:133)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w_(MinecraftServer.java:1343)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1232)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[15:50:23] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[15:50:23] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "java.lang.reflect.Field.get(Object)" because "field" is null
[15:50:23] [Server thread/WARN]:     at ExploitGuard.jar//io.github.confuser2188.packetlistener_eg.Reflection.getFieldValue(Reflection.java:61)
[15:50:23] [Server thread/WARN]:     at ExploitGuard.jar//io.github.confuser2188.packetlistener_eg.PacketListener.getChannel(PacketListener.java:35)
[15:50:23] [Server thread/WARN]:     at ExploitGuard.jar//io.github.confuser2188.packetlistener_eg.PacketListener.addPlayer(PacketListener.java:47)
[15:50:23] [Server thread/WARN]:     at ExploitGuard.jar//io.github.confuser2188.packetlistener_eg.PacketListener.onJoin(PacketListener.java:72)
[15:50:23] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor69.execute(Unknown Source)
[15:50:23] [Server thread/WARN]:     at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77)
[15:50:23] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81)
[15:50:23] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[15:50:23] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[15:50:23] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126)
[15:50:23] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.a(PlayerList.java:345)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.a(ServerConfigurationPacketListenerImpl.java:134)
[15:50:23] [Server thread/WARN]:     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(ServerboundFinishConfigurationPacket.java:18)
[15:50:23] [Server thread/WARN]:     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(ServerboundFinishConfigurationPacket.java:9)
[15:50:23] [Server thread/WARN]:     at net.minecraft.network.protocol.PlayerConnectionUtils.lambda$ensureRunningOnSameThread$0(PlayerConnectionUtils.java:54)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[15:50:23] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.d(IAsyncTaskHandler.java:149)
[15:50:23] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(IAsyncTaskHandlerReentrant.java:24)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1465)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:194)
[15:50:23] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.x(IAsyncTaskHandler.java:123)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.bl(MinecraftServer.java:1442)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1365)
[15:50:23] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.c(IAsyncTaskHandler.java:133)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w_(MinecraftServer.java:1343)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1232)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[15:50:23] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[15:50:23] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.netty.channel.Channel.pipeline()" because "ch" is null
[15:50:23] [Server thread/WARN]:     at ExploitGuard.jar//io.github.confuser2188.packetlistener_eg.PacketListener.addPlayer(PacketListener.java:48)
[15:50:23] [Server thread/WARN]:     at ExploitGuard.jar//io.github.confuser2188.packetlistener_eg.PacketListener.onJoin(PacketListener.java:72)
[15:50:23] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor69.execute(Unknown Source)
[15:50:23] [Server thread/WARN]:     at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77)
[15:50:23] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81)
[15:50:23] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[15:50:23] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[15:50:23] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126)
[15:50:23] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.a(PlayerList.java:345)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.a(ServerConfigurationPacketListenerImpl.java:134)
[15:50:23] [Server thread/WARN]:     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(ServerboundFinishConfigurationPacket.java:18)
[15:50:23] [Server thread/WARN]:     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(ServerboundFinishConfigurationPacket.java:9)
[15:50:23] [Server thread/WARN]:     at net.minecraft.network.protocol.PlayerConnectionUtils.lambda$ensureRunningOnSameThread$0(PlayerConnectionUtils.java:54)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[15:50:23] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.d(IAsyncTaskHandler.java:149)
[15:50:23] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(IAsyncTaskHandlerReentrant.java:24)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1465)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:194)
[15:50:23] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.x(IAsyncTaskHandler.java:123)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.bl(MinecraftServer.java:1442)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1365)
[15:50:23] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.c(IAsyncTaskHandler.java:133)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w_(MinecraftServer.java:1343)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1232)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[15:50:23] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[15:50:23] [Server thread/WARN]: java.lang.IllegalStateException: Unable to set value of field private final net.minecraft.network.chat.numbers.NumberFormat net.minecraft.network.protocol.game.PacketPlayOutScoreboardObjective.g
[15:50:23] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.reflect.accessors.DefaultFieldAccessor.set(DefaultFieldAccessor.java:44)
[15:50:23] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.reflect.StructureModifier.writeInternal(StructureModifier.java:358)
[15:50:23] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.reflect.StructureModifier.write(StructureModifier.java:321)
[15:50:23] [Server thread/WARN]:     at oraxen-1.175.0.jar//io.th0rgal.oraxen.font.packets.ScoreboardPacketListener.onPacketSending(ScoreboardPacketListener.java:22)
[15:50:23] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokeSendingListener(SortedPacketListenerList.java:219)
[15:50:23] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokeUnpackedPacketSending(SortedPacketListenerList.java:204)
[15:50:23] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokePacketSending(SortedPacketListenerList.java:149)
[15:50:23] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokePacketSending(SortedPacketListenerList.java:139)
[15:50:23] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.PacketFilterManager.postPacketToListeners(PacketFilterManager.java:553)
[15:50:23] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.PacketFilterManager.invokePacketSending(PacketFilterManager.java:526)
[15:50:23] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.manager.NetworkManagerInjector.onPacketSending(NetworkManagerInjector.java:100)
[15:50:23] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelInjector.processOutbound(NettyChannelInjector.java:563)
[15:50:23] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelInjector$2.doProxyRunnable(NettyChannelInjector.java:466)
[15:50:23] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyEventLoopProxy.proxyRunnable(NettyEventLoopProxy.java:43)
[15:50:23] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyEventLoopProxy.execute(NettyEventLoopProxy.java:252)
[15:50:23] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.b(NetworkManager.java:433)
[15:50:23] [Server thread/WARN]:     at net.minecraft.network.NetworkManager$PacketSendAction.lambda$new$0(NetworkManager.java:961)
[15:50:23] [Server thread/WARN]:     at net.minecraft.network.NetworkManager$WrappedConsumer.accept(NetworkManager.java:945)
[15:50:23] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.processQueue(NetworkManager.java:563)
[15:50:23] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.flushQueue(NetworkManager.java:524)
[15:50:23] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:413)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.network.ServerCommonPacketListenerImpl.a(ServerCommonPacketListenerImpl.java:255)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.network.ServerCommonPacketListenerImpl.b(ServerCommonPacketListenerImpl.java:240)
[15:50:23] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.entity.CraftPlayer.sendCustomChatCompletionPacket(CraftPlayer.java:1224)
[15:50:23] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.entity.CraftPlayer.removeCustomChatCompletions(CraftPlayer.java:1212)
[15:50:23] [Server thread/WARN]:     at oraxen-1.175.0.jar//io.th0rgal.oraxen.font.FontManager.sendGlyphTabCompletion(FontManager.java:237)
[15:50:23] [Server thread/WARN]:     at oraxen-1.175.0.jar//io.th0rgal.oraxen.font.FontEvents.onPlayerJoin(FontEvents.java:237)
[15:50:23] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor884.execute(Unknown Source)
[15:50:23] [Server thread/WARN]:     at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77)
[15:50:23] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81)
[15:50:23] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[15:50:23] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[15:50:23] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126)
[15:50:23] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.a(PlayerList.java:345)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.a(ServerConfigurationPacketListenerImpl.java:134)
[15:50:23] [Server thread/WARN]:     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(ServerboundFinishConfigurationPacket.java:18)
[15:50:23] [Server thread/WARN]:     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(ServerboundFinishConfigurationPacket.java:9)
[15:50:23] [Server thread/WARN]:     at net.minecraft.network.protocol.PlayerConnectionUtils.lambda$ensureRunningOnSameThread$0(PlayerConnectionUtils.java:54)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[15:50:23] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.d(IAsyncTaskHandler.java:149)
[15:50:23] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(IAsyncTaskHandlerReentrant.java:24)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1465)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:194)
[15:50:23] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.x(IAsyncTaskHandler.java:123)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.bl(MinecraftServer.java:1442)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1365)
[15:50:23] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.c(IAsyncTaskHandler.java:133)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w_(MinecraftServer.java:1343)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1232)
[15:50:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[15:50:23] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[15:50:23] [Server thread/WARN]: Caused by: java.lang.ClassCastException: Cannot cast io.papermc.paper.scoreboard.numbers.BlankFormatImpl to net.minecraft.network.chat.numbers.NumberFormat
[15:50:23] [Server thread/WARN]:     at java.base/java.lang.Class.cast(Class.java:3889)
[15:50:23] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.reflect.accessors.DefaultFieldAccessor.set(DefaultFieldAccessor.java:41)
[15:50:23] [Server thread/WARN]:     ... 51 more
[15:50:23] [Server thread/WARN]: java.lang.IllegalStateException: Unable to set value of field private final net.minecraft.network.chat.numbers.NumberFormat net.minecraft.network.protocol.game.PacketPlayOutScoreboardObjective.g
[15:50:23] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.reflect.accessors.DefaultFieldAccessor.set(DefaultFieldAccessor.java:44)
[15:50:24] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.reflect.StructureModifier.writeInternal(StructureModifier.java:358)
[15:50:24] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.reflect.StructureModifier.write(StructureModifier.java:321)
[15:50:24] [Server thread/WARN]:     at oraxen-1.175.0.jar//io.th0rgal.oraxen.font.packets.ScoreboardPacketListener.onPacketSending(ScoreboardPacketListener.java:22)
[15:50:24] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokeSendingListener(SortedPacketListenerList.java:219)
[15:50:24] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokeUnpackedPacketSending(SortedPacketListenerList.java:204)
[15:50:24] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokePacketSending(SortedPacketListenerList.java:149)
[15:50:24] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokePacketSending(SortedPacketListenerList.java:139)
[15:50:24] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.PacketFilterManager.postPacketToListeners(PacketFilterManager.java:553)
[15:50:24] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.PacketFilterManager.invokePacketSending(PacketFilterManager.java:526)
[15:50:24] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.manager.NetworkManagerInjector.onPacketSending(NetworkManagerInjector.java:100)
[15:50:24] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelInjector.processOutbound(NettyChannelInjector.java:563)
[15:50:24] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelInjector$2.doProxyRunnable(NettyChannelInjector.java:466)
[15:50:24] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyEventLoopProxy.proxyRunnable(NettyEventLoopProxy.java:43)
[15:50:24] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyEventLoopProxy.execute(NettyEventLoopProxy.java:252)
[15:50:24] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.b(NetworkManager.java:433)
[15:50:24] [Server thread/WARN]:     at net.minecraft.network.NetworkManager$PacketSendAction.lambda$new$0(NetworkManager.java:961)
[15:50:24] [Server thread/WARN]:     at net.minecraft.network.NetworkManager$WrappedConsumer.accept(NetworkManager.java:945)
[15:50:24] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.processQueue(NetworkManager.java:563)
[15:50:24] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.flushQueue(NetworkManager.java:524)
[15:50:24] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:413)
[15:50:24] [Server thread/WARN]:     at net.minecraft.server.network.ServerCommonPacketListenerImpl.a(ServerCommonPacketListenerImpl.java:255)
[15:50:24] [Server thread/WARN]:     at net.minecraft.server.network.ServerCommonPacketListenerImpl.b(ServerCommonPacketListenerImpl.java:240)
[15:50:24] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.entity.CraftPlayer.sendCustomChatCompletionPacket(CraftPlayer.java:1224)
[15:50:24] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.entity.CraftPlayer.removeCustomChatCompletions(CraftPlayer.java:1212)
[15:50:24] [Server thread/WARN]:     at oraxen-1.175.0.jar//io.th0rgal.oraxen.font.FontManager.sendGlyphTabCompletion(FontManager.java:237)
[15:50:24] [Server thread/WARN]:     at oraxen-1.175.0.jar//io.th0rgal.oraxen.font.FontEvents.onPlayerJoin(FontEvents.java:237)
[15:50:24] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor884.execute(Unknown Source)
[15:50:24] [Server thread/WARN]:     at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77)
[15:50:24] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81)
[15:50:24] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[15:50:24] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[15:50:24] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126)
[15:50:24] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615)
[15:50:24] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.a(PlayerList.java:345)
[15:50:24] [Server thread/WARN]:     at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.a(ServerConfigurationPacketListenerImpl.java:134)
[15:50:24] [Server thread/WARN]:     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(ServerboundFinishConfigurationPacket.java:18)
[15:50:24] [Server thread/WARN]:     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(ServerboundFinishConfigurationPacket.java:9)
[15:50:24] [Server thread/WARN]:     at net.minecraft.network.protocol.PlayerConnectionUtils.lambda$ensureRunningOnSameThread$0(PlayerConnectionUtils.java:54)
[15:50:24] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[15:50:24] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.d(IAsyncTaskHandler.java:149)
[15:50:24] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(IAsyncTaskHandlerReentrant.java:24)
[15:50:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1465)
[15:50:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:194)
[15:50:24] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.x(IAsyncTaskHandler.java:123)
[15:50:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.bl(MinecraftServer.java:1442)
[15:50:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1365)
[15:50:24] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.c(IAsyncTaskHandler.java:133)
[15:50:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w_(MinecraftServer.java:1343)
[15:50:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1232)
[15:50:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[15:50:24] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[15:50:24] [Server thread/WARN]: Caused by: java.lang.ClassCastException: Cannot cast io.papermc.paper.scoreboard.numbers.BlankFormatImpl to net.minecraft.network.chat.numbers.NumberFormat
[15:50:24] [Server thread/WARN]:     at java.base/java.lang.Class.cast(Class.java:3889)
[15:50:24] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.reflect.accessors.DefaultFieldAccessor.set(DefaultFieldAccessor.java:41)
[15:50:24] [Server thread/WARN]:     ... 51 more
[15:50:24] [Server thread/INFO]: sowayy_[/**.**.**.**:36280] logged in with entity id 600 at ([acubia]159.48850662868298, 43.00130186861765, -464.4483015220336)
[15:50:24] [Server thread/INFO]: + sowayy_
[15:50:25] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2527ms or 50 ticks behind
[15:50:30] [Server thread/INFO]: sowayy_ issued server command: /npc
[15:50:30] [Server thread/ERROR]: null
org.bukkit.command.CommandException: Cannot execute command 'npc' in plugin Citizens v2.0.34-SNAPSHOT (build 3429) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:155) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.dispatchCommand(CraftServer.java:999) ~[paper-1.20.4.jar:git-Paper-496]
    at org.bukkit.craftbukkit.v1_20_R3.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[paper-1.20.4.jar:git-Paper-496]
    at com.mojang.brigadier.context.ContextChain.runExecutable(ContextChain.java:73) ~[brigadier-1.2.9.jar:?]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:31) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:19) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.commands.execution.UnboundEntryAction.lambda$bind$0(UnboundEntryAction.java:8) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.commands.execution.CommandQueueEntry.a(CommandQueueEntry.java:5) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.commands.execution.ExecutionContext.runCommandQueue(ExecutionContext.java:103) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.commands.Commands.executeCommandInContext(Commands.java:434) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:336) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:323) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2230) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$14(ServerGamePacketListenerImpl.java:2190) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:149) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1465) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:194) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:123) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1442) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1365) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.util.thread.BlockableEventLoop.runAllTasks(BlockableEventLoop.java:112) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1557) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1226) ~[paper-1.20.4.jar:git-Paper-496]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-496]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[15:50:38] [Server thread/INFO]: sowayy_ issued server command: /o dump_log