Paste #132180: GravesX errors

Date: 2025/03/28 11:32:29 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[02:21:46] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.6+7-LTS; Eclipse Adoptium Temurin-21.0.6+7) on Windows 11 10.0 (amd64)
[02:21:46] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.1-132-ver/1.21.1@b48403b (2024-11-21T10:14:27Z) for Minecraft 1.21.1
[02:21:47] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[02:21:47] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Remapping plugin 'plugins\AnvilColors-1.0.5.jar'...
[02:21:47] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins\BestTools-2.3.0.jar'...
[02:21:47] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins\ChestSort-14.2.0.jar'...
[02:21:47] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Remapping plugin 'plugins\craftable-4.4.0.jar'...
[02:21:48] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Done remapping plugin 'plugins\AnvilColors-1.0.5.jar' in 230ms.
[02:21:48] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Remapping plugin 'plugins\GravesX-4.9.7.3.jar'...
[02:21:48] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Done remapping plugin 'plugins\craftable-4.4.0.jar' in 218ms.
[02:21:48] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Remapping plugin 'plugins\LifeStealPlugin-1.4.5.jar'...
[02:21:48] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Done remapping plugin 'plugins\LifeStealPlugin-1.4.5.jar' in 73ms.
[02:21:48] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Remapping plugin 'plugins\PlayerParticles-8.8.jar'...
[02:21:48] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins\ChestSort-14.2.0.jar' in 326ms.
[02:21:48] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Done remapping plugin 'plugins\GravesX-4.9.7.3.jar' in 256ms.
[02:21:48] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins\BestTools-2.3.0.jar' in 613ms.
[02:21:48] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Done remapping plugin 'plugins\PlayerParticles-8.8.jar' in 350ms.
[02:21:48] [ServerMain/INFO]: [PluginInitializerManager] Initialized 55 plugins
[02:21:48] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (1):
 - AdvancedServerList (5.5.1)
[02:21:48] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (54):
 - Announcement (1.2), AnvilColors (1.0.5), AuraSkills (2.2.8), AuthMe (5.7.0-FORK-b53), BestTools (2.3.0), BetterJails (1.5.2), CMILib (1.5.4.0), ChestSort (14.2.0), Chunky (1.4.28), Citizens (2.0.35-SNAPSHOT (build 3583)), Craftable (4.4.0), CreeperRefund (1.0), DecentHolograms (2.8.16), DiscordSRV (1.29.0), Essentials (2.21.1-dev+5-dabe687), FacilisCommon (1.0.7-SNAPSHOT), FastLogin (1.12-SNAPSHOT-927f09a), GSit (2.2.0), Geyser-Spigot (2.4.4-SNAPSHOT), GrantX (2.5.7), GravesX (4.9.7.3), GriefPrevention (16.18.4), InvSeePlusPlus (0.29.18), JustTPA (20250220c), LifeSteal (${project.version}), LuckPerms (5.4.131), MobFarmManager (3.0.3.1), MultiWorld (1.7.3-SNAPSHOT), PinataParty (2.67.9), PlaceholderAPI (2.11.6), PlayerParticles (8.8), ProtocolLib (5.4.0-SNAPSHOT-736), PvPManager (3.38), Rewards (1.5), SetSpawn (5.4), SimpleHomes (1.3.0), SkinsRestorer (15.6.1), SmoothTimber (1.27.4), SpawnerMeta (25.0), TAB (5.0.7), Vault (2.10.0), ViaBackwards (5.2.1), ViaRewind (4.0.5), ViaVersion (5.2.1), VotifierPlus (1.4), Vulcan (2.9.5), WildStacker (2024.4), WorldEdit (7.3.9+6959-7adf70b), WorldGuard (7.0.12+829a4a4), coordinator (1.6.1), floodgate (2.2.4-SNAPSHOT (b116-0e3163c)), packetevents (2.7.0), random_teleport-1.21.4 (2.2), voicechat (2.5.26)
[02:21:51] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[02:21:52] [ServerMain/INFO]: Loaded 1290 recipes
[02:21:52] [ServerMain/INFO]: Loaded 1399 advancements
[02:21:52] [Server thread/INFO]: Starting minecraft server version 1.21.1
[02:21:52] [Server thread/WARN]: ****************************
[02:21:52] [Server thread/WARN]: YOU ARE RUNNING THIS SERVER AS AN ADMINISTRATIVE OR ROOT USER. THIS IS NOT ADVISED.
[02:21:52] [Server thread/WARN]: YOU ARE OPENING YOURSELF UP TO POTENTIAL RISKS WHEN DOING THIS.
[02:21:52] [Server thread/WARN]: FOR MORE INFORMATION, SEE https://madelinemiller.dev/blog/root-minecraft-server/
[02:21:52] [Server thread/WARN]: ****************************
[02:21:52] [Server thread/INFO]: Loading properties
[02:21:52] [Server thread/INFO]: This server is running Paper version 1.21.1-132-ver/1.21.1@b48403b (2024-11-21T10:14:27Z) (Implementing API version 1.21.1-R0.1-SNAPSHOT)
[02:21:53] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[02:21:53] [Server thread/INFO]: Server Ping Player Sample Count: 12
[02:21:53] [Server thread/INFO]: Using 4 threads for Netty based IO
[02:21:53] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 3 worker threads, and population gen parallelism of 3 threads
[02:21:54] [Server thread/INFO]: Default game type: SURVIVAL
[02:21:54] [Server thread/INFO]: Generating keypair
[02:21:54] [Server thread/INFO]: Starting Minecraft server on *:25565
[02:21:54] [Server thread/INFO]: Using default channel type
[02:21:54] [Server thread/INFO]: Paper: Using Java compression from Velocity.
[02:21:54] [Server thread/INFO]: Paper: Using Java cipher from Velocity.
[02:21:54] [Server thread/INFO]: [SpigotLibraryLoader] [FacilisCommon] Loading 8 libraries... please wait
[02:21:54] [Server thread/INFO]: [SpigotLibraryLoader] [FacilisCommon] Loaded library C:\Users\Administrator\Desktop\LastMC SMP 1.21.1\libraries\net\kyori\adventure-api\4.17.0\adventure-api-4.17.0.jar
[02:21:54] [Server thread/INFO]: [SpigotLibraryLoader] [FacilisCommon] Loaded library C:\Users\Administrator\Desktop\LastMC SMP 1.21.1\libraries\net\kyori\adventure-key\4.17.0\adventure-key-4.17.0.jar
[02:21:54] [Server thread/INFO]: [SpigotLibraryLoader] [FacilisCommon] Loaded library C:\Users\Administrator\Desktop\LastMC SMP 1.21.1\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[02:21:54] [Server thread/INFO]: [SpigotLibraryLoader] [FacilisCommon] Loaded library C:\Users\Administrator\Desktop\LastMC SMP 1.21.1\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[02:21:54] [Server thread/INFO]: [SpigotLibraryLoader] [FacilisCommon] Loaded library C:\Users\Administrator\Desktop\LastMC SMP 1.21.1\libraries\org\jetbrains\annotations\24.1.0\annotations-24.1.0.jar
[02:21:54] [Server thread/INFO]: [SpigotLibraryLoader] [FacilisCommon] Loaded library C:\Users\Administrator\Desktop\LastMC SMP 1.21.1\libraries\net\kyori\adventure-text-minimessage\4.17.0\adventure-text-minimessage-4.17.0.jar
[02:21:54] [Server thread/INFO]: [SpigotLibraryLoader] [FacilisCommon] Loaded library C:\Users\Administrator\Desktop\LastMC SMP 1.21.1\libraries\net\kyori\adventure-platform-bukkit\4.3.3\adventure-platform-bukkit-4.3.3.jar
[02:21:54] [Server thread/INFO]: [SpigotLibraryLoader] [FacilisCommon] Loaded library C:\Users\Administrator\Desktop\LastMC SMP 1.21.1\libraries\net\kyori\adventure-platform-api\4.3.3\adventure-platform-api-4.3.3.jar
[02:21:54] [Server thread/INFO]: [SpigotLibraryLoader] [FacilisCommon] Loaded library C:\Users\Administrator\Desktop\LastMC SMP 1.21.1\libraries\net\kyori\adventure-text-serializer-bungeecord\4.3.3\adventure-text-serializer-bungeecord-4.3.3.jar
[02:21:54] [Server thread/INFO]: [SpigotLibraryLoader] [FacilisCommon] Loaded library C:\Users\Administrator\Desktop\LastMC SMP 1.21.1\libraries\net\kyori\adventure-text-serializer-legacy\4.13.1\adventure-text-serializer-legacy-4.13.1.jar
[02:21:54] [Server thread/INFO]: [SpigotLibraryLoader] [FacilisCommon] Loaded library C:\Users\Administrator\Desktop\LastMC SMP 1.21.1\libraries\net\kyori\adventure-nbt\4.13.1\adventure-nbt-4.13.1.jar
[02:21:54] [Server thread/INFO]: [SpigotLibraryLoader] [FacilisCommon] Loaded library C:\Users\Administrator\Desktop\LastMC SMP 1.21.1\libraries\net\kyori\adventure-text-serializer-gson\4.13.1\adventure-text-serializer-gson-4.13.1.jar
[02:21:54] [Server thread/INFO]: [SpigotLibraryLoader] [FacilisCommon] Loaded library C:\Users\Administrator\Desktop\LastMC SMP 1.21.1\libraries\net\kyori\adventure-text-serializer-gson-legacy-impl\4.13.1\adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[02:21:54] [Server thread/INFO]: [SpigotLibraryLoader] [FacilisCommon] Loaded library C:\Users\Administrator\Desktop\LastMC SMP 1.21.1\libraries\net\kyori\adventure-platform-facet\4.3.3\adventure-platform-facet-4.3.3.jar
[02:21:54] [Server thread/INFO]: [SpigotLibraryLoader] [FacilisCommon] Loaded library C:\Users\Administrator\Desktop\LastMC SMP 1.21.1\libraries\net\kyori\adventure-platform-viaversion\4.3.3\adventure-platform-viaversion-4.3.3.jar
[02:21:54] [Server thread/INFO]: [SpigotLibraryLoader] [FacilisCommon] Loaded library C:\Users\Administrator\Desktop\LastMC SMP 1.21.1\libraries\org\apache\commons\commons-lang3\3.12.0\commons-lang3-3.12.0.jar
[02:21:54] [Server thread/INFO]: [SpigotLibraryLoader] [FacilisCommon] Loaded library C:\Users\Administrator\Desktop\LastMC SMP 1.21.1\libraries\commons-io\commons-io\2.10.0\commons-io-2.10.0.jar
[02:21:54] [Server thread/INFO]: [SpigotLibraryLoader] [FacilisCommon] Loaded library C:\Users\Administrator\Desktop\LastMC SMP 1.21.1\libraries\com\mysql\mysql-connector-j\8.0.33\mysql-connector-j-8.0.33.jar
[02:21:54] [Server thread/INFO]: [SpigotLibraryLoader] [FacilisCommon] Loaded library C:\Users\Administrator\Desktop\LastMC SMP 1.21.1\libraries\com\google\protobuf\protobuf-java\3.21.9\protobuf-java-3.21.9.jar
[02:21:54] [Server thread/INFO]: [SpigotLibraryLoader] [FacilisCommon] Loaded library C:\Users\Administrator\Desktop\LastMC SMP 1.21.1\libraries\org\mongodb\mongo-java-driver\3.12.14\mongo-java-driver-3.12.14.jar
[02:21:54] [Server thread/INFO]: [SpigotLibraryLoader] [FacilisCommon] Loaded library C:\Users\Administrator\Desktop\LastMC SMP 1.21.1\libraries\org\json\json\20240303\json-20240303.jar
[02:21:54] [Server thread/INFO]: [SpigotLibraryLoader] [MultiWorld] Loading 1 libraries... please wait
[02:21:54] [Server thread/INFO]: [SpigotLibraryLoader] [MultiWorld] Loaded library C:\Users\Administrator\Desktop\LastMC SMP 1.21.1\libraries\commons-io\commons-io\2.16.1\commons-io-2.16.1.jar
[02:21:55] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loading 4 libraries... please wait
[02:21:55] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loaded library C:\Users\Administrator\Desktop\LastMC SMP 1.21.1\libraries\com\zaxxer\HikariCP\5.1.0\HikariCP-5.1.0.jar
[02:21:55] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loaded library C:\Users\Administrator\Desktop\LastMC SMP 1.21.1\libraries\com\github\ben-manes\caffeine\caffeine\3.1.8\caffeine-3.1.8.jar
[02:21:55] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loaded library C:\Users\Administrator\Desktop\LastMC SMP 1.21.1\libraries\org\checkerframework\checker-qual\3.37.0\checker-qual-3.37.0.jar
[02:21:55] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loaded library C:\Users\Administrator\Desktop\LastMC SMP 1.21.1\libraries\com\google\errorprone\error_prone_annotations\2.21.1\error_prone_annotations-2.21.1.jar
[02:21:55] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loaded library C:\Users\Administrator\Desktop\LastMC SMP 1.21.1\libraries\it\unimi\dsi\fastutil\8.5.12\fastutil-8.5.12.jar
[02:21:55] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loaded library C:\Users\Administrator\Desktop\LastMC SMP 1.21.1\libraries\org\slf4j\slf4j-api\2.0.13\slf4j-api-2.0.13.jar
[02:21:55] [Server thread/INFO]: [FastLogin] Initialize logging service
[02:21:55] [Server thread/INFO]: [FastLogin] Using optimized green threads with Java 21
[02:21:56] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.2.1
[02:21:56] [Server thread/INFO]: [ViaVersion] ViaVersion 5.2.1 is now loaded. Registering protocol transformers and injecting...
[02:21:56] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[02:21:56] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[02:21:56] [Server thread/INFO]: [ViaBackwards] Loading translations...
[02:21:56] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[02:21:56] [Server thread/INFO]: [ViaRewind] Registering protocols...
[02:21:56] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.131
[02:21:57] [Server thread/INFO]: [Vault] Loading server plugin Vault v2.10.0
[02:21:57] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.4.0-SNAPSHOT-736
[02:21:57] [Server thread/INFO]: [WorldEdit] Loading server plugin WorldEdit v7.3.9+6959-7adf70b
[02:21:57] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@2d4d37e1]
[02:21:57] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[02:21:57] [Server thread/INFO]: [FacilisCommon] Loading server plugin FacilisCommon v1.0.7-SNAPSHOT
[02:21:57] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.12+829a4a4
[02:21:57] [Server thread/INFO]: [MultiWorld] Loading server plugin MultiWorld v1.7.3-SNAPSHOT
[02:21:57] [Server thread/INFO]: [floodgate] Loading server plugin floodgate v2.2.4-SNAPSHOT (b116-0e3163c)
[02:21:58] [Server thread/WARN]: [floodgate] en_MY is not a supported Floodgate language.
[02:21:58] [Server thread/INFO]: [floodgate] Took 453ms to boot Floodgate
[02:21:58] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.2.1
[02:21:58] [Server thread/INFO]: [GriefPrevention] Loading server plugin GriefPrevention v16.18.4
[02:21:58] [Server thread/INFO]: [Geyser-Spigot] Loading server plugin Geyser-Spigot v2.4.4-SNAPSHOT
[02:21:58] [Server thread/INFO]: [Geyser-Spigot] Loading extensions...
[02:21:58] [Server thread/INFO]: [Geyser-Spigot] Loaded 0 extension(s)
[02:21:58] [Server thread/INFO]: [ViaRewind] Loading server plugin ViaRewind v4.0.5
[02:21:58] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.1-dev+5-dabe687
[02:21:58] [Server thread/INFO]: [GSit] Loading server plugin GSit v2.2.0
[02:21:58] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.7.0
[02:22:00] [Server thread/INFO]: [WildStacker] Loading server plugin WildStacker v2024.4
[02:22:00] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.0.7
[02:22:00] [Server thread/INFO]: [VotifierPlus] Loading server plugin VotifierPlus v1.4
[02:22:00] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.5.4.0
[02:22:00] [Server thread/INFO]: [ChestSort] Loading server plugin ChestSort v14.2.0
[02:22:00] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.35-SNAPSHOT (build 3583)
[02:22:00] [Server thread/INFO]: [AuthMe] Loading server plugin AuthMe v5.7.0-FORK-b53
[02:22:00] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.16
[02:22:00] [Server thread/INFO]: [Vulcan] Loading server plugin Vulcan v2.9.5
[02:22:00] [Server thread/INFO]: [voicechat] Loading server plugin voicechat v2.5.26
[02:22:00] [Server thread/INFO]: [JustTPA] Loading server plugin JustTPA v20250220c
[02:22:00] [Server thread/INFO]: [SpawnerMeta] Loading server plugin SpawnerMeta v25.0
[02:22:00] [Server thread/INFO]: [SmoothTimber] Loading server plugin SmoothTimber v1.27.4
[02:22:00] [Server thread/INFO]: [SkinsRestorer] Loading server plugin SkinsRestorer v15.6.1
[02:22:00] [Server thread/INFO]: [SimpleHomes] Loading server plugin SimpleHomes v1.3.0
[02:22:00] [Server thread/INFO]: [SetSpawn] Loading server plugin SetSpawn v5.4
[02:22:00] [Server thread/INFO]: [Rewards] Loading server plugin Rewards v1.5
[02:22:00] [Server thread/INFO]: [random_teleport-1.21.4] Loading server plugin random_teleport-1.21.4 v2.2
[02:22:00] [Server thread/INFO]: [PvPManager] Loading server plugin PvPManager v3.38
[02:22:00] [Server thread/INFO]: [PlayerParticles] Loading server plugin PlayerParticles v8.8
[02:22:00] [Server thread/INFO]: [PinataParty] Loading server plugin PinataParty v2.67.9
[02:22:00] [Server thread/INFO]: [MobFarmManager] Loading server plugin MobFarmManager v3.0.3.1
[02:22:00] [Server thread/INFO]: [LifeSteal] Loading server plugin LifeSteal v${project.version}
[02:22:00] [Server thread/INFO]: [InvSee++] Loading server plugin InvSeePlusPlus v0.29.18
[02:22:00] [Server thread/INFO]: [GravesX] Loading server plugin GravesX v4.9.7.3
[02:22:00] [Server thread/INFO]: [GrantX] Loading server plugin GrantX v2.5.7
[02:22:00] [Server thread/INFO]: [FastLogin] Loading server plugin FastLogin v1.12-SNAPSHOT-927f09a
[02:22:00] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.29.0
[02:22:00] [Server thread/INFO]: [CreeperRefund] Loading server plugin CreeperRefund v1.0
[02:22:00] [Server thread/INFO]: [Craftable] Loading server plugin Craftable v4.4.0
[02:22:00] [Server thread/INFO]: [coordinator] Loading server plugin coordinator v1.6.1
[02:22:00] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.4.28
[02:22:00] [Server thread/INFO]: [BetterJails] Loading server plugin BetterJails v1.5.2
[02:22:00] [Server thread/INFO]: [BestTools] Loading server plugin BestTools v2.3.0
[02:22:00] [Server thread/INFO]: [AuraSkills] Loading server plugin AuraSkills v2.2.8
[02:22:00] [Server thread/INFO]: [AnvilColors] Loading server plugin AnvilColors v1.0.5
[02:22:00] [Server thread/INFO]: [Announcement] Loading server plugin Announcement v1.2
[02:22:00] [Server thread/INFO]: [AdvancedServerList] Loading server plugin AdvancedServerList v5.5.1
[02:22:00] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[02:22:00] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.131
[02:22:00] [Server thread/INFO]:         __    
[02:22:00] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.131
[02:22:00] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[02:22:00] [Server thread/INFO]: 
[02:22:00] [Server thread/INFO]: [LuckPerms] Loading configuration...
[02:22:01] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[02:22:01] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[02:22:01] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[02:22:01] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1261ms)
[02:22:01] [Server thread/INFO]: [Vault] Enabling Vault v2.10.0
[02:22:01] [Server thread/INFO]: [Vault] Enabled Version 2.10.0
[02:22:01] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[02:22:01] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.4.0-SNAPSHOT-736
[02:22:01] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.3.9+6959-7adf70b
[02:22:01] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[02:22:01] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[02:22:01] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_21.PaperweightAdapter as the Bukkit adapter
[02:22:02] [Server thread/INFO]: [ViaRewind] Enabling ViaRewind v4.0.5
[02:22:02] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v15.6.1
[02:22:03] [Server thread/INFO]: [SkinsRestorer] Running on Minecraft 1.21.1.
[02:22:03] [Server thread/INFO]: [SkinsRestorer] Floodgate skin listener registered
[02:22:03] [Server thread/INFO]: [SkinsRestorer] Using paper join listener!
[02:22:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: skinsrestorer [15.6.1]
[02:22:03] [Server thread/INFO]: [SkinsRestorer] PlaceholderAPI expansion registered!
[02:22:03] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[02:22:03] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[02:22:03] [Server thread/WARN]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
[02:22:03] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[02:22:03] [Server thread/INFO]: Preparing level "world"
[02:22:03] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[02:22:03] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     +==================+
[02:22:03] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[02:22:03] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |------------------|
[02:22:03] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |  Standalone Mode |
[02:22:03] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     +==================+
[02:22:03] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[02:22:03] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     Version: 15.6.1
[02:22:03] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     Commit: 8687003
[02:22:03] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     This is the latest version!
[02:22:03] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[02:22:03] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] Do you have issues? Read our troubleshooting guide: https://skinsrestorer.net/docs/troubleshooting
[02:22:03] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] Want to support SkinsRestorer? Consider donating: https://skinsrestorer.net/donate
[02:22:03] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[02:22:04] [Server thread/INFO]: Time elapsed: 571 ms
[02:22:04] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[02:22:04] [Server thread/INFO]: Time elapsed: 54 ms
[02:22:04] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[02:22:04] [Server thread/INFO]: Time elapsed: 45 ms
[02:22:04] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.2.1
[02:22:04] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21-1.21.1 (767)
[02:22:04] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[02:22:04] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[02:22:04] [Server thread/INFO]: [FacilisCommon] Enabling FacilisCommon v1.0.7-SNAPSHOT
[02:22:04] [Server thread/INFO]: [FacilisCommon] Server Version: 1.21.1
[02:22:04] [Server thread/INFO]: [FacilisCommon] Server Software: Paper
[02:22:04] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.12+829a4a4
[02:22:04] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[02:22:04] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[02:22:04] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[02:22:04] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[02:22:04] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[02:22:04] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[02:22:04] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[02:22:04] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[02:22:04] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[02:22:04] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[02:22:04] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[02:22:04] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[02:22:04] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[02:22:04] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[02:22:04] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[02:22:04] [Server thread/INFO]: [WorldGuard] Loading region data...
[02:22:04] [Server thread/INFO]: [MultiWorld] Enabling MultiWorld v1.7.3-SNAPSHOT
[02:22:05] [Server thread/INFO]: [MultiWorld] Found: [6] Translations
[02:22:05] [Server thread/INFO]: [MultiWorld] Found: [0] World Generator
[02:22:05] [Server thread/INFO]: [MultiWorld] Found: [4] Worlds
[02:22:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: multiworld [1.0.0]
[02:22:05] [Server thread/INFO]: [MultiWorld] Successfully injected into PlaceholderAPI
[02:22:05] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.4-SNAPSHOT (b116-0e3163c)
[02:22:05] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.2.1
[02:22:05] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.18.4
[02:22:05] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
[02:22:05] [Server thread/INFO]: [GriefPrevention] 2 total claims loaded.
[02:22:05] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
[02:22:05] [Server thread/INFO]: [GriefPrevention] Successfully hooked into WorldGuard.
[02:22:05] [Server thread/INFO]: [GriefPrevention] Finished loading data (File Mode).
[02:22:05] [Server thread/INFO]: [GriefPrevention] Boot finished.
[02:22:05] [Server thread/INFO]: [Geyser-Spigot] Enabling Geyser-Spigot v2.4.4-SNAPSHOT
[02:22:05] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.1-dev+5-dabe687
[02:22:05] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[02:22:06] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[02:22:06] [Server thread/INFO]: [Essentials] No kits found to migrate.
[02:22:06] [Server thread/INFO]: [Essentials] Selected 1.20.5+ Banner Data Provider as the provider for BannerDataProvider
[02:22:06] [Server thread/INFO]: [Essentials] Selected 1.8.3+ Spawner Item Provider as the provider for SpawnerItemProvider
[02:22:06] [Server thread/INFO]: [Essentials] Selected 1.12.2+ Player Locale Provider as the provider for PlayerLocaleProvider
[02:22:06] [Server thread/INFO]: [Essentials] Selected 1.12+ Spawner Block Provider as the provider for SpawnerBlockProvider
[02:22:06] [Server thread/INFO]: [Essentials] Selected Paper Server State Provider as the provider for ServerStateProvider
[02:22:06] [Server thread/INFO]: [Essentials] Selected Paper Known Commands Provider as the provider for KnownCommandsProvider
[02:22:06] [Server thread/INFO]: [Essentials] Selected Paper Tick Count Provider as the provider for TickCountProvider
[02:22:06] [Server thread/INFO]: [Essentials] Selected Paper Material Tag Provider as the provider for MaterialTagProvider
[02:22:06] [Server thread/INFO]: [Essentials] Selected 1.11+ Item Unbreakable Provider as the provider for ItemUnbreakableProvider
[02:22:06] [Server thread/INFO]: [Essentials] Selected Reflection Formatted Command Alias Provider as the provider for FormattedCommandAliasProvider
[02:22:06] [Server thread/INFO]: [Essentials] Selected Reflection Sync Commands Provider as the provider for SyncCommandsProvider
[02:22:06] [Server thread/INFO]: [Essentials] Selected 1.20.6+ Potion Meta Provider as the provider for PotionMetaProvider
[02:22:06] [Server thread/INFO]: [Essentials] Selected 1.20.4+ Damage Event Provider as the provider for DamageEventProvider
[02:22:06] [Server thread/INFO]: [Essentials] Selected 1.14.4+ Persistent Data Container Provider as the provider for PersistentDataProvider
[02:22:06] [Server thread/INFO]: [Essentials] Selected Reflection Online Mode Provider as the provider for OnlineModeProvider
[02:22:06] [Server thread/INFO]: [Essentials] Selected Paper Serialization Provider as the provider for SerializationProvider
[02:22:06] [Server thread/INFO]: [Essentials] Selected 1.17.1+ World Info Provider as the provider for WorldInfoProvider
[02:22:06] [Server thread/INFO]: [Essentials] Selected 1.21+ InventoryView Interface ABI Provider as the provider for InventoryViewProvider
[02:22:06] [Server thread/INFO]: [Essentials] Selected 1.14+ Sign Data Provider as the provider for SignDataProvider
[02:22:06] [Server thread/INFO]: [Essentials] Selected 1.13+ Spawn Egg Provider as the provider for SpawnEggProvider
[02:22:06] [Server thread/INFO]: [Essentials] Selected Paper Biome Key Provider as the provider for BiomeKeyProvider
[02:22:06] [Server thread/INFO]: [Essentials] Selected Paper Container Provider as the provider for ContainerProvider
[02:22:06] [Server thread/INFO]: [Essentials] Loaded 43465 items from items.json.
[02:22:06] [Server thread/INFO]: [Essentials] Using locale en
[02:22:06] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[02:22:06] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[02:22:06] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[02:22:06] [Server thread/INFO]: [GSit] Enabling GSit v2.2.0
[02:22:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [2.2.0]
[02:22:06] [Server thread/INFO]: [WorldGuard] Registering session handler dev.geco.gsit.link.worldguard.RegionFlagHandler
[02:22:06] [Server thread/INFO]: [GSit] The plugin was successfully enabled.
[02:22:06] [Server thread/INFO]: [GSit] Link with GriefPrevention successful!
[02:22:06] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
[02:22:06] [Server thread/INFO]: [GSit] Link with WorldGuard successful!
[02:22:06] [Server thread/INFO]: [packetevents] Enabling packetevents v2.7.0
[02:22:06] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[02:22:06] [Server thread/INFO]: [WildStacker] Enabling WildStacker v2024.4
[02:22:06] [Server thread/INFO]: [WildStacker] ******** ENABLE START ********
[02:22:06] [Server thread/INFO]: [WildStacker] Loading configuration started...
[02:22:06] [Server thread/INFO]: [WildStacker]  - Stacking drops is enabled
[02:22:06] [Server thread/INFO]: [WildStacker]  - Stacking entities is enabled
[02:22:06] [Server thread/INFO]: [WildStacker]  - Stacking spawners is enabled
[02:22:06] [Server thread/INFO]: [WildStacker]  - Stacking barrels is enabled
[02:22:06] [Server thread/INFO]: [WildStacker] Loading configuration done (Took 45ms)
[02:22:06] [Server thread/INFO]: [WildStacker] Loading loot-tables started...
[02:22:06] [Server thread/INFO]: [WildStacker] Loading loot-tables done (Took 84ms)
[02:22:06] [Server thread/INFO]: [WildStacker] Loading messages started...
[02:22:06] [Server thread/INFO]: [WildStacker]  - Found 69 messages in lang.yml.
[02:22:06] [Server thread/INFO]: [WildStacker] Loading messages done (Took 2ms)
[02:22:06] [Server thread/INFO]: [WildStacker] ******** ENABLE DONE ********
[02:22:06] [Server thread/INFO]: [TAB] Enabling TAB v5.0.7
[02:22:06] [Server thread/INFO]: [TAB] Loaded NMS hook in 21ms
[02:22:06] [packetevents-update-check-thread/INFO]: [packetevents] You are running the latest release of PacketEvents. Your build: (2.7.0)
[02:22:06] [Server thread/INFO]: [TAB] Enabled in 117ms
[02:22:06] [Server thread/INFO]: [VotifierPlus] Enabling VotifierPlus v1.4
[02:22:06] [Server thread/INFO]: [VotifierPlus] Votifier enabled.
[02:22:06] [Server thread/INFO]: [CMILib] Enabling CMILib v1.5.4.0
[02:22:07] [Server thread/INFO]: Server version: v1_21_R1 - 1.21.1 - paper  1.21.1-132-b48403b (MC: 1.21.1)
[02:22:07] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[02:22:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.5.4.0]
[02:22:07] [Server thread/INFO]: PlaceholderAPI hooked.
[02:22:07] [Server thread/INFO]: Updated (EN) language file. Took 28ms
[02:22:07] [Server thread/INFO]: [ChestSort] Enabling ChestSort v14.2.0
[02:22:07] [Server thread/INFO]: [ChestSort] Hooked into WorldGuard 7.0.12+829a4a4
[02:22:07] [Server thread/INFO]: [ChestSort] Use permissions: true
[02:22:07] [Server thread/INFO]: [ChestSort] Current sorting method: {category},{itemsFirst},{name},{color},{customName}
[02:22:07] [Server thread/INFO]: [ChestSort] Allow automatic chest sorting:true
[02:22:07] [Server thread/INFO]: [ChestSort]   |- Chest sorting enabled by default: false
[02:22:07] [Server thread/INFO]: [ChestSort]   |- Sort time: close
[02:22:07] [Server thread/INFO]: [ChestSort] Allow automatic inventory sorting:true
[02:22:07] [Server thread/INFO]: [ChestSort]   |- Inventory sorting enabled by default: false
[02:22:07] [Server thread/INFO]: [ChestSort] Auto generate category files: true
[02:22:07] [Server thread/INFO]: [ChestSort] Allow hotkeys: true
[02:22:07] [Server thread/INFO]: [ChestSort] Hotkeys enabled by default:
[02:22:07] [Server thread/INFO]: [ChestSort]   |- Middle-Click: true
[02:22:07] [Server thread/INFO]: [ChestSort]   |- Shift-Click: true
[02:22:07] [Server thread/INFO]: [ChestSort]   |- Double-Click: true
[02:22:07] [Server thread/INFO]: [ChestSort]   |- Shift-Right-Click: true
[02:22:07] [Server thread/INFO]: [ChestSort] Allow additional hotkeys: true
[02:22:07] [Server thread/INFO]: [ChestSort] Additional hotkeys enabled by default:
[02:22:07] [Server thread/INFO]: [ChestSort]   |- Left-Click: false
[02:22:07] [Server thread/INFO]: [ChestSort]   |- Right-Click: false
[02:22:07] [Server thread/INFO]: [ChestSort] Check for updates: true
[02:22:07] [Server thread/INFO]: [ChestSort] Check interval: 4 hours (4.0 seconds)
[02:22:07] [Server thread/INFO]: [ChestSort] Categories: 900-weapons (6), 905-common-tools (4), 907-other-tools (6), 909-food (33), 910-valuables (47), 920-armor-and-arrows (9), 930-brewing (18), 950-redstone (23), 960-wood (60), 970-stone (38), 980-plants (50), 981-corals (1)
[02:22:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chestsort [14.2.0]
[02:22:07] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.35-SNAPSHOT (build 3583)
[02:22:08] [Server thread/INFO]: [Citizens] Loading external libraries
[02:22:08] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[02:22:08] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[02:22:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[02:22:08] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[02:22:08] [Server thread/INFO]: [AuthMe] Enabling AuthMe v5.7.0-FORK-b53
[02:22:08] [Server thread/INFO]: [AuthMe] You are running an unofficial fork version of AuthMe!
[02:22:09] [Server thread/INFO]: [AuthMe] SQLite Setup finished
[02:22:09] [Server thread/INFO]: [AuthMe] Hooked into LuckPerms!
[02:22:09] [Server thread/INFO]: [AuthMe] Hooked successfully into Essentials
[02:22:09] [Server thread/INFO]: [AuthMe] Hooked successfully into PlaceholderAPI
[02:22:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: authme [5.7.0-FORK]
[02:22:09] [Server thread/INFO]: [AuthMe] Essentials spawn file not found: 'C:\Users\Administrator\Desktop\LastMC SMP 1.21.1\plugins\Essentials\spawn.yml'
[02:22:09] [Server thread/INFO]: [AuthMe] 
    ___         __  __    __  ___   
   /   | __  __/ /_/ /_  /  |/  /__ 
  / /| |/ / / / __/ __ \/ /|_/ / _ \
 / ___ / /_/ / /_/ / / / /  / /  __/
/_/  |_\__,_/\__/_/ /_/_/  /_/\___/ 
                                    
[02:22:09] [Server thread/INFO]: [AuthMe] AuthMeReReloaded is running on Paper
[02:22:09] [Server thread/INFO]: [AuthMe] AuthMeReReloaded is enabled successfully!
[02:22:09] [Server thread/INFO]: [AuthMe] GitHub: https://github.com/HaHaWTH/AuthMeReReloaded/
[02:22:09] [Server thread/INFO]: [AuthMe] Checking for updates...
[02:22:09] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.16
[02:22:09] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[02:22:09] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[02:22:09] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[02:22:09] [Server thread/INFO]: [Vulcan] Enabling Vulcan v2.9.5
[02:22:10] [Server thread/INFO]: [Vulcan] Server Version: .1.21.1 detected!
[02:22:10] [Server thread/INFO]: [Vulcan] Floodgate 2.0 found. Enabling hook!
[02:22:10] [Server thread/INFO]: [Vulcan] GSit found. Enabling hook!
[02:22:10] [Server thread/INFO]: [Vulcan] BStats enabled!
[02:22:10] [Server thread/ERROR]: [Vulcan] Failed to register events for class me.frep.vulcan.spigot.Vulcan_nO because dev/geco/gsit/api/event/PlayerGetUpPlayerSitEvent does not exist.
[02:22:10] [Server thread/INFO]: [Vulcan] Registered GSit Listener!
[02:22:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: Vulcan [2.9.5]
[02:22:10] [Server thread/INFO]: [Vulcan] PlaceholderAPI found. Enabling hook!
[02:22:10] [Server thread/INFO]: [voicechat] Enabling voicechat v2.5.26
[02:22:10] [Server thread/INFO]: [voicechat] Initializing compatibility for Bukkit version 1.21.1-R0.1
[02:22:10] [Server thread/INFO]: [voicechat] Compatibility version 18
[02:22:10] [Server thread/INFO]: [voicechat] Successfully initialized commodore command completion
[02:22:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: voicechat [2.5.26]
[02:22:10] [Server thread/INFO]: [voicechat] Successfully registered PlaceholderAPI expansion
[02:22:10] [Server thread/INFO]: [voicechat] Successfully added ViaVersion mappings
[02:22:10] [Server thread/INFO]: [JustTPA] Enabling JustTPA v20250220c
[02:22:10] [Server thread/INFO]: [JustTPA] JustTPA initialized
[02:22:10] [Server thread/INFO]: [JustTPA] bStats enabled
[02:22:10] [Server thread/INFO]: [JustTPA] Checking for updates...
[02:22:10] [Server thread/INFO]: [SpawnerMeta] Enabling SpawnerMeta v25.0
[02:22:10] [Server thread/INFO]: [SpawnerMeta v25.0] enabled!
[02:22:10] [Server thread/INFO]: [SpawnerMeta] Vault has been found, economy enabled!
[02:22:10] [Server thread/INFO]: [SpawnerMeta] Wild Stacker has been found, entity stacking enabled!
[02:22:10] [Server thread/INFO]: [SmoothTimber] Enabling SmoothTimber v1.27.4
[02:22:10] [Server thread/INFO]: SmoothTimber || You're currently using the supported Minecraft Version 1.21.1 (Core v1_20x)
[02:22:10] [Server thread/INFO]: SmoothTimber || Trying to enable compatibility addon 'GriefPrevention' for plugin 'GriefPrevention'...
[02:22:10] [Server thread/INFO]: SmoothTimber || Successfully enabled compatbility addon 'GriefPrevention' for plugin 'GriefPrevention'...
[02:22:10] [Server thread/INFO]: SmoothTimber || Trying to enable compatibility addon 'PlaceholderApi' for plugin 'PlaceholderAPI'...
[02:22:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: smoothtimber [1.27.4]
[02:22:10] [Server thread/INFO]: SmoothTimber || Successfully enabled compatbility addon 'PlaceholderApi' for plugin 'PlaceholderAPI'...
[02:22:10] [Server thread/INFO]: SmoothTimber || Trying to enable compatibility addon 'WorldGuard' for plugin 'WorldGuard'...
[02:22:10] [Server thread/INFO]: SmoothTimber || Successfully enabled compatbility addon 'WorldGuard' for plugin 'WorldGuard'...
[02:22:10] [Server thread/INFO]: [SimpleHomes] Enabling SimpleHomes v1.3.0
[02:22:10] [Server thread/INFO]: [SetSpawn] Enabling SetSpawn v5.4
[02:22:10] [Server thread/INFO]: [SetSpawn] Enabled!
[02:22:10] [Server thread/INFO]: [Rewards] Enabling Rewards v1.5
[02:22:10] [Server thread/INFO]: [Rewards] Connected to database.
[02:22:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rewards [1.0.0]
[02:22:10] [Server thread/INFO]: [random_teleport-1.21.4] Enabling random_teleport-1.21.4 v2.2
[02:22:10] [Server thread/INFO]: [random_teleport-1.21.4] start
[02:22:10] [Server thread/INFO]: [random_teleport-1.21.4] all biomes have been successfully uploaded and saved
[02:22:10] [Server thread/INFO]: [random_teleport-1.21.4] The offset has been set: 0 0
[02:22:10] [Server thread/INFO]: [PvPManager] Enabling PvPManager v3.38
[02:22:11] [Server thread/INFO]: [PvPManager] Using player nametags: true
[02:22:11] [Server thread/INFO]: [PvPManager] Connected to SQLITE database successfully
[02:22:11] [Server thread/INFO]: [PvPManager] Players stored: 27
[02:22:11] [Server thread/INFO]: [PvPManager] WorldGuard Found! Enabling Support For WorldGuard Regions
[02:22:11] [Server thread/INFO]: [PvPManager] Essentials Found! Hooked successfully
[02:22:11] [Server thread/INFO]: [PvPManager] Vault Found! Using it for currency related features
[02:22:11] [Server thread/INFO]: [PvPManager] PlaceholderAPI Found! Hooked successfully
[02:22:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pvpmanager [3.38]
[02:22:11] [Server thread/INFO]: [PvPManager] GriefPrevention Found! Enabling borders and checking conflicting settings
[02:22:11] [Server thread/INFO]: [PvPManager] TAB Found! Using TAB to change nametags instead of scoreboards
[02:22:11] [Server thread/INFO]: [PvPManager] NPC spawning is supported in this version! (v1_21_R1)
[02:22:11] [Server thread/INFO]: [PvPManager] Auto Respawn is supported in this version! Using 1.15+ gamerules
[02:22:11] [Server thread/INFO]: [PvPManager] Starting border task with radius 6 and rate of 150ms
[02:22:11] [Server thread/INFO]: [PvPManager] PvPManager v3.38 enabled (173 ms)
[02:22:11] [Server thread/INFO]: [PlayerParticles] Enabling PlayerParticles v8.8
[02:22:11] [Server thread/INFO]: [PlayerParticles] Data handler connected using SQLite.
[02:22:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerparticles [8.8]
[02:22:11] [Server thread/INFO]: [PinataParty] Enabling PinataParty v2.67.9
[02:22:12] [Server thread/INFO]: [PinataParty] Loading data...
[02:22:12] [Server thread/INFO]: [PinataParty] Registering hooks...
[02:22:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pinataparty [2.67.9]
[02:22:12] [Server thread/INFO]: [PinataParty] Hooked into PlaceholderAPI
[02:22:12] [Server thread/INFO]: [PinataParty] Hooked into VotifierPlus
[02:22:12] [Server thread/INFO]: [PinataParty] Hooked into Vault
[02:22:12] [Server thread/INFO]: [PinataParty] Registering commands...
[02:22:12] [Server thread/INFO]: [PinataParty] Registering listeners...
[02:22:12] [Server thread/INFO]: [PinataParty] Starting tasks...
[02:22:12] [Server thread/INFO]: [PinataParty] Starting metrics...
[02:22:12] [Server thread/INFO]: [PinataParty] Plugin registered to 2233194 | 1373014323
[02:22:12] [Server thread/INFO]: [PinataParty] Done and enabled in 19.80ms
[02:22:12] [Server thread/INFO]: [MobFarmManager] Enabling MobFarmManager v3.0.3.1
[02:22:13] [Server thread/INFO]: MobFarmManager Version 3.0.3.1 has been enabled
[02:22:13] [Server thread/INFO]: [MFM] Using EN locale
[02:22:13] [Server thread/INFO]: [MFM] Entity spawn check enabled
[02:22:13] [Server thread/INFO]: [MFM] Chunk grouping enabled, chunk radius: 2
[02:22:13] [Server thread/INFO]: [MFM] Auto clean enabled with 30 second interval
[02:22:13] [Server thread/INFO]: [MFM] Ignoring from clean: Armor stands with items, Entities with picked items, Item frames with items, Tames animals, Named animals, Entities with sadle, Baby animals 
[02:22:13] [Server thread/INFO]: [MFM] Ignored worlds: Test
[02:22:13] [Server thread/INFO]: [LifeSteal] Enabling LifeSteal v${project.version}
[02:22:13] [Server thread/INFO]: [LifeSteal] Check for updates...
[02:22:14] [Server thread/ERROR]: Error occurred while enabling LifeSteal v${project.version} (Is it up to date?)
java.lang.IncompatibleClassChangeError: Method 'org.bukkit.Sound org.bukkit.Sound.valueOf(java.lang.String)' must be Methodref constant
    at LifeStealPlugin-1.4.5.jar/me.tvhee.lifesteal.settings.Settings.loadTool(Settings.java:108) ~[LifeStealPlugin-1.4.5.jar:?]
    at LifeStealPlugin-1.4.5.jar/me.tvhee.lifesteal.settings.Settings.onLoad(Settings.java:199) ~[LifeStealPlugin-1.4.5.jar:?]
    at LifeStealPlugin-1.4.5.jar/me.tvhee.lifesteal.settings.SimpleConfig.reloadConfig(SimpleConfig.java:63) ~[LifeStealPlugin-1.4.5.jar:?]
    at LifeStealPlugin-1.4.5.jar/me.tvhee.lifesteal.LifeSteal.onEnable(LifeSteal.java:51) ~[LifeStealPlugin-1.4.5.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[02:22:14] [Server thread/INFO]: [LifeSteal] Disabling LifeSteal v${project.version}
[02:22:14] [Server thread/INFO]: [InvSee++] Enabling InvSeePlusPlus v0.29.18
[02:22:14] [Server thread/INFO]: [GravesX] Enabling GravesX v4.9.7.3
[02:22:14] [Server thread/INFO]: [GravesX] Loading Libraries for GravesX
[02:22:14] [Server thread/INFO]: [GravesX] Loading library com.zaxxer.HikariCP version 6.0.0.
[02:22:14] [Server thread/INFO]: [GravesX] Loading library com.zaxxer:HikariCP:6.0.0
[02:22:15] [Server thread/INFO]: [GravesX] Downloaded library https://repo1.maven.org/maven2/com/zaxxer/HikariCP/6.0.0/HikariCP-6.0.0.jar
[02:22:15] [Server thread/INFO]: [GravesX] Downloaded library https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/9.7/asm-commons-9.7.jar
[02:22:15] [Server thread/INFO]: [GravesX] Downloaded library https://repo1.maven.org/maven2/org/ow2/asm/asm/9.7/asm-9.7.jar
[02:22:15] [Server thread/INFO]: [GravesX] Downloaded library https://repo1.maven.org/maven2/me/lucko/jar-relocator/1.7/jar-relocator-1.7.jar
[02:22:16] [Server thread/INFO]: [GravesX] Relocations applied to HikariCP-6.0.0.jar
[02:22:24] [Server thread/INFO]: [GravesX] Downloaded library https://repo.alessiodp.com/releases/com/alessiodp/libby/maven/resolver/libby-maven-resolver/1.0.1/libby-maven-resolver-1.0.1.jar
[02:22:30] [Server thread/INFO]: [GravesX] Loading library org.slf4j:slf4j-api:1.7.36
[02:22:30] [Server thread/INFO]: [GravesX] Relocations applied to slf4j-api-1.7.36.jar
[02:22:30] [Server thread/INFO]: [GravesX] Loading library org.javassist:javassist:3.29.2-GA
[02:22:31] [Server thread/INFO]: [GravesX] Relocations applied to javassist-3.29.2-GA.jar
[02:22:31] [Server thread/INFO]: [GravesX] Loading library io.micrometer:micrometer-core:1.5.10
[02:22:31] [Server thread/INFO]: [GravesX] Relocations applied to micrometer-core-1.5.10.jar
[02:22:31] [Server thread/INFO]: [GravesX] Loading library org.hdrhistogram:HdrHistogram:2.1.12
[02:22:31] [Server thread/INFO]: [GravesX] Relocations applied to HdrHistogram-2.1.12.jar
[02:22:31] [Server thread/INFO]: [GravesX] Loading library org.latencyutils:LatencyUtils:2.0.3
[02:22:31] [Server thread/INFO]: [GravesX] Relocations applied to LatencyUtils-2.0.3.jar
[02:22:31] [Server thread/INFO]: [GravesX] Loaded library com.zaxxer.HikariCP version 6.0.0 and shaded successfully.
[02:22:31] [Server thread/INFO]: [GravesX] Loading library org.xerial.sqlite-jdbc version 3.47.0.0.
[02:22:31] [Server thread/INFO]: [GravesX] Loading library org.xerial:sqlite-jdbc:3.47.0.0
[02:23:05] [Server thread/INFO]: [GravesX] Downloaded library https://repo1.maven.org/maven2/org/xerial/sqlite-jdbc/3.47.0.0/sqlite-jdbc-3.47.0.0.jar
[02:23:06] [Server thread/INFO]: [GravesX] Loading library org.slf4j:slf4j-api:1.7.36
[02:23:06] [Server thread/INFO]: [GravesX] Loaded library org.xerial.sqlite-jdbc version 3.47.0.0 successfully.
[02:23:06] [Server thread/INFO]: [GravesX] Loading library org.json.json version 20240303.
[02:23:06] [Server thread/INFO]: [GravesX] Loading library org.json:json:20240303
[02:23:06] [Server thread/INFO]: [GravesX] Downloaded library https://repo1.maven.org/maven2/org/json/json/20240303/json-20240303.jar
[02:23:07] [Server thread/INFO]: [GravesX] Loaded library org.json.json version 20240303 successfully.
[02:23:07] [Server thread/INFO]: [GravesX] Loading library com.github.oshi.oshi-core version 6.6.5.
[02:23:07] [Server thread/INFO]: [GravesX] Loading library com.github.oshi:oshi-core:6.6.5
[02:23:09] [Server thread/INFO]: [GravesX] Downloaded library https://repo1.maven.org/maven2/com/github/oshi/oshi-core/6.6.5/oshi-core-6.6.5.jar
[02:23:22] [Server thread/INFO]: [GravesX] Loading library net.java.dev.jna:jna:5.15.0
[02:23:22] [Server thread/INFO]: [GravesX] Loading library net.java.dev.jna:jna-platform:5.15.0
[02:23:22] [Server thread/INFO]: [GravesX] Loading library org.slf4j:slf4j-api:2.0.16
[02:23:22] [Server thread/INFO]: [GravesX] Loaded library com.github.oshi.oshi-core version 6.6.5 successfully.
[02:23:22] [Server thread/INFO]: [GravesX] Loading library com.h2database.h2 version 2.3.232.
[02:23:22] [Server thread/INFO]: [GravesX] Loading library com.h2database:h2:2.3.232
[02:23:29] [Server thread/INFO]: [GravesX] Downloaded library https://repo1.maven.org/maven2/com/h2database/h2/2.3.232/h2-2.3.232.jar
[02:23:30] [Server thread/INFO]: [GravesX] Relocations applied to h2-2.3.232.jar
[02:23:30] [Server thread/INFO]: [GravesX] Loaded library com.h2database.h2 version 2.3.232 and shaded successfully.
[02:23:30] [Server thread/INFO]: [GravesX] Loading library net.kyori.adventure-api version 4.17.0.
[02:23:30] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-api:4.17.0
[02:23:31] [Server thread/INFO]: [GravesX] Downloaded library https://repo1.maven.org/maven2/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.jar
[02:23:32] [Server thread/INFO]: [GravesX] Relocations applied to adventure-api-4.17.0.jar
[02:23:36] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-key:4.17.0
[02:23:36] [Server thread/INFO]: [GravesX] Relocations applied to adventure-key-4.17.0.jar
[02:23:36] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-api:1.3.0
[02:23:36] [Server thread/INFO]: [GravesX] Relocations applied to examination-api-1.3.0.jar
[02:23:36] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-string:1.3.0
[02:23:36] [Server thread/INFO]: [GravesX] Relocations applied to examination-string-1.3.0.jar
[02:23:36] [Server thread/INFO]: [GravesX] Loading library org.jetbrains:annotations:24.1.0
[02:23:36] [Server thread/INFO]: [GravesX] Relocations applied to annotations-24.1.0.jar
[02:23:36] [Server thread/INFO]: [GravesX] Loaded library net.kyori.adventure-api version 4.17.0 and shaded successfully.
[02:23:36] [Server thread/INFO]: [GravesX] Loading library net.kyori.adventure-text-minimessage version 4.17.0.
[02:23:36] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-minimessage:4.17.0
[02:23:37] [Server thread/INFO]: [GravesX] Downloaded library https://repo1.maven.org/maven2/net/kyori/adventure-text-minimessage/4.17.0/adventure-text-minimessage-4.17.0.jar
[02:23:37] [Server thread/INFO]: [GravesX] Relocations applied to adventure-text-minimessage-4.17.0.jar
[02:23:37] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-api:4.17.0
[02:23:37] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-key:4.17.0
[02:23:37] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-api:1.3.0
[02:23:37] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-string:1.3.0
[02:23:37] [Server thread/INFO]: [GravesX] Loading library org.jetbrains:annotations:24.1.0
[02:23:37] [Server thread/INFO]: [GravesX] Loaded library net.kyori.adventure-text-minimessage version 4.17.0 and shaded successfully.
[02:23:37] [Server thread/INFO]: [GravesX] Loading library net.kyori.adventure-text-serializer-gson version 4.17.0.
[02:23:37] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-gson:4.17.0
[02:23:37] [Server thread/INFO]: [GravesX] Downloaded library https://repo1.maven.org/maven2/net/kyori/adventure-text-serializer-gson/4.17.0/adventure-text-serializer-gson-4.17.0.jar
[02:23:38] [Server thread/INFO]: [GravesX] Relocations applied to adventure-text-serializer-gson-4.17.0.jar
[02:23:42] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-json:4.17.0
[02:23:42] [Server thread/INFO]: [GravesX] Relocations applied to adventure-text-serializer-json-4.17.0.jar
[02:23:42] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-api:4.17.0
[02:23:42] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-key:4.17.0
[02:23:42] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-api:1.3.0
[02:23:42] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-string:1.3.0
[02:23:42] [Server thread/INFO]: [GravesX] Loading library org.jetbrains:annotations:24.1.0
[02:23:42] [Server thread/INFO]: [GravesX] Loading library net.kyori:option:1.0.0
[02:23:42] [Server thread/INFO]: [GravesX] Relocations applied to option-1.0.0.jar
[02:23:42] [Server thread/INFO]: [GravesX] Loading library com.google.code.gson:gson:2.8.0
[02:23:43] [Server thread/INFO]: [GravesX] Relocations applied to gson-2.8.0.jar
[02:23:43] [Server thread/INFO]: [GravesX] Loading library com.google.auto.service:auto-service-annotations:1.1.1
[02:23:43] [Server thread/INFO]: [GravesX] Relocations applied to auto-service-annotations-1.1.1.jar
[02:23:43] [Server thread/INFO]: [GravesX] Loaded library net.kyori.adventure-text-serializer-gson version 4.17.0 and shaded successfully.
[02:23:43] [Server thread/INFO]: [GravesX] Loading library net.kyori.adventure-platform-bukkit version 4.3.3.
[02:23:43] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-platform-bukkit:4.3.3
[02:23:43] [Server thread/INFO]: [GravesX] Downloaded library https://repo1.maven.org/maven2/net/kyori/adventure-platform-bukkit/4.3.3/adventure-platform-bukkit-4.3.3.jar
[02:23:43] [Server thread/INFO]: [GravesX] Relocations applied to adventure-platform-bukkit-4.3.3.jar
[02:23:51] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-platform-api:4.3.3
[02:23:51] [Server thread/INFO]: [GravesX] Relocations applied to adventure-platform-api-4.3.3.jar
[02:23:51] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-api:4.13.1
[02:23:51] [Server thread/INFO]: [GravesX] Relocations applied to adventure-api-4.13.1.jar
[02:23:51] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-key:4.13.1
[02:23:51] [Server thread/INFO]: [GravesX] Relocations applied to adventure-key-4.13.1.jar
[02:23:51] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-bungeecord:4.3.3
[02:23:51] [Server thread/INFO]: [GravesX] Relocations applied to adventure-text-serializer-bungeecord-4.3.3.jar
[02:23:51] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-legacy:4.13.1
[02:23:51] [Server thread/INFO]: [GravesX] Relocations applied to adventure-text-serializer-legacy-4.13.1.jar
[02:23:51] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-nbt:4.13.1
[02:23:51] [Server thread/INFO]: [GravesX] Relocations applied to adventure-nbt-4.13.1.jar
[02:23:51] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-api:1.3.0
[02:23:51] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-string:1.3.0
[02:23:51] [Server thread/INFO]: [GravesX] Loading library org.jetbrains:annotations:24.0.1
[02:23:51] [Server thread/INFO]: [GravesX] Relocations applied to annotations-24.0.1.jar
[02:23:51] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-gson:4.13.1
[02:23:51] [Server thread/INFO]: [GravesX] Relocations applied to adventure-text-serializer-gson-4.13.1.jar
[02:23:51] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-gson-legacy-impl:4.13.1
[02:23:51] [Server thread/INFO]: [GravesX] Relocations applied to adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[02:23:51] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-platform-facet:4.3.3
[02:23:51] [Server thread/INFO]: [GravesX] Relocations applied to adventure-platform-facet-4.3.3.jar
[02:23:51] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-platform-viaversion:4.3.3
[02:23:51] [Server thread/INFO]: [GravesX] Relocations applied to adventure-platform-viaversion-4.3.3.jar
[02:23:51] [Server thread/INFO]: [GravesX] Loaded library net.kyori.adventure-platform-bukkit version 4.3.3 and shaded successfully.
[02:23:51] [Server thread/INFO]: [GravesX] Loading library com.github.puregero.multilib version 1.2.4.
[02:23:51] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:multilib:1.2.4
[02:23:52] [Server thread/INFO]: [GravesX] Downloaded library https://repo.clojars.org/com/github/puregero/multilib/1.2.4/multilib-1.2.4.jar
[02:23:52] [Server thread/INFO]: [GravesX] Relocations applied to multilib-1.2.4.jar
[02:23:55] [Server thread/INFO]: [GravesX] Loading library org.jetbrains:annotations:22.0.0
[02:23:55] [Server thread/INFO]: [GravesX] Relocations applied to annotations-22.0.0.jar
[02:23:55] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:multilib-common:1.2.4
[02:23:55] [Server thread/INFO]: [GravesX] Relocations applied to multilib-common-1.2.4.jar
[02:23:55] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:multilib-bukkit:1.2.4
[02:23:55] [Server thread/INFO]: [GravesX] Relocations applied to multilib-bukkit-1.2.4.jar
[02:23:55] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:multilib-multipaper:1.2.4
[02:23:55] [Server thread/INFO]: [GravesX] Relocations applied to multilib-multipaper-1.2.4.jar
[02:23:55] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:regionized-common:1.2.4
[02:23:55] [Server thread/INFO]: [GravesX] Relocations applied to regionized-common-1.2.4.jar
[02:23:55] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:regionized-bukkit:1.2.4
[02:23:55] [Server thread/INFO]: [GravesX] Relocations applied to regionized-bukkit-1.2.4.jar
[02:23:55] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:regionized-paper:1.2.4
[02:23:55] [Server thread/INFO]: [GravesX] Relocations applied to regionized-paper-1.2.4.jar
[02:23:55] [Server thread/INFO]: [GravesX] Loaded library com.github.puregero.multilib version 1.2.4 and shaded successfully.
[02:23:55] [Server thread/INFO]: [GravesX] Loading library org.apache.commons.commons-text version 1.12.0.
[02:23:55] [Server thread/INFO]: [GravesX] Loading library org.apache.commons:commons-text:1.12.0
[02:23:56] [Server thread/INFO]: [GravesX] Downloaded library https://repo1.maven.org/maven2/org/apache/commons/commons-text/1.12.0/commons-text-1.12.0.jar
[02:23:56] [Server thread/INFO]: [GravesX] Relocations applied to commons-text-1.12.0.jar
[02:24:02] [Server thread/INFO]: [GravesX] Loading library org.apache.commons:commons-lang3:3.14.0
[02:24:02] [Server thread/INFO]: [GravesX] Relocations applied to commons-lang3-3.14.0.jar
[02:24:02] [Server thread/INFO]: [GravesX] Loaded library org.apache.commons.commons-text version 1.12.0 and shaded successfully.
[02:24:02] [Server thread/INFO]: [GravesX] Finished Loading Libraries for GravesX.
[02:24:02] [Server thread/INFO]: [GravesX] Integration: Hooked into Vault 2.10.0. Economy is enabled.
[02:24:02] [Server thread/INFO]: [GravesX] Integration: Hooked into Vault 2.10.0's permissions provider.
[02:24:02] [Server thread/INFO]: [GravesX] Integration: Hooked into ProtocolLib 5.4.0-SNAPSHOT-736.
[02:24:02] [Server thread/INFO]: [GravesX] Integration: Hooked into WorldEdit 7.3.9+6959-7adf70b.
[02:24:02] [Server thread/INFO]: [GravesX] Integration: Hooked into MiniMessage.
[02:24:02] [Server thread/INFO]: [GravesX] Integration: Hooked into Minedown Adventure.
[02:24:02] [Server thread/INFO]: [GravesX] Integration: Hooked into ChestSort 14.2.0.
[02:24:02] [Server thread/INFO]: [GravesX] Integration: Hooked into Citizens 2.0.35-SNAPSHOT (build 3583).
[02:24:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gravesx [4.9.7.3]
[02:24:02] [Server thread/INFO]: [GravesX] Integration: Hooked into PlaceholderAPI 2.11.6.
[02:24:02] [Server thread/WARN]: [GravesX] Compatibility: World "world" has keepInventory set to true, Graves will not be created here unless a player has the "graves.keepinventory.bypass" permission.
[02:24:02] [Server thread/WARN]: [GravesX] Compatibility: Essentials Detected, make sure you don't have the essentials.keepinv or essentials.keepxp permissions.
[02:24:02] [Server thread/INFO]: [GravesX] Integration: Hooked into LuckPerms 5.4.131.
[02:24:02] [Server thread/INFO]: [GravesX] Integration: Hooked into Geyser-Spigot 2.4.4-SNAPSHOT.
[02:24:02] [Server thread/INFO]: [GravesX] Integration: Hooked into floodgate 2.2.4-SNAPSHOT (b116-0e3163c).
[02:24:02] [Server thread/INFO]: [com.ranull.graves.libraries.hikari.HikariDataSource] Graves H2 - Starting...
[02:24:03] [Server thread/INFO]: [com.ranull.graves.libraries.hikari.pool.HikariPool] Graves H2 - Added connection conn1: url=jdbc:h2:file:C:\Users\Administrator\Desktop\LastMC SMP 1.21.1\plugins\GravesX\data\graves.data user=SA
[02:24:03] [Server thread/INFO]: [com.ranull.graves.libraries.hikari.HikariDataSource] Graves H2 - Start completed.
[02:24:03] [Server thread/WARN]: [GravesX] SQLite database file or folder does not exist in "plugins\GravesX\data". Skipping database migration.
[02:24:03] [Server thread/INFO]: [GravesX] Metrics has been enabled. All metrics will be sent to https://bstats.org/plugin/bukkit/Graves/12849 and https://bstats.org/plugin/bukkit/GravesX/23069.
[02:24:03] [Server thread/INFO]: [GrantX] Enabling GrantX v2.5.7
[02:24:04] [Server thread/INFO]:  
[02:24:04] [Server thread/INFO]:   ________                     __ ____  ___
[02:24:04] [Server thread/INFO]:  /  _____/___________    _____/  |\   \/  /
[02:24:04] [Server thread/INFO]: /   \  __\_  __ \__  \  /    \   __\     / 
[02:24:04] [Server thread/INFO]: \    \_\  \  | \// __ \|   |  \  | /     \ 
[02:24:04] [Server thread/INFO]:  \______  /__|  (____  /___|  /__|/___/\  \
[02:24:04] [Server thread/INFO]:         \/           \/     \/          \_/
[02:24:04] [Server thread/INFO]:  
[02:24:05] [Server thread/INFO]: [GrantX] Loading settings.yml...
[02:24:05] [Server thread/INFO]: [GrantX] Loading messages.yml...
[02:24:05] [Server thread/INFO]: [GrantX] Loading menus/players.yml...
[02:24:05] [Server thread/INFO]: [GrantX] Loading menus/editor/main.yml...
[02:24:05] [Server thread/INFO]: [GrantX] Loading menus/editor/ranks.yml...
[02:24:05] [Server thread/INFO]: [GrantX] Loading menus/editor/servers.yml...
[02:24:05] [Server thread/INFO]: [GrantX] Loading menus/editor/durations.yml...
[02:24:05] [Server thread/INFO]: [GrantX] Loading menus/editor/reasons.yml...
[02:24:05] [Server thread/INFO]: [GrantX] Loading menus/editor/materials.yml...
[02:24:05] [Server thread/INFO]: [GrantX] Loading menus/editor/blacklisted-servers.yml...
[02:24:05] [Server thread/INFO]: [GrantX] Loading menus/grant/ranks.yml...
[02:24:05] [Server thread/INFO]: [GrantX] Loading menus/grant/servers.yml...
[02:24:05] [Server thread/INFO]: [GrantX] Loading menus/grant/durations.yml...
[02:24:05] [Server thread/INFO]: [GrantX] Loading menus/grant/reasons.yml...
[02:24:05] [Server thread/INFO]: [GrantX] Loading menus/grant/confirmation.yml...
[02:24:05] [Server thread/INFO]: [GrantX] Loading menus/grants/grants.yml...
[02:24:05] [Server thread/INFO]: [GrantX] Loading menus/grants/confirmation.yml...
[02:24:05] [Server thread/INFO]: [GrantX] Loading menus/logs/logs.yml...
[02:24:05] [Server thread/INFO]: [GrantX] Checking commands configuration...
[02:24:05] [Server thread/INFO]: [GrantX] Registering commands...
[02:24:05] [Server thread/INFO]: [GrantX] Registering listeners...
[02:24:05] [Server thread/INFO]: [GrantX] Loading data storage...
[02:24:05] [Server thread/INFO]: [dev.demeng.grantx.shaded.hikari.HikariDataSource] GrantX-0 - Starting...
[02:24:06] [Server thread/INFO]: [dev.demeng.grantx.shaded.hikari.HikariDataSource] GrantX-0 - Start completed.
[02:24:06] [Server thread/INFO]: [GrantX] Initializing player cache...
[02:24:06] [Server thread/INFO]: [GrantX] Hooking into Vault...
[02:24:06] [Server thread/INFO]: [GrantX] Hooking into PlaceholderAPI...
[02:24:06] [Server thread/INFO]: [GrantX] Hooking into LuckPerms...
[02:24:06] [Server thread/INFO]: [GrantX] Scheduling tasks...
[02:24:06] [Server thread/INFO]: [GrantX] Initializing bStats...
[02:24:06] [Server thread/INFO]: [GrantX] Checking for updates...
[02:24:06] [Server thread/INFO]: [GrantX] GrantX v2.5.7 has been enabled in 2587ms.


[02:24:06] [Server thread/INFO]: [FastLogin] Enabling FastLogin v1.12-SNAPSHOT-927f09a
[02:24:07] [Server thread/WARN]: [FastLogin] Disabling Minecraft proxy configuration. Assuming direct connections from now on.
[02:24:07] [Server thread/INFO]: [fastlogin.hikari.HikariDataSource] FastLogin - Starting...
[02:24:07] [Server thread/INFO]: [fastlogin.hikari.HikariDataSource] FastLogin - Start completed.
[02:24:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: FastLogin [1.12-SNAPSHOT-927f09a]
[02:24:07] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.29.0
[02:24:07] [Server thread/INFO]: [CreeperRefund] Enabling CreeperRefund v1.0
[02:24:07] [Server thread/INFO]: [CreeperRefund] Thanks for using CreeperRefund!
[02:24:07] [Server thread/INFO]: [Craftable] Enabling Craftable v4.4.0
[02:24:07] [Server thread/ERROR]: Cannot load plugins\Craftable\data.yml
org.bukkit.configuration.InvalidConfigurationException: Global tag is not allowed: tag:yaml.org,2002:org.bukkit.inventory.ShapedRecipe
 in 'reader', line 1, column 8:
    Flint: !!org.bukkit.inventory.ShapedRecipe
           ^

    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:112) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:310) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at craftable-4.4.0.jar/vb.$craftable.PluginMain.onEnable(PluginMain.java:25) ~[craftable-4.4.0.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: org.yaml.snakeyaml.composer.ComposerException: Global tag is not allowed: tag:yaml.org,2002:org.bukkit.inventory.ShapedRecipe
 in 'reader', line 1, column 8:
    Flint: !!org.bukkit.inventory.ShapedRecipe
           ^

    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:304) ~[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:105) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    ... 16 more
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:30)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:43)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:58)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:69)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:81)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:93)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:104)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:113)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:126)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:139)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:154)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:169)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:182)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:194)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:205)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:218)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:441)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:450)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:463)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:476)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:485)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:494)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:608)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:621)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:636)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:649)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:662)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:677)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:692)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:707)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:720)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:774)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:787)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:800)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:816)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:833)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:882)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:896)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:910)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:927)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:938)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:951)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:1005)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:1016)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:1038)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:1048)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:1058)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.Throwable: Warning: A plugin is creating a recipe using a Deprecated method. This will cause you to receive warnings stating 'Tried to load unrecognized recipe: bukkit:<ID>'. Please ask the author to give their recipe a static key using NamespacedKey.
[02:24:07] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.<init>(ShapedRecipe.java:34)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:1085)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/WARN]: java.lang.IllegalStateException: Duplicate recipe ignored with ID bukkit:66ff55b5-3243-4f48-93de-3c548d69f9ce
[02:24:07] [Server thread/WARN]:     at net.minecraft.world.item.crafting.RecipeManager.addRecipe(RecipeManager.java:91)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.inventory.CraftShapedRecipe.addToCraftingManager(CraftShapedRecipe.java:56)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.addRecipe(CraftServer.java:1604)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.addRecipe(CraftServer.java:1570)
[02:24:07] [Server thread/WARN]:     at org.bukkit.Bukkit.addRecipe(Bukkit.java:1126)
[02:24:07] [Server thread/WARN]:     at craftable-4.4.0.jar//vb.$craftable.PluginMain.onEnable(PluginMain.java:1093)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[02:24:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[02:24:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[02:24:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[02:24:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[02:24:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:07] [Server thread/INFO]: [coordinator] Enabling coordinator v1.6.1
[02:24:07] [Server thread/INFO]: [coordinator] Coordinator plugin has been enabled!
[02:24:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: coordinator [1.6.1]
[02:24:07] [Server thread/INFO]: true true 0 true 0 true 0
[02:24:07] [Server thread/INFO]: [Chunky] Enabling Chunky v1.4.28
[02:24:07] [Server thread/INFO]: [BetterJails] Enabling BetterJails v1.5.2
[02:24:07] [Server thread/INFO]: [BetterJails] Hooked with Essentials successfully!
[02:24:07] [Server thread/INFO]: [BestTools] Enabling BestTools v2.3.0
[02:24:07] [Server thread/INFO]: [BestTools] Building the <Block,Tool> map took 4 ms
[02:24:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: besttools [2.3.0]
[02:24:07] [Server thread/INFO]: [AuraSkills] Enabling AuraSkills v2.2.8
[02:24:07] [Server thread/INFO]: [AuraSkills] Loaded 21 message files
[02:24:08] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[02:24:08] [Server thread/INFO]: [AuraSkills] Successfully registered hook DecentHolograms
[02:24:08] [Server thread/INFO]: [AuraSkills] Successfully registered hook LuckPerms
[02:24:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: auraskills [2.2.8]
[02:24:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aureliumskills [2.2.8]
[02:24:08] [Server thread/INFO]: [AuraSkills] Successfully registered hook PlaceholderAPI
[02:24:08] [Server thread/INFO]: [AuraSkills] Successfully registered hook ProtocolLib
[02:24:08] [Server thread/INFO]: [AuraSkills] Successfully registered hook Vault
[02:24:08] [Server thread/INFO]: [AuraSkills] Successfully registered hook WorldGuard
[02:24:08] [Server thread/INFO]: [AuraSkills] Loaded 151 config options in 38 ms
[02:24:08] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[02:24:08] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[02:24:08] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AuraSkills' to create a bStats instance!
[02:24:08] [Server thread/INFO]: [AuraSkills] Loaded 3 blocked/disabled worlds
[02:24:08] [pool-99-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (9d4734818ab27069d76f264a4cda74a699806770)
[02:24:08] [Server thread/INFO]: [AuraSkills] [ACF] Enabled Asynchronous Tab Completion Support!
[02:24:08] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[02:24:08] [Server thread/INFO]: [AnvilColors] Enabling AnvilColors v1.0.5
[02:24:08] [Server thread/INFO]: [Announcement] Enabling Announcement v1.2
[02:24:08] [Server thread/INFO]: [AdvancedServerList] Enabling AdvancedServerList v5.5.1
[02:24:08] [Server thread/INFO]: [AdvancedServerList] Registering internal Placeholders...
[02:24:08] [Server thread/INFO]: [AdvancedServerList] Starting AdvancedServerList v5.5.1...
[02:24:08] [Server thread/INFO]: [AdvancedServerList]      __      _______ ___
[02:24:08] [Server thread/INFO]: [AdvancedServerList]     /\ \    / ____|_| | |
[02:24:08] [Server thread/INFO]: [AdvancedServerList]    /  \ \  | (_(___ | | |
[02:24:08] [Server thread/INFO]: [AdvancedServerList]   / /\ \ \  \___ \ \| | |
[02:24:08] [Server thread/INFO]: [AdvancedServerList]  / ____ \ \ ____) | | |_|____
[02:24:08] [Server thread/INFO]: [AdvancedServerList] /_/_/  \_\_\_____/_/|______|_|
[02:24:08] [Server thread/INFO]: [AdvancedServerList] 
[02:24:08] [Server thread/INFO]: [AdvancedServerList] Platform: Paper (ID: papermc:paper, Version: 1.21.1, Build: 132)
[02:24:08] [Server thread/INFO]: [AdvancedServerList] 
[02:24:08] [Server thread/INFO]: [AdvancedServerList] [-] Loading profiles...
[02:24:08] [Server thread/INFO]: [AdvancedServerList] [✓] Successfully loaded 1 profile(s)!
[02:24:08] [Server thread/INFO]: [AdvancedServerList] [-] Loading local image files as Favicons...
[02:24:08] [Server thread/INFO]: [AdvancedServerList] [✓] Loaded 0 local Favicons.
[02:24:08] [Server thread/INFO]: [AdvancedServerList] [✓] Loaded Command /advancedserverlist!
[02:24:08] [Server thread/INFO]: [AdvancedServerList] [✓] Loaded 32 players into cache!
[02:24:08] [Server thread/INFO]: [AdvancedServerList] [✓] AdvancedServerList is ready!
[02:24:08] [AdvancedServerList-UpdateThread/INFO]: [AdvancedServerList] [-] Looking for an update...
[02:24:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: asl [5.5.1]
[02:24:09] [Server thread/INFO]: [spark] Starting background profiler...
[02:24:09] [Server thread/INFO]: [spark] The async-profiler engine is not supported for your os/arch (windows11/amd64), so the built-in Java engine will be used instead.
[02:24:09] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[02:24:09] [Server thread/INFO]: 0 placeholder hook(s) registered!
[02:24:09] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[02:24:09] [Server thread/INFO]: [Geyser-Spigot] 
[02:24:09] [Server thread/INFO]: [Geyser-Spigot] Loading Geyser version 2.4.4-b705 (git-master-d61ad7b)
[02:24:09] [Server thread/INFO]: [Geyser-Spigot] 
[02:24:09] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[02:24:09] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[02:24:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console channel ID was invalid, not forwarding console output
[02:24:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[02:24:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[02:24:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[02:24:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling voice module
[02:24:09] [ForkJoinPool.commonPool-worker-2/INFO]: [AdvancedServerList] [✓] You are running the latest version!
[02:24:11] [nioEventLoopGroup-3-1/INFO]: [Geyser-Spigot] Started Geyser on UDP port 19132
[02:24:11] [Server thread/INFO]: [Geyser-Spigot] Done (2.324s)! Run /geyser help for help!
[02:24:11] [Server thread/INFO]: Done preparing level "world" (128.157s)
[02:24:11] [Server thread/INFO]: Running delayed init tasks
[02:24:11] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v2.10.0)!
[02:24:11] [Craft Scheduler Thread - 5 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[02:24:11] [Craft Scheduler Thread - 8 - Essentials/INFO]: [Essentials] Fetching version information...
[02:24:11] [Craft Scheduler Thread - 21 - GravesX/INFO]: [GravesX] Loading grave maps...
[02:24:11] [Craft Scheduler Thread - 21 - GravesX/INFO]: [GravesX] Found 0 grave maps to load into cache.
[02:24:11] [Server thread/INFO]: [WildStacker] Loading providers started...
[02:24:11] [Server thread/INFO]: [WildStacker]  - Couldn't find any spawners providers, using default one.
[02:24:11] [Server thread/INFO]: [WildStacker] Using Vault as an economy provider.
[02:24:11] [Server thread/INFO]: [WildStacker] Loading providers done (Took 13ms)
[02:24:11] [ForkJoinPool.commonPool-worker-3/INFO]: [Geyser-Spigot] There's a new Geyser update available to support Bedrock version 1.21.70. Download it here: https://geysermc.org/download
[02:24:11] [Server thread/INFO]: [GravesX] Registering Crash Handler...
[02:24:11] [Server thread/INFO]: [GravesX] Registered Crash Handler. Server will handle crashes in a separate thread.
[02:24:11] [Craft Scheduler Thread - 12 - AuthMe/INFO]: [AuthMe] You are running the latest version.
[02:24:12] [Server thread/INFO]: [AuraSkills] Loaded 11 skills with 312 total sources
[02:24:12] [Server thread/INFO]: [AuraSkills] Loaded 9 stats and 17 traits
[02:24:12] [Craft Scheduler Thread - 18 - JustTPA/INFO]: [JustTPA] You are using the latest version for your server.
[02:24:12] [Server thread/INFO]: [AuraSkills] Loaded 22 pattern rewards and 0 level rewards
[02:24:12] [Server thread/INFO]: [AuraSkills] Loaded 53 loot entries in 4 pools and 2 tables
[02:24:12] [Server thread/INFO]: [AuraSkills] Loaded 6 menus
[02:24:12] [Server thread/INFO]: 
                               ANNOUNCEMENT

Assalamualaikum dan selamat sejahtera, Selamat Datang ke LastMC Reborn Server. silo join group discord di https://discord.gg/CVptPZ5vGs untuk pertanyaan dan suggestion yang lanjut


[02:24:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrv [1.29.0]
[02:24:12] [Server thread/INFO]: [WildStacker] Starting to load entities...
[02:24:12] [Server thread/INFO]: [WildStacker] Loading entities done! Took 1 ms.
[02:24:12] [Server thread/INFO]: [WildStacker] Starting to load items...
[02:24:12] [Server thread/INFO]: [WildStacker] Loading items done! Took 0 ms.
[02:24:12] [Server thread/INFO]: [WildStacker] Starting to load spawners...
[02:24:12] [Server thread/INFO]: [WildStacker] Loading spawners done! Took 2 ms.
[02:24:12] [Server thread/INFO]: [WildStacker] Starting to load barrels...
[02:24:12] [Server thread/INFO]: [WildStacker] Loading barrels done! Took 0 ms.
[02:24:12] [Server thread/INFO]: [Citizens] Loaded 0 NPCs.
[02:24:12] [Server thread/WARN]: [ViaVersion] There is a newer plugin version available: 5.3.0, you're on: 5.2.1
[02:24:12] [Server thread/INFO]: Done (146.237s)! For help, type "help"
[02:24:12] [Server thread/INFO]: Timings Reset
[02:24:12] [Craft Scheduler Thread - 21 - GravesX/INFO]: [GravesX] Loading Entity Map Cache for armorstand...
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/INFO]: [GravesX] Loading Entity Data Map Cache for citizensnpc...
[02:24:12] [Craft Scheduler Thread - 4 - GravesX/INFO]: [GravesX] Loading Entity Map Cache for itemframe...
[02:24:12] [Craft Scheduler Thread - 55 - GravesX/INFO]: [GravesX] Loading Holograms into Hologram Map Cache...
[02:24:12] [Craft Scheduler Thread - 54 - GravesX/INFO]: [GravesX] Loading Block Map cache...
[02:24:12] [Craft Scheduler Thread - 54 - GravesX/INFO]: [GravesX] Loaded 0 Blocks into Block Map Cache.
[02:24:12] [Craft Scheduler Thread - 21 - GravesX/INFO]: [GravesX] Loaded 0 entities into Entity Map Cache for armorstand.
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] Error occurred while loading Entity Data Map: (Message 42S02 not found); SQL statement:
SELECT * FROM citizensnpc; [42102-232]
[02:24:12] [Craft Scheduler Thread - 4 - GravesX/INFO]: [GravesX] Loaded 0 entities into Entity Map Cache for itemframe.
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.message.DbException.getJdbcSQLException(DbException.java:514)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.message.DbException.getJdbcSQLException(DbException.java:489)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.message.DbException.get(DbException.java:223)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.message.DbException.get(DbException.java:199)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.getTableOrViewNotFoundDbException(Parser.java:7945)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.getTableOrViewNotFoundDbException(Parser.java:7916)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.readTableOrView(Parser.java:7895)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.readTablePrimary(Parser.java:1769)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.readTableReference(Parser.java:2249)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.parseSelectFromPart(Parser.java:2702)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.parseSelect(Parser.java:2810)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.parseQueryPrimary(Parser.java:2692)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.parseQueryTerm(Parser.java:2547)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.parseQueryExpressionBody(Parser.java:2526)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.parseQueryExpressionBodyAndEndOfQuery(Parser.java:2519)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.parseQueryExpression(Parser.java:2512)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.parseQuery(Parser.java:2479)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.parsePrepared(Parser.java:610)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.parse(Parser.java:581)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.parse(Parser.java:556)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.prepareCommand(Parser.java:484)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.engine.SessionLocal.prepareLocal(SessionLocal.java:645)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.engine.SessionLocal.prepareCommand(SessionLocal.java:561)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1164)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.jdbc.JdbcPreparedStatement.<init>(JdbcPreparedStatement.java:93)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.jdbc.JdbcConnection.prepareStatement(JdbcConnection.java:315)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.hikari.pool.ProxyConnection.prepareStatement(ProxyConnection.java:328)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.hikari.pool.HikariProxyConnection.prepareStatement(HikariProxyConnection.java)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.manager.DataManager.lambda$loadEntityDataMap$4(DataManager.java:1395)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[02:24:12] [Craft Scheduler Thread - 5 - GravesX/ERROR]: [GravesX] java.base/java.lang.Thread.run(Thread.java:1583)
[02:24:12] [Craft Scheduler Thread - 55 - GravesX/INFO]: [GravesX] Loaded 0 Holograms into Hologram Map Cache.
[02:24:12] [Server thread/INFO]: [voicechat] Loading plugins
[02:24:12] [Server thread/INFO]: [voicechat] Loaded 0 plugin(s)
[02:24:12] [Server thread/INFO]: [voicechat] Initializing plugins
[02:24:12] [Server thread/INFO]: [voicechat] Initialized 0 plugin(s)
[02:24:12] [Server thread/WARN]: [voicechat] Running in offline mode - Voice chat encryption is not secure!
[02:24:12] [VoiceChatServerThread/INFO]: [voicechat] Voice chat server started at port 24454
[02:24:12] [Server thread/INFO]: [FastLogin] Hooking into auth plugin: AuthMeHook
[02:24:12] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[02:24:16] [Craft Scheduler Thread - 56 - VotifierPlus/INFO]: [VotifierPlus] VotifierPlus is up to date! Version: 1.4
[02:25:11] [Server thread/INFO]: Stopping the server
[02:25:12] [Server thread/INFO]: Stopping server
[02:25:12] [Server thread/INFO]: [AdvancedServerList] Disabling AdvancedServerList v5.5.1
[02:25:12] [Server thread/INFO]: [AdvancedServerList] [-] Saving playercache.json file...
[02:25:12] [Server thread/INFO]: [AdvancedServerList] [✓] Successfully saved playercache.json file.
[02:25:12] [Server thread/INFO]: [AdvancedServerList] [-] Disabling Update Checker...
[02:25:12] [Server thread/INFO]: [AdvancedServerList] [✓] AdvancedServerList disabled!
[02:25:12] [Server thread/INFO]: [Announcement] Disabling Announcement v1.2
[02:25:12] [Server thread/INFO]: [AnvilColors] Disabling AnvilColors v1.0.5
[02:25:12] [Server thread/INFO]: [AuraSkills] Disabling AuraSkills v2.2.8
[02:25:12] [Server thread/INFO]: [BestTools] Disabling BestTools v2.3.0
[02:25:12] [Server thread/INFO]: [BetterJails] Disabling BetterJails v1.5.2
[02:25:12] [Server thread/INFO]: [Chunky] Disabling Chunky v1.4.28
[02:25:12] [Server thread/INFO]: [coordinator] Disabling coordinator v1.6.1
[02:25:12] [Server thread/INFO]: [Craftable] Disabling Craftable v4.4.0
[02:25:12] [Server thread/INFO]: [CreeperRefund] Disabling CreeperRefund v1.0
[02:25:12] [Server thread/INFO]: [DiscordSRV] Disabling DiscordSRV v1.29.0
[02:25:12] [DiscordSRV - Shutdown/INFO]: [DiscordSRV] Shutdown completed in 680ms
[02:25:12] [Server thread/INFO]: [FastLogin] Disabling FastLogin v1.12-SNAPSHOT-927f09a
[02:25:12] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion FastLogin
[02:25:12] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin FastLogin was disabled.
[02:25:12] [Server thread/INFO]: [FastLogin] Safely shutting down scheduler. This could take up to one minute.
[02:25:12] [Server thread/INFO]: [fastlogin.hikari.HikariDataSource] FastLogin - Shutdown initiated...
[02:25:12] [Server thread/INFO]: [fastlogin.hikari.HikariDataSource] FastLogin - Shutdown completed.
[02:25:12] [Server thread/INFO]: [GrantX] Disabling GrantX v2.5.7
[02:25:12] [Server thread/INFO]: [dev.demeng.grantx.shaded.hikari.HikariDataSource] GrantX-0 - Shutdown initiated...
[02:25:12] [Server thread/INFO]: [dev.demeng.grantx.shaded.hikari.HikariDataSource] GrantX-0 - Shutdown completed.
[02:25:12] [Server thread/INFO]: [GrantX] GrantX v2.5.7 has been disabled in 17ms.
[02:25:12] [Server thread/INFO]: [GravesX] Disabling GravesX v4.9.7.3
[02:25:12] [Server thread/INFO]: [GravesX] Shutting Down GravesX...
[02:25:12] [Server thread/INFO]: [com.ranull.graves.libraries.hikari.HikariDataSource] Graves H2 - Shutdown initiated...
[02:25:12] [Server thread/INFO]: [com.ranull.graves.libraries.hikari.HikariDataSource] Graves H2 - Shutdown completed.
[02:25:12] [Server thread/INFO]: [GravesX] Unloading GraveManager...
[02:25:12] [Server thread/INFO]: [GravesX] Unloaded GraveManager Successfully.
[02:25:12] [Server thread/INFO]: [GravesX] Unloading IntegrationManager...
[02:25:12] [Server thread/INFO]: [GravesX] Unloaded IntegrationManager Successfully.
[02:25:12] [Server thread/INFO]: [GravesX] Unloading RecipeManager...
[02:25:12] [Server thread/INFO]: [GravesX] Unloaded RecipeManager Successfully.
[02:25:12] [Server thread/INFO]: [GravesX] Shutdown Completed :)
[02:25:12] [Server thread/INFO]: [InvSee++] Disabling InvSeePlusPlus v0.29.18
[02:25:12] [Server thread/INFO]: [MobFarmManager] Disabling MobFarmManager v3.0.3.1
[02:25:12] [Server thread/INFO]: [PinataParty] Disabling PinataParty v2.67.9
[02:25:12] [Server thread/INFO]: [PinataParty] Removing 0 active pinatas...
[02:25:12] [Server thread/INFO]: [PinataParty] Unregistering team...
[02:25:12] [Server thread/INFO]: [PinataParty] Saving data...
[02:25:12] [Server thread/INFO]: [PinataParty] Done and disabled in 1.54ms
[02:25:12] [Server thread/INFO]: [PinataParty] If you liked the plugin, don't forget to give a ★★★★★ rating!
[02:25:12] [Server thread/INFO]: [PinataParty] Thank you and have a great day!
[02:25:12] [Server thread/INFO]: [PlayerParticles] Disabling PlayerParticles v8.8
[02:25:12] [Server thread/INFO]: [PvPManager] Disabling PvPManager v3.38
[02:25:12] [Server thread/INFO]: [PvPManager] Saving player data to storage...
[02:25:12] [Server thread/INFO]: [PvPManager] Closed SQLITE storage
[02:25:12] [Server thread/INFO]: [random_teleport-1.21.4] Disabling random_teleport-1.21.4 v2.2
[02:25:12] [Server thread/INFO]: [random_teleport-1.21.4] stop
[02:25:12] [Server thread/INFO]: [Rewards] Disabling Rewards v1.5
[02:25:12] [Server thread/INFO]: [SetSpawn] Disabling SetSpawn v5.4
[02:25:12] [Server thread/INFO]: [SetSpawn] Disabled!
[02:25:12] [Server thread/INFO]: [SimpleHomes] Disabling SimpleHomes v1.3.0
[02:25:12] [Server thread/INFO]: [SkinsRestorer] Disabling SkinsRestorer v15.6.1
[02:25:12] [Server thread/INFO]: [SmoothTimber] Disabling SmoothTimber v1.27.4
[02:25:12] [Server thread/INFO]: [SpawnerMeta] Disabling SpawnerMeta v25.0
[02:25:12] [Server thread/INFO]: [SpawnerMeta v25.0] disabled!
[02:25:12] [Server thread/INFO]: [JustTPA] Disabling JustTPA v20250220c
[02:25:12] [Server thread/INFO]: [JustTPA] JustTPA disabled
[02:25:12] [Server thread/INFO]: [voicechat] Disabling voicechat v2.5.26
[02:25:12] [Server thread/INFO]: [Vulcan] Disabling Vulcan v2.9.5
[02:25:12] [Server thread/INFO]: [DecentHolograms] Disabling DecentHolograms v2.8.16
[02:25:12] [Server thread/INFO]: [AuthMe] Disabling AuthMe v5.7.0-FORK-b53
[02:25:12] [Server thread/INFO]: [AuthMe] AuthMe 5.7.0-FORK-b53 is unloaded successfully!
[02:25:12] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.35-SNAPSHOT (build 3583)
[02:25:12] [Server thread/INFO]: [ChestSort] Disabling ChestSort v14.2.0
[02:25:12] [Server thread/INFO]: [CMILib] Disabling CMILib v1.5.4.0
[02:25:12] [Server thread/INFO]: [VotifierPlus] Disabling VotifierPlus v1.4
[02:25:12] [Server thread/INFO]: [VotifierPlus] Votifier disabled.
[02:25:12] [Votifier I/O/WARN]: [VotifierPlus] Votifier socket closed.
[02:25:12] [Server thread/INFO]: [TAB] Disabling TAB v5.0.7
[02:25:12] [Server thread/INFO]: [TAB] Disabled in 0ms
[02:25:12] [Server thread/INFO]: [WildStacker] Disabling WildStacker v2024.4
[02:25:12] [Server thread/INFO]: [WildStacker] Cancelling tasks...
[02:25:12] [Server thread/INFO]: [WildStacker] Shutting down stacking service...
[02:25:12] [Server thread/INFO]: [WildStacker] Performing entity&items save
[02:25:12] [Server thread/INFO]: [WildStacker] Shutting down database executor
[02:25:12] [Server thread/INFO]: [WildStacker] Clearing database...
[02:25:12] [Server thread/INFO]: [WildStacker] Stopping executor...
[02:25:12] [Server thread/INFO]: [packetevents] Disabling packetevents v2.7.0
[02:25:12] [Server thread/INFO]: [GSit] Disabling GSit v2.2.0
[02:25:12] [Server thread/INFO]: [WorldGuard] Unregistering session handler dev.geco.gsit.link.worldguard.RegionFlagHandler
[02:25:12] [Server thread/INFO]: [GSit] The plugin was successfully disabled.
[02:25:12] [Server thread/INFO]: [Essentials] Disabling Essentials v2.21.1-dev+5-dabe687
[02:25:12] [Server thread/INFO]: [ViaRewind] Disabling ViaRewind v4.0.5
[02:25:12] [Server thread/INFO]: [Geyser-Spigot] Disabling Geyser-Spigot v2.4.4-SNAPSHOT
[02:25:12] [Server thread/INFO]: [Geyser-Spigot] Shutting down Geyser.
[02:25:12] [Server thread/INFO]: [Geyser-Spigot] Geyser shutdown successfully.
[02:25:12] [Server thread/INFO]: [GriefPrevention] Disabling GriefPrevention v16.18.4
[02:25:12] [Server thread/INFO]: [GriefPrevention] GriefPrevention disabled.
[02:25:12] [Server thread/INFO]: [ViaBackwards] Disabling ViaBackwards v5.2.1
[02:25:12] [Server thread/INFO]: [floodgate] Disabling floodgate v2.2.4-SNAPSHOT (b116-0e3163c)
[02:25:12] [Server thread/INFO]: [MultiWorld] Disabling MultiWorld v1.7.3-SNAPSHOT
[02:25:12] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion multiworld
[02:25:12] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin MultiWorld was disabled.
[02:25:12] [Server thread/INFO]: [WorldGuard] Disabling WorldGuard v7.0.12+829a4a4
[02:25:12] [Server thread/INFO]: [WorldGuard] Shutting down executor and cancelling any pending tasks...
[02:25:12] [Server thread/INFO]: [FacilisCommon] Disabling FacilisCommon v1.0.7-SNAPSHOT
[02:25:12] [Server thread/INFO]: [PlaceholderAPI] Disabling PlaceholderAPI v2.11.6
[02:25:12] [Server thread/INFO]: [WorldEdit] Disabling WorldEdit v7.3.9+6959-7adf70b
[02:25:12] [Server thread/INFO]: Unregistering com.sk89q.worldedit.bukkit.BukkitServerInterface from WorldEdit
[02:25:12] [Server thread/INFO]: [ProtocolLib] Disabling ProtocolLib v5.4.0-SNAPSHOT-736
[02:25:12] [Server thread/INFO]: [Vault] Disabling Vault v2.10.0
[02:25:12] [Server thread/INFO]: [LuckPerms] Disabling LuckPerms v5.4.131
[02:25:12] [Server thread/INFO]: [LuckPerms] Starting shutdown process...
[02:25:12] [Server thread/INFO]: [LuckPerms] Closing storage...
[02:25:12] [Server thread/INFO]: [LuckPerms] Goodbye!
[02:25:12] [Server thread/INFO]: [ViaVersion] Disabling ViaVersion v5.2.1
[02:25:12] [Server thread/INFO]: [ViaVersion] ViaVersion has been disabled; uninjected the platform and shut down the scheduler.
[02:25:12] [Server thread/INFO]: Saving players
[02:25:13] [Server thread/INFO]: Saving worlds
[02:25:13] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld
[02:25:13] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world'
[02:25:13] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world'
[02:25:13] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world'
[02:25:13] [WebSocketConnectReadThread-316/INFO]: [Geyser-Spigot] The skin uploader has been closed
[02:25:13] [Server thread/INFO]: [ChunkHolderManager] Saved 49 block chunks, 49 entity chunks, 0 poi chunks in world 'world' in 0.12s
[02:25:13] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_nether]'/minecraft:the_nether
[02:25:13] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_nether'
[02:25:13] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_nether'
[02:25:13] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_nether'
[02:25:13] [Server thread/INFO]: [ChunkHolderManager] Saved 49 block chunks, 49 entity chunks, 0 poi chunks in world 'world_nether' in 0.05s
[02:25:13] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_the_end]'/minecraft:the_end
[02:25:13] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_the_end'
[02:25:13] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_the_end'
[02:25:13] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_the_end'
[02:25:13] [Server thread/INFO]: [ChunkHolderManager] Saved 49 block chunks, 49 entity chunks, 0 poi chunks in world 'world_the_end' in 0.02s
[02:25:13] [Server thread/INFO]: ThreadedAnvilChunkStorage (world): All chunks are saved
[02:25:13] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[02:25:13] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[02:25:13] [Server thread/INFO]: ThreadedAnvilChunkStorage: All dimensions are saved