Paste #129641: Denizen and Citizens stop working after Denizen 1.3.1 b7081-DEV and Citizens 2.035-b3598 On final Paper 1.21.1 server

Date: 2025/01/02 20:03:58 UTC-08:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[21:20:24] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.5+11-LTS; Amazon.com Inc. Corretto-21.0.5.11.1) on Windows 11 10.0 (amd64)
[21:20:24] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.1-132-ver/1.21.1@b48403b (2024-11-21T10:14:27Z) for Minecraft 1.21.1
[21:20:24] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[21:20:26] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins\Citizens-2.0.37-b3675.jar'...
[21:20:26] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Remapping plugin 'plugins\Denizen-1.3.1-b7121-DEV.jar'...
[21:20:27] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins\Citizens-2.0.37-b3675.jar' in 1406ms.
[21:20:27] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Done remapping plugin 'plugins\Denizen-1.3.1-b7121-DEV.jar' in 1433ms.
[21:20:27] [ServerMain/INFO]: [FileProviderSource] The spark plugin will not be loaded as this server bundles the spark profiler.
[21:20:27] [ServerMain/INFO]: [PluginInitializerManager] Initialized 146 plugins
[21:20:27] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (1):
 - Minepacks (2.4.31.5-T20241222133724)
[21:20:27] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (145):
 - ATopPlayers (1.0), AdvancedEnchantments (9.14.7), Alces (2.0), AnimatedScoreboard (0.3.5), ArmorStandEditor (1.21.1-47.2), AxTrade (1.12.2), BetterChests (Dev - 9), BetterRTP (3.6.13), BetterStructures (1.7.7), BlockEffects (4.0), BlueMap (5.5), BlueMap-Auth (0.1.0), BlueMap-Chat (0.2.0), BlueMap-Towny (2.1.1), BlueMapDeathMarkers (1.3), CMILib (1.5.2.6), ChestShop (3.12.2 (build 353)), ChunkManager (1.0.9), Chunky (1.4.28), Citizens (2.0.37-SNAPSHOT (build 3675)), CoreProtect (22.4), CraftingStore (2.9.3), CreeperRecover (1.0.12), CustomItemGenerators (Dev - 1), DHSupport (0.4.0), DailyRewardsPlus (1.4.5), DecentHolograms (2.8.12), DeluxeMenus (1.14.1-DEV-183), Denizen (1.3.1-SNAPSHOT (build 7121-DEV)), DyedBackpacks (Build 3 (git d4e0e45)), EliteMobs (9.2.3), EnchantsSquared (2.5.15), Essentials (2.21.0-dev+154-667b0f7), EssentialsChat (2.21.0-dev+154-667b0f7), EssentialsDiscord (2.21.0-dev+154-667b0f7), EssentialsDiscordLink (2.21.0-dev+154-667b0f7), EssentialsProtect (2.21.0-dev+154-667b0f7), EssentialsSpawn (2.21.0-dev+154-667b0f7), ExcellentCrates (5.3.5), ExtraContexts (2.0-SNAPSHOT), FastAsyncWorldEdit (2.12.4-SNAPSHOT-1011;7160792), FastMachines (Dev - 36), FluffyMachines (Dev - 8), GPS (2.20.0), Geyser-Spigot (2.6.0-SNAPSHOT), GraveStonesPlus (1.7.1), GuizhanCraft (Dev - 1), GuizhanLibPlugin (Build 57 (git 42c52f1)), HMCCosmetics (2.7.3), HeadDatabase (4.20.4), HibiscusCommons (0.4.6), IABlockUpdater (0.1), ImageMaps (1.0.10), InfinityExpansion2 (UNOFFICIAL), Interactions (2.8.1), InteractiveChat (4.2.16.0), InvSeePlusPlus (0.29.11), InvSeePlusPlus_Clear (0.29.11), InvSeePlusPlus_Give (0.29.11), InventoryRollbackPlus (1.6.21), InvisibleItemFrames (2.16.2), ItemEdit (3.6.3), ItemsAdder (4.0.4), Jobs (5.2.4.5), LibsDisguises (10.0.44-SNAPSHOT), LoneLibs (1.0.60), Lootin (11.3), LuckPerms (5.4.151), MCPets (4.1.4), MOTD (2.3.11), Magic8Ball (Dev - 5), MobCapturer (Dev - 37), ModelEngine (R4.0.8), MoreResearches (Dev - 6), MorphRedeem (1.2.5), Multiverse-Core (4.3.14), Multiverse-NetherPortals (4.3.0-SNAPSHOT), Multiverse-Portals (4.3.0-SNAPSHOT), MythicAchievements (1.1.0-SNAPSHOT-b46c8cab), MythicCrucible (2.2.0-SNAPSHOT), MythicDungeons (2.0.0-SNAPSHOT), MythicMobs (5.8.0-SNAPSHOT-c9fb3fb5), NBTAPI (2.14.1), Networks (Dev - 4), PlaceholderAPI (2.11.6), PlayerKits2 (1.14.3), PlayerWarps (7.7.1), PlotSquared (7.4.1-Premium), ProtocolLib (5.3.0), PyroFishingPro (4.9.25), PyroLib (1.4.5), PyroMining (4.5.0), QSFindItemAddOn (2.0.7.2-RELEASE), Quests (5.1.5-b512), QuestsEffect (2.6), QuestsGUI (2.0.0-beta), QuickShop-Hikari (6.2.0.7), Rankup (3.14.4), ReFrame (7), RelicsOfCthonia (Dev - 14), SFAdvancements (Dev - 9), SFCalc (Dev - 42), SFMobDrops (Dev - 7), SafariNet (1.16.13-SNAPSHOT), ServersNPC (5.0), SfChunkInfo (Dev - 12), Shopkeepers (2.23.3), Skript (2.9.5), SlimeHUD (Dev - 4), SlimeInABukkit (2.2), Slimefun (5d6f623-Insider), SlimefunTranslation (UNOFFICIAL), SlimyRepair (Dev - 1), SoulJars (DEV - 24 (git 78d1c6fa)), Spleef_reloaded (1.0), Supreme (Dev - 5), TAB (5.0.3), TerraformGenerator (18.1.0), TimeVote (1.2-SNAPSHOT), Towny (0.101.0.4), TownyChat (0.117), TownyFlight (1.13.0), TradeManager (1.4.1), Unite (1.1.8), Vault (1.7.3-b131), Versus (1.5.1), ViaBackwards (5.2.1), ViaRewind (4.0.5), ViaVersion (5.2.1), VillagerMarket (1.12.1), VillagerTrade (Dev - 6), VotifierPlus (1.3), VotingPlugin (6.18), Wildernether (Dev - 2), WorldBorder (1.2), WorldGuard (7.0.12+829a4a4), WorldGuardExtraFlags (4.2.4-SNAPSHOT), floodgate (2.2.3-SNAPSHOT (b114-83fbd6e)), mcMMO (2.2.029), nightcore (2.7.1), packetevents (2.7.0), skript-itemsadder (1.6.1), xaero-map-spigot (1.0.0), zAuctionHouseV3 (3.2.2.9), zMenu (1.0.3.7)
[21:20:31] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[21:20:32] [ServerMain/INFO]: Loaded 1290 recipes
[21:20:33] [ServerMain/INFO]: Loaded 1412 advancements
[21:20:33] [Server thread/INFO]: Starting minecraft server version 1.21.1
[21:20:33] [Server thread/INFO]: Loading properties
[21:20:33] [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)
[21:20:34] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[21:20:34] [Server thread/INFO]: Server Ping Player Sample Count: 12
[21:20:34] [Server thread/INFO]: Using 6 threads for Netty based IO
[21:20:34] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend migrating to the spark profiler.
    For more information please visit: https://github.com/PaperMC/Paper/discussions/10565
[21:20:34] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 6 worker threads, and population gen parallelism of 6 threads
[21:20:34] [Server thread/INFO]: Default game type: SURVIVAL
[21:20:34] [Server thread/INFO]: Generating keypair
[21:20:34] [Server thread/INFO]: Starting Minecraft server on 192.168.0.254:25565
[21:20:34] [Server thread/INFO]: Using default channel type
[21:20:34] [Server thread/INFO]: Paper: Using Java compression from Velocity.
[21:20:34] [Server thread/INFO]: Paper: Using Java cipher from Velocity.
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loading 4 libraries... please wait
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-api\4.16.0\adventure-api-4.16.0.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-key\4.16.0\adventure-key-4.16.0.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library J:\AlbionMC Server\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library J:\AlbionMC Server\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library J:\AlbionMC Server\libraries\org\jetbrains\annotations\24.1.0\annotations-24.1.0.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-platform-bukkit\4.3.2\adventure-platform-bukkit-4.3.2.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-platform-api\4.3.2\adventure-platform-api-4.3.2.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-text-serializer-bungeecord\4.3.2\adventure-text-serializer-bungeecord-4.3.2.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-text-serializer-legacy\4.13.1\adventure-text-serializer-legacy-4.13.1.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-nbt\4.13.1\adventure-nbt-4.13.1.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-text-serializer-gson-legacy-impl\4.13.1\adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-platform-facet\4.3.2\adventure-platform-facet-4.3.2.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-platform-viaversion\4.3.2\adventure-platform-viaversion-4.3.2.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-text-minimessage\4.16.0\adventure-text-minimessage-4.16.0.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-text-serializer-gson\4.16.0\adventure-text-serializer-gson-4.16.0.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-text-serializer-json\4.16.0\adventure-text-serializer-json-4.16.0.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library J:\AlbionMC Server\libraries\net\kyori\option\1.0.0\option-1.0.0.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library J:\AlbionMC Server\libraries\com\google\code\gson\gson\2.8.0\gson-2.8.0.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 5 libraries... please wait
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library J:\AlbionMC Server\libraries\ch\ethz\globis\phtree\phtree\2.8.1\phtree-2.8.1.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library J:\AlbionMC Server\libraries\org\joml\joml\1.10.8\joml-1.10.8.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library J:\AlbionMC Server\libraries\it\unimi\dsi\fastutil\8.5.15\fastutil-8.5.15.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-platform-bukkit\4.3.3\adventure-platform-bukkit-4.3.3.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-platform-api\4.3.3\adventure-platform-api-4.3.3.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-text-serializer-bungeecord\4.3.3\adventure-text-serializer-bungeecord-4.3.3.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-text-serializer-legacy\4.13.1\adventure-text-serializer-legacy-4.13.1.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-nbt\4.13.1\adventure-nbt-4.13.1.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library J:\AlbionMC Server\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library J:\AlbionMC Server\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library J:\AlbionMC Server\libraries\org\jetbrains\annotations\24.0.1\annotations-24.0.1.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-text-serializer-gson\4.13.1\adventure-text-serializer-gson-4.13.1.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-text-serializer-gson-legacy-impl\4.13.1\adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-platform-facet\4.3.3\adventure-platform-facet-4.3.3.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-platform-viaversion\4.3.3\adventure-platform-viaversion-4.3.3.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-text-minimessage\4.17.0\adventure-text-minimessage-4.17.0.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-api\4.17.0\adventure-api-4.17.0.jar
[21:20:35] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-key\4.17.0\adventure-key-4.17.0.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loading 3 libraries... please wait
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-api\4.14.0\adventure-api-4.14.0.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-key\4.14.0\adventure-key-4.14.0.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library J:\AlbionMC Server\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library J:\AlbionMC Server\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library J:\AlbionMC Server\libraries\org\jetbrains\annotations\24.0.1\annotations-24.0.1.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-text-serializer-gson\4.14.0\adventure-text-serializer-gson-4.14.0.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-text-serializer-json\4.14.0\adventure-text-serializer-json-4.14.0.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library J:\AlbionMC Server\libraries\com\google\code\gson\gson\2.8.0\gson-2.8.0.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-text-serializer-bungeecord\4.3.0\adventure-text-serializer-bungeecord-4.3.0.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-text-serializer-legacy\4.13.0\adventure-text-serializer-legacy-4.13.0.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loading 2 libraries... please wait
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library J:\AlbionMC Server\libraries\org\mongodb\mongodb-driver-sync\4.8.1\mongodb-driver-sync-4.8.1.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library J:\AlbionMC Server\libraries\org\mongodb\bson\4.8.1\bson-4.8.1.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library J:\AlbionMC Server\libraries\org\mongodb\mongodb-driver-core\4.8.1\mongodb-driver-core-4.8.1.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library J:\AlbionMC Server\libraries\org\mongodb\bson-record-codec\4.8.1\bson-record-codec-4.8.1.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library J:\AlbionMC Server\libraries\redis\clients\jedis\4.3.1\jedis-4.3.1.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library J:\AlbionMC Server\libraries\org\slf4j\slf4j-api\1.7.36\slf4j-api-1.7.36.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library J:\AlbionMC Server\libraries\org\apache\commons\commons-pool2\2.11.1\commons-pool2-2.11.1.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library J:\AlbionMC Server\libraries\org\json\json\20220320\json-20220320.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library J:\AlbionMC Server\libraries\com\google\code\gson\gson\2.8.9\gson-2.8.9.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loading 4 libraries... please wait
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library J:\AlbionMC Server\libraries\org\apache\httpcomponents\httpmime\4.5.14\httpmime-4.5.14.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library J:\AlbionMC Server\libraries\org\apache\httpcomponents\httpclient\4.5.14\httpclient-4.5.14.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library J:\AlbionMC Server\libraries\org\apache\httpcomponents\httpcore\4.4.16\httpcore-4.4.16.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library J:\AlbionMC Server\libraries\commons-logging\commons-logging\1.2\commons-logging-1.2.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library J:\AlbionMC Server\libraries\commons-codec\commons-codec\1.11\commons-codec-1.11.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library J:\AlbionMC Server\libraries\org\apache\commons\commons-math3\3.6.1\commons-math3-3.6.1.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library J:\AlbionMC Server\libraries\net\sourceforge\streamsupport\speedy-math\1.0.0\speedy-math-1.0.0.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library J:\AlbionMC Server\libraries\org\fusesource\jansi\jansi\2.4.1\jansi-2.4.1.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [BlueMap] Loading 1 libraries... please wait
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [BlueMap] Loaded library J:\AlbionMC Server\libraries\com\flowpowered\flow-math\1.0.3\flow-math-1.0.3.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loading 1 libraries... please wait
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library J:\AlbionMC Server\libraries\org\openjdk\nashorn\nashorn-core\15.3\nashorn-core-15.3.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library J:\AlbionMC Server\libraries\org\ow2\asm\asm\7.3.1\asm-7.3.1.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library J:\AlbionMC Server\libraries\org\ow2\asm\asm-commons\7.3.1\asm-commons-7.3.1.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library J:\AlbionMC Server\libraries\org\ow2\asm\asm-analysis\7.3.1\asm-analysis-7.3.1.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library J:\AlbionMC Server\libraries\org\ow2\asm\asm-tree\7.3.1\asm-tree-7.3.1.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library J:\AlbionMC Server\libraries\org\ow2\asm\asm-util\7.3.1\asm-util-7.3.1.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loading 4 libraries... please wait
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-api\4.17.0\adventure-api-4.17.0.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-key\4.17.0\adventure-key-4.17.0.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library J:\AlbionMC Server\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library J:\AlbionMC Server\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library J:\AlbionMC Server\libraries\org\jetbrains\annotations\24.1.0\annotations-24.1.0.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-text-minimessage\4.17.0\adventure-text-minimessage-4.17.0.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-platform-bukkit\4.3.3\adventure-platform-bukkit-4.3.3.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-platform-api\4.3.3\adventure-platform-api-4.3.3.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-text-serializer-bungeecord\4.3.3\adventure-text-serializer-bungeecord-4.3.3.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-text-serializer-legacy\4.13.1\adventure-text-serializer-legacy-4.13.1.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-nbt\4.13.1\adventure-nbt-4.13.1.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-text-serializer-gson\4.13.1\adventure-text-serializer-gson-4.13.1.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-text-serializer-gson-legacy-impl\4.13.1\adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-platform-facet\4.3.3\adventure-platform-facet-4.3.3.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-platform-viaversion\4.3.3\adventure-platform-viaversion-4.3.3.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library J:\AlbionMC Server\libraries\org\apache\commons\commons-lang3\3.14.0\commons-lang3-3.14.0.jar
[21:20:36] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loading 2 libraries... please wait
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library J:\AlbionMC Server\libraries\com\zaxxer\HikariCP\6.0.0\HikariCP-6.0.0.jar
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library J:\AlbionMC Server\libraries\org\slf4j\slf4j-api\1.7.36\slf4j-api-1.7.36.jar
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library J:\AlbionMC Server\libraries\it\unimi\dsi\fastutil-core\8.5.13\fastutil-core-8.5.13.jar
[21:20:37] [Server thread/INFO]: [nightcore] Server version detected as Paper 1.21.1.
[21:20:37] [Server thread/INFO]: [nightcore] [Core Components] ENTITY_ID_GENERATOR: Loaded
[21:20:37] [Server thread/INFO]: [nightcore] [Core Components] ITEM_NBT_COMPRESSOR: Loaded
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [xaero-map-spigot] Loading 1 libraries... please wait
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [xaero-map-spigot] Loaded library J:\AlbionMC Server\libraries\org\bstats\bstats-bukkit\3.0.0\bstats-bukkit-3.0.0.jar
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [xaero-map-spigot] Loaded library J:\AlbionMC Server\libraries\org\bstats\bstats-base\3.0.0\bstats-base-3.0.0.jar
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [Spleef_reloaded] Loading 1 libraries... please wait
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [Spleef_reloaded] Loaded library J:\AlbionMC Server\libraries\org\apache\commons\commons-lang3\3.12.0\commons-lang3-3.12.0.jar
[21:20:37] [Server thread/INFO]: [Minepacks] PCGF-PluginLib not installed. Switching to standalone mode!
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loading 5 libraries... please wait
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-api\4.16.0\adventure-api-4.16.0.jar
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-key\4.16.0\adventure-key-4.16.0.jar
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library J:\AlbionMC Server\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library J:\AlbionMC Server\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library J:\AlbionMC Server\libraries\org\jetbrains\annotations\24.1.0\annotations-24.1.0.jar
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-platform-bukkit\4.3.2\adventure-platform-bukkit-4.3.2.jar
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-platform-api\4.3.2\adventure-platform-api-4.3.2.jar
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-text-serializer-bungeecord\4.3.2\adventure-text-serializer-bungeecord-4.3.2.jar
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-nbt\4.13.1\adventure-nbt-4.13.1.jar
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-text-serializer-gson-legacy-impl\4.13.1\adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-platform-facet\4.3.2\adventure-platform-facet-4.3.2.jar
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-platform-viaversion\4.3.2\adventure-platform-viaversion-4.3.2.jar
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-text-minimessage\4.16.0\adventure-text-minimessage-4.16.0.jar
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-text-serializer-gson\4.16.0\adventure-text-serializer-gson-4.16.0.jar
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-text-serializer-json\4.16.0\adventure-text-serializer-json-4.16.0.jar
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library J:\AlbionMC Server\libraries\net\kyori\option\1.0.0\option-1.0.0.jar
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library J:\AlbionMC Server\libraries\com\google\code\gson\gson\2.8.0\gson-2.8.0.jar
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library J:\AlbionMC Server\libraries\net\kyori\adventure-text-serializer-legacy\4.16.0\adventure-text-serializer-legacy-4.16.0.jar
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [GraveStonesPlus] Loading 1 libraries... please wait
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [GraveStonesPlus] Loaded library J:\AlbionMC Server\libraries\org\openjdk\nashorn\nashorn-core\15.3\nashorn-core-15.3.jar
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [GraveStonesPlus] Loaded library J:\AlbionMC Server\libraries\org\ow2\asm\asm\7.3.1\asm-7.3.1.jar
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [GraveStonesPlus] Loaded library J:\AlbionMC Server\libraries\org\ow2\asm\asm-commons\7.3.1\asm-commons-7.3.1.jar
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [GraveStonesPlus] Loaded library J:\AlbionMC Server\libraries\org\ow2\asm\asm-analysis\7.3.1\asm-analysis-7.3.1.jar
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [GraveStonesPlus] Loaded library J:\AlbionMC Server\libraries\org\ow2\asm\asm-tree\7.3.1\asm-tree-7.3.1.jar
[21:20:37] [Server thread/INFO]: [SpigotLibraryLoader] [GraveStonesPlus] Loaded library J:\AlbionMC Server\libraries\org\ow2\asm\asm-util\7.3.1\asm-util-7.3.1.jar
[21:20:37] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.2.1
[21:20:37] [Server thread/INFO]: [ViaVersion] ViaVersion 5.2.1 is now loaded. Registering protocol transformers and injecting...
[21:20:38] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[21:20:38] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[21:20:38] [Server thread/INFO]: [ViaBackwards] Loading translations...
[21:20:38] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[21:20:38] [Server thread/INFO]: [ViaRewind] Registering protocols...
[21:20:38] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.151
[21:20:39] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[21:20:39] [Server thread/INFO]: [floodgate] Loading server plugin floodgate v2.2.3-SNAPSHOT (b114-83fbd6e)
[21:20:39] [Server thread/INFO]: [floodgate] Took 456ms to boot Floodgate
[21:20:39] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.2.1
[21:20:39] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[21:20:39] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0-dev+154-667b0f7
[21:20:39] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.12.4-SNAPSHOT-1011;7160792
[21:20:40] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@47ebfba5]
[21:20:40] [Server thread/INFO]: [Geyser-Spigot] Loading server plugin Geyser-Spigot v2.6.0-SNAPSHOT
[21:20:41] [Server thread/INFO]: [Geyser-Spigot] Loading extensions...
[21:20:41] [Server thread/INFO]: [Geyser-Spigot] Enabled extension ThirdPartyCosmetics
[21:20:41] [Server thread/INFO]: [Geyser-Spigot] Loaded 1 extension(s)
[21:20:41] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.3.0
[21:20:41] [Server thread/INFO]: [ViaRewind] Loading server plugin ViaRewind v4.0.5
[21:20:41] [Server thread/INFO]: [PlotSquared] Loading server plugin PlotSquared v7.4.1-Premium
[21:20:41] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.7.0
[21:20:42] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.12+829a4a4
[21:20:42] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.14
[21:20:42] [Server thread/INFO]: [LibsDisguises] Loading server plugin LibsDisguises v10.0.44-SNAPSHOT
[21:20:42] [Server thread/INFO]: [mcMMO] Loading server plugin mcMMO v2.2.029
[21:20:42] [Server thread/INFO]: [mcMMO] [D] Registered WG flags successfully!
[21:20:42] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.8.0-SNAPSHOT-c9fb3fb5
[21:20:42] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[21:20:42] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[21:20:42] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.37-SNAPSHOT (build 3675)
[21:20:42] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v22.4
[21:20:42] [Server thread/INFO]: [PyroLib] Loading server plugin PyroLib v1.4.5
[21:20:42] [Server thread/INFO]: [Slimefun] Loading server plugin Slimefun v5d6f623-Insider
[21:20:42] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.60
[21:20:42] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR4.0.8
[21:20:42] [Server thread/INFO]: [Towny] Loading server plugin Towny v0.101.0.4
[21:20:42] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.9.5
[21:20:42] [Server thread/INFO]: [Denizen] Loading server plugin Denizen v1.3.1-SNAPSHOT (build 7121-DEV)
[21:20:42] [Server thread/INFO]: [HeadDatabase] Loading server plugin HeadDatabase v4.20.4
[21:20:42] [Server thread/INFO]: [PyroFishingPro] Loading server plugin PyroFishingPro v4.9.25
[21:20:42] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.5.2.6
[21:20:42] [Server thread/INFO]: [GuizhanLibPlugin] Loading server plugin GuizhanLibPlugin vBuild 57 (git 42c52f1)
[21:20:42] [Server thread/INFO]: [ItemsAdder] Loading server plugin ItemsAdder v4.0.4
[21:20:43] [Server thread/WARN]: [ItemsAdder] 'allow_other_plugins_resourcepacks' enabled. Do not report resourcepack loading issues.
[21:20:43] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.12
[21:20:43] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.4-SNAPSHOT
[21:20:43] [Server thread/INFO]: [Jobs] Loading server plugin Jobs v5.2.4.5
[21:20:43] [Server thread/INFO]: [SlimefunTranslation] Loading server plugin SlimefunTranslation vUNOFFICIAL
[21:20:43] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.21.0-dev+154-667b0f7
[21:20:43] [Server thread/INFO]: [VotifierPlus] Loading server plugin VotifierPlus v1.3
[21:20:43] [Server thread/INFO]: [GPS] Loading server plugin GPS v2.20.0
[21:20:43] [Server thread/INFO]: [Unite] Loading server plugin Unite v1.1.8
[21:20:43] [Server thread/INFO]: [BlueMap] Loading server plugin BlueMap v5.5
[21:20:43] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.14.1
[21:20:43] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[21:20:43] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[21:20:43] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'NBTAPI' to create a bStats instance!
[21:20:43] [Server thread/INFO]: [TerraformGenerator] Loading server plugin TerraformGenerator v18.1.0
[21:20:43] [Server thread/INFO]: [EliteMobs] Loading server plugin EliteMobs v9.2.3
[21:20:43] [Server thread/INFO]: [EliteMobs] MagmaCore v1.7 initialized!
[21:20:43] [Server thread/INFO]: [EliteMobs]  WorldGuard detected.
[21:20:43] [Server thread/INFO]: [EliteMobs]  Enabling flags:
[21:20:43] [Server thread/INFO]: [EliteMobs]  - elitemob-spawning
[21:20:43] [Server thread/INFO]: [EliteMobs]  - elitemob-only-spawning
[21:20:43] [Server thread/INFO]: [EliteMobs]  - elitemobs-antiexploit
[21:20:43] [Server thread/INFO]: [EliteMobs]  - elitemobs-dungeon
[21:20:43] [Server thread/INFO]: [EliteMobs]  - elitemobs-events
[21:20:43] [Server thread/INFO]: [EliteMobs]  - elitemobs-minimum-level
[21:20:43] [Server thread/INFO]: [EliteMobs] - elitemobs-maximum-level
[21:20:43] [Server thread/INFO]: [EliteMobs]  - elitemobs-explosion-regen
[21:20:43] [Server thread/INFO]: [EliteMobs]  - elitemobs-explosion-block-damage
[21:20:43] [Server thread/INFO]: [AdvancedEnchantments] Loading server plugin AdvancedEnchantments v9.14.7
[21:20:43] [Server thread/INFO]: [zMenu] Loading server plugin zMenu v1.0.3.7
[21:20:43] [Server thread/INFO]: [SlimeHUD] Loading server plugin SlimeHUD vDev - 4
[21:20:43] [Server thread/INFO]: [EssentialsDiscord] Loading server plugin EssentialsDiscord v2.21.0-dev+154-667b0f7
[21:20:43] [Server thread/INFO]: [ChestShop] Loading server plugin ChestShop v3.12.2 (build 353)
[21:20:43] [Server thread/INFO]: [ChestShop] WorldGuard version 7.0.12+829a4a4 loaded.
[21:20:43] [Server thread/INFO]: [VotingPlugin] Loading server plugin VotingPlugin v6.18
[21:20:43] [Server thread/INFO]: [Quests] Loading server plugin Quests v5.1.5-b512
[21:20:43] [Server thread/INFO]: [PlayerWarps] Loading server plugin PlayerWarps v7.7.1
[21:20:43] [Server thread/INFO]: [QuickShop-Hikari] Loading server plugin QuickShop-Hikari v6.2.0.7
[21:20:43] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Execute the initialization sequence
[21:20:43] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Bootloader preparing for startup, please wait...
[21:20:43] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Initializing libraries...
[21:20:43] [Thread-11/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari] Maven repository mirror test result:
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari] [US] APACHE: 60ms
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari] [US] CENTRAL: 62ms
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari] [CN] TENCENT: 724ms
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari] [CN] HUAWEI: 1265ms
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari] [CN] ALIYUN: 3839ms
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading 12 libraries (0 skipped libraries)...
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library org.apache.commons:commons-lang3:3.14.0 [1/12]
[21:20:47] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
[21:20:47] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: Defaulting to no-operation (NOP) logger implementation
[21:20:47] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library org.apache.commons:commons-compress:1.25.0 [2/12]
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.google.code.gson:gson:2.10.1 [3/12]
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.google.guava:guava:33.1.0-jre [4/12]
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.rollbar:rollbar-java:1.9.0 [5/12]
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library cc.carm.lib:easysql-hikaricp:0.4.7 [6/12]
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.h2database:h2:2.1.214 [7/12]
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.konghq:unirest-java:3.14.5 [8/12]
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library net.sourceforge.csvjdbc:csvjdbc:1.0.42 [9/12]
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library org.dom4j:dom4j:2.1.4 [10/12]
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.vdurmont:semver4j:3.1.0 [11/12]
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.ghostchu.crowdin:crowdinota:1.0.3 [12/12]
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Initialing Unirest...
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Initializing platform...
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Platform detected: Paper
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari] Slf4jLogger initialized
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Platform initialized: com.ghostchu.quickshop.platform.paper.PaperPlatform
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Boot QuickShop instance...
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Creating QuickShop instance...
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari] Registering Bukkit Service: com.ghostchu.quickshop.api.QuickShopProvider
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari - Early boot step - Booting up
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari] Self testing...
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari] Reading the configuration...
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari] [ConfigUpdater] Saving configuration changes...
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari] Setting up privacy controller...
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari] Setting up QuickShop registry....
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari] Setting up metrics manager...
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari] Loading player name and unique id mapping...
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari] Loading translations (This may take a while)...
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari] Please wait us fetch the translation updates from Crowdin OTA service...
[21:20:47] [Server thread/INFO]: [CrowdinOTA] Downloading Crowdin distribution manifest from remote server...
[21:20:47] [Server thread/INFO]: [OTAFileInstance-0] Downloading translations for 0 locales...
[21:20:47] [Server thread/INFO]: [OTAFileInstance-1] Downloading translations for 0 locales...
[21:20:47] [Server thread/INFO]: [QuickShop-Hikari] Loading up translations from Crowdin OTA, this may need a while...
[21:20:48] [Server thread/INFO]: [QuickShop-Hikari] Loading up translations from Crowdin OTA, this may need a while...
[21:20:48] [Server thread/INFO]: [QuickShop-Hikari] Register InventoryWrapper...
[21:20:48] [Server thread/INFO]: [QuickShop-Hikari] Initializing NexusManager...
[21:20:48] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari - Early boot step - Complete
[21:20:48] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Complete (5212ms). Waiting for enable...
[21:20:48] [Server thread/INFO]: [MythicCrucible] Loading server plugin MythicCrucible v2.2.0-SNAPSHOT
[21:20:48] [Server thread/INFO]: [Multiverse-Portals] Loading server plugin Multiverse-Portals v4.3.0-SNAPSHOT
[21:20:48] [Server thread/INFO]: [BetterStructures] Loading server plugin BetterStructures v1.7.7
[21:20:48] [Server thread/INFO]: [BetterStructures] MagmaCore v1.7 initialized!
[21:20:48] [Server thread/INFO]: [BetterStructures] Enabling flags:
[21:20:48] [Server thread/INFO]: [BetteStructures] - betterstructures-protect
[21:20:48] [Server thread/INFO]: [InvSee++] Loading server plugin InvSeePlusPlus v0.29.11
[21:20:48] [Server thread/INFO]: [HibiscusCommons] Loading server plugin HibiscusCommons v0.4.6
[21:20:48] [Server thread/INFO]: [nightcore] Loading server plugin nightcore v2.7.1
[21:20:48] [Server thread/INFO]: [WorldBorder] Loading server plugin WorldBorder v1.2
[21:20:48] [Server thread/INFO]: [BlueMap-Auth] Loading server plugin BlueMap-Auth v0.1.0
[21:20:48] [Server thread/INFO]: [ServersNPC] Loading server plugin ServersNPC v5.0
[21:20:48] [Server thread/INFO]: [zAuctionHouseV3] Loading server plugin zAuctionHouseV3 v3.2.2.9
[21:20:48] [Server thread/INFO]: [xaero-map-spigot] Loading server plugin xaero-map-spigot v1.0.0
[21:20:48] [Server thread/INFO]: [Wildernether] Loading server plugin Wildernether vDev - 2
[21:20:48] [Server thread/INFO]: [VillagerTrade] Loading server plugin VillagerTrade vDev - 6
[21:20:48] [Server thread/INFO]: [VillagerMarket] Loading server plugin VillagerMarket v1.12.1
[21:20:48] [Server thread/INFO]: [Versus] Loading server plugin Versus v1.5.1
[21:20:48] [Server thread/INFO]: [TradeManager] Loading server plugin TradeManager v1.4.1
[21:20:48] [Server thread/INFO]: [TownyFlight] Loading server plugin TownyFlight v1.13.0
[21:20:48] [Server thread/INFO]: [TownyChat] Loading server plugin TownyChat v0.117
[21:20:48] [Server thread/INFO]: [TimeVote] Loading server plugin TimeVote v1.2-SNAPSHOT
[21:20:48] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.0.3
[21:20:48] [Server thread/INFO]: [Supreme] Loading server plugin Supreme vDev - 5
[21:20:48] [Server thread/INFO]: [Spleef_reloaded] Loading server plugin Spleef_reloaded v1.0
[21:20:48] [Server thread/INFO]: [SoulJars] Loading server plugin SoulJars vDEV - 24 (git 78d1c6fa)
[21:20:48] [Server thread/INFO]: [SlimyRepair] Loading server plugin SlimyRepair vDev - 1
[21:20:48] [Server thread/INFO]: [SlimeInABukkit] Loading server plugin SlimeInABukkit v2.2
[21:20:48] [Server thread/INFO]: [SFAdvancements] Loading server plugin SFAdvancements vDev - 9
[21:20:48] [Server thread/INFO]: [skript-itemsadder] Loading server plugin skript-itemsadder v1.6.1
[21:20:48] [Server thread/INFO]: [Shopkeepers] Loading server plugin Shopkeepers v2.23.3
[21:20:48] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (290 ms).
[21:20:48] [Server thread/INFO]: [Shopkeepers] Loading config.
[21:20:48] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
[21:20:48] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[21:20:48] [Server thread/INFO]: [Shopkeepers] Couldn't register WorldGuard flag 'allow-shop': A flag already exists by the name allow-shop
[21:20:48] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[21:20:48] [Server thread/INFO]: [SFMobDrops] Loading server plugin SFMobDrops vDev - 7
[21:20:48] [Server thread/INFO]: [SfChunkInfo] Loading server plugin SfChunkInfo vDev - 12
[21:20:48] [Server thread/INFO]: [SFCalc] Loading server plugin SFCalc vDev - 42
[21:20:48] [Server thread/INFO]: [SafariNet] Loading server plugin SafariNet v1.16.13-SNAPSHOT
[21:20:48] [Server thread/INFO]: [RelicsOfCthonia] Loading server plugin RelicsOfCthonia vDev - 14
[21:20:48] [Server thread/INFO]: [ReFrame] Loading server plugin ReFrame v7
[21:20:48] [Server thread/INFO]: [Rankup] Loading server plugin Rankup v3.14.4
[21:20:48] [Server thread/INFO]: [QuestsGUI] Loading server plugin QuestsGUI v2.0.0-beta
[21:20:48] [Server thread/INFO]: [QuestsEffect] Loading server plugin QuestsEffect v2.6
[21:20:48] [Server thread/INFO]: [QSFindItemAddOn] Loading server plugin QSFindItemAddOn v2.0.7.2-RELEASE
[21:20:48] [Server thread/INFO]: [QuickShop-FindItemAddOn] [MAIN] A Shop Search AddOn for QuickShop developed by myzticbean
[21:20:48] [Server thread/INFO]: [PyroMining] Loading server plugin PyroMining v4.5.0
[21:20:48] [Server thread/INFO]: [PlayerKits2] Loading server plugin PlayerKits2 v1.14.3
[21:20:48] [Server thread/INFO]: [Networks] Loading server plugin Networks vDev - 4
[21:20:48] [Server thread/INFO]: [MythicDungeons] Loading server plugin MythicDungeons v2.0.0-SNAPSHOT
[21:20:48] [Server thread/INFO]: [MythicAchievements] Loading server plugin MythicAchievements v1.1.0-SNAPSHOT-b46c8cab
[21:20:48] [Server thread/INFO]: [Multiverse-NetherPortals] Loading server plugin Multiverse-NetherPortals v4.3.0-SNAPSHOT
[21:20:48] [Server thread/INFO]: [MOTD] Loading server plugin MOTD v2.3.11
[21:20:48] [Server thread/INFO]: [MorphRedeem] Loading server plugin MorphRedeem v1.2.5
[21:20:48] [Server thread/INFO]: [MoreResearches] Loading server plugin MoreResearches vDev - 6
[21:20:48] [Server thread/INFO]: [MobCapturer] Loading server plugin MobCapturer vDev - 37
[21:20:48] [Server thread/INFO]: [Minepacks] Loading server plugin Minepacks v2.4.31.5-T20241222133724
[21:20:48] [Server thread/INFO]: [MCPets] Loading server plugin MCPets v4.1.4
[21:20:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mcpets [1.0.0]
[21:20:48] [Server thread/INFO]: [MCPets] : mcpets-dismount flag registered successfully !
[21:20:48] [Server thread/INFO]: [MCPets] : mcpets-despawn flag registered successfully !
[21:20:48] [Server thread/INFO]: [MCPets] : mcpets-dismount-flying flag registered successfully !
[21:20:48] [Server thread/INFO]: [MCPets] : mcpets-pet-player-damage flag registered successfully !
[21:20:48] [Server thread/INFO]: [Magic8Ball] Loading server plugin Magic8Ball vDev - 5
[21:20:48] [Server thread/INFO]: [Lootin] Loading server plugin Lootin v11.3
[21:20:48] [Server thread/INFO]: [Lootin] Found WorldGuard, registering lootin-container-access flag
[21:20:48] [Server thread/INFO]: [Lootin] Worldguard flag: lootin-container-access registered successfully
[21:20:48] [Server thread/INFO]: [ItemEdit] Loading server plugin ItemEdit v3.6.3
[21:20:48] [Server thread/INFO]: [InvSee++_Give] Loading server plugin InvSeePlusPlus_Give v0.29.11
[21:20:48] [Server thread/INFO]: [InvSee++_Clear] Loading server plugin InvSeePlusPlus_Clear v0.29.11
[21:20:48] [Server thread/INFO]: [InvisibleItemFrames] Loading server plugin InvisibleItemFrames v2.16.2
[21:20:48] [Server thread/INFO]: [InventoryRollbackPlus] Loading server plugin InventoryRollbackPlus v1.6.21
[21:20:48] [Server thread/INFO]: [InteractiveChat] Loading server plugin InteractiveChat v4.2.16.0
[21:20:48] [Server thread/INFO]: [Interactions] Loading server plugin Interactions v2.8.1
[21:20:48] [Server thread/INFO]: [InfinityExpansion2] Loading server plugin InfinityExpansion2 vUNOFFICIAL
[21:20:48] [Server thread/INFO]: [InfinityExpansion2] Loading libraries, please wait...
[21:20:48] [Server thread/INFO]: [InfinityExpansion2] If you stuck here for a long time, try to specify a mirror repository.
[21:20:48] [Server thread/INFO]: [InfinityExpansion2] Add -DcentralRepository=<url> to the JVM arguments.
[21:20:48] [Server thread/INFO]: [InfinityExpansion2] Loaded all required libraries.
[21:20:48] [Server thread/INFO]: [ImageMaps] Loading server plugin ImageMaps v1.0.10
[21:20:48] [Server thread/INFO]: [IABlockUpdater] Loading server plugin IABlockUpdater v0.1
[21:20:48] [Server thread/INFO]: [HMCCosmetics] Loading server plugin HMCCosmetics v2.7.3
[21:20:48] [Server thread/INFO]: [GuizhanCraft] Loading server plugin GuizhanCraft vDev - 1
[21:20:48] [Server thread/INFO]: [GraveStonesPlus] Loading server plugin GraveStonesPlus v1.7.1
[21:20:48] [Server thread/INFO]: [FluffyMachines] Loading server plugin FluffyMachines vDev - 8
[21:20:48] [Server thread/INFO]: [FastMachines] Loading server plugin FastMachines vDev - 36
[21:20:48] [Server thread/INFO]: [ExtraContexts] Loading server plugin ExtraContexts v2.0-SNAPSHOT
[21:20:48] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v5.3.5
[21:20:48] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.0-dev+154-667b0f7
[21:20:48] [Server thread/INFO]: [EssentialsProtect] Loading server plugin EssentialsProtect v2.21.0-dev+154-667b0f7
[21:20:48] [Server thread/INFO]: [net.essentialsx.discordlink.EssentialsDiscordLink] Loading server plugin EssentialsDiscordLink v2.21.0-dev+154-667b0f7
[21:20:48] [Server thread/INFO]: [EnchantsSquared] Loading server plugin EnchantsSquared v2.5.15
[21:20:49] [Server thread/INFO]: [DyedBackpacks] Loading server plugin DyedBackpacks vBuild 3 (git d4e0e45)
[21:20:49] [Server thread/INFO]: [DHS] Loading server plugin DHSupport v0.4.0
[21:20:49] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.1-DEV-183
[21:20:49] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[21:20:49] [Server thread/INFO]: [DailyRewardsPlus] Loading server plugin DailyRewardsPlus v1.4.5
[21:20:49] [Server thread/INFO]: [CustomItemGenerators] Loading server plugin CustomItemGenerators vDev - 1
[21:20:49] [Server thread/INFO]: [CreeperRecover] Loading server plugin CreeperRecover v1.0.12
[21:20:49] [Server thread/INFO]: ➜ CreeperRecover ● Loading CreeperRecover version 1.0.12
[21:20:49] [Server thread/INFO]: ➜ CreeperRecover ● The config loaded in 0 cycles.
[21:20:49] [Server thread/INFO]: [CraftingStore] Loading server plugin CraftingStore v2.9.3
[21:20:49] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.4.28
[21:20:49] [Server thread/INFO]: [ChunkManager] Loading server plugin ChunkManager v1.0.9
[21:20:49] [Server thread/INFO]: [BlueMapDeathMarkers] Loading server plugin BlueMapDeathMarkers v1.3
[21:20:49] [Server thread/INFO]: [BlueMap-Towny] Loading server plugin BlueMap-Towny v2.1.1
[21:20:49] [Server thread/INFO]: [BlueMap-Chat] Loading server plugin BlueMap-Chat v0.2.0
[21:20:49] [Server thread/INFO]: [BlockEffects] Loading server plugin BlockEffects v4.0
[21:20:49] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.13
[21:20:49] [Server thread/INFO]: [BetterChests] Loading server plugin BetterChests vDev - 9
[21:20:49] [Server thread/INFO]: [AxTrade] Loading server plugin AxTrade v1.12.2
[21:20:49] [Server thread/INFO]: [AxTrade] Loading library commons-math3
[21:20:49] [Server thread/INFO]: [AxTrade] Loading library caffeine
[21:20:49] [Server thread/INFO]: [ATopPlayers] Loading server plugin ATopPlayers v1.0
[21:20:49] [Server thread/INFO]: [ArmorStandEditor] Loading server plugin ArmorStandEditor v1.21.1-47.2
[21:20:49] [Server thread/INFO]: [AnimatedScoreboard] Loading server plugin AnimatedScoreboard v0.3.5
[21:20:49] [Server thread/INFO]: [Alces] Loading server plugin Alces v2.0
[21:20:49] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[21:20:49] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.151
[21:20:50] [Server thread/INFO]:         __    
[21:20:50] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.151
[21:20:50] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[21:20:50] [Server thread/INFO]: 
[21:20:50] [Server thread/INFO]: [LuckPerms] Loading configuration...
[21:20:50] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[21:20:51] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[21:20:51] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[21:20:51] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 2506ms)
[21:20:51] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[21:20:51] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[21:20:51] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[21:20:51] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[21:20:51] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[21:20:51] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.12.4-SNAPSHOT-1011;7160792
[21:20:51] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
[21:20:51] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!                                                                !!!
[21:20:51] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    Using history database whilst deleting disk history!        !!!
[21:20:51] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    You will not be able to rollback edits after a user logs    !!!
[21:20:51] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    out, recommended to disable delete-disk-on-logout if you    !!!
[21:20:51] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    you want to have full history rollback functionality.       !!!
[21:20:51] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    Disable use-database if you do not need to have rollback    !!!
[21:20:51] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    functionality and wish to disable this warning.             !!!
[21:20:51] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!                                                                !!!
[21:20:51] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
[21:20:51] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[21:20:51] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[21:20:51] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[21:20:52] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[21:20:52] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_R1.PaperweightFaweAdapter as the Bukkit adapter
[21:20:52] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.3.0
[21:20:52] [Server thread/INFO]: [ViaRewind] Enabling ViaRewind v4.0.5
[21:20:52] [Server thread/INFO]: [PlotSquared] Enabling PlotSquared v7.4.1-Premium
[21:20:53] [Server thread/INFO]: [PlotSquared/PlotSquared] Loaded caption map for namespace 'plotsquared': com.plotsquared.core.configuration.caption.LocalizedCaptionMap
[21:20:53] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: plot-expiry | Value: false
[21:20:53] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: worlds | Value: false
[21:20:53] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-named-road-mobs | Value: false
[21:20:53] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: per-user-locale | Value: false
[21:20:53] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: worldedit-restrictions | Value: true
[21:20:53] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: external-placeholders | Value: true
[21:20:53] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-owned-road-mobs | Value: false
[21:20:53] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: disable-beacon-effect-overflow | Value: true
[21:20:53] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: database | Value: true
[21:20:53] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: component-presets | Value: true
[21:20:53] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: chunk-processor | Value: false
[21:20:53] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: extended-username-completion | Value: true
[21:20:53] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: events | Value: true
[21:20:53] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: commands | Value: true
[21:20:53] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-road-mobs | Value: true
[21:20:53] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-road-items | Value: true
[21:20:53] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: database-purger | Value: false
[21:20:53] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: economy | Value: false
[21:20:53] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: persistent-road-regen | Value: true
[21:20:53] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-road-vehicles | Value: true
[21:20:53] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: default-locale | Value: en
[21:20:53] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: use-mvdwapi | Value: true
[21:20:53] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: persistent-meta | Value: true
[21:20:53] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: tab-completed-aliases | Value: [plot, plots, p, plotsquared, plot2, p2, ps, 2, plotme, plotz, ap]
[21:20:53] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: ban-deleter | Value: false
[21:20:53] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: update-notifications | Value: true
[21:20:53] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: rating-cache | Value: true
[21:20:53] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: comment-notifier | Value: true
[21:20:53] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared version licensed to Spigot user 2038844
[21:20:53] [Server thread/INFO]: [PlotSquared/BukkitPlatform] https://www.spigotmc.org/resources/77506
[21:20:53] [Server thread/INFO]: [PlotSquared/BukkitPlatform] Download ID: 168966323
[21:20:53] [Server thread/INFO]: [PlotSquared/BukkitPlatform] Thanks for supporting us :)
[21:20:53] [Server thread/INFO]: [PlotSquared/PlotSquared] Connection to database established. Type: SQLite
[21:20:53] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared hooked into WorldEdit
[21:20:53] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) Using LuckPerms as a complementary UUID service
[21:20:53] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) Using EssentialsX as a complementary UUID service
[21:20:53] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) Using Paper as a complementary UUID service
[21:20:53] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) 2 UUIDs will be cached
[21:20:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: plotsquared [3]
[21:20:53] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared hooked into PlaceholderAPI
[21:20:53] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.60
[21:20:53] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR4.0.8
[21:20:53] [Server thread/INFO]: [ModelEngine] [S] Loading cache version: R4.0.8
[21:20:53] [Server thread/INFO]: [TerraformGenerator] Enabling TerraformGenerator v18.1.0
[21:20:53] [Server thread/INFO]: [TerraformGenerator] Custom Logger Initialized
[21:20:54] [Server thread/INFO]: [TerraformGenerator] bStats Metrics enabled.
[21:20:54] [Server thread/INFO]: [TerraformGenerator] Detected version: 1.21.1, number: 21.1
[21:20:54] [Server thread/INFO]: [nightcore] Enabling nightcore v2.7.1
[21:20:54] [Server thread/INFO]: [nightcore] Found permissions provider: LuckPerms
[21:20:54] [Server thread/INFO]: [nightcore] Found economy provider: EssentialsX Economy
[21:20:54] [Server thread/INFO]: [nightcore] Found chat provider: LuckPerms
[21:20:54] [Server thread/INFO]: [nightcore] [DEBUG] Inject post-loading code...
[21:20:54] [Server thread/INFO]: [nightcore] Plugin loaded in 65 ms!
[21:20:54] [Server thread/INFO]: [xaero-map-spigot] Enabling xaero-map-spigot v1.0.0
[21:20:54] [Server thread/INFO]: [MOTD] Enabling MOTD v2.3.11
[21:20:54] [Server thread/INFO]: [MOTD] [Placeholder] PlaceholderAPI hooked.
[21:20:54] [Server thread/INFO]: [DHS] Enabling DHSupport v0.4.0
[21:20:54] [Server thread/INFO]: [DHS] Using generic scheduler.
[21:20:54] [Server thread/INFO]: [DHS] Ready 😀
[21:20:54] [Server thread/INFO]: Preparing level "survival"
[21:20:54] [Server thread/INFO]: -------- World Settings For [survival] --------
[21:20:54] [Server thread/INFO]: Simulation Distance: 12
[21:20:54] [Server thread/INFO]: View Distance: 14
[21:20:54] [Server thread/INFO]: Mob Spawn Range: 3
[21:20:54] [Server thread/INFO]: Item Despawn Rate: 6000
[21:20:54] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[21:20:54] [Server thread/INFO]: Cactus Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Cane Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Melon Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Sapling Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Carrot Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Potato Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Wheat Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Vine Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Kelp Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:100
[21:20:54] [Server thread/INFO]: Entity Tracking Range: Pl 64 / An 48 / Mo 64 / Mi 32 / Di 128 / Other 64
[21:20:54] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[21:20:54] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[21:20:54] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[21:20:54] [Server thread/INFO]: Max TNT Explosions: 100
[21:20:54] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[21:20:54] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[21:20:54] [Server thread/INFO]: Experience Merge Radius: 4.0
[21:20:54] [Server thread/INFO]: Item Merge Radius: 3.5
[21:20:54] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1 Hopper Can Load Chunks: false
[21:20:54] [Server thread/INFO]: -------- World Settings For [survival_nether] --------
[21:20:54] [Server thread/INFO]: Simulation Distance: 12
[21:20:54] [Server thread/INFO]: View Distance: 14
[21:20:54] [Server thread/INFO]: Mob Spawn Range: 3
[21:20:54] [Server thread/INFO]: Item Despawn Rate: 6000
[21:20:54] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[21:20:54] [Server thread/INFO]: Cactus Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Cane Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Melon Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Sapling Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Carrot Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Potato Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Wheat Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Vine Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Kelp Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:100
[21:20:54] [Server thread/INFO]: Entity Tracking Range: Pl 64 / An 48 / Mo 64 / Mi 32 / Di 128 / Other 64
[21:20:54] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[21:20:54] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[21:20:54] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[21:20:54] [Server thread/INFO]: Max TNT Explosions: 100
[21:20:54] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[21:20:54] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[21:20:54] [Server thread/INFO]: Experience Merge Radius: 4.0
[21:20:54] [Server thread/INFO]: Item Merge Radius: 3.5
[21:20:54] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1 Hopper Can Load Chunks: false
[21:20:54] [Server thread/INFO]: -------- World Settings For [survival_the_end] --------
[21:20:54] [Server thread/INFO]: Simulation Distance: 12
[21:20:54] [Server thread/INFO]: View Distance: 14
[21:20:54] [Server thread/INFO]: Mob Spawn Range: 3
[21:20:54] [Server thread/INFO]: Item Despawn Rate: 6000
[21:20:54] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[21:20:54] [Server thread/INFO]: Cactus Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Cane Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Melon Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Sapling Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Carrot Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Potato Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Wheat Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Vine Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Kelp Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[21:20:54] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:100
[21:20:54] [Server thread/INFO]: Entity Tracking Range: Pl 64 / An 48 / Mo 64 / Mi 32 / Di 128 / Other 64
[21:20:54] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[21:20:54] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[21:20:54] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[21:20:54] [Server thread/INFO]: Max TNT Explosions: 100
[21:20:54] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[21:20:54] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[21:20:54] [Server thread/INFO]: Experience Merge Radius: 4.0
[21:20:54] [Server thread/INFO]: Item Merge Radius: 3.5
[21:20:54] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1 Hopper Can Load Chunks: false
[21:20:54] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[21:20:55] [Server thread/INFO]: Time elapsed: 1238 ms
[21:20:55] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[21:20:56] [Server thread/INFO]: Time elapsed: 113 ms
[21:20:56] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[21:20:56] [Server thread/INFO]: Time elapsed: 76 ms
[21:20:56] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.2.1
[21:20:56] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21-1.21.1 (767)
[21:20:56] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: ViaVersion
[21:20:56] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.3-SNAPSHOT (b114-83fbd6e)
[21:20:56] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.2.1
[21:20:56] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[21:20:56] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[21:20:56] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+154-667b0f7
[21:20:56] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[21:20:56] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[21:20:56] [Server thread/INFO]: [Essentials] No kits found to migrate.
[21:20:56] [Server thread/INFO]: [Essentials] Selected 1.21+ InventoryView Interface ABI Provider as the provider for InventoryViewProvider
[21:20:56] [Server thread/INFO]: [Essentials] Selected 1.11+ Item Unbreakable Provider as the provider for ItemUnbreakableProvider
[21:20:56] [Server thread/INFO]: [Essentials] Selected Paper Server State Provider as the provider for ServerStateProvider
[21:20:56] [Server thread/INFO]: [Essentials] Selected 1.20.5+ Banner Data Provider as the provider for BannerDataProvider
[21:20:56] [Server thread/INFO]: [Essentials] Selected Reflection Spawner Block Provider as the provider for SpawnerBlockProvider
[21:20:56] [Server thread/INFO]: [Essentials] Selected Reflection Sync Commands Provider as the provider for SyncCommandsProvider
[21:20:56] [Server thread/INFO]: [Essentials] Selected Reflection Online Mode Provider as the provider for OnlineModeProvider
[21:20:56] [Server thread/INFO]: [Essentials] Selected 1.13+ Spawn Egg Provider as the provider for SpawnEggProvider
[21:20:56] [Server thread/INFO]: [Essentials] Selected 1.14+ Sign Data Provider as the provider for SignDataProvider
[21:20:56] [Server thread/INFO]: [Essentials] Selected Paper Material Tag Provider as the provider for MaterialTagProvider
[21:20:56] [Server thread/INFO]: [Essentials] Selected Paper Serialization Provider as the provider for SerializationProvider
[21:20:56] [Server thread/INFO]: [Essentials] Selected Paper Known Commands Provider as the provider for KnownCommandsProvider
[21:20:56] [Server thread/INFO]: [Essentials] Selected Paper Container Provider as the provider for ContainerProvider
[21:20:56] [Server thread/INFO]: [Essentials] Selected 1.8.3+ Spawner Item Provider as the provider for SpawnerItemProvider
[21:20:56] [Server thread/INFO]: [Essentials] Selected 1.12.2+ Player Locale Provider as the provider for PlayerLocaleProvider
[21:20:56] [Server thread/INFO]: [Essentials] Selected 1.20.6+ Potion Meta Provider as the provider for PotionMetaProvider
[21:20:56] [Server thread/INFO]: [Essentials] Selected Paper Biome Key Provider as the provider for BiomeKeyProvider
[21:20:56] [Server thread/INFO]: [Essentials] Selected 1.17.1+ World Info Provider as the provider for WorldInfoProvider
[21:20:56] [Server thread/INFO]: [Essentials] Selected Reflection Formatted Command Alias Provider as the provider for FormattedCommandAliasProvider
[21:20:56] [Server thread/INFO]: [Essentials] Selected 1.20.4+ Damage Event Provider as the provider for DamageEventProvider
[21:20:56] [Server thread/INFO]: [Essentials] Selected 1.14.4+ Persistent Data Container Provider as the provider for PersistentDataProvider
[21:20:57] [Server thread/INFO]: [Essentials] Loaded 42679 items from items.json.
[21:20:57] [Server thread/INFO]: [Essentials] Using locale en
[21:20:57] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[21:20:57] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[21:20:57] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[21:20:57] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[21:20:57] [Server thread/INFO]: [Geyser-Spigot] Enabling Geyser-Spigot v2.6.0-SNAPSHOT
[21:20:57] [Server thread/INFO]: [packetevents] Enabling packetevents v2.7.0
[21:20:57] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[21:20:57] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.12+829a4a4
[21:20:57] [Server thread/INFO]: [WorldGuard] (survival) TNT ignition is PERMITTED.
[21:20:57] [Server thread/INFO]: [WorldGuard] (survival) Lighters are PERMITTED.
[21:20:57] [Server thread/INFO]: [WorldGuard] (survival) Lava fire is PERMITTED.
[21:20:57] [Server thread/INFO]: [WorldGuard] (survival) Fire spread is UNRESTRICTED.
[21:20:57] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'survival'
[21:20:57] [Server thread/INFO]: [WorldGuard] (survival_nether) TNT ignition is PERMITTED.
[21:20:57] [Server thread/INFO]: [WorldGuard] (survival_nether) Lighters are PERMITTED.
[21:20:57] [Server thread/INFO]: [WorldGuard] (survival_nether) Lava fire is PERMITTED.
[21:20:57] [Server thread/INFO]: [WorldGuard] (survival_nether) Fire spread is UNRESTRICTED.
[21:20:57] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'survival_nether'
[21:20:57] [Server thread/INFO]: [WorldGuard] (survival_the_end) TNT ignition is PERMITTED.
[21:20:57] [Server thread/INFO]: [WorldGuard] (survival_the_end) Lighters are PERMITTED.
[21:20:57] [Server thread/INFO]: [WorldGuard] (survival_the_end) Lava fire is PERMITTED.
[21:20:57] [Server thread/INFO]: [WorldGuard] (survival_the_end) Fire spread is UNRESTRICTED.
[21:20:57] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'survival_the_end'
[21:20:57] [Server thread/INFO]: [WorldGuard] Loading region data...
[21:20:57] [packetevents-update-check-thread/INFO]: [packetevents] You are running the latest release of PacketEvents. Your build: (2.7.0)
[21:20:57] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.14
[21:20:57] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.14" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[21:20:57] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[21:20:57] [Server thread/INFO]: -------- World Settings For [survival_resource] --------
[21:20:57] [Server thread/INFO]: Simulation Distance: 12
[21:20:57] [Server thread/INFO]: View Distance: 14
[21:20:57] [Server thread/INFO]: Mob Spawn Range: 3
[21:20:57] [Server thread/INFO]: Item Despawn Rate: 6000
[21:20:57] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[21:20:57] [Server thread/INFO]: Cactus Growth Modifier: 100%
[21:20:57] [Server thread/INFO]: Cane Growth Modifier: 100%
[21:20:57] [Server thread/INFO]: Melon Growth Modifier: 100%
[21:20:57] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[21:20:57] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[21:20:57] [Server thread/INFO]: Sapling Growth Modifier: 100%
[21:20:57] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[21:20:57] [Server thread/INFO]: Carrot Growth Modifier: 100%
[21:20:57] [Server thread/INFO]: Potato Growth Modifier: 100%
[21:20:57] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[21:20:57] [Server thread/INFO]: Wheat Growth Modifier: 100%
[21:20:57] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[21:20:57] [Server thread/INFO]: Vine Growth Modifier: 100%
[21:20:57] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[21:20:57] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[21:20:57] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[21:20:57] [Server thread/INFO]: Kelp Growth Modifier: 100%
[21:20:57] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[21:20:57] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[21:20:57] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[21:20:57] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[21:20:57] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[21:20:57] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:100
[21:20:57] [Server thread/INFO]: Entity Tracking Range: Pl 64 / An 48 / Mo 64 / Mi 32 / Di 128 / Other 64
[21:20:57] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[21:20:57] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[21:20:57] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[21:20:57] [Server thread/INFO]: Max TNT Explosions: 100
[21:20:57] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[21:20:57] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[21:20:57] [Server thread/INFO]: Experience Merge Radius: 4.0
[21:20:57] [Server thread/INFO]: Item Merge Radius: 3.5
[21:20:57] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1 Hopper Can Load Chunks: false
[21:20:57] [Server thread/INFO]: [TerraformGenerator] Detected world: survival_resource, commencing injection... 
[21:20:57] [Server thread/INFO]: [TerraformGenerator] Injection success! Proceeding with generation.
[21:20:57] [Server thread/INFO]: Preparing start region for dimension minecraft:survival_resource
[21:20:57] [Server thread/INFO]: Time elapsed: 57 ms
[21:20:57] [Server thread/INFO]: [TerraformGenerator] survival_resource loaded.
[21:20:57] [Server thread/INFO]: [WorldGuard] (survival_resource) TNT ignition is PERMITTED.
[21:20:57] [Server thread/INFO]: [WorldGuard] (survival_resource) Lighters are PERMITTED.
[21:20:57] [Server thread/INFO]: [WorldGuard] (survival_resource) Lava fire is PERMITTED.
[21:20:57] [Server thread/INFO]: [WorldGuard] (survival_resource) Fire spread is UNRESTRICTED.
[21:20:57] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'survival_resource'
[21:20:58] [Server thread/INFO]: -------- World Settings For [Towny] --------
[21:20:58] [Server thread/INFO]: Simulation Distance: 12
[21:20:58] [Server thread/INFO]: View Distance: 14
[21:20:58] [Server thread/INFO]: Mob Spawn Range: 3
[21:20:58] [Server thread/INFO]: Item Despawn Rate: 6000
[21:20:58] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[21:20:58] [Server thread/INFO]: Cactus Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Cane Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Melon Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Sapling Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Carrot Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Potato Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Wheat Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Vine Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Kelp Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:100
[21:20:58] [Server thread/INFO]: Entity Tracking Range: Pl 64 / An 48 / Mo 64 / Mi 32 / Di 128 / Other 64
[21:20:58] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[21:20:58] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[21:20:58] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[21:20:58] [Server thread/INFO]: Max TNT Explosions: 100
[21:20:58] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[21:20:58] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[21:20:58] [Server thread/INFO]: Experience Merge Radius: 4.0
[21:20:58] [Server thread/INFO]: Item Merge Radius: 3.5
[21:20:58] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1 Hopper Can Load Chunks: false
[21:20:58] [Server thread/INFO]: Preparing start region for dimension minecraft:towny
[21:20:58] [Server thread/INFO]: Time elapsed: 58 ms
[21:20:58] [Server thread/INFO]: [WorldGuard] (Towny) TNT ignition is PERMITTED.
[21:20:58] [Server thread/INFO]: [WorldGuard] (Towny) Lighters are PERMITTED.
[21:20:58] [Server thread/INFO]: [WorldGuard] (Towny) Lava fire is PERMITTED.
[21:20:58] [Server thread/INFO]: [WorldGuard] (Towny) Fire spread is UNRESTRICTED.
[21:20:58] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Towny'
[21:20:58] [Server thread/INFO]: -------- World Settings For [Towny_the_end] --------
[21:20:58] [Server thread/INFO]: Simulation Distance: 12
[21:20:58] [Server thread/INFO]: View Distance: 14
[21:20:58] [Server thread/INFO]: Mob Spawn Range: 3
[21:20:58] [Server thread/INFO]: Item Despawn Rate: 6000
[21:20:58] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[21:20:58] [Server thread/INFO]: Cactus Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Cane Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Melon Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Sapling Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Carrot Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Potato Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Wheat Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Vine Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Kelp Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:100
[21:20:58] [Server thread/INFO]: Entity Tracking Range: Pl 64 / An 48 / Mo 64 / Mi 32 / Di 128 / Other 64
[21:20:58] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[21:20:58] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[21:20:58] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[21:20:58] [Server thread/INFO]: Max TNT Explosions: 100
[21:20:58] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[21:20:58] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[21:20:58] [Server thread/INFO]: Experience Merge Radius: 4.0
[21:20:58] [Server thread/INFO]: Item Merge Radius: 3.5
[21:20:58] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1 Hopper Can Load Chunks: false
[21:20:58] [Server thread/INFO]: Preparing start region for dimension minecraft:towny_the_end
[21:20:58] [Server thread/INFO]: Time elapsed: 38 ms
[21:20:58] [Server thread/INFO]: [WorldGuard] (Towny_the_end) TNT ignition is PERMITTED.
[21:20:58] [Server thread/INFO]: [WorldGuard] (Towny_the_end) Lighters are PERMITTED.
[21:20:58] [Server thread/INFO]: [WorldGuard] (Towny_the_end) Lava fire is PERMITTED.
[21:20:58] [Server thread/INFO]: [WorldGuard] (Towny_the_end) Fire spread is UNRESTRICTED.
[21:20:58] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Towny_the_end'
[21:20:58] [Server thread/INFO]: -------- World Settings For [Albion] --------
[21:20:58] [Server thread/INFO]: Simulation Distance: 12
[21:20:58] [Server thread/INFO]: View Distance: 14
[21:20:58] [Server thread/INFO]: Mob Spawn Range: 3
[21:20:58] [Server thread/INFO]: Item Despawn Rate: 6000
[21:20:58] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[21:20:58] [Server thread/INFO]: Cactus Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Cane Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Melon Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Sapling Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Carrot Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Potato Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Wheat Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Vine Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Kelp Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:100
[21:20:58] [Server thread/INFO]: Entity Tracking Range: Pl 64 / An 48 / Mo 64 / Mi 32 / Di 128 / Other 64
[21:20:58] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[21:20:58] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[21:20:58] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[21:20:58] [Server thread/INFO]: Max TNT Explosions: 100
[21:20:58] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[21:20:58] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[21:20:58] [Server thread/INFO]: Experience Merge Radius: 4.0
[21:20:58] [Server thread/INFO]: Item Merge Radius: 3.5
[21:20:58] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1 Hopper Can Load Chunks: false
[21:20:58] [Server thread/INFO]: Preparing start region for dimension minecraft:albion
[21:20:58] [Server thread/INFO]: Time elapsed: 69 ms
[21:20:58] [Server thread/INFO]: [WorldGuard] (Albion) TNT ignition is PERMITTED.
[21:20:58] [Server thread/INFO]: [WorldGuard] (Albion) Lighters are PERMITTED.
[21:20:58] [Server thread/INFO]: [WorldGuard] (Albion) Lava fire is PERMITTED.
[21:20:58] [Server thread/INFO]: [WorldGuard] (Albion) Fire spread is UNRESTRICTED.
[21:20:58] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Albion'
[21:20:58] [Server thread/INFO]: -------- World Settings For [Towny_Nether] --------
[21:20:58] [Server thread/INFO]: Simulation Distance: 12
[21:20:58] [Server thread/INFO]: View Distance: 14
[21:20:58] [Server thread/INFO]: Mob Spawn Range: 3
[21:20:58] [Server thread/INFO]: Item Despawn Rate: 6000
[21:20:58] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[21:20:58] [Server thread/INFO]: Cactus Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Cane Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Melon Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Sapling Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Carrot Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Potato Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Wheat Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Vine Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Kelp Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:100
[21:20:58] [Server thread/INFO]: Entity Tracking Range: Pl 64 / An 48 / Mo 64 / Mi 32 / Di 128 / Other 64
[21:20:58] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[21:20:58] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[21:20:58] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[21:20:58] [Server thread/INFO]: Max TNT Explosions: 100
[21:20:58] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[21:20:58] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[21:20:58] [Server thread/INFO]: Experience Merge Radius: 4.0
[21:20:58] [Server thread/INFO]: Item Merge Radius: 3.5
[21:20:58] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1 Hopper Can Load Chunks: false
[21:20:58] [Server thread/INFO]: Preparing start region for dimension minecraft:towny_nether
[21:20:58] [Server thread/INFO]: Time elapsed: 73 ms
[21:20:58] [Server thread/INFO]: [WorldGuard] (Towny_Nether) TNT ignition is PERMITTED.
[21:20:58] [Server thread/INFO]: [WorldGuard] (Towny_Nether) Lighters are PERMITTED.
[21:20:58] [Server thread/INFO]: [WorldGuard] (Towny_Nether) Lava fire is PERMITTED.
[21:20:58] [Server thread/INFO]: [WorldGuard] (Towny_Nether) Fire spread is UNRESTRICTED.
[21:20:58] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Towny_Nether'
[21:20:58] [Server thread/INFO]: -------- World Settings For [creative] --------
[21:20:58] [Server thread/INFO]: Simulation Distance: 12
[21:20:58] [Server thread/INFO]: View Distance: 14
[21:20:58] [Server thread/INFO]: Mob Spawn Range: 3
[21:20:58] [Server thread/INFO]: Item Despawn Rate: 6000
[21:20:58] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[21:20:58] [Server thread/INFO]: Cactus Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Cane Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Melon Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Sapling Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Carrot Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Potato Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Wheat Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Vine Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Kelp Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[21:20:58] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:100
[21:20:58] [Server thread/INFO]: Entity Tracking Range: Pl 64 / An 48 / Mo 64 / Mi 32 / Di 128 / Other 64
[21:20:58] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[21:20:58] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[21:20:58] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[21:20:58] [Server thread/INFO]: Max TNT Explosions: 100
[21:20:58] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[21:20:58] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[21:20:58] [Server thread/INFO]: Experience Merge Radius: 4.0
[21:20:58] [Server thread/INFO]: Item Merge Radius: 3.5
[21:20:58] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1 Hopper Can Load Chunks: false
[21:20:58] [Server thread/INFO]: [PlotSquared/PlotSquared] Detected world load for 'creative'
[21:20:58] [Server thread/INFO]: [PlotSquared/PlotSquared] - generator: PlotSquared>PlotSquared
[21:20:58] [Server thread/INFO]: [PlotSquared/PlotSquared] - plot world: com.plotsquared.core.generator.HybridPlotWorld
[21:20:58] [Server thread/INFO]: [PlotSquared/PlotSquared] - plot area manager: com.plotsquared.core.generator.HybridPlotManager
[21:20:58] [Server thread/INFO]: [P2] Loading flags for area: creative
[21:20:58] [Server thread/INFO]: [P2] Area flags: []
[21:20:58] [Server thread/INFO]: [P2] Road flags: []
[21:20:58] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] - road schematic: false
[21:20:58] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] - Dumping settings for ClassicPlotWorld with name creative
[21:20:58] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_schematic_enabled = false
[21:20:58] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_schematic = false
[21:20:58] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_lower = 3
[21:20:58] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_upper = 68
[21:20:58] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- schem_y = 62
[21:20:58] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_height = 62
[21:20:58] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_height = 62
[21:20:58] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_height = 62
[21:20:58] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- main_block = minecraft:stone
[21:20:58] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- top_block = minecraft:grass_block
[21:20:58] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_block = minecraft:stone_slab
[21:20:58] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- claimed_wall_block = minecraft:smooth_stone_slab
[21:20:58] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_filling = minecraft:stone
[21:20:58] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_block = minecraft:oak_planks
[21:20:58] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_bedrock = false
[21:20:58] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- place_top_block = true
[21:20:58] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- component_below_bedrock = false
[21:20:58] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_width = 64
[21:20:58] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_width = 7
[21:20:58] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_x = 0
[21:20:58] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_z = 0
[21:20:58] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- size = 71
[21:20:58] [Server thread/INFO]: Preparing start region for dimension minecraft:creative
[21:20:59] [Server thread/INFO]: Time elapsed: 49 ms
[21:20:59] [Server thread/INFO]: [WorldGuard] (creative) TNT ignition is PERMITTED.
[21:20:59] [Server thread/INFO]: [WorldGuard] (creative) Lighters are PERMITTED.
[21:20:59] [Server thread/INFO]: [WorldGuard] (creative) Lava fire is PERMITTED.
[21:20:59] [Server thread/INFO]: [WorldGuard] (creative) Fire spread is UNRESTRICTED.
[21:20:59] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'creative'
[21:20:59] [Server thread/INFO]: -------- World Settings For [dungeon] --------
[21:20:59] [Server thread/INFO]: Simulation Distance: 12
[21:20:59] [Server thread/INFO]: View Distance: 14
[21:20:59] [Server thread/INFO]: Mob Spawn Range: 3
[21:20:59] [Server thread/INFO]: Item Despawn Rate: 6000
[21:20:59] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[21:20:59] [Server thread/INFO]: Cactus Growth Modifier: 100%
[21:20:59] [Server thread/INFO]: Cane Growth Modifier: 100%
[21:20:59] [Server thread/INFO]: Melon Growth Modifier: 100%
[21:20:59] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[21:20:59] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[21:20:59] [Server thread/INFO]: Sapling Growth Modifier: 100%
[21:20:59] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[21:20:59] [Server thread/INFO]: Carrot Growth Modifier: 100%
[21:20:59] [Server thread/INFO]: Potato Growth Modifier: 100%
[21:20:59] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[21:20:59] [Server thread/INFO]: Wheat Growth Modifier: 100%
[21:20:59] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[21:20:59] [Server thread/INFO]: Vine Growth Modifier: 100%
[21:20:59] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[21:20:59] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[21:20:59] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[21:20:59] [Server thread/INFO]: Kelp Growth Modifier: 100%
[21:20:59] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[21:20:59] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[21:20:59] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[21:20:59] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[21:20:59] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[21:20:59] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:100
[21:20:59] [Server thread/INFO]: Entity Tracking Range: Pl 64 / An 48 / Mo 64 / Mi 32 / Di 128 / Other 64
[21:20:59] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[21:20:59] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[21:20:59] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[21:20:59] [Server thread/INFO]: Max TNT Explosions: 100
[21:20:59] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[21:20:59] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[21:20:59] [Server thread/INFO]: Experience Merge Radius: 4.0
[21:20:59] [Server thread/INFO]: Item Merge Radius: 3.5
[21:20:59] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1 Hopper Can Load Chunks: false
[21:20:59] [Server thread/INFO]: Preparing start region for dimension minecraft:dungeon
[21:20:59] [Server thread/INFO]: Time elapsed: 23 ms
[21:20:59] [Server thread/INFO]: [WorldGuard] (dungeon) TNT ignition is PERMITTED.
[21:20:59] [Server thread/INFO]: [WorldGuard] (dungeon) Lighters are PERMITTED.
[21:20:59] [Server thread/INFO]: [WorldGuard] (dungeon) Lava fire is PERMITTED.
[21:20:59] [Server thread/INFO]: [WorldGuard] (dungeon) Fire spread is UNRESTRICTED.
[21:20:59] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'dungeon'
[21:20:59] [Server thread/INFO]: [Multiverse-Core] 10 - World(s) loaded.
[21:20:59] [Server thread/INFO]: [Multiverse-Core] Version 4.3.14 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[21:20:59] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v10.0.44-SNAPSHOT
[21:20:59] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises.jar
[21:20:59] [Server thread/INFO]: [LibsDisguises] Discovered nms version: (Package: {Not package relocated}) (LD: v1_21_R1) (MC: 1.21.1)
[21:20:59] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1502
[21:20:59] [Server thread/INFO]: [LibsDisguises] Build Date: 11/12/2024 00:52
[21:20:59] [Server thread/INFO]: [LibsDisguises] If you own the plugin, place the premium jar downloaded from https://www.spigotmc.org/resources/libs-disguises.32453/ in plugins/LibsDisguises/
[21:20:59] [Server thread/INFO]: [LibsDisguises] You are running the free version, commands limited to non-players and operators. (Console, Command Blocks, Admins)
[21:20:59] [Server thread/INFO]: [LibsDisguises] Config 'TallSelfDisguises' is set to 'false', LD will hide oversized disguises from self disguise. https://www.spigotmc.org/wiki/lib-s-disguises-faq/#tall-disguises-self-disguises
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise alpha_werewolf_p2
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise gamma_werewolf
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_guide_1
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_back_teleporter
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_woodleague_master
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_guild_attendant
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_quest_giver
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_barkeep
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_enchanter
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_unbinder
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_bone_monastery_teleporter
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_story_dungeons_quest_npc
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_frost_queen_teleporter
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_world_binder_teleporter
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_the_climb_teleporter
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_craftenmines_laboratory_teleporter
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_special_blacksmith
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_blacksmith
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_repairman
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_combat_instructor
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_the_quarry_teleporter
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_the_palace_teleporter
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_the_mines_teleporter
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_the_deep_mines_teleporter
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_the_bridge_teleporter
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_the_city_teleporter
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_the_cave_teleporter
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_the_nether_wastes_teleporter
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise em_travelling_merchant
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_saint_nick_skin
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_mrs_claus_skin
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_elf_skin
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ghost_of_christmas_1_skin
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ghost_of_christmas_2_skin
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ghost_of_christmas_3_skin
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ghost_of_christmas_4_skin
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_grinch_skin
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_sentient_present_1
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_santa_claus_skin
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_spa_attendee_1
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_spa_attendee_5
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_hidden_dwarf
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_fields_well_npc
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_pontis_scrapper
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_spa_attendee_6
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_spa_attendee_3
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_slums_1
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_groves_inhabitant_alt
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_spa_attendee_2
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_blood_temple_conjurer
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_blood_temple_cultist
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_groves_elf_summoner
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_the_catacombs_silversword
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_expedition_leader
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_caeruleaum_forager
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_caeruleaum_fisherman
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_ogre_mines_lone_miner
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_caeruleaum_fletcher
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_first_mate
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_caeruleaum_leader
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_pontis_fish_repairman
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_caeruleaum_hint_giver
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ogre_mines_ogre_magi
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ogre_mines_ogre_warrior
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_mountain_guide
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_pontis_fish_scrapper
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_caerulean_merchant
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_ogre_mines_old_miner
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ogre_mines_ogre_archer
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_ogre_mines_panicked_miner
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_ogre_mines_escaped_miner
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_gladius_monk
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise lighthouse_sick_man
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_groves_lighthouse_custodian_alt
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_primis_undead_captain
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_farmstead_wife
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_farmstead_son
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_pontis_guard
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_uplifted_experiment
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_royal_guard
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ice_village_minor_ice
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_sewer_donatello
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_sewer_raphael
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_sewer_leonardo
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_sewer_michelangelo
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise noxious_ninja
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise spore_spreader
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_shredder
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_minor_air
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_mountain_pass_healer
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_sentient_present_3
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_groves_elf_sharpshooter
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_groves_elf_brute
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_suspicious_man
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_catacomb_golem
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_catacomb_necromancer
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_lumberjack
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_lumberlord
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_royal_guard_centurion
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_groves_inhabitant
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_groves_hole_2
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_nemus_leader
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_groves_parkour
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_groves_hole_1
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_goblin_king
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_mille_scout_leader
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_mille_scout_1
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_groves_lighthouse_custodian
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_citizen_9
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_gladius_quartermaster
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_gardener
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_gladius_lord
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_gladius_strategist
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_citizen_1
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_slums_generic_1
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_mille_general_bromia
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_citizen_2
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_slums_2
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_slums_generic_2
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_fields_farmer_berry
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_mille_general_rogerius
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_citizen_6
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_citizen_4
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_citizen_7
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_slums_3
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_citizen_3
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_fields_farmer_boy
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_fields_farmer
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise lighthouse_mille_man
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_citizen_5
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_mille_major
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_gladius_gatekeeper
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_citizen_10
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_citizen_8
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_gladius_guard
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_pontis_mille_shogun
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_mille_general_cylindrus
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_fields_windmill_boy
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_traveler
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_terrvilla_generic_1
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_gladius_barkeep
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_blood_temple_eradicator
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ice_village_ice_mage
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_sentient_present_2
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_blood_temple_toxic
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ice_village_tower_squatter
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_delio
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_69ozcanofbepis
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_magmaguy
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_frostcone
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis__fields_camp_hunter_generic_npc
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis__fields_camp_hunter_traveler
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_fields_magmus
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis__fields_camp_hunter_bow
[21:21:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_castle_cowardly_knight
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_castle_brave_knight
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_castle_ser_prancelot
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_castle_charlemagne
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_castle_arcane_knight
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_dessa_tent_citizen
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_oasis_dessa_scrapper
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_khesusiris_generic_guard
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_khesusiris_town_generic
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_khesusiris_town_generic_librarian
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_dweller_vampires
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_oasis_dessa_enchanter
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_dessa_tent_generic
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_dessa_generic_guard
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_dessa_town_generic
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_oasis_dessa_repairman
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_tappesheh_banker
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_oasis_khesusiris_scrapper
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_30_seeker_of_the_staid
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_26_grim_grovetender
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_36_cruel_cultist
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_15_entombed_tenant
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_skeleton_template
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_20_undead_drifter
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_tappesheh_shining_army
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_20_vampiric_sorcerer
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_12_sinister_siren
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_28_prophet
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_30_preist
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_55_pharaoh_of_pestilence
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_dweller_plant
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_dessa_docks_citizen
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_husk_template
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_dweller_zanerun
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_35_light_of_darkness
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_30_forsakensoul
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_40_chief_cultist
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_egg
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_zanerun_generic_guard
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_zanerun_generic
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_zanerun_citizen
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_oasis_zanerun_enchanter
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_oasis_zanerun_scrapper
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_oasis_zanerun_repairman
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_dweller_hill
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_dweller_khesusiris
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_wanderer
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_dweller_desert
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_oasis_khesusiris_repairman
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_oasis_khesusiris_enchanter
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_current_pharaoh
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_admin_adv
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_catacombs_bonewalker
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_catacombs_silversword
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_catacombs_guard
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_catacombs_undisturbed
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_catacombs_bloated
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise hallosseum_event_boss
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise dark_cathedral_tier_75_reinforcement
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise dark_cathedral_tier_75_boss
[21:21:01] [Server thread/INFO]: [LibsDisguises] Loaded 214 custom disguises
[21:21:01] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[21:21:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: libsdisguises [1.0.0]
[21:21:01] [Server thread/INFO]: [LibsDisguises] PlaceholderAPI support enabled
[21:21:01] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: LibsDisguises
[21:21:01] [Server thread/INFO]: [mcMMO] Enabling mcMMO v2.2.029
[21:21:01] [Server thread/INFO]: [mcMMO] Loaded 220 Alchemy potions, skipped 0.
[21:21:01] [Server thread/INFO]: [mcMMO] 1 entries in mcMMO World Blacklist
[21:21:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mcmmo [1.0,0]
[21:21:01] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.8.0-SNAPSHOT-c9fb3fb5
[21:21:02] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.21.1)...
[21:21:02] [Server thread/INFO]: [MythicMobs] The server is running Paper; enabled Paper exclusive functionality
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] END_SPAWN_POINT
[21:21:03] [Server thread/WARN]: Nag author(s): '[Lumine]' of 'MythicMobs v5.8.0-SNAPSHOT-c9fb3fb5' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] RAIN_DELAY
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] RAIN_DURATION
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] THUNDER_DELAY
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] THUNDER_DURATION
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] LOGGER
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] EMPTY_TIME_NO_TICK
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] MAX_SCHEDULED_TICKS_PER_TICK
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] players
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] chunkSource
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] server
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] serverLevelData
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] lastSpawnChunkRadius
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] entityTickList
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] gameEventDispatcher
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] noSave
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] sleepStatus
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] emptyTime
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] portalForcer
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] blockTicks
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] fluidTicks
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] pathTypesByPosCache
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] navigatingMobs
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] isUpdatingNavigations
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] raids
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] blockEvents
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] blockEventsToReschedule
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] handlingTick
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] customSpawners
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] dragonFight
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] dragonParts
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] structureManager
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] structureCheck
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] tickTime
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] randomSequences
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] convertable
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] uuid
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] hasPhysicsEvent
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] hasEntityMoveEvent
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] wireHandler
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] markedClosing
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] viewDistanceHolder
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] chunkLoader
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] entityDataController
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] poiDataController
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] chunkDataController
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] chunkTaskScheduler
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] lastMidTickFailure
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] tickedBlocksOrFluids
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] nearbyPlayers
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] EMPTY_CHUNK_AND_HOLDERS
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] loadedChunks
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] tickingChunks
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] entityTickingChunks
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] lagCompensationTick
[21:21:03] [Server thread/INFO]: [MythicMobs] [STDOUT] currentlyTickingEntity
[21:21:03] [Server thread/INFO]: [MythicMobs] Mythic Citizens Support has been enabled!
[21:21:03] [Server thread/INFO]: [MythicMobs] Mythic LibsDisguises Support has been enabled!
[21:21:03] [Server thread/INFO]: [MythicMobs] Mythic mcMMO Support has been enabled!
[21:21:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[21:21:03] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[21:21:03] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[21:21:03] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[21:21:03] [Server thread/INFO]: [MythicMobs] Base directory J:\AlbionMC Server\plugins\MythicMobs\data
[21:21:03] [Server thread/INFO]: [MythicMobs] Module directory J:\AlbionMC Server\plugins\MythicMobs\data\worlds
[21:21:03] [pool-40-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared will fetch UUIDs in groups of 200
[21:21:03] [pool-40-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared has cached 100.0% of UUIDs
[21:21:03] [pool-40-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared has cached all UUIDs
[21:21:04] [Server thread/INFO]: [MythicMobs] Loading Packs...
[21:21:04] [Server thread/INFO]: [MythicMobs] Loading Items...
[21:21:04] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[21:21:04] [Server thread/INFO]: [MythicMobs] Loading Skills...
[21:21:06] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[21:21:06] [Server thread/INFO]: [MythicMobs] !!!! Totem Material FIRE
[21:21:06] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[21:21:06] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[21:21:06] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[21:21:06] [Server thread/INFO]: [MythicMobs] ✓ Loaded 355 mobs.
[21:21:06] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[21:21:06] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[21:21:06] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2767 skills.
[21:21:06] [Server thread/INFO]: [MythicMobs] ✓ Loaded 42 random spawns.
[21:21:06] [Server thread/INFO]: [MythicMobs] ✓ Loaded 225 mythic items.
[21:21:06] [Server thread/INFO]: [MythicMobs] ✓ Loaded 21 drop tables.
[21:21:06] [Server thread/INFO]: [MythicMobs] ✓ Loaded 70 mob spawners.
[21:21:06] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[21:21:06] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[21:21:06] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs Premium v5.8.0 ( build c9fb3fb5 ) has been successfully loaded!
[21:21:07] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
[21:21:07] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: MythicMobs
[21:21:07] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.37-SNAPSHOT (build 3675)
[21:21:07] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[21:21:07] [Server thread/ERROR]: [Citizens] Could not fetch NMS field cj: [[static final field has no write access: net.minecraft.world.entity.animal.armadillo.Armadillo.SCARE_DISTANCE_HORIZONTAL/double/putStatic, from class net.citizensnpcs.util.NMS (unnamed module @412196a9).
[21:21:07] [Server thread/ERROR]: Error occurred while enabling Citizens v2.0.37-SNAPSHOT (build 3675) (Is it up to date?)
java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_21_R3/boss/CraftBossBar
    at Citizens-2.0.37-b3675.jar/net.citizensnpcs.nms.v1_21_R3.util.NMSImpl.<clinit>(NMSImpl.java:2725) ~[Citizens-2.0.37-b3675.jar:?]
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:534) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:513) ~[?:?]
    at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.forName(AbstractDefaultRulesReflectionProxy.java:68) ~[reflection-rewriter-runtime-0.0.3.jar:?]
    at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.forName(Unknown Source) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at Citizens-2.0.37-b3675.jar/net.citizensnpcs.api.util.SpigotUtil.lambda$getMinecraftPackage$1(SpigotUtil.java:176) ~[Citizens-2.0.37-b3675.jar:?]
    at Citizens-2.0.37-b3675.jar/net.citizensnpcs.api.util.SpigotUtil.getMinecraftPackage(SpigotUtil.java:181) ~[Citizens-2.0.37-b3675.jar:?]
    at Citizens-2.0.37-b3675.jar/net.citizensnpcs.Citizens.onEnable(Citizens.java:326) ~[Citizens-2.0.37-b3675.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: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_21_R3.boss.CraftBossBar
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 21 more
[21:21:07] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.37-SNAPSHOT (build 3675)
[21:21:07] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v22.4
[21:21:07] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[21:21:07] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[21:21:07] [Server thread/INFO]: --------------------
[21:21:07] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[21:21:07] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[21:21:07] [Server thread/INFO]: --------------------
[21:21:07] [Server thread/INFO]: [PyroLib] Enabling PyroLib v1.4.5
[21:21:07] [Server thread/INFO]: [Slimefun] Enabling Slimefun v5d6f623-Insider
[21:21:07] [Server thread/INFO]: [Slimefun] 检测到你正在使用 Paper 服务端! 性能优化已应用.
[21:21:07] [Server thread/INFO]: [Slimefun] 正在创建文件夹...
[21:21:07] [Server thread/INFO]: [Slimefun] 正在加载数据库...
[21:21:07] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] SlimefunHikariPool - Starting...
[21:21:07] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] SlimefunHikariPool - Added connection org.sqlite.jdbc4.JDBC4Connection@77ac4e45
[21:21:07] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] SlimefunHikariPool - Start completed.
[21:21:07] [Server thread/INFO]: [Slimefun] 已启用延时写入功能
[21:21:07] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] SlimefunHikariPool - Starting...
[21:21:07] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] SlimefunHikariPool - Added connection org.sqlite.jdbc4.JDBC4Connection@6d49f2
[21:21:07] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] SlimefunHikariPool - Start completed.
[21:21:07] [Server thread/INFO]: [Slimefun] 正在加载语言文件...
[21:21:07] [Server thread/INFO]: [Slimefun] Loaded language "en"
[21:21:07] [Server thread/INFO]: [Slimefun] Available languages: en, de, fr, it, es, ru, pl, uk, sv, nl, da, cs, ro, bg, pt, pt-BR, hu, lv, sk, vi, id, zh-CN, zh-TW, ja, ko, he, ar, tr, fa, th, tl
[21:21:07] [Server thread/INFO]: [Slimefun] Enabled Analytics Service
[21:21:07] [Server thread/INFO]: [Slimefun] 加载矿物资源...
[21:21:07] [Server thread/INFO]: [Slimefun] 加载自定义标签...
[21:21:07] [Server thread/INFO]: [Slimefun] 加载物品...
[21:21:08] [Server thread/INFO]: [Slimefun] 加载研究项目...
[21:21:08] [Server thread/INFO]: [Slimefun] 加载 Wiki 页面...
[21:21:08] [Server thread/INFO]: [Slimefun] 加载了 Slimefun 中 486 个物品的 Wiki 页面
[21:21:08] [Server thread/INFO]: [Slimefun] 正在注册监听器...
[21:21:08] [Server thread/INFO]: [Slimefun] 成功接入 Vault
[21:21:08] [Server thread/INFO]: [Slimefun] 正在加载第三方插件支持...
[21:21:08] [Server thread/INFO]: [Slimefun] Hooked into Plugin: PlaceholderAPI v2.11.6
[21:21:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: slimefun [5d6f623-Insider]
[21:21:08] [Server thread/INFO]: [Slimefun] Hooked into Plugin: WorldEdit v2.12.4-SNAPSHOT-1011;7160792
[21:21:08] [Server thread/INFO]: [Slimefun] Hooked into Plugin: mcMMO v2.2.029
[21:21:08] [Server thread/INFO]: [Slimefun] Slimefun 完成加载, 耗时 755ms
[21:21:08] [Server thread/INFO]: [Towny] Enabling Towny v0.101.0.4
[21:21:08] [Server thread/INFO]: ====================      Towny      ========================
[21:21:08] [Server thread/INFO]: [Towny] Successfully loaded translations for 43 languages.
[21:21:08] [Server thread/INFO]: [Towny] Config: Loaded 9 townblock types: shop, inn, arena, jail, default, bank, wilds, farm, embassy.
[21:21:08] [Server thread/INFO]: [Towny] Database: [Load] flatfile [Save] flatfile
[21:21:09] [Server thread/INFO]: [Towny] Database: Loaded in 719ms.
[21:21:09] [ForkJoinPool.commonPool-worker-3/INFO]: [Towny] Cleaning up old backups...
[21:21:09] [Folia Async Scheduler Thread #7/INFO]: [Towny] Time until a New Day: 14 hours, 38 minutes, 51 seconds
[21:21:09] [Folia Async Scheduler Thread #8/INFO]: [Towny] Checking for updates...
[21:21:09] [ForkJoinPool.commonPool-worker-3/INFO]: [Towny] Deleting 1 Old Backups (90 days old).
[21:21:09] [ForkJoinPool.commonPool-worker-3/INFO]: [Towny] Successfully cleaned backups.
[21:21:09] [ForkJoinPool.commonPool-worker-5/INFO]: [Towny] Making backup...
[21:21:09] [Server thread/INFO]: [Towny] Searching for third-party plugins...
[21:21:09] [Server thread/INFO]: [Towny] Plugins found: 
[21:21:09] [Server thread/INFO]: [Towny]   Permissions: TownyPerms, LuckPerms v5.4.151 via Vault
[21:21:09] [Server thread/INFO]: [Towny]   Chat: LuckPerms v5.4.151 via Vault
[21:21:09] [Server thread/INFO]: [Towny]   Economy: EssentialsX Economy via Vault
[21:21:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: townyadvanced [0.101.0.4]
[21:21:09] [Server thread/INFO]: [Towny] Enabled LuckPerms contexts: towny:townrank, towny:king, towny:nationrank, towny:insidetown, towny:town, towny:mayor, towny:insideowntown, towny:insideownplot, towny:resident, towny:istownconquered, towny:nation, towny:nation_resident
[21:21:09] [Server thread/INFO]: [Towny]   Add-ons: TownyChat v0.117, TownyFlight v1.13.0,
                           PlaceholderAPI v2.11.6, LuckPerms v5.4.151
[21:21:09] [Server thread/INFO]: =============================================================
[21:21:09] [Server thread/INFO]: [Towny] Version: 0.101.0.4 - Plugin Enabled
[21:21:09] [Server thread/INFO]: =============================================================
[21:21:09] [Server thread/INFO]: [Skript] Enabling Skript v2.9.5
[21:21:09] [Folia Async Scheduler Thread #8/INFO]: [Towny] No new updates found.
[21:21:10] [ForkJoinPool.commonPool-worker-3/INFO]: [Skript] You're currently running the latest stable version of Skript.
[21:21:12] [ForkJoinPool.commonPool-worker-5/INFO]: [Towny] Towny flatfiles and settings successfully backed up.
[21:21:17] [Server thread/INFO]: [Skript] Loaded 233074 aliases in 7520ms
[21:21:17] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[21:21:17] [Server thread/INFO]: [Denizen] Enabling Denizen v1.3.1-SNAPSHOT (build 7121-DEV)
[21:21:17] [Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.91.0-SNAPSHOT (Build 1392), impl for Spigot v1.3.1-SNAPSHOT (build 7121-DEV) 
[21:21:18] [Server thread/INFO]: +> [Denizen] Running on java version: 21.0.5 
[21:21:18] [Server thread/INFO]: +> [Denizen] Running on fully supported Java 21. 
[21:21:18] [Server thread/ERROR]: Error occurred while enabling Denizen v1.3.1-SNAPSHOT (build 7121-DEV) (Is it up to date?)
java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_21_R3/inventory/CraftInventoryCustom
    at Denizen-1.3.1-b7121-DEV.jar/com.denizenscript.denizen.nms.v1_21.Handler.<clinit>(Handler.java:275) ~[Denizen-1.3.1-b7121-DEV.jar:?]
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:534) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:513) ~[?:?]
    at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.forName(AbstractDefaultRulesReflectionProxy.java:68) ~[reflection-rewriter-runtime-0.0.3.jar:?]
    at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.forName(Unknown Source) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
    at Denizen-1.3.1-b7121-DEV.jar/com.denizenscript.denizen.nms.NMSHandler.initialize(NMSHandler.java:51) ~[Denizen-1.3.1-b7121-DEV.jar:?]
    at Denizen-1.3.1-b7121-DEV.jar/com.denizenscript.denizen.Denizen.onEnable(Denizen.java:157) ~[Denizen-1.3.1-b7121-DEV.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: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_21_R3.inventory.CraftInventoryCustom
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 20 more
[21:21:18] [Server thread/INFO]: [Denizen] Disabling Denizen v1.3.1-SNAPSHOT (build 7121-DEV)
[21:21:18] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.20.4
[21:21:18] [Server thread/INFO]: [HeadDatabase] Using default "en_US.lang" created by Arcaniax
[21:21:18] [Server thread/WARN]: [HeadDatabase] Economy was not loaded, some features will be disabled!
[21:21:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: hdb [4.20.4]
[21:21:18] [Server thread/INFO]: [PyroFishingPro] Enabling PyroFishingPro v4.9.25
[21:21:18] [Server thread/INFO]: ==================================================================================
[21:21:18] [Server thread/INFO]: 
[21:21:18] [Server thread/INFO]: __________                     ___________.__       .__    .__                
[21:21:18] [Server thread/INFO]: \______   \___.__._______  ____\_   _____/|__| _____|  |__ |__| ____    ____  
[21:21:18] [Server thread/INFO]:  |     ___<   |  |\_  __ \/  _ \|    __)  |  |/  ___/  |  \|  |/    \  / ___\ 
[21:21:18] [Server thread/INFO]:  |    |    \___  | |  | \(  <_> )     \   |  |\___ \|   Y  \  |   |  \/ /_/  >
[21:21:18] [Server thread/INFO]:  |____|    / ____| |__|   \____/\___  /   |__/____  >___|  /__|___|  /\___  / 
[21:21:18] [Server thread/INFO]:            \/                       \/            \/     \/        \//_____/  
[21:21:18] [Server thread/INFO]: 
[21:21:18] [Server thread/INFO]: - Loading v4.9.25...
[21:21:18] [Server thread/INFO]: 
[21:21:18] [Folia Async Scheduler Thread #3/INFO]: [HeadDatabase] Successfully loaded 81310 heads!
[21:21:18] [Folia Async Scheduler Thread #3/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[21:21:19] [Server thread/INFO]: - Registered to: 2038844
[21:21:19] [Server thread/INFO]: - Successfully hooked into WorldGuard.
[21:21:19] [Server thread/INFO]: - Loaded (40) Custom Fish successfully.
[21:21:19] [Server thread/INFO]: - Loaded (5) fishing baits.
[21:21:19] [Server thread/INFO]: - Successfully hooked into PlaceholderAPI.
[21:21:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: PyroFishingPro [4.9.25]
[21:21:19] [Server thread/INFO]: 
[21:21:19] [Server thread/INFO]: ==================================================================================
[21:21:19] [Server thread/INFO]: 
[21:21:19] [Server thread/INFO]: [CMILib] Enabling CMILib v1.5.2.6
[21:21:19] [Server thread/INFO]: Server version: v1_21_R1 - 1.21.1 - paper  1.21.1-132-b48403b (MC: 1.21.1)
[21:21:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.5.2.6]
[21:21:19] [Server thread/INFO]: PlaceholderAPI hooked.
[21:21:19] [Server thread/INFO]: Updated (EN) language file. Took 20ms
[21:21:19] [Server thread/INFO]: [GuizhanLibPlugin] Enabling GuizhanLibPlugin vBuild 57 (git 42c52f1)
[21:21:19] [Server thread/INFO]: [GuizhanLibPlugin] 开始加载 Minecraft 本地化文件
[21:21:19] [Server thread/INFO]: [GuizhanLibPlugin] 当前版本: 1.21.1
[21:21:19] [Server thread/INFO]: [GuizhanLibPlugin] 加载成功
[21:21:19] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v4.0.4
[21:21:20] [Server thread/WARN]: [ItemsAdder]  
[21:21:20] [Server thread/WARN]: [ItemsAdder] This is a test version of ItemsAdder v4 for Minecraft 1.20.6, 1.21, 1.21.1.
[21:21:20] [Server thread/WARN]: [ItemsAdder] Please make backups before using this version.
[21:21:20] [Server thread/WARN]: [ItemsAdder] Use this only on a test server.
[21:21:20] [Server thread/WARN]: [ItemsAdder] I am not responsible for any damage done to your server.
[21:21:20] [Server thread/WARN]: [ItemsAdder]  
[21:21:20] [Server thread/INFO]: [ItemsAdder] ViaVersion detected. Do not report glitches when joining using game versions different than the server version.
[21:21:20] [Server thread/INFO]: [ItemsAdder] More info: https://github.com/PluginBugs/Issues-ItemsAdder/issues/3683
[21:21:20] [Server thread/INFO]: [ItemsAdder] Registered Skript API
[21:21:20] [Server thread/ERROR]: [ItemsAdder] Error while hooking into Denizen
[21:21:20] [Server thread/WARN]: java.lang.NoClassDefFoundError: com/denizenscript/denizen/objects/ItemTag
[21:21:20] [Server thread/WARN]:     at ItemsAdder_4.0.4.jar//dev.lone.itemsadder.Core.OtherPlugins.Denizen.DenizenHook.hook(SourceFile:22)
[21:21:20] [Server thread/WARN]:     at ItemsAdder_4.0.4.jar//dev.lone.itemsadder.Main.onEnable(SourceFile:359)
[21:21:20] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[21:21:20] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[21:21:20] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[21:21:20] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[21:21:20] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[21:21:20] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[21:21:20] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[21:21:20] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[21:21:20] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[21:21:20] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[21:21:20] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[21:21:20] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:21:20] [Server thread/WARN]: Caused by: java.lang.ClassNotFoundException: com.denizenscript.denizen.objects.ItemTag
[21:21:20] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197)
[21:21:20] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[21:21:20] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[21:21:20] [Server thread/WARN]:     ... 14 more
[21:21:20] [Server thread/ERROR]: [ItemsAdder] Failed to hook into Citizens. Please update make sure you're running a compatible version.
[21:21:20] [Server thread/WARN]: java.lang.NoClassDefFoundError: net/citizensnpcs/api/trait/Trait
[21:21:20] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.defineClass1(Native Method)
[21:21:20] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.defineClass(ClassLoader.java:1027)
[21:21:20] [Server thread/WARN]:     at java.base/java.security.SecureClassLoader.defineClass(SecureClassLoader.java:150)
[21:21:20] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:243)
[21:21:20] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:593)
[21:21:20] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:169)
[21:21:20] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[21:21:20] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[21:21:20] [Server thread/WARN]:     at ItemsAdder_4.0.4.jar//dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.register(SourceFile:40)
[21:21:20] [Server thread/WARN]:     at ItemsAdder_4.0.4.jar//dev.lone.itemsadder.Main.onEnable(SourceFile:374)
[21:21:20] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[21:21:20] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[21:21:20] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[21:21:20] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[21:21:20] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[21:21:20] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[21:21:20] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[21:21:20] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[21:21:20] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[21:21:20] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[21:21:20] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[21:21:20] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:21:20] [Server thread/WARN]: Caused by: java.lang.ClassNotFoundException: net.citizensnpcs.api.trait.Trait
[21:21:20] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197)
[21:21:20] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[21:21:20] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[21:21:20] [Server thread/WARN]:     ... 22 more
[21:21:20] [Server thread/INFO]: [ItemsAdder] [!] Waiting for Cyclic dependencies to load before loading ItemsAdder contents: AdvancedEnchantments
[21:21:20] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.12
[21:21:20] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[21:21:20] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[21:21:20] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[21:21:20] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.4-SNAPSHOT
[21:21:20] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[21:21:20] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[21:21:20] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[21:21:20] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[21:21:20] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[21:21:20] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[21:21:20] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[21:21:20] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[21:21:20] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[21:21:20] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[21:21:20] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[21:21:20] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[21:21:20] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[21:21:20] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[21:21:20] [Server thread/INFO]: [Jobs] Enabling Jobs v5.2.4.5
[21:21:20] [Server thread/INFO]: ------------- Jobs -------------
[21:21:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: jobsr [5.2.4.5]
[21:21:20] [Server thread/INFO]: PlaceholderAPI hooked.
[21:21:20] [Server thread/INFO]: Connected to database (SqLite)
[21:21:20] [Server thread/INFO]: Loaded 8 titles
[21:21:20] [Server thread/INFO]: Loaded 2 restricted areas!
[21:21:20] [Server thread/INFO]: Loaded 69 protected blocks timers
[21:21:21] [Server thread/INFO]: Loaded 1481 custom item names
[21:21:21] [Server thread/INFO]: Loaded 84 custom entity names
[21:21:21] [Server thread/INFO]: Loaded 2 custom MythicMobs names
[21:21:21] [Server thread/INFO]: Loaded 42 custom enchant names
[21:21:21] [Server thread/INFO]: Loaded 46 custom enchant names
[21:21:21] [Server thread/INFO]: Loaded 16 custom color names
[21:21:21] [Server thread/INFO]: Update shops items icon section and use 'ItemStack' instead
[21:21:21] [Server thread/INFO]: Loaded 4 shop items
[21:21:21] [Server thread/INFO]: Loaded 1 quests for Explorer
[21:21:21] [Server thread/INFO]: Loaded 1 quests for Miner
[21:21:21] [Server thread/INFO]: Loaded 1 quests for Weaponsmith
[21:21:21] [Server thread/INFO]: Loaded 1 quests for Hunter
[21:21:21] [Server thread/INFO]: Loaded 1 quests for Farmer
[21:21:21] [Server thread/INFO]: Loaded 1 quests for Woodcutter
[21:21:21] [Server thread/INFO]: Loaded 1 quests for Brewer
[21:21:21] [Server thread/INFO]: Loaded 1 quests for Crafter
[21:21:21] [Server thread/INFO]: Loaded 1 quests for Fisherman
[21:21:21] [Server thread/INFO]: Loaded 1 quests for Digger
[21:21:21] [Server thread/INFO]: Loaded 1 quests for Enchanter
[21:21:21] [Server thread/INFO]: Loaded 1 quests for Builder
[21:21:21] [Server thread/INFO]: Loaded 12 jobs
[21:21:21] [Server thread/INFO]: Loaded 0 boosted items
[21:21:21] [Server thread/INFO]: Loaded 95 furnace for reassigning.
[21:21:21] [Server thread/INFO]: Loaded 10 brewing for reassigning.
[21:21:21] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
[21:21:21] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
[21:21:21] [Server thread/INFO]: Preloaded 47 players data in 0.01
[21:21:21] [Server thread/INFO]: Registering listeners...
[21:21:21] [Server thread/INFO]: mcMMO2.2.029 was found - Enabling capabilities.
[21:21:21] [Server thread/INFO]: Registered McMMO 2.x listener
[21:21:21] [Server thread/INFO]: Listeners registered successfully
[21:21:21] [Server thread/INFO]: Plugin has been enabled successfully.
[21:21:21] [Server thread/INFO]: ------------------------------------
[21:21:21] [Server thread/INFO]: [SlimefunTranslation] Enabling SlimefunTranslation vUNOFFICIAL
[21:21:21] [Server thread/INFO]: [SlimefunTranslation] ====================
[21:21:21] [Server thread/INFO]: [SlimefunTranslation] Slimefun Translation
[21:21:21] [Server thread/INFO]: [SlimefunTranslation]      by ybw0014     
[21:21:21] [Server thread/INFO]: [SlimefunTranslation] ====================
[21:21:21] [Server thread/INFO]: [SlimefunTranslation] ProtocolLib found, enabling packet listener...
[21:21:21] [Server thread/INFO]: [SlimefunTranslation] PlaceholderAPI found, enabling placeholders...
[21:21:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: sftrlore [UNOFFICIAL]
[21:21:21] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.21.0-dev+154-667b0f7
[21:21:21] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[21:21:21] [Server thread/INFO]: [VotifierPlus] Enabling VotifierPlus v1.3
[21:21:21] [Server thread/INFO]: [VotifierPlus] Votifier enabled.
[21:21:21] [Server thread/INFO]: [GPS] Enabling GPS v2.20.0
[21:21:21] [Server thread/INFO]: [Unite] Enabling Unite v1.1.8
[21:21:21] [Server thread/INFO]: [Unite] [Party] mcMMO found: Loaded
[21:21:21] [Server thread/INFO]: [BlueMap] Enabling BlueMap v5.5
[21:21:21] [Server thread/INFO]: [BlueMap] Saving all worlds once, to make sure the level.dat is present...
[21:21:21] [Server thread/WARN]: A manual (plugin-induced) save has been detected while server is configured to auto-save. This may affect performance.
[21:21:22] [BlueMap-Load/INFO]: [BlueMap] Loading...
[21:21:22] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.14.1
[21:21:22] [Server thread/INFO]: [NBTAPI] Checking bindings...
[21:21:22] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[21:21:22] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[21:21:22] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[21:21:22] [BlueMap-Load/INFO]: [BlueMap] Loading resources...
[21:21:23] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[21:21:23] [Server thread/INFO]: [EliteMobs] Enabling EliteMobs v9.2.3
[21:21:23] [Server thread/INFO]:  _____ _     _____ _____ ________  ______________  _____
[21:21:23] [Server thread/INFO]: |  ___| |   |_   _|_   _|  ___|  \/  |  _  | ___ \/  ___|
[21:21:23] [Server thread/INFO]: | |__ | |     | |   | | | |__ | .  . | | | | |_/ /\ `--.
[21:21:23] [Server thread/INFO]: |  __|| |     | |   | | |  __|| |\/| | | | | ___ \ `--. \
[21:21:23] [Server thread/INFO]: | |___| |_____| |_  | | | |___| |  | \ \_/ / |_/ //\__/ /
[21:21:23] [Server thread/INFO]: \____/\_____/\___/  \_/ \____/\_|  |_/\___/\____/ \____/
[21:21:23] [Server thread/INFO]: By MagmaGuy - v. 9.2.3
[21:21:23] [Server thread/INFO]: [EliteMobs] Supported server version detected: v1_21_R1
[21:21:23] [Server thread/INFO]: [EliteMobs] Other boss mob plugins have been detected, high compatibility mode will be used!
[21:21:23] [BlueMap-Load/INFO]: [BlueMap] Loading textures...
[21:21:25] [Server thread/INFO]: [EliteMobs] WorldGuard compatibility is enabled!
[21:21:25] [Server thread/INFO]: [EliteMobs] [(EliteMobs] Vault detected.
[21:21:25] [Server thread/INFO]: [EliteMobs] Opened database successfully
[21:21:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: elitemobs [9.2.3]
[21:21:25] [BlueMap-Load/INFO]: [BlueMap] Baking resources...
[21:21:25] [BlueMap-Load/INFO]: [BlueMap] Resources loaded.
[21:21:25] [BlueMap-Load/INFO]: [BlueMap] Initializing Storage: 'file' (Type: 'bluemap:file')
[21:21:25] [BlueMap-Load/INFO]: [BlueMap] Loading map 'survival_nether'...
[21:21:25] [BlueMap-Load/INFO]: [BlueMap] Loading map 'towny'...
[21:21:25] [BlueMap-Load/INFO]: [BlueMap] Loading map 'survival_resource'...
[21:21:26] [BlueMap-Load/INFO]: [BlueMap] Loading map 'albion'...
[21:21:26] [BlueMap-Load/INFO]: [BlueMap] Loading map 'survival'...
[21:21:26] [BlueMap-Load/INFO]: [BlueMap] Loading map 'survival_the_end'...
[21:21:26] [BlueMap-Load/INFO]: [BlueMap] Loading map 'creative'...
[21:21:26] [BlueMap-Load/INFO]: [BlueMap] Loading map 'dungeon'...
[21:21:26] [BlueMap-Load/INFO]: [BlueMap] WebServer bound to all network interfaces on port 80
[21:21:26] [Thread-40/INFO]: [BlueMap] WebServer started.
[21:21:30] [Server thread/INFO]: [EliteMobs] Loading world em_primis !
[21:21:30] [Server thread/INFO]: Preparing start region for dimension minecraft:em_primis
[21:21:30] [Server thread/INFO]: Time elapsed: 15 ms
[21:21:30] [Server thread/INFO]: [WorldGuard] (em_primis) TNT ignition is PERMITTED.
[21:21:30] [Server thread/INFO]: [WorldGuard] (em_primis) Lighters are PERMITTED.
[21:21:30] [Server thread/INFO]: [WorldGuard] (em_primis) Lava fire is PERMITTED.
[21:21:30] [Server thread/INFO]: [WorldGuard] (em_primis) Fire spread is UNRESTRICTED.
[21:21:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'em_primis'
[21:21:30] [Server thread/INFO]: [EliteMobs] Loading world em_primis_wormhole !
[21:21:30] [Server thread/INFO]: Preparing start region for dimension minecraft:em_primis_wormhole
[21:21:30] [Server thread/INFO]: Time elapsed: 26 ms
[21:21:30] [Server thread/INFO]: [WorldGuard] (em_primis_wormhole) TNT ignition is PERMITTED.
[21:21:30] [Server thread/INFO]: [WorldGuard] (em_primis_wormhole) Lighters are PERMITTED.
[21:21:30] [Server thread/INFO]: [WorldGuard] (em_primis_wormhole) Lava fire is PERMITTED.
[21:21:30] [Server thread/INFO]: [WorldGuard] (em_primis_wormhole) Fire spread is UNRESTRICTED.
[21:21:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'em_primis_wormhole'
[21:21:30] [Server thread/INFO]: [EliteMobs] Loading world em_fireworks !
[21:21:30] [Server thread/INFO]: Preparing start region for dimension minecraft:em_fireworks
[21:21:30] [Server thread/INFO]: Time elapsed: 27 ms
[21:21:30] [Server thread/INFO]: [WorldGuard] (em_fireworks) TNT ignition is PERMITTED.
[21:21:30] [Server thread/INFO]: [WorldGuard] (em_fireworks) Lighters are PERMITTED.
[21:21:30] [Server thread/INFO]: [WorldGuard] (em_fireworks) Lava fire is PERMITTED.
[21:21:30] [Server thread/INFO]: [WorldGuard] (em_fireworks) Fire spread is UNRESTRICTED.
[21:21:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'em_fireworks'
[21:21:30] [Server thread/INFO]: [EliteMobs] Loading world em_the_catacombs !
[21:21:30] [Server thread/INFO]: Preparing start region for dimension minecraft:em_the_catacombs
[21:21:30] [Server thread/INFO]: Time elapsed: 20 ms
[21:21:30] [Server thread/INFO]: [WorldGuard] (em_the_catacombs) TNT ignition is PERMITTED.
[21:21:30] [Server thread/INFO]: [WorldGuard] (em_the_catacombs) Lighters are PERMITTED.
[21:21:30] [Server thread/INFO]: [WorldGuard] (em_the_catacombs) Lava fire is PERMITTED.
[21:21:30] [Server thread/INFO]: [WorldGuard] (em_the_catacombs) Fire spread is UNRESTRICTED.
[21:21:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'em_the_catacombs'
[21:21:30] [Server thread/INFO]: [EliteMobs] Loading world em_sewer_maze !
[21:21:30] [Server thread/INFO]: Preparing start region for dimension minecraft:em_sewer_maze
[21:21:30] [Server thread/INFO]: Time elapsed: 27 ms
[21:21:30] [Server thread/INFO]: [WorldGuard] (em_sewer_maze) TNT ignition is PERMITTED.
[21:21:30] [Server thread/INFO]: [WorldGuard] (em_sewer_maze) Lighters are PERMITTED.
[21:21:30] [Server thread/INFO]: [WorldGuard] (em_sewer_maze) Lava fire is PERMITTED.
[21:21:30] [Server thread/INFO]: [WorldGuard] (em_sewer_maze) Fire spread is UNRESTRICTED.
[21:21:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'em_sewer_maze'
[21:21:30] [Server thread/INFO]: [EliteMobs] Loading world em_shadow_of_the_binder_of_worlds !
[21:21:30] [Server thread/INFO]: Preparing start region for dimension minecraft:em_shadow_of_the_binder_of_worlds
[21:21:30] [Server thread/INFO]: Time elapsed: 17 ms
[21:21:30] [Server thread/INFO]: [WorldGuard] (em_shadow_of_the_binder_of_worlds) TNT ignition is PERMITTED.
[21:21:30] [Server thread/INFO]: [WorldGuard] (em_shadow_of_the_binder_of_worlds) Lighters are PERMITTED.
[21:21:30] [Server thread/INFO]: [WorldGuard] (em_shadow_of_the_binder_of_worlds) Lava fire is PERMITTED.
[21:21:30] [Server thread/INFO]: [WorldGuard] (em_shadow_of_the_binder_of_worlds) Fire spread is UNRESTRICTED.
[21:21:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'em_shadow_of_the_binder_of_worlds'
[21:21:30] [Server thread/INFO]: [EliteMobs] Loading world em_hallosseum !
[21:21:30] [Server thread/INFO]: Preparing start region for dimension minecraft:em_hallosseum
[21:21:30] [Server thread/INFO]: Time elapsed: 27 ms
[21:21:30] [Server thread/INFO]: [WorldGuard] (em_hallosseum) TNT ignition is PERMITTED.
[21:21:30] [Server thread/INFO]: [WorldGuard] (em_hallosseum) Lighters are PERMITTED.
[21:21:30] [Server thread/INFO]: [WorldGuard] (em_hallosseum) Lava fire is PERMITTED.
[21:21:30] [Server thread/INFO]: [WorldGuard] (em_hallosseum) Fire spread is UNRESTRICTED.
[21:21:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'em_hallosseum'
[21:21:30] [Server thread/INFO]: [EliteMobs] Loading world em_the_dark_cathedral !
[21:21:30] [Server thread/INFO]: Preparing start region for dimension minecraft:em_the_dark_cathedral
[21:21:30] [Server thread/INFO]: Time elapsed: 29 ms
[21:21:30] [Server thread/INFO]: [WorldGuard] (em_the_dark_cathedral) TNT ignition is PERMITTED.
[21:21:30] [Server thread/INFO]: [WorldGuard] (em_the_dark_cathedral) Lighters are PERMITTED.
[21:21:30] [Server thread/INFO]: [WorldGuard] (em_the_dark_cathedral) Lava fire is PERMITTED.
[21:21:30] [Server thread/INFO]: [WorldGuard] (em_the_dark_cathedral) Fire spread is UNRESTRICTED.
[21:21:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'em_the_dark_cathedral'
[21:21:30] [Server thread/INFO]: [EliteMobs] Loading world em_steamworks_lair !
[21:21:30] [Server thread/INFO]: Preparing start region for dimension minecraft:em_steamworks_lair
[21:21:31] [Server thread/INFO]: Time elapsed: 29 ms
[21:21:31] [Server thread/INFO]: [WorldGuard] (em_steamworks_lair) TNT ignition is PERMITTED.
[21:21:31] [Server thread/INFO]: [WorldGuard] (em_steamworks_lair) Lighters are PERMITTED.
[21:21:31] [Server thread/INFO]: [WorldGuard] (em_steamworks_lair) Lava fire is PERMITTED.
[21:21:31] [Server thread/INFO]: [WorldGuard] (em_steamworks_lair) Fire spread is UNRESTRICTED.
[21:21:31] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'em_steamworks_lair'
[21:21:31] [Server thread/INFO]: [EliteMobs] Loading world em_adventurers_guild !
[21:21:31] [Server thread/INFO]: Preparing start region for dimension minecraft:em_adventurers_guild
[21:21:31] [Server thread/INFO]: Time elapsed: 27 ms
[21:21:31] [Server thread/INFO]: [WorldGuard] (em_adventurers_guild) TNT ignition is PERMITTED.
[21:21:31] [Server thread/INFO]: [WorldGuard] (em_adventurers_guild) Lighters are PERMITTED.
[21:21:31] [Server thread/INFO]: [WorldGuard] (em_adventurers_guild) Lava fire is PERMITTED.
[21:21:31] [Server thread/INFO]: [WorldGuard] (em_adventurers_guild) Fire spread is UNRESTRICTED.
[21:21:31] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'em_adventurers_guild'
[21:21:31] [Server thread/INFO]: [EliteMobs] Loading world em_knight_castle !
[21:21:31] [Server thread/INFO]: Preparing start region for dimension minecraft:em_knight_castle
[21:21:31] [Server thread/INFO]: Time elapsed: 21 ms
[21:21:31] [Server thread/INFO]: [WorldGuard] (em_knight_castle) TNT ignition is PERMITTED.
[21:21:31] [Server thread/INFO]: [WorldGuard] (em_knight_castle) Lighters are PERMITTED.
[21:21:31] [Server thread/INFO]: [WorldGuard] (em_knight_castle) Lava fire is PERMITTED.
[21:21:31] [Server thread/INFO]: [WorldGuard] (em_knight_castle) Fire spread is UNRESTRICTED.
[21:21:31] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'em_knight_castle'
[21:21:31] [Server thread/INFO]: [EliteMobs] Loading world em_oasis !