Paste #131216: Unnamed Server Log Paste

Date: 2025/02/23 00:11:09 UTC-08:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[02:32:34] [ServerMain/WARN]: You specified a resource pack without providing a sha1 hash. Pack will be updated on the client only if you change the name of the pack.
[02:32:34] [ServerMain/WARN]: resource-pack-id missing, using default of f913cbe4-7d41-3652-bf0b-2308ca9ca0c0
[02:32:34] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[02:32:35] [Worker-Main-3/ERROR]: Couldn't parse element loot_tables:8bm:entities/illusioner - Not a json array: {"function":"minecraft:set_nbt","tag":"{display:{Name:'{\"text\":\"Illusioners Mystery Potion\",\"italic\":false}',Lore:['{\"text\":\"Good or Bad?\",\"color\":\"blue\",\"italic\":false}','{\"text\":\"Drink and find out!\",\"color\":\"yellow\",\"italic\":false}']},HideFlags:123,CustomPotionEffects:[{Id:19b,Amplifier:0b,Duration:400},{Id:28b,Amplifier:1b,Duration:400}],CustomPotionColor:236287}"}; Unknown registry key in ResourceKey[minecraft:root / minecraft:loot_function_type]: minecraft:set_nbt; Not a json array: {"function":"minecraft:set_nbt","tag":"{display:{Name:'{\"text\":\"Illusioners Mystery Potion\",\"italic\":false}',Lore:['{\"text\":\"Good or Bad?\",\"color\":\"blue\",\"italic\":false}','{\"text\":\"Drink and find out!\",\"color\":\"yellow\",\"italic\":false}']},HideFlags:123,CustomPotionEffects:[{Id:13b,Amplifier:1b,Duration:400},{Id:30b,Amplifier:1b,Duration:400}],CustomPotionColor:236287}"}; Unknown registry key in ResourceKey[minecraft:root / minecraft:loot_function_type]: minecraft:set_nbt; Not a json array: {"function":"minecraft:set_nbt","tag":"{display:{Name:'{\"text\":\"Illusioners Mystery Potion\",\"italic\":false}',Lore:['{\"text\":\"Good or Bad?\",\"color\":\"blue\",\"italic\":false}','{\"text\":\"Drink and find out!\",\"color\":\"yellow\",\"italic\":false}']},HideFlags:123,CustomPotionEffects:[{Id:24b,Amplifier:0b,Duration:400},{Id:25b,Amplifier:0b,Duration:400}],CustomPotionColor:236287}"}; Unknown registry key in ResourceKey[minecraft:root / minecraft:loot_function_type]: minecraft:set_nbt; Not a json array: {"function":"minecraft:set_nbt","tag":"{display:{Name:'{\"text\":\"Illusioners Mystery Potion\",\"italic\":false}',Lore:['{\"text\":\"Good or Bad?\",\"color\":\"blue\",\"italic\":false}','{\"text\":\"Drink and find out!\",\"color\":\"yellow\",\"italic\":false}']},HideFlags:123,CustomPotionEffects:[{Id:2b,Amplifier:2b,Duration:400},{Id:3b,Amplifier:1b,Duration:400}],CustomPotionColor:236287}"}; Unknown registry key in ResourceKey[minecraft:root / minecraft:loot_function_type]: minecraft:set_nbt; Not a json array: {"function":"minecraft:set_nbt","tag":"{display:{Name:'{\"text\":\"Illusioners Mystery Potion\",\"italic\":false}',Lore:['{\"text\":\"Good or Bad?\",\"color\":\"blue\",\"italic\":false}','{\"text\":\"Drink and find out!\",\"color\":\"yellow\",\"italic\":false}']},HideFlags:123,CustomPotionEffects:[{Id:14b,Amplifier:0b,Duration:400},{Id:15b,Amplifier:0b,Duration:400}],CustomPotionColor:236287}"}; Unknown registry key in ResourceKey[minecraft:root / minecraft:loot_function_type]: minecraft:set_nbt; Not a json array: {"function":"minecraft:set_nbt","tag":"{display:{Name:'{\"text\":\"Illusioners Mystery Potion\",\"italic\":false}',Lore:['{\"text\":\"Good or Bad?\",\"color\":\"blue\",\"italic\":false}','{\"text\":\"Drink and find out!\",\"color\":\"yellow\",\"italic\":false}']},HideFlags:123,CustomPotionEffects:[{Id:18b,Amplifier:1b,Duration:400},{Id:31b,Amplifier:0b,Duration:400}],CustomPotionColor:236287}"}; Unknown registry key in ResourceKey[minecraft:root / minecraft:loot_function_type]: minecraft:set_nbt; Not a json array: {"function":"minecraft:set_nbt","tag":"{display:{Name:'{\"text\":\"Illusioners Mystery Potion\",\"italic\":false}',Lore:['{\"text\":\"Good or Bad?\",\"color\":\"blue\",\"italic\":false}','{\"text\":\"Drink and find out!\",\"color\":\"yellow\",\"italic\":false}']},HideFlags:123,CustomPotionEffects:[{Id:8b,Amplifier:1b,Duration:400},{Id:9b,Amplifier:1b,Duration:400}],CustomPotionColor:236287}"}; Unknown registry key in ResourceKey[minecraft:root / minecraft:loot_function_type]: minecraft:set_nbt; Not a json array: {"function":"minecraft:set_nbt","tag":"{display:{Name:'{\"text\":\"Illusioners Mystery Potion\",\"italic\":false}',Lore:['{\"text\":\"Good or Bad?\",\"color\":\"blue\",\"italic\":false}','{\"text\":\"Drink and find out!\",\"color\":\"yellow\",\"italic\":false}']},HideFlags:123,CustomPotionEffects:[{Id:8b,Amplifier:1b,Duration:400},{Id:28b,Amplifier:1b,Duration:400}],CustomPotionColor:236287}"}; Unknown registry key in ResourceKey[minecraft:root / minecraft:loot_function_type]: minecraft:set_nbt; Not a json array: {"function":"minecraft:set_nbt","tag":"{Potion:\"minecraft:invisibility\"}"}; Unknown registry key in ResourceKey[minecraft:root / minecraft:loot_function_type]: minecraft:set_nbt; No key value in MapLike[{"type":"minecraft:loot_table","name":"minecraft:entities/illusioner"}]
[02:32:35] [ServerMain/ERROR]: Parsing error loading recipe elevators:elevator
com.google.gson.JsonParseException: No key id in MapLike[{"item":"minecraft:knowledge_book"}]
    at com.mojang.serialization.DataResult$Error.getOrThrow(DataResult.java:275) ~[datafixerupper-7.0.14.jar:?]
    at net.minecraft.world.item.crafting.CraftingManager.a(CraftingManager.java:68) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.world.item.crafting.CraftingManager.a(CraftingManager.java:42) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.packs.resources.ResourceDataAbstract.a(SourceFile:13) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at java.base/java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:718) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?]
    at net.minecraft.server.packs.resources.Reloadable.a(SourceFile:69) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.SystemUtils.a(SourceFile:993) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.SystemUtils.c(SourceFile:981) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.Main.main(Main.java:245) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at org.bukkit.craftbukkit.Main.main(Main.java:226) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at org.bukkit.craftbukkit.bootstrap.Main.lambda$run$0(Main.java:60) ~[spigot-1.20.6.jar:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) [?:?]
[02:32:35] [ServerMain/INFO]: Loaded 1175 recipes
[02:32:35] [ServerMain/ERROR]: Failed to load function 8bm:ill_raids/main
java.util.concurrent.CompletionException: java.lang.IllegalArgumentException: Whilst parsing command on line 6: Failed to parse structure: Failed to get element ResourceKey[minecraft:predicate / 8bm:pack.debug] at position 35: ...pack.debug<--[HERE]
    at java.base/java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:315) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:320) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1770) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:387) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1312) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1843) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1808) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188) ~[?:?]
Caused by: java.lang.IllegalArgumentException: Whilst parsing command on line 6: Failed to parse structure: Failed to get element ResourceKey[minecraft:predicate / 8bm:pack.debug] at position 35: ...pack.debug<--[HERE]
    at net.minecraft.commands.functions.CommandFunction.a(SourceFile:80) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.CustomFunctionManager.a(SourceFile:83) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    ... 6 more
[02:32:35] [ServerMain/ERROR]: Failed to load function 8bm:ill_raids/difficulty/normal.check
java.util.concurrent.CompletionException: java.lang.IllegalArgumentException: Whilst parsing command on line 6: Failed to parse structure: Failed to get element ResourceKey[minecraft:predicate / 8bm:pack.debug] at position 35: ...pack.debug<--[HERE]
    at java.base/java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:315) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:320) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1770) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:387) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1312) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1843) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1808) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188) ~[?:?]
Caused by: java.lang.IllegalArgumentException: Whilst parsing command on line 6: Failed to parse structure: Failed to get element ResourceKey[minecraft:predicate / 8bm:pack.debug] at position 35: ...pack.debug<--[HERE]
    at net.minecraft.commands.functions.CommandFunction.a(SourceFile:80) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.CustomFunctionManager.a(SourceFile:83) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    ... 6 more
[02:32:35] [ServerMain/ERROR]: Failed to load function elevators:crafted_elevator
java.util.concurrent.CompletionException: java.lang.IllegalArgumentException: Whilst parsing command on line 3: Expected whitespace to end one argument, but found trailing data at position 25: ...hulker_box<--[HERE]
    at java.base/java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:315) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:320) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1770) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:387) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1312) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1843) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1808) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188) ~[?:?]
Caused by: java.lang.IllegalArgumentException: Whilst parsing command on line 3: Expected whitespace to end one argument, but found trailing data at position 25: ...hulker_box<--[HERE]
    at net.minecraft.commands.functions.CommandFunction.a(SourceFile:80) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.CustomFunctionManager.a(SourceFile:83) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    ... 6 more
[02:32:35] [ServerMain/ERROR]: Failed to load function 8bm:ill_raids/difficulty/reset
java.util.concurrent.CompletionException: java.lang.IllegalArgumentException: Whilst parsing command on line 6: Failed to parse structure: Failed to get element ResourceKey[minecraft:predicate / 8bm:pack.debug] at position 35: ...pack.debug<--[HERE]
    at java.base/java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:315) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:320) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1770) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:387) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1312) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1843) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1808) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188) ~[?:?]
Caused by: java.lang.IllegalArgumentException: Whilst parsing command on line 6: Failed to parse structure: Failed to get element ResourceKey[minecraft:predicate / 8bm:pack.debug] at position 35: ...pack.debug<--[HERE]
    at net.minecraft.commands.functions.CommandFunction.a(SourceFile:80) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.CustomFunctionManager.a(SourceFile:83) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    ... 6 more
[02:32:35] [ServerMain/ERROR]: Failed to load function 8bm:ill_raids/difficulty/hard.check
java.util.concurrent.CompletionException: java.lang.IllegalArgumentException: Whilst parsing command on line 6: Failed to parse structure: Failed to get element ResourceKey[minecraft:predicate / 8bm:pack.debug] at position 35: ...pack.debug<--[HERE]
    at java.base/java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:315) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:320) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1770) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:387) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1312) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1843) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1808) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188) ~[?:?]
Caused by: java.lang.IllegalArgumentException: Whilst parsing command on line 6: Failed to parse structure: Failed to get element ResourceKey[minecraft:predicate / 8bm:pack.debug] at position 35: ...pack.debug<--[HERE]
    at net.minecraft.commands.functions.CommandFunction.a(SourceFile:80) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.CustomFunctionManager.a(SourceFile:83) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    ... 6 more
[02:32:35] [ServerMain/ERROR]: Failed to load function 8bm:ill_raids/difficulty/easy.check
java.util.concurrent.CompletionException: java.lang.IllegalArgumentException: Whilst parsing command on line 6: Failed to parse structure: Failed to get element ResourceKey[minecraft:predicate / 8bm:pack.debug] at position 35: ...pack.debug<--[HERE]
    at java.base/java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:315) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:320) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1770) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:387) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1312) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1843) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1808) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188) ~[?:?]
Caused by: java.lang.IllegalArgumentException: Whilst parsing command on line 6: Failed to parse structure: Failed to get element ResourceKey[minecraft:predicate / 8bm:pack.debug] at position 35: ...pack.debug<--[HERE]
    at net.minecraft.commands.functions.CommandFunction.a(SourceFile:80) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.CustomFunctionManager.a(SourceFile:83) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    ... 6 more
[02:32:35] [ServerMain/ERROR]: Failed to load function 8bm:ill_raids/rewards/trophy.potion_farming
java.util.concurrent.CompletionException: java.lang.IllegalArgumentException: Whilst parsing command on line 6: Expected whitespace to end one argument, but found trailing data at position 19: ...layer_head<--[HERE]
    at java.base/java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:315) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:320) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1770) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:387) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1312) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1843) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1808) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188) ~[?:?]
Caused by: java.lang.IllegalArgumentException: Whilst parsing command on line 6: Expected whitespace to end one argument, but found trailing data at position 19: ...layer_head<--[HERE]
    at net.minecraft.commands.functions.CommandFunction.a(SourceFile:80) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.CustomFunctionManager.a(SourceFile:83) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    ... 6 more
[02:32:35] [ServerMain/ERROR]: Parsing error loading custom advancement 8bm:8bm.illusioner_raids: No key id in MapLike[{"item":"minecraft:potion","nbt":"{Potion:\"minecraft:long_invisibility\"}"}]
[02:32:35] [ServerMain/ERROR]: Parsing error loading custom advancement 8bm:global/8bm.root: No key id in MapLike[{"item":"minecraft:writable_book"}]
[02:32:35] [ServerMain/ERROR]: Parsing error loading custom advancement 8bm:advancements/ir.couldnt_help_yourself: No key id in MapLike[{"item":"minecraft:potion","nbt":"{HideFlags:123,CustomPotionEffects:[{Id:8b,Amplifier:1b,Duration:400},{Id:9b,Amplifier:1b,Duration:400}],CustomPotionColor:236287}"}]
[02:32:35] [ServerMain/ERROR]: Parsing error loading custom advancement 8bm:illusioner_raids: No key id in MapLike[{"item":"minecraft:potion","nbt":"{Potion:\"minecraft:long_invisibility\"}"}]
[02:32:35] [ServerMain/ERROR]: Parsing error loading custom advancement 8bm:advancements/ir.kill_illusioner: No key id in MapLike[{"item":"minecraft:player_head","nbt":"{SkullOwner:{Id:[I;1599855440,1082867889,-1786092617,1408092924],Properties:{textures:[{Value:'eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDYzOWQzMjVmNDQ5NDI1OGE0NzNhOTNhM2I0N2YzNGEwYzUxYjNmY2VhZjU5ZmVlODcyMDVhNWU3ZmYzMWY2OCJ9fX0='}]}}}"}]
[02:32:35] [ServerMain/ERROR]: Parsing error loading custom advancement global:the8bitmonkey: No key id in MapLike[{"item":"minecraft:player_head","nbt":"{SkullOwner: 'The8BitMonkey'}"}]
[02:32:35] [ServerMain/ERROR]: Parsing error loading custom advancement global:root: No key id in MapLike[{"item":"minecraft:knowledge_book"}]
[02:32:35] [ServerMain/ERROR]: Parsing error loading custom advancement 8bm:advancements/ir.potion_farming: No key id in MapLike[{"item":"minecraft:player_head","nbt":"{SkullOwner:{Id:[I;-1624306260,758072266,-1695464959,-1977368287],Properties:{textures:[{Value:'eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODU3MDY2ODc5Nzc4ZDk1YTJhNzk1OWM1ZjAyYTMzOWZlODRlOTZlOTQ2MjMzM2NjNzQxNTJhYTI5MzNjNWZiIn19fQ=='}]}}}"}]
[02:32:36] [Server thread/INFO]: Starting minecraft server version 1.20.6
[02:32:36] [Server thread/INFO]: Loading properties
[02:32:36] [Server thread/INFO]: This server is running CraftBukkit version 4137-Spigot-e2c1eee-666f091 (MC: 1.20.6) (Implementing API version 1.20.6-R0.1-SNAPSHOT)
[02:32:36] [Server thread/INFO]: Server Ping Player Sample Count: 12
[02:32:36] [Server thread/INFO]: Using 4 threads for Netty based IO
[02:32:36] [Server thread/INFO]: Debug logging is disabled
[02:32:36] [Server thread/INFO]: Default game type: SURVIVAL
[02:32:36] [Server thread/INFO]: Generating keypair
[02:32:36] [Server thread/INFO]: Starting Minecraft server on 62.210.62.219:10024
[02:32:36] [Server thread/INFO]: Using epoll channel type
[02:32:36] [Server thread/ERROR]: Could not load 'plugins/GlobalStats-5.1.jar'
org.bukkit.plugin.UnknownDependencyException: Unknown dependency PlaceholderAPI. Please download and install PlaceholderAPI to run this plugin.
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:279) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:121) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R4.CraftServer.loadPlugins(CraftServer.java:430) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:232) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1010) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:311) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at java.base/java.lang.Thread.run(Thread.java:1583) [?:?]
[02:32:37] [Server thread/INFO]: [nightcore] Loading 2 libraries... please wait
[02:32:37] [Server thread/INFO]: [nightcore] Loaded library /var/directory_serv/minecraft_434036/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[02:32:37] [Server thread/INFO]: [nightcore] Loaded library /var/directory_serv/minecraft_434036/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[02:32:37] [Server thread/INFO]: [nightcore] Loaded library /var/directory_serv/minecraft_434036/libraries/it/unimi/dsi/fastutil-core/8.5.13/fastutil-core-8.5.13.jar
[02:32:37] [Server thread/ERROR]: Could not load 'plugins/worldguard-bukkit-7.0.12-dist.jar'
org.bukkit.plugin.InvalidPluginException: Unsupported API version 1.21
    at org.bukkit.craftbukkit.v1_20_R4.util.CraftMagicNumbers.checkSupported(CraftMagicNumbers.java:298) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:141) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.java:405) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:312) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:121) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R4.CraftServer.loadPlugins(CraftServer.java:430) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:232) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1010) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:311) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at java.base/java.lang.Thread.run(Thread.java:1583) [?:?]
[02:32:37] [Server thread/ERROR]: Could not load 'plugins/getCustomItem-2.1.4.jar'
org.bukkit.plugin.UnknownDependencyException: Unknown dependency WorldGuard. Please download and install WorldGuard to run this plugin.
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:279) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:121) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R4.CraftServer.loadPlugins(CraftServer.java:430) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:232) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1010) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:311) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at java.base/java.lang.Thread.run(Thread.java:1583) [?:?]
[02:32:38] [Server thread/INFO]: [ChatGames] Loading ChatGames v1.2.1
[02:32:38] [Server thread/INFO]: [ItemEditor] Loading ItemEditor v2.0.3
[02:32:38] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.3.6+6892-3d660b8
[02:32:39] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@5fef48db]
[02:32:39] [Server thread/INFO]: [BlueMap] Loading BlueMap v5.5
[02:32:39] [Server thread/INFO]: [GUIAdminTools] Loading GUIAdminTools v2.7.9
[02:32:39] [Server thread/INFO]: [ChatColor2] Loading ChatColor2 v1.15.1
[02:32:39] [Server thread/INFO]: [Chunky] Loading Chunky v1.4.28
[02:32:39] [Server thread/INFO]: [OpenInv] Loading OpenInv v5.1.2
[02:32:39] [Server thread/INFO]: [DecentHolograms] Loading DecentHolograms v2.8.12
[02:32:39] [Server thread/INFO]: [Yottabyte-AntiCraft] Loading Yottabyte-AntiCraft v2.2.4-RELEASE
[02:32:39] [Server thread/INFO]: [SetSpawn] Loading SetSpawn v5.0
[02:32:39] [Server thread/INFO]: [BetterChairs] Loading BetterChairs v1.13.0
[02:32:39] [Server thread/INFO]: [ChunkyBorder] Loading ChunkyBorder v1.2.23
[02:32:39] [Server thread/INFO]: [UltraRepair] Loading UltraRepair v4.2.4
[02:32:39] [Server thread/INFO]: [nightcore] Loading nightcore v2.6.3
[02:32:39] [Server thread/INFO]: [PlayerStats] Loading PlayerStats v2.3
[02:32:39] [Server thread/INFO]: [SimpleRTP] Loading SimpleRTP v5.1
[02:32:39] [Server thread/INFO]: [betterSpawnProtect] Loading betterSpawnProtect v1.0.0
[02:32:39] [Server thread/INFO]: [AxGraves] Loading AxGraves v1.17.1
[02:32:39] [Server thread/INFO]: [AxGraves] Loading library commons-math3
[02:32:39] [Server thread/INFO]: [AxGraves] Loading library caffeine
[02:32:39] [Server thread/INFO]: [Parkour] Loading Parkour v7.2.3
[02:32:39] [Server thread/INFO]: [PlayerKits2] Loading PlayerKits2 v1.15.3
[02:32:39] [Server thread/INFO]: [Timer] Loading Timer v1.0.0
[02:32:39] [Server thread/INFO]: [Core] Plugin: "Timer" Loading.
[02:32:39] [Server thread/INFO]: [Core] Plugin: "Timer" Loaded.
[02:32:39] [Server thread/INFO]: [ViaVersion] Loading ViaVersion v5.2.1
[02:32:39] [Server thread/INFO]: [ViaVersion] ViaVersion 5.2.1 is now loaded. Registering protocol transformers and injecting...
[02:32:39] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[02:32:39] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[02:32:39] [Server thread/INFO]: [SimpleClaimSystem] Loading SimpleClaimSystem v1.11.7.1
[02:32:39] [Server thread/INFO]: [AxEnvoy] Loading AxEnvoy v2.0.6
[02:32:39] [Server thread/INFO]: [AxEnvoy] Loading library commons-math3
[02:32:39] [Server thread/INFO]: [AxEnvoy] Loading library caffeine
[02:32:39] [Server thread/INFO]: [AxEnvoy] Loading library slf4j-api
[02:32:39] [Server thread/INFO]: [AxEnvoy] Loading library commons-io
[02:32:39] [Server thread/INFO]: [AxEnvoy] Loading library commons-text
[02:32:39] [Server thread/INFO]: [AxEnvoy] Loading library commons-math3
[02:32:39] [Server thread/INFO]: [floodgate] Loading floodgate v2.2.3-SNAPSHOT (b112-0360721)
[02:32:40] [Server thread/INFO]: [floodgate] Floodgate pris 456ms à se lancer
[02:32:40] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.4.141
[02:32:40] [Server thread/INFO]: [Essentials] Loading Essentials v2.21.0-dev+167-4e64782
[02:32:40] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v5.3.0-SNAPSHOT-726
[02:32:40] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.20.6) has not yet been tested! Proceed with caution.
[02:32:40] [Server thread/INFO]: [zMenu] Loading zMenu v1.0.3.7
[02:32:40] [Server thread/INFO]: [SCore] Loading SCore v5.25.1.25
[02:32:40] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.35-SNAPSHOT (build 3566)
[02:32:40] [Server thread/INFO]: [ExcellentCrates] Loading ExcellentCrates v5.3.2
[02:32:40] [Server thread/INFO]: [DiscordSRV] Loading DiscordSRV v1.29.0
[02:32:40] [Server thread/INFO]: [EssentialsProtect] Loading EssentialsProtect v2.21.0-dev+151-f2af952
[02:32:40] [Server thread/INFO]: [EssentialsChat] Loading EssentialsChat v2.21.0-dev+151-f2af952
[02:32:40] [Server thread/INFO]: [Orebfuscator] Loading Orebfuscator v5.5.2
[02:32:40] [Server thread/INFO]: [TAB] Loading TAB v5.0.3
[02:32:40] [Server thread/INFO]: [Geyser-Spigot] Loading Geyser-Spigot v2.6.1-SNAPSHOT
[02:32:41] [Server thread/INFO]: [Geyser-Spigot] Chargement des extensions...
[02:32:41] [Server thread/INFO]: [Geyser-Spigot] 0 extension(s) chargé(s)
[02:32:41] [Server thread/INFO]: [StaffPlus] Loading StaffPlus v3.3.14.2
[02:32:41] [Server thread/INFO]: [AuraSkills] Loading AuraSkills v2.2.7
[02:32:41] [Server thread/INFO]: [GCore] Loading GCore v8.50.0
[02:32:41] [Server thread/INFO]: [BeautyQuests] Loading BeautyQuests v1.0.3
[02:32:41] [Server thread/INFO]: [CustomCommands] Loading CustomCommands v4.3.0
[02:32:41] [Server thread/INFO]: [AuraMobs] Loading AuraMobs v2.1.0
[02:32:41] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.3.6+6892-3d660b8
[02:32:41] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[02:32:41] [Server thread/INFO]: WEPIF: Using the Bukkit Permissions API.
[02:32:41] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_20_R4.PaperweightAdapter as the Bukkit adapter
[02:32:42] [Server thread/INFO]: [WorldEdit] ====================================================
[02:32:42] [Server thread/INFO]: [WorldEdit]  WorldEdit works better if you use Paper 
[02:32:42] [Server thread/INFO]: [WorldEdit]  as your server software. 
[02:32:42] [Server thread/INFO]: [WorldEdit]   
[02:32:42] [Server thread/INFO]: [WorldEdit]  Paper offers significant performance improvements,
[02:32:42] [Server thread/INFO]: [WorldEdit]  bug fixes, security enhancements and optional
[02:32:42] [Server thread/INFO]: [WorldEdit]  features for server owners to enhance their server.
[02:32:42] [Server thread/INFO]: [WorldEdit]   
[02:32:42] [Server thread/INFO]: [WorldEdit]  Paper includes Timings v2, which is significantly
[02:32:42] [Server thread/INFO]: [WorldEdit]  better at diagnosing lag problems over v1.
[02:32:42] [Server thread/INFO]: [WorldEdit]   
[02:32:42] [Server thread/INFO]: [WorldEdit]  All of your plugins should still work, and the
[02:32:42] [Server thread/INFO]: [WorldEdit]  Paper community will gladly help you fix any issues.
[02:32:42] [Server thread/INFO]: [WorldEdit]   
[02:32:42] [Server thread/INFO]: [WorldEdit]  Join the Paper Community @ https://papermc.io
[02:32:42] [Server thread/INFO]: [WorldEdit] ====================================================
[02:32:42] [Server thread/INFO]: [nightcore] Enabling nightcore v2.6.3
[02:32:42] [Server thread/WARN]: [nightcore] Locale file for 'fr' language not found. Using default 'en' locale.
[02:32:42] [Server thread/INFO]: [nightcore] Server Version: 1.20.6 ✔
[02:32:42] [Server thread/INFO]: [nightcore] Entity Id Counter: OK ✔
[02:32:42] [Server thread/INFO]: [nightcore] Item NBT Compress: OK ✔
[02:32:42] [Server thread/WARN]: [nightcore] ========== WARNING ==========
[02:32:42] [Server thread/WARN]: [nightcore] Enabled Mojang's DataFixer for ItemStacks to update/fix NBT structure from <= 1.20.4 to 1.20.6+
[02:32:42] [Server thread/WARN]: [nightcore] This may significally affect server's performance.
[02:32:42] [Server thread/WARN]: [nightcore] Please, re-save all configuration(s) using in-game GUI editor(s) (if there is any).
[02:32:42] [Server thread/WARN]: [nightcore] Then disable this 'feature' in the config.yml of nightcore.
[02:32:42] [Server thread/INFO]: [nightcore] Plugin loaded in 246 ms!
[02:32:42] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.141
[02:32:42] [Server thread/INFO]:         __    
[02:32:42] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.141
[02:32:42] [Server thread/INFO]:   |___ |      Running on Bukkit - CraftBukkit
[02:32:42] [Server thread/INFO]: 
[02:32:42] [Server thread/INFO]: [LuckPerms] Loading configuration...
[02:32:42] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[02:32:43] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[02:32:43] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[02:32:43] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1096ms)
[02:32:43] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.3.0-SNAPSHOT-726
[02:32:43] [Server thread/INFO]: Preparing level "world"
[02:32:43] [Server thread/INFO]: -------- World Settings For [world] --------
[02:32:43] [Server thread/INFO]: Mob Spawn Range: 6
[02:32:43] [Server thread/INFO]: Experience Merge Radius: 6.0
[02:32:43] [Server thread/INFO]: Max TNT Explosions: 100
[02:32:43] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[02:32:43] [Server thread/INFO]: Cactus Growth Modifier: 100%
[02:32:43] [Server thread/INFO]: Cane Growth Modifier: 100%
[02:32:43] [Server thread/INFO]: Melon Growth Modifier: 100%
[02:32:43] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[02:32:43] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[02:32:43] [Server thread/INFO]: Sapling Growth Modifier: 100%
[02:32:43] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[02:32:43] [Server thread/INFO]: Carrot Growth Modifier: 100%
[02:32:43] [Server thread/INFO]: Potato Growth Modifier: 100%
[02:32:43] [Server thread/INFO]: Wheat Growth Modifier: 100%
[02:32:43] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[02:32:43] [Server thread/INFO]: Vine Growth Modifier: 100%
[02:32:43] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[02:32:43] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[02:32:43] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[02:32:43] [Server thread/INFO]: Kelp Growth Modifier: 100%
[02:32:43] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[02:32:43] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[02:32:43] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[02:32:43] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[02:32:43] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[02:32:43] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[02:32:43] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[02:32:43] [Server thread/INFO]: View Distance: 8
[02:32:43] [Server thread/INFO]: Simulation Distance: 10
[02:32:43] [Server thread/INFO]: Item Despawn Rate: 6000
[02:32:43] [Server thread/INFO]: Item Merge Radius: 4.0
[02:32:43] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[02:32:43] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[02:32:43] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[02:32:43] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[02:32:44] [Server thread/INFO]: -------- World Settings For [world_nether] --------
[02:32:44] [Server thread/INFO]: Mob Spawn Range: 6
[02:32:44] [Server thread/INFO]: Experience Merge Radius: 6.0
[02:32:44] [Server thread/INFO]: Max TNT Explosions: 100
[02:32:44] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[02:32:44] [Server thread/INFO]: Cactus Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: Cane Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: Melon Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: Sapling Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: Carrot Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: Potato Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: Wheat Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: Vine Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: Kelp Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[02:32:44] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[02:32:44] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[02:32:44] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[02:32:44] [Server thread/INFO]: View Distance: 8
[02:32:44] [Server thread/INFO]: Simulation Distance: 10
[02:32:44] [Server thread/INFO]: Item Despawn Rate: 6000
[02:32:44] [Server thread/INFO]: Item Merge Radius: 4.0
[02:32:44] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[02:32:44] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[02:32:44] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[02:32:44] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[02:32:44] [Server thread/INFO]: -------- World Settings For [world_the_end] --------
[02:32:44] [Server thread/INFO]: Mob Spawn Range: 6
[02:32:44] [Server thread/INFO]: Experience Merge Radius: 6.0
[02:32:44] [Server thread/INFO]: Max TNT Explosions: 100
[02:32:44] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[02:32:44] [Server thread/INFO]: Cactus Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: Cane Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: Melon Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: Sapling Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: Carrot Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: Potato Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: Wheat Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: Vine Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: Kelp Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[02:32:44] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[02:32:44] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[02:32:44] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[02:32:44] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[02:32:44] [Server thread/INFO]: View Distance: 8
[02:32:44] [Server thread/INFO]: Simulation Distance: 10
[02:32:44] [Server thread/INFO]: Item Despawn Rate: 6000
[02:32:44] [Server thread/INFO]: Item Merge Radius: 4.0
[02:32:44] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[02:32:44] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[02:32:44] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[02:32:44] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[02:32:44] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[02:32:44] [Server thread/INFO]: Time elapsed: 0 ms
[02:32:44] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[02:32:44] [Worker-Main-14/INFO]: Preparing spawn area: 100%
[02:32:44] [Worker-Main-7/INFO]: Preparing spawn area: 100%
[02:32:45] [Worker-Main-3/INFO]: Preparing spawn area: 100%
[02:32:45] [Server thread/INFO]: Time elapsed: 1029 ms
[02:32:45] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[02:32:45] [Worker-Main-3/INFO]: Preparing spawn area: 100%
[02:32:45] [Server thread/INFO]: Time elapsed: 256 ms
[02:32:45] [Server thread/INFO]: [ChatGames] Enabling ChatGames v1.2.1
[02:32:45] [Server thread/INFO]: [ChatGames] ChatGames is now enabled!
[02:32:45] [Server thread/INFO]: [ChatGames] Points loaded successfully!
[02:32:45] [Server thread/INFO]: [ItemEditor] Enabling ItemEditor v2.0.3
[02:32:45] [Server thread/INFO]: [ItemEditor] Detected minecraft 1.20.6
[02:32:45] [Server thread/INFO]: [ItemEditor] Reloading items.
[02:32:45] [Server thread/INFO]: [ItemEditor] Loaded 0 items from storage.
[02:32:45] [Server thread/INFO]: [BlueMap] Enabling BlueMap v5.5
[02:32:45] [Server thread/INFO]: [BlueMap] Saving all worlds once, to make sure the level.dat is present...
[02:32:45] [Server thread/WARN]: A manual (plugin-induced) save has been detected while server is configured to auto-save. This may affect performance.
[02:32:45] [Server thread/INFO]: [GUIAdminTools] Enabling GUIAdminTools v2.7.9
[02:32:45] [Server thread/INFO]: -----GUI ADMIN TOOLS FREE-----
[02:32:45] [Server thread/INFO]:  
[02:32:45] [Server thread/INFO]: VERSION: 2.7.9
[02:32:45] [Server thread/INFO]:  
[02:32:45] [Server thread/INFO]: LOADING ALL SERVICES...
[02:32:45] [Server thread/INFO]: LOADED ALL SERVICES
[02:32:45] [Server thread/INFO]:  
[02:32:45] [Server thread/INFO]: LOADED METRICS
[02:32:45] [Server thread/INFO]:  
[02:32:45] [Server thread/INFO]: LOADING SOFT DEPENDENCIES...
[02:32:45] [Server thread/INFO]: NO JoinLeaveManager
[02:32:45] [Server thread/INFO]:  
[02:32:45] [Server thread/INFO]: -----GUI ADMIN TOOLS FREE-----
[02:32:45] [Server thread/INFO]: [ChatColor2] Enabling ChatColor2 v1.15.1
[02:32:46] [Server thread/INFO]: [ChatColor] ChatColor 2 Version 1.15.1 has been enabled.
[02:32:46] [Server thread/INFO]: [ChatColor] Current update: GUI rework & additional features! (+Bug fixes)
[02:32:46] [Server thread/INFO]: [ChatColor] PlaceholderAPI not found, placeholders will not be available.
[02:32:46] [Server thread/INFO]: [ChatColor] Metrics is enabled for this plugin. Stats sent to https://bstats.org/plugin/bukkit/ChatColor2
[02:32:46] [Server thread/INFO]: [Chunky] Enabling Chunky v1.4.28
[02:32:46] [Server thread/INFO]: [OpenInv] Enabling OpenInv v5.1.2
[02:32:46] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.12
[02:32:46] [Server thread/INFO]: [NBTAPI] Found Minecraft: v1_20_R4! Trying to find NMS support
[02:32:46] [Server thread/INFO]: [NBTAPI] NMS support 'MC1_20_R4' loaded!
[02:32:46] [Server thread/INFO]: [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[02:32:46] [Server thread/INFO]: [Yottabyte-AntiCraft] Enabling Yottabyte-AntiCraft v2.2.4-RELEASE
[02:32:46] [Server thread/INFO]: [Yottabyte-AntiCraft] Loading Yottabyte-AntiCraft...
[02:32:46] [Server thread/INFO]: [Yottabyte-AntiCraft] Using Minecraft version 1.20.
[02:32:46] [Server thread/INFO]: [Yottabyte-AntiCraft] Loading compatibility for Elytras...
[02:32:46] [Server thread/INFO]: [Yottabyte-AntiCraft] Loading compatibility for Smithing Tables...
[02:32:46] [Server thread/INFO]: [Yottabyte-AntiCraft] Plugin started in 9ms.
[02:32:46] [Server thread/INFO]: [Yottabyte-AntiCraft] by Wekylend.
[02:32:46] [Server thread/INFO]: [SetSpawn] Enabling SetSpawn v5.0
[02:32:46] [Server thread/INFO]: [SetSpawn] Enabled!
[02:32:46] [Server thread/INFO]: [BetterChairs] Enabling BetterChairs v1.13.0
[02:32:46] [Server thread/INFO]: [ChunkyBorder] Enabling ChunkyBorder v1.2.23
[02:32:46] [Server thread/INFO]: [UltraRepair] Enabling UltraRepair v4.2.4
[02:32:46] [Server thread/INFO]: 
[02:32:46] [Server thread/INFO]: 
[02:32:46] [Server thread/INFO]:  ____ ___  __________ 
[02:32:46] [Server thread/INFO]: |    |   \ \______   \
[02:32:46] [Server thread/INFO]: |    |   /  |       _/
[02:32:46] [Server thread/INFO]: |    |  /   |    |   \
[02:32:46] [Server thread/INFO]: |______/    |____|_  /
[02:32:46] [Server thread/INFO]:                    \/ 
[02:32:46] [Server thread/INFO]: 
[02:32:46] [Server thread/INFO]: [UltraRepair] Loading configuration files...
[02:32:46] [Server thread/INFO]: [UltraRepair] Initializing base settings...
[02:32:46] [Server thread/INFO]: [UltraRepair] Checking economy integration...
[02:32:46] [Server thread/WARN]: [UltraRepair] Vault and/or economy plugin not found! All repairs will be free.
[02:32:46] [Server thread/INFO]: [UltraRepair] Loading repair manager...
[02:32:47] [Server thread/INFO]: [UltraRepair] Registering commands...
[02:32:47] [Server thread/INFO]: [UltraRepair] Registering listeners...
[02:32:47] [Server thread/INFO]: [UltraRepair] Loading metrics...
[02:32:47] [Server thread/INFO]: [UltraRepair] Checking for updates...
[02:32:47] [Server thread/INFO]: [UltraRepair] UltraRepair v4.2.4 by Demeng has been enabled.
[02:32:47] [Server thread/INFO]: [PlayerStats] Enabling PlayerStats v2.3
[02:32:47] [pool-24-thread-1/INFO]: [PlayerStats] Loaded 0 excluded players from file (0ms)
[02:32:47] [pool-24-thread-1/INFO]: [PlayerStats] Loaded 21 offline players (4ms)
[02:32:47] [Server thread/INFO]: [PlayerStats] Enabled PlayerStats!
[02:32:47] [Server thread/INFO]: [SimpleRTP] Enabling SimpleRTP v5.1
[02:32:47] [Server thread/INFO]: [betterSpawnProtect] Enabling betterSpawnProtect v1.0.0
[02:32:47] [Server thread/INFO]: [AxGraves] Enabling AxGraves v1.17.1
[02:32:47] [Server thread/INFO]: [Parkour] Enabling Parkour v7.2.3
[02:32:48] [Server thread/INFO]: [Parkour] 4 courses found.
[02:32:48] [Server thread/INFO]: [Parkour] 2 courses cached.
[02:32:48] [Server thread/WARN]: [Parkour] [BountifulAPI] Plugin is missing, link was unsuccessful.
[02:32:48] [Server thread/WARN]: [Parkour] [Vault (Economy)] Plugin is missing, link was unsuccessful.
[02:32:48] [Server thread/WARN]: [Parkour] [Vault (Permissions)] Plugin is missing, link was unsuccessful.
[02:32:48] [Server thread/WARN]: [Parkour] [PlaceholderAPI] Plugin is missing, link was unsuccessful.
[02:32:48] [Server thread/INFO]: [Parkour] Enabled Parkour v7.2.3
[02:32:48] [ForkJoinPool.commonPool-worker-13/INFO]: [Parkour] Checking for update...
[02:32:48] [ForkJoinPool.commonPool-worker-13/INFO]: [Parkour] No update available.
[02:32:48] [Server thread/INFO]: [PlayerKits2] Enabling PlayerKits2 v1.15.3
[02:32:48] [Server thread/ERROR]: Could not call method 'public static org.bukkit.inventory.meta.ItemMeta org.bukkit.craftbukkit.v1_20_R4.inventory.SerializableMeta.deserialize(java.util.Map) throws java.lang.Throwable' of class org.bukkit.craftbukkit.v1_20_R4.inventory.SerializableMeta for deserialization
java.lang.NullPointerException: Cannot invoke "String.getBytes(java.nio.charset.Charset)" because "src" is null
    at java.base/java.util.Base64$Decoder.decode(Base64.java:593) ~[?:?]
    at org.bukkit.craftbukkit.v1_20_R4.inventory.CraftMetaItem.<init>(CraftMetaItem.java:562) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486) ~[?:?]
    at org.bukkit.craftbukkit.v1_20_R4.inventory.SerializableMeta.deserialize(SerializableMeta.java:75) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]
    at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeViaMethod(ConfigurationSerialization.java:87) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserialize(ConfigurationSerialization.java:129) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeObject(ConfigurationSerialization.java:209) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:58) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:264) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:247) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:576) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:210) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:552) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:597) ~[snakeyaml-2.2.jar:?]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:49) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:264) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:247) ~[snakeyaml-2.2.jar:?]
    at org.bukkit.configuration.file.YamlConstructor.construct(YamlConstructor.java:37) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.fromNodeTree(YamlConfiguration.java:162) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.fromNodeTree(YamlConfiguration.java:160) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.fromNodeTree(YamlConfiguration.java:160) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:119) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at pk.ajneb97.configs.CustomConfig.registerConfig(CustomConfig.java:61) ~[?:?]
    at pk.ajneb97.configs.KitsConfigManager.registerConfigFiles(KitsConfigManager.java:69) ~[?:?]
    at pk.ajneb97.configs.KitsConfigManager.reloadConfigs(KitsConfigManager.java:32) ~[?:?]
    at pk.ajneb97.configs.KitsConfigManager.configure(KitsConfigManager.java:27) ~[?:?]
    at pk.ajneb97.configs.ConfigsManager.configure(ConfigsManager.java:25) ~[?:?]
    at pk.ajneb97.PlayerKits2.onEnable(PlayerKits2.java:61) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:342) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:491) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R4.CraftServer.enablePlugin(CraftServer.java:541) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at org.bukkit.craftbukkit.v1_20_R4.CraftServer.enablePlugins(CraftServer.java:455) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:634) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:419) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:265) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1010) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:311) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at java.base/java.lang.Thread.run(Thread.java:1583) [?:?]
[02:32:48] [Server thread/INFO]: [PlayerKits²] Has been enabled! Version: 1.15.3
[02:32:48] [Server thread/INFO]: [PlayerKits²] Thanks for using my plugin!   ~Ajneb97
[02:32:48] [Server thread/INFO]: There is a new version available. (1.16.1)
[02:32:48] [Server thread/INFO]: You can download it at: https://modrinth.com/plugin/playerkits-2
[02:32:48] [Server thread/INFO]: [Timer] Enabling Timer v1.0.0
[02:32:48] [Server thread/INFO]: [Core] Plugin: "Timer" Enabling.
[02:32:48] [Server thread/INFO]: [Core] Plugin: "Timer" Enabled.
[02:32:48] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.2.1
[02:32:48] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.20.5-1.20.6 (766)
[02:32:48] [Server thread/INFO]: [SimpleClaimSystem] Enabling SimpleClaimSystem v1.11.7.1
[02:32:48] [Server thread/INFO]: ==========================================================================
[02:32:48] [Server thread/INFO]:   ___   ___   ___ 
[02:32:48] [Server thread/INFO]:  / __| / __| / __|  SimpleClaimSystem v1.11.7.1
[02:32:48] [Server thread/INFO]:  \__ \ ∣(__  \__ \  Update available : 1.12.1
[02:32:48] [Server thread/INFO]:  |___/ \___| |___/  Running on 4137-Spigot-e2c1eee-666f091 (MC: 1.20.6)
[02:32:48] [Server thread/INFO]:  
[02:32:48] [Server thread/INFO]: SQLitePool - Starting...
[02:32:48] [Server thread/INFO]: SQLitePool - Start completed.
[02:32:49] [Server thread/INFO]:  
[02:32:49] [Server thread/INFO]: Loading claims..
[02:33:01] [Server thread/INFO]: 7/7 claims loaded.
[02:33:01] [Server thread/INFO]: > including 0 protected areas.
[02:33:01] [Server thread/INFO]:  
[02:33:01] [Server thread/INFO]: Loading players..
[02:33:01] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[02:33:01] [Server thread/INFO]: 14 players loaded.
[02:33:01] [Server thread/INFO]:  
[02:33:01] [Server thread/INFO]: SimpleClaimSystem is enabled !
[02:33:01] [Server thread/INFO]: Discord for support : https://discord.gg/6sRTGprM95
[02:33:01] [Server thread/INFO]: Documentation : https://xyness.gitbook.io/simpleclaimsystem
[02:33:01] [Server thread/INFO]: Developped by Xyness
[02:33:01] [Server thread/INFO]: ==========================================================================
[02:33:01] [Server thread/INFO]: [AxEnvoy] Enabling AxEnvoy v2.0.6
[02:33:01] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.3-SNAPSHOT (b112-0360721)
[02:33:01] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+167-4e64782
[02:33:01] [Server thread/INFO]: Vous exécutez un serveur avec des fonctionnalités API limitées. EssentialsX continuera de fonctionner, mais certaines fonctionnalités seront désactivées.
[02:33:01] [Server thread/WARN]: Versions différentes ! Veuillez mettre EssentialsProtect à la même version.
[02:33:01] [Server thread/WARN]: Versions différentes ! Veuillez mettre EssentialsChat à la même version.
[02:33:02] [Server thread/INFO]: Attempting to convert old kits in config.yml to new kits.yml
[02:33:02] [Server thread/INFO]: No kits found to migrate.
[02:33:02] [Server thread/INFO]: No provider found for BiomeKeyProvider, but it is nullable
[02:33:02] [Server thread/INFO]: Selected 1.14.4+ Persistent Data Container Provider as the provider for PersistentDataProvider
[02:33:02] [Server thread/INFO]: Selected 1.13+ Spawn Egg Provider as the provider for SpawnEggProvider
[02:33:02] [Server thread/INFO]: Selected Bukkit Material Tag Provider as the provider for MaterialTagProvider
[02:33:02] [Server thread/INFO]: Selected 1.20.6+ Potion Meta Provider as the provider for PotionMetaProvider
[02:33:02] [Server thread/INFO]: Selected 1.14+ Sign Data Provider as the provider for SignDataProvider
[02:33:02] [Server thread/INFO]: Selected 1.11+ Item Unbreakable Provider as the provider for ItemUnbreakableProvider
[02:33:02] [Server thread/INFO]: Selected Reflection Known Commands Provider as the provider for KnownCommandsProvider
[02:33:02] [Server thread/INFO]: No provider found for TickCountProvider, but it is nullable
[02:33:02] [Server thread/INFO]: No provider found for ContainerProvider, but it is nullable
[02:33:02] [Server thread/INFO]: No provider found for SerializationProvider, but it is nullable
[02:33:02] [Server thread/INFO]: Selected 1.20.5+ Banner Data Provider as the provider for BannerDataProvider
[02:33:02] [Server thread/INFO]: Selected 1.12.2+ Player Locale Provider as the provider for PlayerLocaleProvider
[02:33:02] [Server thread/INFO]: Selected Reflection Server State Provider as the provider for ServerStateProvider
[02:33:02] [Server thread/INFO]: Selected Reflection Formatted Command Alias Provider as the provider for FormattedCommandAliasProvider
[02:33:02] [Server thread/INFO]: Selected 1.12+ Spawner Block Provider as the provider for SpawnerBlockProvider
[02:33:02] [Server thread/INFO]: Selected Legacy InventoryView Abstract Class ABI Provider as the provider for InventoryViewProvider
[02:33:02] [Server thread/INFO]: Selected 1.20.4+ Damage Event Provider as the provider for DamageEventProvider
[02:33:02] [Server thread/INFO]: Selected Reflection Online Mode Provider as the provider for OnlineModeProvider
[02:33:02] [Server thread/INFO]: Selected 1.8.3+ Spawner Item Provider as the provider for SpawnerItemProvider
[02:33:02] [Server thread/INFO]: Selected 1.17.1+ World Info Provider as the provider for WorldInfoProvider
[02:33:02] [Server thread/INFO]: Selected Reflection Sync Commands Provider as the provider for SyncCommandsProvider
[02:33:02] [Server thread/INFO]: Loaded 43465 items from items.json.
[02:33:02] [Server thread/INFO]: Using locale fr_FR
[02:33:02] [Server thread/INFO]: ServerListPingEvent: Spigot iterator API
[02:33:02] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[02:33:02] [Server thread/WARN]: Detected supported permissions plugin LuckPerms without Vault installed.
[02:33:02] [Server thread/WARN]: Features such as chat prefixes/suffixes and group-related functionality will not work until you install Vault.
[02:33:02] [Server thread/INFO]: Using superperms-based permissions.
[02:33:02] [Server thread/INFO]: [zMenu] Enabling zMenu v1.0.3.7
[02:33:02] [Server thread/INFO]: [zMenu v1.0.3.7] === ENABLE START ===
[02:33:02] [Server thread/INFO]: [zMenu v1.0.3.7] Plugin Version V1.0.3.7
[02:33:02] [Server thread/INFO]: [zMenu v1.0.3.7] plugins/zMenu/patterns/pattern_example.yml loaded successfully !
[02:33:02] [Server thread/INFO]: [zMenu v1.0.3.7] plugins/zMenu/inventories/basic_inventory.yml loaded successfully !
[02:33:02] [Server thread/INFO]: [zMenu v1.0.3.7] plugins/zMenu/inventories/advanced_inventory.yml loaded successfully !
[02:33:02] [Server thread/INFO]: [zMenu v1.0.3.7] plugins/zMenu/inventories/Commandes.yml loaded successfully !
[02:33:02] [Server thread/INFO]: [zMenu v1.0.3.7] plugins/zMenu/inventories/pro_inventory.yml loaded successfully !
[02:33:02] [Server thread/INFO]: [zMenu v1.0.3.7] items section was not found in /var/directory_serv/minecraft_434036/plugins/zMenu/inventories/Banque.yml
[02:33:02] [Server thread/INFO]: [zMenu v1.0.3.7] plugins/zMenu/inventories/Banque.yml loaded successfully !
[02:33:02] [Server thread/INFO]: [zMenu v1.0.3.7] plugins/zMenu/inventories/example_punish.yml loaded successfully !
[02:33:02] [Server thread/INFO]: [zMenu v1.0.3.7] plugins/zMenu/website/inventories.yml loaded successfully !
[02:33:02] [Server thread/INFO]: [zMenu v1.0.3.7] Command /basic_command successfully register.
[02:33:02] [Server thread/INFO]: [zMenu v1.0.3.7] Command /advanced_command successfully register.
[02:33:02] [Server thread/INFO]: [zMenu v1.0.3.7] Command /pro_command successfully register.
[02:33:02] [Server thread/INFO]: [zMenu v1.0.3.7] Command /openbook successfully register.
[02:33:02] [Server thread/INFO]: [zMenu v1.0.3.7] Command /punish successfully register.
[02:33:02] [Server thread/INFO]: [zMenu v1.0.3.7] 
[02:33:02] [Server thread/INFO]: [zMenu v1.0.3.7] You can support zMenu by upgrading your account here: https://minecraft-inventory-builder.com/account-upgrade
[02:33:02] [Server thread/INFO]: [zMenu v1.0.3.7] zMenu’s site includes an inventory editor (under development), a marketplace (already available) is a forum (under development)
[02:33:02] [Server thread/INFO]: [zMenu v1.0.3.7] 
[02:33:02] [Server thread/INFO]: [zMenu v1.0.3.7] Use ClassicMeta
[02:33:02] [Server thread/INFO]: [zMenu v1.0.3.7] Loading 6 commands
[02:33:02] [Server thread/INFO]: [zMenu v1.0.3.7] === ENABLE DONE (206ms) ===
[02:33:02] [Server thread/INFO]: [SCore] Enabling SCore v5.25.1.25
[02:33:02] [Server thread/INFO]: ================ SCore ================
[02:33:02] [Server thread/INFO]: SCore Version of the server 4137-Spigot-e2c1eee-666f091 (MC: 1.20.6) !
[02:33:02] [Server thread/INFO]: SCore ProtocolLib hooked !
[02:33:02] [Server thread/INFO]: SCore Locale setup: FR
[02:33:02] [Server thread/INFO]: SCore DecentHolograms hooked !  (2.8.12)  Load Before
[02:33:02] [Server thread/INFO]: SCore TAB hooked !  (5.0.3) Load After
[02:33:02] [Server thread/INFO]: SCore WorldEdit hooked !  (7.3.6+6892-3d660b8)  Load Before
[02:33:02] [Server thread/INFO]: SCore Language of the editor setup on FR
[02:33:02] [Server thread/INFO]: SCore Language for in-game messages setup on FR
[02:33:02] [Server thread/INFO]: [SCore] ERROR LOAD MESSAGE setActionbarOff for the plugin > SCore in language: FR
[02:33:02] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[02:33:02] [Server thread/INFO]: SCore Connection to the db...
[02:33:02] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[02:33:02] [Server thread/INFO]: SCore Creating table SecurityOP if not exists...
[02:33:02] [Server thread/INFO]: SCore Creating table Commands if not exists...
[02:33:02] [Server thread/INFO]: SCore Creating table Cooldowns if not exists...
[02:33:02] [Server thread/INFO]: SCore Creating table Commands Player if not exists...
[02:33:02] [Server thread/INFO]: SCore Creating table Commands Entity if not exists...
[02:33:02] [Server thread/INFO]: SCore Creating table Commands Block if not exists...
[02:33:02] [Server thread/INFO]: SCore Creating table UsePerDay if not exists...
[02:33:02] [Server thread/INFO]: [SCore] No feature Translation found for setting: playerCanSit in FR
[02:33:02] [Server thread/INFO]: [SCore] No feature Translation found for setting: sitFeatures in FR
[02:33:02] [Server thread/INFO]: [SCore] No feature Translation found for setting: storageFeatures in FR
[02:33:02] [Server thread/INFO]: [SCore] No feature Translation found for setting: usageFeatures in FR
[02:33:02] [Server thread/INFO]: [SCore] No feature Translation found for setting: myFurnitureFeatures in FR
[02:33:02] [Server thread/INFO]: [SCore] No feature Translation found for setting: playerSettings in FR
[02:33:02] [Server thread/INFO]: [SCore] No feature Translation found for setting: maxFurnitureRendered in FR
[02:33:02] [Server thread/INFO]: [SCore] No feature Translation found for setting: viewDistanceFurniture in FR
[02:33:02] [Server thread/INFO]: [SCore] No feature Translation found for setting: maxDistanceBoundingBoxCalculation in FR
[02:33:02] [Server thread/INFO]: [SCore] No feature Translation found for setting: myfurnitureID in FR
[02:33:02] [Server thread/INFO]: [SCore] No feature Translation found for setting: animation in FR
[02:33:02] [Server thread/INFO]: [SCore] No feature Translation found for setting: hasConsumeParticles in FR
[02:33:02] [Server thread/INFO]: [SCore] No feature Translation found for setting: consumeSeconds in FR
[02:33:02] [Server thread/INFO]: [SCore] No feature Translation found for setting: consumableFeatures in FR
[02:33:02] [Server thread/INFO]: [SCore] No feature Translation found for setting: viewRange in FR
[02:33:02] [Server thread/INFO]: SCore SCore loaded 1 variables from local files !
[02:33:02] [Server thread/INFO]: SCore SCore loaded 0 delayed commands saved
[02:33:02] [Server thread/INFO]: ================ SCore ================
[02:33:02] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.35-SNAPSHOT (build 3566)
[02:33:02] [Server thread/INFO]: [Citizens] Loading external libraries
[02:33:03] [Server thread/INFO]: [Citizens] La langue du système détectée est: [[fr]]. Si vous le souhaitez, vous pouvez contribuer à la traduction de Citizens sur notre Discord! https://discord.gg/Q6pZGSR
[02:33:03] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[02:33:03] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v5.3.2
[02:33:03] [Server thread/INFO]: [ExcellentCrates] Powered by nightcore
[02:33:03] [Server thread/INFO]: [ExcellentCrates] Read database configuration...
[02:33:03] [Server thread/INFO]: HikariPool-1 - Starting...
[02:33:03] [Server thread/INFO]: HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@65c7cb2d
[02:33:03] [Server thread/INFO]: HikariPool-1 - Start completed.
[02:33:03] [Server thread/INFO]: [ExcellentCrates] Registered currency: xp
[02:33:03] [Server thread/INFO]: [ExcellentCrates] Registered currency: levels
[02:33:03] [Server thread/INFO]: [ExcellentCrates] Loaded 8 crate openings.
[02:33:03] [Server thread/INFO]: [ExcellentCrates] Loaded 4 crate keys.
[02:33:03] [Server thread/INFO]: [ExcellentCrates] Loaded 4 rarities!
[02:33:04] [Server thread/INFO]: [ExcellentCrates] Loaded 16 crates.
[02:33:04] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[02:33:04] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 711 ms!
[02:33:04] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.29.0
[02:33:04] [Server thread/INFO]: [EssentialsProtect] Enabling EssentialsProtect v2.21.0-dev+151-f2af952
[02:33:04] [Server thread/INFO]: Continuing to enable Protect.
[02:33:04] [Server thread/WARN]: Versions différentes ! Veuillez mettre à jour tous les jars Essentials à la même version.
[02:33:04] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[02:33:04] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.21.0-dev+151-f2af952
[02:33:04] [Server thread/WARN]: Versions différentes ! Veuillez mettre à jour tous les jars Essentials à la même version.
[02:33:04] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[02:33:04] [Server thread/INFO]: [Orebfuscator] Enabling Orebfuscator v5.5.2
[02:33:04] [Server thread/INFO]: [TAB] Enabling TAB v5.0.3
[02:33:04] [pool-39-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (9d4734818ab27069d76f264a4cda74a699806770)
[02:33:04] [Server thread/INFO]: [TAB] Loaded NMS hook in 55ms
[02:33:04] [Server thread/INFO]: [TAB] [WARN] [config.yml] Missing configuration section "playerlist-objective.value" of type String, using default value %ping%.
[02:33:04] [Server thread/INFO]: [TAB] [WARN] Found a total of 1 issues.
[02:33:04] [Server thread/INFO]: [TAB] Enabled in 194ms
[02:33:04] [Server thread/INFO]: [Geyser-Spigot] Enabling Geyser-Spigot v2.6.1-SNAPSHOT
[02:33:04] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[02:33:05] [Server thread/INFO]: [StaffPlus] Enabling StaffPlus v3.3.14.2
[02:33:05] [Server thread/ERROR]: Cannot load plugins/StaffPlus/config.yml
org.bukkit.configuration.InvalidConfigurationException: while scanning a simple key
 in 'reader', line 167, column 5:
        chinetoque, feuj, sexe, bite, cu ... 
        ^
could not find expected ':'
 in 'reader', line 168, column 1:
    
    ^

    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:110) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:308) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.reloadConfig(JavaPlugin.java:160) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.getConfig(JavaPlugin.java:136) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at net.shortninja.staffplus.server.data.config.Options.<clinit>(Options.java:27) ~[?:?]
    at net.shortninja.staffplus.StaffPlus.onEnable(StaffPlus.java:140) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:342) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:491) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R4.CraftServer.enablePlugin(CraftServer.java:541) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at org.bukkit.craftbukkit.v1_20_R4.CraftServer.enablePlugins(CraftServer.java:455) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:634) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:419) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:265) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1010) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:311) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at java.base/java.lang.Thread.run(Thread.java:1583) [?:?]
Caused by: org.yaml.snakeyaml.scanner.ScannerException: while scanning a simple key
 in 'reader', line 167, column 5:
        chinetoque, feuj, sexe, bite, cu ... 
        ^
could not find expected ':'
 in 'reader', line 168, column 1:
    
    ^

    at org.yaml.snakeyaml.scanner.ScannerImpl.stalePossibleSimpleKeys(ScannerImpl.java:502) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.scanner.ScannerImpl.needMoreTokens(ScannerImpl.java:307) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(ScannerImpl.java:237) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingKey.produce(ParserImpl.java:637) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:161) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:57) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:43) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:136) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:116) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeScalarNode(Composer.java:241) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:205) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:369) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:348) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:323) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:369) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:348) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:323) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:369) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:348) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:323) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.getNode(Composer.java:131) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:157) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.Yaml.compose(Yaml.java:575) ~[snakeyaml-2.2.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:103) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    ... 18 more
[02:33:05] [Server thread/INFO]: [Staff+] Version protocol set to 'v1_20_R4'.
[02:33:05] [Server thread/INFO]: [Staff+] Staff+ has been enabled! Initialization took 64ms.
[02:33:05] [Server thread/INFO]: [Staff+] Plugin created by Shortninja continued by Qball.
[02:33:05] [Server thread/INFO]: [AuraSkills] Enabling AuraSkills v2.2.7
[02:33:05] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[02:33:05] [Server thread/INFO]: [AuraSkills] Loaded 21 message files
[02:33:05] [Server thread/INFO]: [AuraSkills] Successfully registered hook DecentHolograms
[02:33:05] [Server thread/INFO]: [AuraSkills] Successfully registered hook LuckPerms
[02:33:05] [Server thread/INFO]: [AuraSkills] Successfully registered hook ProtocolLib
[02:33:05] [Server thread/INFO]: [AuraSkills] Loaded 151 config options in 32 ms
[02:33:05] [Server thread/INFO]: [AuraSkills] Loaded 3 blocked/disabled worlds
[02:33:06] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[02:33:06] [Server thread/INFO]: [GCore] Enabling GCore v8.50.0
[02:33:06] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Réacheminement de la console affecté au canal TC:console-mc(1286356276108070942)
[02:33:06] [Server thread/INFO]: [GCore-migration] Already processed v7 -> v8 (config)
[02:33:06] [Server thread/INFO]: [GCore-migration] Already processed v7 -> v8 (data)
[02:33:06] [Server thread/INFO]: [GCore-migration] Already processed v8.4 -> v8.5
[02:33:06] [Server thread/INFO]: [GCore-migration] Already processed v8.8 -> v8.9
[02:33:06] [Server thread/INFO]: [GCore-migration] Already processed v8.23 -> v8.24
[02:33:06] [Server thread/INFO]: [GCore-migration] Already processed v8.24 -> v8.25
[02:33:06] [Server thread/INFO]: [GCore-migration] Already processed v8.29 -> v8.30
[02:33:06] [Server thread/INFO]: [GCore-8.50.0] Found server version MC_1_20_R4
[02:33:06] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Sauvegarde des comptes liés en 3ms
[02:33:06] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Activation de l'accrochage du plugin Essentials
[02:33:06] [Server thread/INFO]: [GCore-8.50.0] Loading materials...
[02:33:06] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Activation de l'accrochage du plugin LuckPerms
[02:33:06] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling voice module
[02:33:06] [Server thread/INFO]: [GCore-8.50.0] Loading sounds...
[02:33:06] [Server thread/INFO]: [GCore-8.50.0] Loading particles...
[02:33:06] [Server thread/INFO]: [GCore-8.50.0] Enabled currency XP_LEVEL
[02:33:06] [Server thread/INFO]: [GCore-8.50.0] Enabled currency XP
[02:33:06] [Server thread/INFO]: [GCore-8.50.0] Loading texts...
[02:33:06] [Server thread/INFO]: [GCore-8.50.0] Text durationformatdays doesn't exist in default files (not even in en_US)
[02:33:06] [Server thread/INFO]: [GCore-8.50.0] Loaded 1 missing text from default lang for generic.yml : durationFormatDays
[02:33:06] [Server thread/INFO]: [GCore-8.50.0] Enabled integration for Citizens
[02:33:06] [Server thread/INFO]: [GCore-8.50.0] Initializing worker and caches
[02:33:06] [Server thread/INFO]: [GCore-8.50.0] Enabled NPC manager with ProtocolLib
[02:33:06] [Server thread/INFO]: [GCore-8.50.0] Registering integrations
[02:33:06] [Server thread/INFO]: [GCore-8.50.0] Initializing tasks and listeners
[02:33:06] [Server thread/INFO]: [GCore-8.50.0] Successfully enabled
[02:33:06] [Server thread/INFO]: [BeautyQuests] Enabling BeautyQuests v1.0.3
[02:33:06] [Server thread/INFO]: [BeautyQuests] ------------ BeautyQuests ------------
[02:33:06] [Server thread/WARN]: [BeautyQuests] You are not running the Paper software.
It is highly recommended to use it for extended features and more stability.
[02:33:06] [Server thread/INFO]: [BeautyQuests] Loaded valid Minecraft version 1_20_R4.
[02:33:07] [Server thread/WARN]: [BeautyQuests] The file is not fully translated! 6 missing translations.
[02:33:07] [Server thread/INFO]: [BeautyQuests] Loaded language fr_FR (0.016s)!
[02:33:07] [Server thread/INFO]: [BeautyQuests] Loaded start particles: DUST in shape POINT with color R255 G255 B0
[02:33:07] [Server thread/INFO]: [BeautyQuests] Loaded talk particles: HAPPY_VILLAGER in shape BAR
[02:33:07] [Server thread/INFO]: [BeautyQuests] Loaded next particles: SMOKE in shape SPOT
[02:33:07] [Server thread/INFO]: [BeautyQuests] Adding citizens as a npc factory
[02:33:07] [Server thread/INFO]: [CustomCommands] Enabling CustomCommands v4.3.0
[02:33:07] [Server thread/INFO]: [CustomCommands-migration] Already processed v3 -> v4 (config)
[02:33:07] [Server thread/INFO]: [CustomCommands-migration] Already processed v3 -> v4 (data)
[02:33:07] [Server thread/INFO]: [CustomCommands-4.3.0] Successfully loaded 4 custom commands : admin, complex, helpserver, wiki
[02:33:07] [Server thread/INFO]: [CustomCommands-4.3.0] Loading texts...
[02:33:07] [Server thread/INFO]: [CustomCommands-4.3.0] Successfully enabled
[02:33:07] [Server thread/INFO]: [AuraMobs] Enabling AuraMobs v2.1.0
[02:33:07] [Server thread/INFO]: [AuraMobs] Loaded 4 message files
[02:33:07] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[02:33:07] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[02:33:07] [Server thread/INFO]: [Geyser-Spigot] 
[02:33:07] [Server thread/INFO]: [Geyser-Spigot] Chargement Geyser version 2.6.1-b762 (git-master-d5b5712)
[02:33:07] [Server thread/INFO]: [Geyser-Spigot] 
[02:33:07] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[02:33:10] [Server thread/INFO]: [Geyser-Spigot] Geyser démarré sur st-vincent.craft.gg:10024
[02:33:10] [Server thread/INFO]: [Geyser-Spigot] Terminé (2,973s) ! Exécutez /geyser help pour de l'aide !
[02:33:10] [Server thread/INFO]: Done (27.328s)! For help, type "help"
[02:33:10] [Server thread/INFO]: Starting GS4 status listener
[02:33:10] [Server thread/WARN]: Unable to initialise query system on 62.210.62.219:10024
java.net.BindException: Adresse déjà utilisée
    at java.base/sun.nio.ch.Net.bind0(Native Method) ~[?:?]
    at java.base/sun.nio.ch.Net.bind(Net.java:565) ~[?:?]
    at java.base/sun.nio.ch.DatagramChannelImpl.bindInternal(DatagramChannelImpl.java:1329) ~[?:?]
    at java.base/sun.nio.ch.DatagramChannelImpl.bind(DatagramChannelImpl.java:1299) ~[?:?]
    at java.base/sun.nio.ch.DatagramSocketAdaptor.bind(DatagramSocketAdaptor.java:108) ~[?:?]
    at java.base/java.net.DatagramSocket.createDelegate(DatagramSocket.java:1425) ~[?:?]
    at java.base/java.net.DatagramSocket.<init>(DatagramSocket.java:328) ~[?:?]
    at java.base/java.net.DatagramSocket.<init>(DatagramSocket.java:387) ~[?:?]
    at net.minecraft.server.rcon.thread.RemoteStatusListener.e(SourceFile:312) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.rcon.thread.RemoteStatusListener.a(SourceFile:288) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.rcon.thread.RemoteStatusListener.a(SourceFile:91) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:276) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1010) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:311) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at java.base/java.lang.Thread.run(Thread.java:1583) [?:?]
[02:33:10] [Craft Scheduler Thread - 0/INFO]: [BlueMap] Loading...
[02:33:10] [Craft Scheduler Thread - 7/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[02:33:10] [Craft Scheduler Thread - 1/INFO]: [GUIAdminTools] There is a new update available.
[02:33:10] [Craft Scheduler Thread - 4/INFO]: 
[02:33:10] [Craft Scheduler Thread - 4/INFO]: A newer version of DecentHolograms is available. Download it from: 
[02:33:10] [Craft Scheduler Thread - 4/INFO]: - https://www.spigotmc.org/resources/96927/
[02:33:10] [Craft Scheduler Thread - 4/INFO]: - https://modrinth.com/plugin/decentholograms
[02:33:10] [Craft Scheduler Thread - 6/INFO]: Récupération des informations de version...
[02:33:10] [Craft Scheduler Thread - 7/INFO]: [zMenu v1.0.3.7] New update available. Your version: 1.0.3.7, latest version: 1.0.3.8
[02:33:10] [Craft Scheduler Thread - 7/INFO]: [zMenu v1.0.3.7] Download plugin here: https://groupez.dev/resources/253
[02:33:11] [Craft Scheduler Thread - 10/INFO]: [StaffPlus] You are using the latest version thanks
[02:33:11] [pool-32-thread-1/INFO]: There weren''t enough people to auto-start an envoy event! Rescheduling!
[02:33:12] [Server thread/INFO]: [AuraSkills] Loaded 11 skills with 308 total sources
[02:33:12] [Server thread/INFO]: [AuraSkills] Loaded 9 stats and 17 traits
[02:33:12] [Server thread/INFO]: [AuraSkills] Loaded 122 pattern rewards and 0 level rewards
[02:33:12] [Server thread/INFO]: [AuraSkills] Loaded 53 loot entries in 4 pools and 2 tables
[02:33:12] [Craft Scheduler Thread - 0/INFO]: [BlueMap] Loading resources...
[02:33:12] [Server thread/INFO]: [AuraSkills] Loaded 6 menus
[02:33:12] [Craft Scheduler Thread - 0/INFO]: [BlueMap] Loading textures...
[02:33:13] [Server thread/INFO]: [Citizens] Chargement de 37 NPCs.
[02:33:13] [Server thread/INFO]: [BeautyQuests] 2 quests loaded (0.078s)!
[02:33:13] [Server thread/INFO]: [BeautyQuests] Periodic saves task started (18000 ticks). Task ID: 6795
[02:33:13] [Server thread/WARN]: [BeautyQuests] *****************************************************
[02:33:13] [Server thread/WARN]: [BeautyQuests] * There is a new version of BeautyQuests available!
[02:33:13] [Server thread/WARN]: [BeautyQuests] *  
[02:33:13] [Server thread/WARN]: [BeautyQuests] * Your version:   1.0.3
[02:33:13] [Server thread/WARN]: [BeautyQuests] * Latest version: 1.0.4
[02:33:13] [Server thread/WARN]: [BeautyQuests] *  
[02:33:13] [Server thread/WARN]: [BeautyQuests] * Please update to the newest version.
[02:33:13] [Server thread/WARN]: [BeautyQuests] *  
[02:33:13] [Server thread/WARN]: [BeautyQuests] * Download:
[02:33:13] [Server thread/WARN]: [BeautyQuests] *   https://www.spigotmc.org/resources/39255
[02:33:13] [Server thread/WARN]: [BeautyQuests] *****************************************************
[02:33:13] [Craft Scheduler Thread - 0/INFO]: [BlueMap] Baking resources...
[02:33:13] [Craft Scheduler Thread - 0/INFO]: [BlueMap] Resources loaded.
[02:33:13] [Craft Scheduler Thread - 0/INFO]: [BlueMap] Initializing Storage: 'file' (Type: 'bluemap:file')
[02:33:13] [Craft Scheduler Thread - 0/INFO]: [BlueMap] Loading map 'world'...
[02:33:13] [Craft Scheduler Thread - 6/WARN]: Vous êtes en retard de 8 version(s) de développement d‘EssentialsX !
[02:33:13] [Craft Scheduler Thread - 6/WARN]: Téléchargez-la ici : https://essentialsx.net/downloads.html
[02:33:13] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[02:33:13] [Craft Scheduler Thread - 0/INFO]: [BlueMap] Loading map 'world_the_end'...
[02:33:13] [Craft Scheduler Thread - 0/INFO]: [BlueMap] Loading map 'world_nether'...
[02:33:13] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2828ms or 56 ticks behind
[02:33:13] [Craft Scheduler Thread - 0/INFO]: [BlueMap] WebServer bound to all network interfaces on port 9182
[02:33:13] [Thread-33/INFO]: [BlueMap] WebServer started.
[02:33:13] [Craft Scheduler Thread - 0/INFO]: [BlueMap] Loaded!
[02:33:16] [Craft Scheduler Thread - 9/INFO]: AxGraves » There is a new version of AxGraves available! (current: 1.17.1 | latest: 1.18.0)
[02:33:36] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2601ms or 52 ticks behind
[02:48:16] [Craft Scheduler Thread - 15/INFO]: [BeautyQuests] Datas saved ~ periodic save
[03:03:16] [Craft Scheduler Thread - 18/INFO]: [BeautyQuests] Datas saved ~ periodic save
[03:18:16] [Craft Scheduler Thread - 23/INFO]: [BeautyQuests] Datas saved ~ periodic save
[03:33:16] [Craft Scheduler Thread - 23/INFO]: [SimpleClaimSystem] Auto-purge: no claims removed.
[03:33:16] [Craft Scheduler Thread - 27/INFO]: [BeautyQuests] Datas saved ~ periodic save
[03:33:18] [Server thread/INFO]: [Staff+] Staff+ is now auto saving...
[03:48:16] [Craft Scheduler Thread - 32/INFO]: [BeautyQuests] Datas saved ~ periodic save
[04:03:16] [Craft Scheduler Thread - 35/INFO]: [BeautyQuests] Datas saved ~ periodic save
[04:18:16] [Craft Scheduler Thread - 39/INFO]: [BeautyQuests] Datas saved ~ periodic save
[04:33:16] [Craft Scheduler Thread - 35/INFO]: [SimpleClaimSystem] Auto-purge: no claims removed.
[04:33:16] [Craft Scheduler Thread - 40/INFO]: [BeautyQuests] Datas saved ~ periodic save
[04:33:28] [Server thread/INFO]: [Staff+] Staff+ is now auto saving...
[04:48:16] [Craft Scheduler Thread - 48/INFO]: [BeautyQuests] Datas saved ~ periodic save
[05:03:16] [Craft Scheduler Thread - 51/INFO]: [BeautyQuests] Datas saved ~ periodic save
[05:18:16] [Craft Scheduler Thread - 55/INFO]: [BeautyQuests] Datas saved ~ periodic save
[05:33:16] [Craft Scheduler Thread - 56/INFO]: [SimpleClaimSystem] Auto-purge: no claims removed.
[05:33:16] [Craft Scheduler Thread - 58/INFO]: [BeautyQuests] Datas saved ~ periodic save
[05:33:30] [Server thread/INFO]: [Staff+] Staff+ is now auto saving...
[05:48:16] [Craft Scheduler Thread - 65/INFO]: [BeautyQuests] Datas saved ~ periodic save
[06:03:16] [Craft Scheduler Thread - 69/INFO]: [BeautyQuests] Datas saved ~ periodic save
[06:18:16] [Craft Scheduler Thread - 72/INFO]: [BeautyQuests] Datas saved ~ periodic save
[06:33:16] [Craft Scheduler Thread - 73/INFO]: [SimpleClaimSystem] Auto-purge: no claims removed.
[06:33:16] [Craft Scheduler Thread - 75/INFO]: [BeautyQuests] Datas saved ~ periodic save
[06:33:32] [Server thread/INFO]: [Staff+] Staff+ is now auto saving...
[06:48:16] [Craft Scheduler Thread - 80/INFO]: [BeautyQuests] Datas saved ~ periodic save
[07:03:16] [Craft Scheduler Thread - 84/INFO]: [BeautyQuests] Datas saved ~ periodic save
[07:18:16] [Craft Scheduler Thread - 89/INFO]: [BeautyQuests] Datas saved ~ periodic save
[07:33:16] [Craft Scheduler Thread - 88/INFO]: [SimpleClaimSystem] Auto-purge: no claims removed.
[07:33:17] [Craft Scheduler Thread - 93/INFO]: [BeautyQuests] Datas saved ~ periodic save
[07:33:34] [Server thread/INFO]: [Staff+] Staff+ is now auto saving...
[07:48:16] [Craft Scheduler Thread - 97/INFO]: [BeautyQuests] Datas saved ~ periodic save
[08:03:16] [Craft Scheduler Thread - 102/INFO]: [BeautyQuests] Datas saved ~ periodic save
[08:18:16] [Craft Scheduler Thread - 107/INFO]: [BeautyQuests] Datas saved ~ periodic save
[08:33:16] [Craft Scheduler Thread - 107/INFO]: [SimpleClaimSystem] Auto-purge: no claims removed.
[08:33:16] [Craft Scheduler Thread - 112/INFO]: [BeautyQuests] Datas saved ~ periodic save
[08:33:38] [Server thread/INFO]: [Staff+] Staff+ is now auto saving...
[08:35:55] [Server thread/INFO]: [ProtocolLib] The updater found an update: 5.3.0 (Running 5.3.0-SNAPSHOT-726). Download at https://www.spigotmc.org/resources/protocollib.1997/
[08:48:16] [Craft Scheduler Thread - 118/INFO]: [BeautyQuests] Datas saved ~ periodic save
[08:49:06] [User Authenticator #1/INFO]: UUID of player gordon_fox1 is 801eb277-115e-4bd2-a51c-f9e1545e4647
[08:49:20] [Server thread/ERROR]: Cannot load plugins/SetSpawn/config.yml
org.bukkit.configuration.InvalidConfigurationException: while parsing a block mapping
 in 'reader', line 13, column 3:
      Enabled: true
      ^
expected <block end>, but found '<scalar>'
 in 'reader', line 14, column 48:
     ... &fSetSpawn&0]&r: &Bienvenue à l'école!'
                                         ^

    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:110) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:308) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.reloadConfig(JavaPlugin.java:160) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.getConfig(JavaPlugin.java:136) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at me.ij0hny.setspawn.Events.onJoin.onJoin(onJoin.java:68) ~[?:?]
    at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]
    at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:600) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:587) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.players.PlayerList.a(PlayerList.java:296) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.a(ServerConfigurationPacketListenerImpl.java:148) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(SourceFile:22) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(SourceFile:8) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.PlayerConnectionUtils.lambda$ensureRunningOnSameThread$0(PlayerConnectionUtils.java:34) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.TickTask.run(SourceFile:18) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.d(SourceFile:162) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(SourceFile:23) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1242) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.A(SourceFile:136) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.bu(MinecraftServer.java:1221) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.A(MinecraftServer.java:1214) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.c(SourceFile:145) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.v_(MinecraftServer.java:1186) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1071) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:311) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at java.base/java.lang.Thread.run(Thread.java:1583) [?:?]
Caused by: org.yaml.snakeyaml.parser.ParserException: while parsing a block mapping
 in 'reader', line 13, column 3:
      Enabled: true
      ^
expected <block end>, but found '<scalar>'
 in 'reader', line 14, column 48:
     ... &fSetSpawn&0]&r: &Bienvenue à l'école!'
                                         ^

    at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingKey.produce(ParserImpl.java:654) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:161) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:57) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:43) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:136) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:116) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeScalarNode(Composer.java:241) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:205) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:369) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:348) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:323) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:369) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:348) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:323) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.getNode(Composer.java:131) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:157) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.Yaml.compose(Yaml.java:575) ~[snakeyaml-2.2.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:103) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    ... 30 more
[08:49:20] [TAB Processing Thread/INFO]: [TAB] [WARN] Player gordon_fox1's group (jdoyen) is not in sorting list! Sorting list: owner,admin,mod,helper,builder,vip,default. Player will be sorted on the bottom.
[08:49:20] [Server thread/INFO]: [DiscordSRV] Le joueur gordon_fox1 a rejoint le jeu avec une permission de silence lors de la connexion.
[08:49:20] [Server thread/INFO]: gordon_fox1 joined the game
[08:49:20] [Server thread/INFO]: gordon_fox1[/85.201.212.82:51539] logged in with entity id 1437 at ([world]-236.51249998807907, 79.0, 2.5230200987550453)
[08:49:32] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode survival
[08:49:35] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode spectator
[08:49:57] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode creative
[08:50:17] [Server thread/ERROR]: Could not pass event InventoryCloseEvent to GUIAdminTools v2.7.9
org.bukkit.event.EventException: null
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:310) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:600) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:587) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R4.event.CraftEventFactory.handleInventoryCloseEvent(CraftEventFactory.java:1427) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2509) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.game.PacketPlayInCloseWindow.a(SourceFile:32) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.game.PacketPlayInCloseWindow.a(SourceFile:8) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.PlayerConnectionUtils.lambda$ensureRunningOnSameThread$0(PlayerConnectionUtils.java:34) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.TickTask.run(SourceFile:18) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.d(SourceFile:162) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(SourceFile:23) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1242) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.A(SourceFile:136) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.bu(MinecraftServer.java:1221) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.A(MinecraftServer.java:1214) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.c(SourceFile:145) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.v_(MinecraftServer.java:1186) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1071) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:311) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at java.base/java.lang.Thread.run(Thread.java:1583) [?:?]
Caused by: java.lang.IncompatibleClassChangeError: Found class org.bukkit.inventory.InventoryView, but interface was expected
    at me.otrek2002.guiadmintools.Listeners.onClose.onCloseInv(onClose.java:19) ~[?:?]
    at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]
    at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    ... 21 more
[08:50:35] [Server thread/INFO]: gordon_fox1 issued server command: //replace #air quartz_bricks
[08:50:39] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode spectator
[08:50:43] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode creative
[08:52:16] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode spectator
[08:52:23] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode creative
[08:53:16] [Server thread/INFO]: [CHAT GAMES] A(n) UNREVERSE chat game has started in the server!
[08:53:24] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode spectator
[08:53:32] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode creative
[08:53:46] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode spectator
[08:53:54] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode creative
[08:54:08] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode spectator
[08:54:13] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode creative
[08:54:20] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode spectator
[08:54:23] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode creative
[08:54:25] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode spectator
[08:54:31] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode creative
[08:54:33] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode spectator
[08:54:36] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode creative
[08:54:38] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode survival
[08:54:41] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode spectator
[08:54:45] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode survival
[08:54:50] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode creative
[08:54:52] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode spectator
[08:54:58] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode creative
[08:55:08] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode spectator
[08:55:11] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode creative
[08:55:14] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode spectator
[08:55:17] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode creative
[08:55:37] [Server thread/INFO]: gordon_fox1 issued server command: //replace end_stone_bricks
[08:55:39] [User Authenticator #2/INFO]: UUID of player Kosma__ is fb9b4363-198a-4436-8949-2806a0d35df0
[08:55:44] [TAB Processing Thread/INFO]: [TAB] [WARN] Player Kosma__'s group (sadmin) is not in sorting list! Sorting list: owner,admin,mod,helper,builder,vip,default. Player will be sorted on the bottom.
[08:55:45] [Server thread/INFO]: [DiscordSRV] Le joueur Kosma__ a rejoint le jeu avec une permission de silence lors de la connexion.
[08:55:45] [Server thread/INFO]: Kosma__ joined the game
[08:55:45] [Server thread/INFO]: Kosma__[/91.177.136.212:50519] logged in with entity id 2447 at ([world]-3315.852037934262, 112.34351603521462, -3874.929535112074)
[08:55:45] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode spectator
[08:55:49] [Server thread/INFO]: Kosma__ issued server command: /spawn
[08:55:49] [Server thread/WARN]: Kosma__ moved too quickly! 3228.53953983058,-46.34351603521462,3933.5036891414316
[08:55:51] [Server thread/INFO]: Kosma__ issued server command: /gamemode spectator
[08:55:56] [Server thread/INFO]: Kosma__ issued server command: /gamemode creative
[08:56:03] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode creative
[08:56:04] [Async Chat Thread - #1/INFO]: <Kosma__> les npcs je comprends pas vrmt
[08:56:17] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode spectator
[08:56:30] [Async Chat Thread - #1/INFO]: <Kosma__> t'as décalé la piste?
[08:56:40] [Async Chat Thread - #1/INFO]: <gordon_fox1> NON TU PEUX REMETTRE TON PNJ
[08:56:46] [Async Chat Thread - #1/INFO]: <Kosma__> wsh
[08:56:52] [Server thread/INFO]: Kosma__ issued server command: /npc select
[08:56:53] [Async Chat Thread - #2/INFO]: <gordon_fox1> j'ai eu la grosse flemme enfaite
[08:57:00] [Async Chat Thread - #2/INFO]: <gordon_fox1> fallait tout bouger
[08:57:03] [Server thread/INFO]: Kosma__ issued server command: /npc moveto
[08:57:10] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode creative
[08:57:14] [Server thread/INFO]: Kosma__ issued server command: /npc tphere
[08:57:17] [Server thread/INFO]: Kosma__ issued server command: /npc tphere
[08:57:23] [Server thread/INFO]: Kosma__ issued server command: /npc path
[08:57:28] [Server thread/INFO]: gordon_fox1 issued server command: //replace #air end_stone_bricks
[08:57:42] [Server thread/INFO]: gordon_fox1 issued server command: //replace #air end_stone_bricks
[08:57:45] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode spectator
[08:57:56] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode creative
[08:58:07] [Server thread/INFO]: gordon_fox1 issued server command: //cut
[08:58:14] [Server thread/INFO]: gordon_fox1 issued server command: //cut
[08:58:25] [Server thread/INFO]: gordon_fox1 issued server command: //replace #air end_stone_bricks
[08:58:48] [Server thread/INFO]: gordon_fox1 issued server command: //replace #air end_stone_bricks
[08:58:54] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode spectator
[08:59:26] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode creative
[09:02:03] [Server thread/INFO]: Kosma__ issued server command: /npc path
[09:02:37] [Server thread/ERROR]: Could not pass event InventoryCloseEvent to GUIAdminTools v2.7.9
org.bukkit.event.EventException: null
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:310) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:600) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:587) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R4.event.CraftEventFactory.handleInventoryCloseEvent(CraftEventFactory.java:1427) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2509) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.game.PacketPlayInCloseWindow.a(SourceFile:32) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.game.PacketPlayInCloseWindow.a(SourceFile:8) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.PlayerConnectionUtils.lambda$ensureRunningOnSameThread$0(PlayerConnectionUtils.java:34) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.TickTask.run(SourceFile:18) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.d(SourceFile:162) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(SourceFile:23) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1242) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.A(SourceFile:136) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.bu(MinecraftServer.java:1221) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.A(MinecraftServer.java:1214) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.c(SourceFile:145) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.v_(MinecraftServer.java:1186) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1071) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:311) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at java.base/java.lang.Thread.run(Thread.java:1583) [?:?]
Caused by: java.lang.IncompatibleClassChangeError: Found class org.bukkit.inventory.InventoryView, but interface was expected
    at me.otrek2002.guiadmintools.Listeners.onClose.onCloseInv(onClose.java:19) ~[?:?]
    at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]
    at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    ... 21 more
[09:03:16] [Craft Scheduler Thread - 135/INFO]: [BeautyQuests] Datas saved ~ periodic save
[09:04:29] [Server thread/ERROR]: Could not pass event InventoryCloseEvent to GUIAdminTools v2.7.9
org.bukkit.event.EventException: null
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:310) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:600) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:587) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R4.event.CraftEventFactory.handleInventoryCloseEvent(CraftEventFactory.java:1427) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2509) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.game.PacketPlayInCloseWindow.a(SourceFile:32) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.game.PacketPlayInCloseWindow.a(SourceFile:8) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.PlayerConnectionUtils.lambda$ensureRunningOnSameThread$0(PlayerConnectionUtils.java:34) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.TickTask.run(SourceFile:18) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.d(SourceFile:162) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(SourceFile:23) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1242) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.A(SourceFile:136) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.bu(MinecraftServer.java:1221) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.A(MinecraftServer.java:1214) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.bA(SourceFile:121) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.v_(MinecraftServer.java:1185) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1071) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:311) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at java.base/java.lang.Thread.run(Thread.java:1583) [?:?]
Caused by: java.lang.IncompatibleClassChangeError: Found class org.bukkit.inventory.InventoryView, but interface was expected
    at me.otrek2002.guiadmintools.Listeners.onClose.onCloseInv(onClose.java:19) ~[?:?]
    at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]
    at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    ... 21 more
[09:04:29] [Server thread/ERROR]: Could not pass event InventoryCloseEvent to GUIAdminTools v2.7.9
org.bukkit.event.EventException: null
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:310) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:600) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:587) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R4.event.CraftEventFactory.handleInventoryCloseEvent(CraftEventFactory.java:1427) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.level.EntityPlayer.r(EntityPlayer.java:1583) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at org.bukkit.craftbukkit.v1_20_R4.entity.CraftHumanEntity.closeInventory(CraftHumanEntity.java:444) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at org.bukkit.inventory.InventoryView.close(InventoryView.java:421) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at net.citizensnpcs.api.util.SpigotUtil$InventoryViewAPI.close(SpigotUtil.java:39) ~[?:?]
    at net.citizensnpcs.api.gui.InventoryMenu.lambda$transitionViewersToInventory$4(InventoryMenu.java:595) ~[?:?]
    at org.bukkit.craftbukkit.v1_20_R4.scheduler.CraftTask.run(CraftTask.java:82) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at org.bukkit.craftbukkit.v1_20_R4.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:415) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1397) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:402) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1293) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1064) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:311) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at java.base/java.lang.Thread.run(Thread.java:1583) [?:?]
Caused by: java.lang.IncompatibleClassChangeError: Found class org.bukkit.inventory.InventoryView, but interface was expected
    at me.otrek2002.guiadmintools.Listeners.onClose.onCloseInv(onClose.java:19) ~[?:?]
    at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]
    at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    ... 17 more
[09:04:33] [Server thread/ERROR]: Could not pass event InventoryCloseEvent to GUIAdminTools v2.7.9
org.bukkit.event.EventException: null
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:310) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:600) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:587) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R4.event.CraftEventFactory.handleInventoryCloseEvent(CraftEventFactory.java:1427) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2509) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.game.PacketPlayInCloseWindow.a(SourceFile:32) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.game.PacketPlayInCloseWindow.a(SourceFile:8) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.PlayerConnectionUtils.lambda$ensureRunningOnSameThread$0(PlayerConnectionUtils.java:34) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.TickTask.run(SourceFile:18) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.d(SourceFile:162) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(SourceFile:23) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1242) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.A(SourceFile:136) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.bu(MinecraftServer.java:1221) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.A(MinecraftServer.java:1214) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.c(SourceFile:145) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.v_(MinecraftServer.java:1186) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1071) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:311) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at java.base/java.lang.Thread.run(Thread.java:1583) [?:?]
Caused by: java.lang.IncompatibleClassChangeError: Found class org.bukkit.inventory.InventoryView, but interface was expected
    at me.otrek2002.guiadmintools.Listeners.onClose.onCloseInv(onClose.java:19) ~[?:?]
    at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]
    at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    ... 21 more
[09:04:37] [Server thread/ERROR]: Could not pass event InventoryCloseEvent to GUIAdminTools v2.7.9
org.bukkit.event.EventException: null
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:310) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:600) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:587) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R4.event.CraftEventFactory.handleInventoryCloseEvent(CraftEventFactory.java:1427) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2509) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.game.PacketPlayInCloseWindow.a(SourceFile:32) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.game.PacketPlayInCloseWindow.a(SourceFile:8) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.PlayerConnectionUtils.lambda$ensureRunningOnSameThread$0(PlayerConnectionUtils.java:34) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.TickTask.run(SourceFile:18) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.d(SourceFile:162) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(SourceFile:23) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1242) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.A(SourceFile:136) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.bu(MinecraftServer.java:1221) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.A(MinecraftServer.java:1214) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.c(SourceFile:145) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.v_(MinecraftServer.java:1186) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1071) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:311) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at java.base/java.lang.Thread.run(Thread.java:1583) [?:?]
Caused by: java.lang.IncompatibleClassChangeError: Found class org.bukkit.inventory.InventoryView, but interface was expected
    at me.otrek2002.guiadmintools.Listeners.onClose.onCloseInv(onClose.java:19) ~[?:?]
    at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]
    at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    ... 21 more
[09:04:38] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode spectator
[09:04:39] [Async Chat Thread - #6/INFO]: <Kosma__> chef
[09:04:43] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode creative
[09:04:55] [Async Chat Thread - #5/INFO]: <Kosma__> supprime les commandes claim de ton "wiki"
[09:05:27] [Server thread/INFO]: Kosma__ issued server command: /claim tp claim-1
[09:05:55] [User Authenticator #3/INFO]: UUID of player hel1ixx is 48c46cde-7cfa-4d21-9a72-ea66b40fe38a
[09:06:03] [Server thread/INFO]: [DiscordSRV] Le joueur hel1ixx a rejoint le jeu avec une permission de silence lors de la connexion.
[09:06:03] [Server thread/INFO]: hel1ixx joined the game
[09:06:03] [Server thread/INFO]: hel1ixx[/90.1.222.79:59898] logged in with entity id 5543 at ([world]-251.09869943275058, 64.0, 22.358728374941492)
[09:06:14] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode spectator
[09:06:28] [Server thread/INFO]: hel1ixx issued server command: /vanish
[09:06:44] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode creative
[09:06:44] [Server thread/INFO]: hel1ixx issued server command: /tp gordon_fox1
[09:06:45] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode spectator
[09:06:48] [Server thread/INFO]: hel1ixx issued server command: /tp gordon_fox1
[09:06:48] [Server thread/WARN]: hel1ixx moved too quickly! 16.170736043580703,-2.5857222712046735,-2.459902861129237
[09:06:49] [Server thread/INFO]: hel1ixx issued server command: /tp gordon_fox1
[09:06:50] [Server thread/INFO]: hel1ixx issued server command: /tp gordon_fox1
[09:06:53] [Server thread/INFO]: hel1ixx issued server command: /tp gordon_fox1
[09:06:53] [Server thread/WARN]: hel1ixx moved too quickly! 20.232647563615444,0.0,-0.4355665504713784
[09:06:54] [Server thread/INFO]: hel1ixx issued server command: /tp gordon_fox1
[09:06:55] [Server thread/INFO]: hel1ixx issued server command: /tp gordon_fox1
[09:06:55] [Server thread/INFO]: hel1ixx issued server command: /tp gordon_fox1
[09:06:56] [Server thread/INFO]: hel1ixx issued server command: /tp gordon_fox1
[09:06:56] [Server thread/INFO]: hel1ixx issued server command: /tp gordon_fox1
[09:06:57] [Server thread/INFO]: hel1ixx issued server command: /tp gordon_fox1
[09:06:57] [Server thread/INFO]: hel1ixx issued server command: /tp gordon_fox1
[09:07:04] [Server thread/INFO]: hel1ixx issued server command: /follow gordon_fox1
[09:07:15] [Server thread/INFO]: hel1ixx issued server command: /follow gordon_fox1
[09:07:17] [Server thread/INFO]: hel1ixx issued server command: /follow gordon_fox1
[09:07:20] [Server thread/INFO]: hel1ixx issued server command: /follow gordon_fox1
[09:07:38] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode creative
[09:07:40] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode spectator
[09:07:44] [Server thread/INFO]: gordon_fox1 issued server command: /gamemode creative
[09:07:56] [Server thread/INFO]: hel1ixx issued server command: /vanish
[09:07:59] [Server thread/INFO]: hel1ixx issued server command: /vanish
[09:08:06] [Server thread/INFO]: gordon_fox1 issued server command: /vanish
[09:08:13] [Server thread/ERROR]: Could not pass event InventoryCloseEvent to GUIAdminTools v2.7.9
org.bukkit.event.EventException: null
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:310) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:600) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:587) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R4.event.CraftEventFactory.handleInventoryCloseEvent(CraftEventFactory.java:1427) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2509) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.game.PacketPlayInCloseWindow.a(SourceFile:32) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.game.PacketPlayInCloseWindow.a(SourceFile:8) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.PlayerConnectionUtils.lambda$ensureRunningOnSameThread$0(PlayerConnectionUtils.java:34) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.TickTask.run(SourceFile:18) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.d(SourceFile:162) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(SourceFile:23) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1242) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.A(SourceFile:136) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.bu(MinecraftServer.java:1221) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.A(MinecraftServer.java:1214) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.c(SourceFile:145) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.v_(MinecraftServer.java:1186) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1071) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:311) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at java.base/java.lang.Thread.run(Thread.java:1583) [?:?]
Caused by: java.lang.IncompatibleClassChangeError: Found class org.bukkit.inventory.InventoryView, but interface was expected
    at me.otrek2002.guiadmintools.Listeners.onClose.onCloseInv(onClose.java:19) ~[?:?]
    at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]
    at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    ... 21 more
[09:08:32] [Server thread/INFO]: hel1ixx issued server command: /gamemode creative
[09:08:38] [Server thread/ERROR]: Could not pass event InventoryCloseEvent to GUIAdminTools v2.7.9
org.bukkit.event.EventException: null
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:310) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:600) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:587) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R4.event.CraftEventFactory.handleInventoryCloseEvent(CraftEventFactory.java:1427) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2509) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.game.PacketPlayInCloseWindow.a(SourceFile:32) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.game.PacketPlayInCloseWindow.a(SourceFile:8) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.PlayerConnectionUtils.lambda$ensureRunningOnSameThread$0(PlayerConnectionUtils.java:34) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.TickTask.run(SourceFile:18) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.d(SourceFile:162) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(SourceFile:23) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1242) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.A(SourceFile:136) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.bu(MinecraftServer.java:1221) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.A(MinecraftServer.java:1214) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.c(SourceFile:145) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.v_(MinecraftServer.java:1186) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1071) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:311) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at java.base/java.lang.Thread.run(Thread.java:1583) [?:?]
Caused by: java.lang.IncompatibleClassChangeError: Found class org.bukkit.inventory.InventoryView, but interface was expected
    at me.otrek2002.guiadmintools.Listeners.onClose.onCloseInv(onClose.java:19) ~[?:?]
    at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]
    at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    ... 21 more
[09:08:50] [Server thread/ERROR]: Could not pass event InventoryCloseEvent to GUIAdminTools v2.7.9
org.bukkit.event.EventException: null
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:310) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:600) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:587) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R4.event.CraftEventFactory.handleInventoryCloseEvent(CraftEventFactory.java:1427) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2509) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.game.PacketPlayInCloseWindow.a(SourceFile:32) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.game.PacketPlayInCloseWindow.a(SourceFile:8) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.PlayerConnectionUtils.lambda$ensureRunningOnSameThread$0(PlayerConnectionUtils.java:34) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.TickTask.run(SourceFile:18) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.d(SourceFile:162) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(SourceFile:23) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1242) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.A(SourceFile:136) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.bu(MinecraftServer.java:1221) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.A(MinecraftServer.java:1214) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.c(SourceFile:145) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.v_(MinecraftServer.java:1186) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1071) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:311) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at java.base/java.lang.Thread.run(Thread.java:1583) [?:?]
Caused by: java.lang.IncompatibleClassChangeError: Found class org.bukkit.inventory.InventoryView, but interface was expected
    at me.otrek2002.guiadmintools.Listeners.onClose.onCloseInv(onClose.java:19) ~[?:?]
    at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]
    at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    ... 21 more
[09:08:57] [Server thread/ERROR]: Could not pass event InventoryCloseEvent to GUIAdminTools v2.7.9
org.bukkit.event.EventException: null
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:310) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:600) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:587) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R4.event.CraftEventFactory.handleInventoryCloseEvent(CraftEventFactory.java:1427) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2509) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.game.PacketPlayInCloseWindow.a(SourceFile:32) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.game.PacketPlayInCloseWindow.a(SourceFile:8) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.PlayerConnectionUtils.lambda$ensureRunningOnSameThread$0(PlayerConnectionUtils.java:34) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.TickTask.run(SourceFile:18) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.d(SourceFile:162) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(SourceFile:23) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1242) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.A(SourceFile:136) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.bu(MinecraftServer.java:1221) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.A(MinecraftServer.java:1214) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.c(SourceFile:145) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.v_(MinecraftServer.java:1186) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1071) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:311) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at java.base/java.lang.Thread.run(Thread.java:1583) [?:?]
Caused by: java.lang.IncompatibleClassChangeError: Found class org.bukkit.inventory.InventoryView, but interface was expected
    at me.otrek2002.guiadmintools.Listeners.onClose.onCloseInv(onClose.java:19) ~[?:?]
    at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]
    at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    ... 21 more
[09:09:16] [Server thread/ERROR]: Could not pass event InventoryCloseEvent to GUIAdminTools v2.7.9
org.bukkit.event.EventException: null
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:310) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:600) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:587) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R4.event.CraftEventFactory.handleInventoryCloseEvent(CraftEventFactory.java:1427) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2509) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.game.PacketPlayInCloseWindow.a(SourceFile:32) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.game.PacketPlayInCloseWindow.a(SourceFile:8) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.PlayerConnectionUtils.lambda$ensureRunningOnSameThread$0(PlayerConnectionUtils.java:34) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.TickTask.run(SourceFile:18) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.d(SourceFile:162) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(SourceFile:23) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1242) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.A(SourceFile:136) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.bu(MinecraftServer.java:1221) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.A(MinecraftServer.java:1214) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.c(SourceFile:145) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.v_(MinecraftServer.java:1186) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1071) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:311) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at java.base/java.lang.Thread.run(Thread.java:1583) [?:?]
Caused by: java.lang.IncompatibleClassChangeError: Found class org.bukkit.inventory.InventoryView, but interface was expected
    at me.otrek2002.guiadmintools.Listeners.onClose.onCloseInv(onClose.java:19) ~[?:?]
    at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]
    at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    ... 21 more
[09:09:28] [Server thread/ERROR]: Could not pass event InventoryCloseEvent to GUIAdminTools v2.7.9
org.bukkit.event.EventException: null
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:310) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:600) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:587) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R4.event.CraftEventFactory.handleInventoryCloseEvent(CraftEventFactory.java:1427) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2509) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.game.PacketPlayInCloseWindow.a(SourceFile:32) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.game.PacketPlayInCloseWindow.a(SourceFile:8) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.PlayerConnectionUtils.lambda$ensureRunningOnSameThread$0(PlayerConnectionUtils.java:34) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.TickTask.run(SourceFile:18) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.d(SourceFile:162) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(SourceFile:23) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1242) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.A(SourceFile:136) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.bu(MinecraftServer.java:1221) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.A(MinecraftServer.java:1214) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.c(SourceFile:145) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.v_(MinecraftServer.java:1186) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1071) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:311) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at java.base/java.lang.Thread.run(Thread.java:1583) [?:?]
Caused by: java.lang.IncompatibleClassChangeError: Found class org.bukkit.inventory.InventoryView, but interface was expected
    at me.otrek2002.guiadmintools.Listeners.onClose.onCloseInv(onClose.java:19) ~[?:?]
    at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]
    at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    ... 21 more
[09:09:37] [Server thread/ERROR]: Could not pass event InventoryCloseEvent to GUIAdminTools v2.7.9
org.bukkit.event.EventException: null
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:310) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:600) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:587) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R4.event.CraftEventFactory.handleInventoryCloseEvent(CraftEventFactory.java:1427) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2509) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.game.PacketPlayInCloseWindow.a(SourceFile:32) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.game.PacketPlayInCloseWindow.a(SourceFile:8) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.network.protocol.PlayerConnectionUtils.lambda$ensureRunningOnSameThread$0(PlayerConnectionUtils.java:34) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.TickTask.run(SourceFile:18) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.d(SourceFile:162) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(SourceFile:23) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1242) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.A(SourceFile:136) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.bu(MinecraftServer.java:1221) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.A(MinecraftServer.java:1214) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.util.thread.IAsyncTaskHandler.c(SourceFile:145) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.v_(MinecraftServer.java:1186) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1071) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:311) ~[spigot-1.20.6-R0.1-SNAPSHOT.jar:4137-Spigot-e2c1eee-666f091]
    at java.base/java.lang.Thread.run(Thread.java:1583) [?:?]
Caused by: java.lang.IncompatibleClassChangeError: Found class org.bukkit.inventory.InventoryView, but interface was expected
    at me.otrek2002.guiadmintools.Listeners.onClose.onCloseInv(onClose.java:19) ~[?:?]
    at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]
    at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306) ~[spigot-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    ... 21 more
[09:09:40] [Server thread/INFO]: Kosma__ issued server command: /unclaim claim-1
[09:09:43] [Server thread/INFO]: Kosma__ issued server command: /spawn
[09:09:45] [Server thread/INFO]: hel1ixx issued server command: /vanish
[09:10:00] [Server thread/INFO]: hel1ixx issued server command: /help editor
[09:10:18] [Server thread/INFO]: hel1ixx issued server command: /help editor
[09:10:20] [Server thread/INFO]: gordon_fox1 issued server command: /lp editor