Paste #136375: Unnamed Server Log Paste

Date: 2025/09/29 02:26:47 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[09:20:44] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.2+13-LTS; Eclipse Adoptium Temurin-21.0.2+13) on Linux 4.18.0-553.40.1.el8_10.x86_64 (amd64)
[09:20:44] [ServerMain/INFO]: [bootstrap] Loading Purpur 1.21.8-2489-HEAD@4fd4df0 (2025-08-12T22:40:08Z) for Minecraft 1.21.8
[09:20:44] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[09:20:45] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/Citizens.jar'...
[09:20:46] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/Citizens.jar' in 934ms.
[09:20:47] [ServerMain/INFO]: [PluginInitializerManager] Initialized 67 plugins
[09:20:47] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (7):
 - AdvancedKits (1.21.10), EconomyShopGUI-Premium (5.27.2), HuskHomes (4.9.9), MiniMOTD (2.2.0), Nexo (1.12.1), RoseStacker (1.5.36), SRVaults (1.0-SNAPSHOT)
[09:20:47] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (60):
 - AdvancedJobs (1.8.32), AdvancedPortals (2.5.0), AuraSkills (2.3.7), AxAFKZone (1.7.2), BetterStructures (2.0.0), BlueMap (5.11), Chunky (1.4.40), ChunkyBorder (1.2.23), Citizens (2.0.39-SNAPSHOT (build 3941)), CoreProtect (23.0), DecentHolograms (2.9.7), DeluxeMenus (1.14.1-Release), Denizen (1.3.1-SNAPSHOT (build 7222-DEV)), DiscordSRV (1.30.1), DiscordSRVUtils (1.2.14-BETA-1), DiscordUtils (3.3.0), EliteMobs (9.5.4), EpicRename (3.12.2), Essentials (2.22.0-dev+29-37e1054), EssentialsSpawn (2.22.0-dev+29-37e1054), EvenMoreFish (2.0.13), FastAsyncWorldEdit (2.13.3-SNAPSHOT-1174;d83f24a), FreeMinecraftModels (2.3.8), GSit (2.4.3), Geyser-Recipe-Fix (1.5), Geyser-Spigot (2.8.3-SNAPSHOT), GeyserExtras (2.0.0), GrimAC (2.3.72-070116b03), HeadDrop (5.4.5), JoinCommands (3.1.0.120), LPC (3.6.2), Lands (7.16.16), LibsDisguises (11.0.7-SNAPSHOT), LuckPerms (5.5.0), Multiverse-Core (5.3.0-pre.3), NBTAPI (2.15.2), PlaceholderAPI (2.11.6), PlayTimePulse (1.0.5-SNAPSHOT), ProtocolLib (5.4.0), Sentinel (2.9.2-SNAPSHOT (build 529)), SimpleNicks (2.1.2), TAB (5.2.5), Tebex (2.2.1), TempFly (3.1.7), TreeCuter (v1.9.1), UltimateAutoRestart (2025.07a), UltraEconomy (2.10.6), Vault (2.15.1), ViaBackwards (5.4.3-SNAPSHOT), ViaVersion (5.5.0-SNAPSHOT), Votifier (2.7.3), VotingPlugin (6.19), WorldBorder (2.1.5), WorldGuard (7.0.14+2339-43997ec), WorldGuardExtraFlags (4.2.4-SNAPSHOT), ZAutoBroadcast (1.2), ajLeaderboards (2.10.1), floodgate (2.2.4-SNAPSHOT (b118-40d320a)), packetevents (2.9.5), sleep-most (5.6.0)
[09:20:49] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[09:20:51] [ServerMain/INFO]: Loaded 1414 recipes
[09:20:51] [ServerMain/INFO]: Loaded 1636 advancements
[09:20:51] [ServerMain/INFO]: [ca.spottedleaf.dataconverter.minecraft.datatypes.MCTypeRegistry] Initialising converters for DataConverter...
[09:20:51] [ServerMain/INFO]: [ca.spottedleaf.dataconverter.minecraft.datatypes.MCTypeRegistry] Finished initialising converters for DataConverter in 205.9ms
[09:20:51] [Server thread/INFO]: Starting minecraft server version 1.21.8
[09:20:51] [Server thread/INFO]: Loading properties
[09:20:51] [Server thread/INFO]: This server is running Purpur version 1.21.8-2489-HEAD@4fd4df0 (2025-08-12T22:40:08Z) (Implementing API version 1.21.8-R0.1-SNAPSHOT)
[09:20:51] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[09:20:51] [Server thread/INFO]: Server Ping Player Sample Count: 12
[09:20:51] [Server thread/INFO]: Using 4 threads for Netty based IO
[09:20:51] [Server thread/INFO]: [MoonriseCommon] Paper is using 1 worker threads, 1 I/O threads
[09:20:51] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using population gen parallelism: true
[09:20:52] [Server thread/INFO]: Default game type: SURVIVAL
[09:20:52] [Server thread/INFO]: Generating keypair
[09:20:52] [Server thread/INFO]: Starting Minecraft server on *:25565
[09:20:52] [Server thread/INFO]: Using epoll channel type
[09:20:52] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[09:20:52] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
[09:20:52] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 3 libraries... please wait
[09:20:52] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/ch/ethz/globis/phtree/phtree/2.8.2/phtree-2.8.2.jar
[09:20:52] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/org/joml/joml/1.10.8/joml-1.10.8.jar
[09:20:52] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.16/fastutil-8.5.16.jar
[09:20:52] [Server thread/INFO]: [SpigotLibraryLoader] [BlueMap] Loading 1 libraries... please wait
[09:20:52] [Server thread/INFO]: [SpigotLibraryLoader] [BlueMap] Loaded library /home/container/libraries/com/flowpowered/flow-math/1.0.3/flow-math-1.0.3.jar
[09:20:52] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loading 5 libraries... please wait
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/org/redisson/redisson/3.48.0/redisson-3.48.0.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/netty/netty-common/4.1.121.Final/netty-common-4.1.121.Final.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/netty/netty-codec/4.1.121.Final/netty-codec-4.1.121.Final.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/netty/netty-buffer/4.1.121.Final/netty-buffer-4.1.121.Final.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/netty/netty-transport/4.1.121.Final/netty-transport-4.1.121.Final.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/netty/netty-resolver/4.1.121.Final/netty-resolver-4.1.121.Final.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/netty/netty-resolver-dns/4.1.121.Final/netty-resolver-dns-4.1.121.Final.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/netty/netty-codec-dns/4.1.121.Final/netty-codec-dns-4.1.121.Final.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/netty/netty-handler/4.1.121.Final/netty-handler-4.1.121.Final.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/netty/netty-transport-native-unix-common/4.1.121.Final/netty-transport-native-unix-common-4.1.121.Final.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/javax/cache/cache-api/1.1.1/cache-api-1.1.1.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/projectreactor/reactor-core/3.6.2/reactor-core-3.6.2.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/reactivex/rxjava3/rxjava/3.1.8/rxjava-3.1.8.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/com/esotericsoftware/kryo/5.6.2/kryo-5.6.2.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/com/esotericsoftware/reflectasm/1.11.9/reflectasm-1.11.9.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/org/objenesis/objenesis/3.4/objenesis-3.4.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/com/esotericsoftware/minlog/1.3.1/minlog-1.3.1.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/com/fasterxml/jackson/core/jackson-annotations/2.18.2/jackson-annotations-2.18.2.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.18.2/jackson-dataformat-yaml-2.18.2.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/org/yaml/snakeyaml/2.3/snakeyaml-2.3.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/com/fasterxml/jackson/core/jackson-core/2.18.2/jackson-core-2.18.2.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/com/fasterxml/jackson/core/jackson-databind/2.18.2/jackson-databind-2.18.2.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.18.2/jackson-datatype-jsr310-2.18.2.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/net/bytebuddy/byte-buddy/1.15.3/byte-buddy-1.15.3.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/org/jodd/jodd-util/6.3.0/jodd-util-6.3.0.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/com/zaxxer/HikariCP/4.0.3/HikariCP-4.0.3.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/org/slf4j/slf4j-jdk14/1.7.32/slf4j-jdk14-1.7.32.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.32/slf4j-api-1.7.32.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loading 1 libraries... please wait
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loading 2 libraries... please wait
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/mongodb-driver-sync/4.8.1/mongodb-driver-sync-4.8.1.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/bson/4.8.1/bson-4.8.1.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/mongodb-driver-core/4.8.1/mongodb-driver-core-4.8.1.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/bson-record-codec/4.8.1/bson-record-codec-4.8.1.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/redis/clients/jedis/4.3.1/jedis-4.3.1.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/json/json/20220320/json-20220320.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loading 7 libraries... please wait
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/org/flywaydb/flyway-core/10.22.0/flyway-core-10.22.0.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.15.2/jackson-dataformat-toml-2.15.2.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/fasterxml/jackson/core/jackson-databind/2.15.2/jackson-databind-2.15.2.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/fasterxml/jackson/core/jackson-core/2.15.2/jackson-core-2.15.2.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.2/jackson-datatype-jsr310-2.15.2.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/fasterxml/jackson/core/jackson-annotations/2.15.2/jackson-annotations-2.15.2.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/org/flywaydb/flyway-mysql/10.22.0/flyway-mysql-10.22.0.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/devskiller/friendly-id/friendly-id/1.1.0/friendly-id-1.1.0.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/googlecode/json-simple/json-simple/1.1.1/json-simple-1.1.1.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/junit/junit/4.10/junit-4.10.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/org/apache/maven/maven-artifact/4.0.0-rc-4/maven-artifact-4.0.0-rc-4.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/org/jetbrains/annotations/26.0.2/annotations-26.0.2.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/google/guava/guava/33.4.8-jre/guava-33.4.8-jre.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/google/guava/failureaccess/1.0.3/failureaccess-1.0.3.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/google/errorprone/error_prone_annotations/2.36.0/error_prone_annotations-2.36.0.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/google/j2objc/j2objc-annotations/3.0.0/j2objc-annotations-3.0.0.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedJobs] Loading 2 libraries... please wait
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedJobs] Loaded library /home/container/libraries/com/zaxxer/HikariCP/3.4.5/HikariCP-3.4.5.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedJobs] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedJobs] Loaded library /home/container/libraries/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [HeadDrop] Loading 2 libraries... please wait
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [HeadDrop] Loaded library /home/container/libraries/com/zaxxer/HikariCP/6.3.0/HikariCP-6.3.0.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [HeadDrop] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[09:20:53] [Server thread/INFO]: [SpigotLibraryLoader] [HeadDrop] Loaded library /home/container/libraries/org/json/json/20250517/json-20250517.jar
[09:20:53] [Server thread/INFO]: [ZAutoBroadcast] Loading server plugin ZAutoBroadcast v1.2
[09:20:53] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[09:20:53] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.5.0-SNAPSHOT
[09:20:53] [Server thread/INFO]: [ViaVersion] ViaVersion 5.5.0-SNAPSHOT is now loaded. Registering protocol transformers and injecting...
[09:20:53] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[09:20:54] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[09:20:54] [Server thread/INFO]: [ViaBackwards] Loading translations...
[09:20:54] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[09:20:54] [Server thread/INFO]: [UltraEconomy] Loading server plugin UltraEconomy v2.10.6
[09:20:54] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.5.0
[09:20:54] [Server thread/INFO]: [Vault] Loading server plugin Vault v2.15.1
[09:20:54] [Server thread/INFO]: [floodgate] Loading server plugin floodgate v2.2.4-SNAPSHOT (b118-40d320a)
[09:20:55] [Server thread/INFO]: [floodgate] Took 377ms to boot Floodgate
[09:20:55] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.13.3-SNAPSHOT-1174;d83f24a
[09:20:55] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@39246bd]
[09:20:55] [Server thread/INFO]: [Geyser-Spigot] Loading server plugin Geyser-Spigot v2.8.3-SNAPSHOT
[09:20:56] [Server thread/INFO]: [Geyser-Spigot] Loading extensions...
[09:20:56] [Server thread/INFO]: [Geyser-Spigot] Loaded 0 extension(s)
[09:20:56] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.4.0
[09:20:56] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.4.3-SNAPSHOT
[09:20:56] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.14+2339-43997ec
[09:20:56] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.9.5
[09:20:56] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.39-SNAPSHOT (build 3941)
[09:20:56] [Server thread/INFO]: [CoreLogging] Loading server plugin Multiverse-Core v5.3.0-pre.3
[09:20:56] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.22.0-dev+29-37e1054
[09:20:56] [Server thread/INFO]: [LibsDisguises] Loading server plugin LibsDisguises v11.0.7-SNAPSHOT
[09:20:56] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.9.7
[09:20:56] [Server thread/INFO]: [Sentinel] Loading server plugin Sentinel v2.9.2-SNAPSHOT (build 529)
[09:20:56] [Server thread/INFO]: [BlueMap] Loading server plugin BlueMap v5.11
[09:20:56] [Server thread/INFO]: [Votifier] Loading server plugin Votifier v2.7.3
[09:20:56] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.30.1
[09:20:56] [Server thread/INFO]: [FreeMinecraftModels] Loading server plugin FreeMinecraftModels v2.3.8
[09:20:56] [Server thread/INFO]: [FreeMinecraftModels] MagmaCore v1.13-SNAPSHOT initialized!
[09:20:56] [Server thread/INFO]: [FreeMinecraftModels] Registered /logify command
[09:20:56] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.2.5
[09:20:56] [Server thread/INFO]: [Lands] Loading server plugin Lands v7.16.16
[09:20:56] [Server thread/WARN]: [Lands] [Config] Invalid expiration entry: 30d
[09:20:56] [Server thread/INFO]: [Lands] Using default item currency for economy. You can edit the currency item for each locale in the corresponding GUI language files. Strict mode: false
[09:20:56] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[09:20:57] [Server thread/INFO]: [Lands] Using SQLite: /home/container/plugins/Lands/Data
[09:20:57] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ConnectionPool - Starting...
[09:20:57] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ConnectionPool - Start completed.
[09:20:57] [Server thread/INFO]: [Lands] Successfully connected to SQL database.
[09:20:57] [Server thread/INFO]: [Lands] Setting up tables...
[09:20:57] [Server thread/INFO]: [Lands] Your SQL DBMS version: 3.49.1 (SQLite) Wiki: https://wiki.incredibleplugins.com/lands/configuration/database
[09:20:57] [Server thread/INFO]: [Lands] Successfully connected to SQL database.
[09:20:57] [Server thread/INFO]: [Lands] Added flag 'lands-claim' to the plugin WorldGuard.
[09:20:57] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.10.1
[09:20:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[09:20:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[09:20:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[09:20:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[09:20:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[09:20:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[09:20:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[09:20:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[09:20:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[09:20:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[09:20:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[09:20:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[09:20:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[09:20:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[09:20:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[09:20:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[09:20:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okhttp
[09:20:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okhttp
[09:20:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio
[09:20:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio
[09:20:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio-jvm
[09:20:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio-jvm
[09:20:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk8
[09:20:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk8
[09:20:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib
[09:20:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib
[09:20:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-common
[09:20:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-common
[09:20:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for annotations
[09:20:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for annotations
[09:20:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk7
[09:20:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk7
[09:20:57] [Server thread/INFO]: [WorldBorder] Loading server plugin WorldBorder v2.1.5
[09:20:57] [Server thread/INFO]: [GSit] Loading server plugin GSit v2.4.3
[09:20:57] [Server thread/INFO]: [VotingPlugin] Loading server plugin VotingPlugin v6.19
[09:20:57] [Server thread/INFO]: [EliteMobs] Loading server plugin EliteMobs v9.5.4
[09:20:57] [Server thread/INFO]: [EliteMobs] MagmaCore v1.13-SNAPSHOT initialized!
[09:20:57] [Server thread/INFO]: [EliteMobs] /logify is already registered, skipping.
[09:20:57] [Server thread/INFO]: [EliteMobs]  WorldGuard detected.
[09:20:57] [Server thread/INFO]: [Denizen] Loading server plugin Denizen v1.3.1-SNAPSHOT (build 7222-DEV)
[09:20:57] [Server thread/INFO]: [AuraSkills] Loading server plugin AuraSkills v2.3.7
[09:20:57] [Server thread/INFO]: [Nexo] Loading server plugin Nexo v1.12.1
[09:20:57] [Server thread/INFO]: [DiscordUtils] Loading server plugin DiscordUtils v3.3.0
[09:20:57] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.4.40
[09:20:57] [Server thread/INFO]: [EconomyShopGUI-Premium] Loading server plugin EconomyShopGUI-Premium v5.27.2
[09:20:57] [Server thread/INFO]: [UltimateAutoRestart] Loading server plugin UltimateAutoRestart v2025.07a
[09:20:57] [Server thread/INFO]: [GrimAC] Loading server plugin GrimAC v2.3.72-070116b03
[09:20:57] [Server thread/INFO]: [GrimAC] Loading PacketEvents...
[09:20:57] [Server thread/INFO]: [AxAFKZone] Loading server plugin AxAFKZone v1.7.2
[09:20:57] [Server thread/INFO]: [Geyser-Recipe-Fix] Loading server plugin Geyser-Recipe-Fix v1.5
[09:20:57] [Server thread/INFO]: [PlayTimePulse] Loading server plugin PlayTimePulse v1.0.5-SNAPSHOT
[09:20:57] [Server thread/INFO]: [Join Commands] Loading server plugin JoinCommands v3.1.0.120
[09:20:57] [Server thread/INFO]: [sleep-most] Loading server plugin sleep-most v5.6.0
[09:20:57] [Server thread/INFO]: [AdvancedKits] Loading server plugin AdvancedKits v1.21.10
[09:20:57] [Server thread/INFO]: [EvenMoreFish] Loading server plugin EvenMoreFish v2.0.13
[09:20:57] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.8! Trying to find NMS support
[09:20:57] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R5' loaded!
[09:20:57] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'EvenMoreFish' to create a bStats instance!
[09:20:57] [Server thread/INFO]: [CommandAPI] Loaded platform NMS_1_21_R5 > NMS_Common > CommandAPIBukkit
[09:20:57] [Server thread/INFO]: [CommandAPI] Hooked into Spigot successfully for Chat/ChatComponents
[09:20:57] [Server thread/INFO]: [CommandAPI] Hooked into Adventure for AdventureChat/AdventureChatComponents
[09:20:57] [Server thread/INFO]: [CommandAPI] Hooked into Paper for paper-specific API implementations
[09:20:57] [Server thread/INFO]: [AdvancedJobs] Loading server plugin AdvancedJobs v1.8.32
[09:20:57] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.1-Release
[09:20:57] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version! The following Item options will not work: nbt_int, nbt_ints, nbt_string and nbt_strings.
[09:20:57] [Server thread/INFO]: [GeyserExtras] Loading server plugin GeyserExtras v2.0.0
[09:20:57] [Server thread/INFO]: [BetterStructures] Loading server plugin BetterStructures v2.0.0
[09:20:57] [Server thread/INFO]: [BetterStructures] MagmaCore v1.13-SNAPSHOT initialized!
[09:20:57] [Server thread/INFO]: [BetterStructures] /logify is already registered, skipping.
[09:20:57] [Server thread/INFO]: [BetterStructures] Enabling flags:
[09:20:57] [Server thread/INFO]: [BetteStructures] - betterstructures-protect
[09:20:57] [Server thread/INFO]: [SimpleNicks] Loading server plugin SimpleNicks v2.1.2
[09:20:57] [Server thread/INFO]: [HeadDrop] Loading server plugin HeadDrop v5.4.5
[09:20:57] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[09:20:57] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@5030b237
[09:20:57] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[09:20:57] [Server thread/INFO]: [HeadDrop] Cleaned up 0 rows older than 30 days.
[09:20:57] [Server thread/INFO]: [HeadDrop] Hooked into WorldGuard!
[09:20:57] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.4-SNAPSHOT
[09:20:57] [Server thread/INFO]: [MiniMOTD] Loading server plugin MiniMOTD v2.2.0
[09:20:57] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.22.0-dev+29-37e1054
[09:20:57] [Server thread/INFO]: [SRVaults] Loading server plugin SRVaults v1.0-SNAPSHOT
[09:20:57] [Server thread/INFO]: [TreeCuter] Loading server plugin TreeCuter vv1.9.1
[09:20:57] [Server thread/INFO]: [TempFly] Loading server plugin TempFly v3.1.7
[09:20:57] [Server thread/INFO]: [Tebex] Loading server plugin Tebex v2.2.1
[09:20:57] [Server thread/INFO]: [HuskHomes] Loading server plugin HuskHomes v4.9.9
[09:20:58] [Server thread/INFO]: [HuskHomes] Registered 'on_load' hooks
[09:20:58] [Server thread/INFO]: [HuskHomes] Successfully loaded HuskHomes v4.9.9
[09:20:58] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.15.2
[09:20:58] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.8! Trying to find NMS support
[09:20:58] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R5' loaded!
[09:20:58] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'NBTAPI' to create a bStats instance!
[09:20:58] [Server thread/INFO]: [RoseStacker] Loading server plugin RoseStacker v1.5.36
[09:20:58] [Server thread/INFO]: [LPC] Loading server plugin LPC v3.6.2
[09:20:58] [Server thread/INFO]: [DiscordSRVUtils] Loading server plugin DiscordSRVUtils v1.2.14-BETA-1
[09:20:58] [Thread-8/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[09:20:58] [Server thread/INFO]: [EpicRename] Loading server plugin EpicRename v3.12.2
[09:20:58] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v23.0
[09:20:58] [Server thread/INFO]: [ChunkyBorder] Loading server plugin ChunkyBorder v1.2.23
[09:20:58] [Server thread/INFO]: [AdvancedPortals] Loading server plugin AdvancedPortals v2.5.0
[09:20:58] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[09:20:58] [Server thread/INFO]: [UltraEconomy] Enabling UltraEconomy v2.10.6
[09:20:58] [Server thread/INFO]: [UltraEconomy] Loading Plugin...
[09:20:59] [Server thread/INFO]: [UltraEconomy] Hooked into Vault
[09:20:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: uecon [1.0.0]
[09:20:59] [Server thread/INFO]: [UltraEconomy] Hooked into PlaceholderAPI
[09:20:59] [Server thread/INFO]: [UltraEconomy] Successfully loaded in 642 ms
[09:20:59] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.5.0
[09:20:59] [Server thread/INFO]:         __    
[09:20:59] [Server thread/INFO]:   |    |__)   LuckPerms v5.5.0
[09:20:59] [Server thread/INFO]:   |___ |      Running on Bukkit - Purpur
[09:20:59] [Server thread/INFO]: 
[09:20:59] [Server thread/INFO]: [LuckPerms] Loading configuration...
[09:21:00] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[09:21:00] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[09:21:00] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[09:21:00] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1814ms)
[09:21:00] [Server thread/INFO]: [Vault] Enabling Vault v2.15.1
[09:21:00] [Server thread/INFO]: [Vault] Enabled Version 2.15.1
[09:21:00] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[09:21:00] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.13.3-SNAPSHOT-1174;d83f24a
[09:21:01] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[09:21:01] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[09:21:01] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[09:21:01] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[09:21:01] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_6.PaperweightFaweAdapter as the Bukkit adapter
[09:21:01] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.4.0
[09:21:01] [Server thread/INFO]: [FreeMinecraftModels] Enabling FreeMinecraftModels v2.3.8
[09:21:01] [Server thread/INFO]:  _______ __                               ___ __   _______           __         __        
[09:21:01] [Server thread/INFO]: |   |   |__|.-----.-----.----.----.---.-.'  _|  |_|   |   |.-----.--|  |.-----.|  |.-----.
[09:21:01] [Server thread/INFO]: |       |  ||     |  -__|  __|   _|  _  |   _|   _|       ||  _  |  _  ||  -__||  ||__ --|
[09:21:01] [Server thread/INFO]: |__|_|__|__||__|__|_____|____|__| |___._|__| |____|__|_|__||_____|_____||_____||__||_____|
[09:21:01] [Server thread/INFO]: Version 2.3.8
[09:21:01] [ForkJoinPool.commonPool-worker-1/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 1 build(s) out of date.
You are running build 1174, the latest version is build 1175.
Update at https://ci.athion.net/job/FastAsyncWorldEdit
[09:21:02] [Server thread/INFO]: [FreeMinecraftModels] Supported server version detected: v1_21_R5
[09:21:02] [Server thread/INFO]: [com.magmaguy.org.reflections.Reflections] Reflections took 19 ms to scan 125 urls, producing 0 keys and 0 values
[09:21:02] [Server thread/INFO]: [SRVaults] Enabling SRVaults v1.0-SNAPSHOT
[09:21:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: srvaults [1.0.0]
[09:21:02] [Server thread/INFO]: [SRVaults] PlaceholderAPI expansion registered!
[09:21:02] [Server thread/INFO]: [SRVaults] bStats metrics initialized!
[09:21:02] [Server thread/INFO]: SRVaults plugin has been enabled!
[09:21:02] [Server thread/INFO]: [SRVaults] SRVaults plugin has been enabled!
[09:21:02] [Server thread/INFO]: Preparing level "world"
[09:21:03] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[09:21:03] [Server thread/INFO]: Preparing spawn area: 0%
[09:21:04] [Server thread/INFO]: Preparing spawn area: 0%
[09:21:04] [Server thread/INFO]: Time elapsed: 571 ms
[09:21:04] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[09:21:04] [Server thread/INFO]: Preparing spawn area: 0%
[09:21:04] [Server thread/INFO]: Time elapsed: 160 ms
[09:21:04] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[09:21:04] [Server thread/INFO]: Preparing spawn area: 0%
[09:21:04] [Server thread/INFO]: Time elapsed: 137 ms
[09:21:04] [Server thread/INFO]: [ZAutoBroadcast] Enabling ZAutoBroadcast v1.2
[09:21:04] [Server thread/INFO]: [ZAutoBroadcast] ZAutoBroadcast has begun enabling.
[09:21:04] [Server thread/INFO]: [ZAutoBroadcast] MiniPlaceholders not found. MiniPlaceholders support disabled.
[09:21:04] [Server thread/INFO]: [ZAutoBroadcast] PlaceholderAPI enabled.
[09:21:04] [Server thread/INFO]: [ZAutoBroadcast] ZAutoBroadcast has finished enabling.
[09:21:04] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[09:21:04] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[09:21:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: vaultunlocked [2.13.1]
[09:21:04] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.5.0-SNAPSHOT
[09:21:04] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21.7-1.21.8 (772)
[09:21:04] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.4-SNAPSHOT (b118-40d320a)
[09:21:04] [Server thread/INFO]: [Geyser-Spigot] Enabling Geyser-Spigot v2.8.3-SNAPSHOT
[09:21:05] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.4.3-SNAPSHOT
[09:21:05] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.14+2339-43997ec
[09:21:05] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[09:21:05] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[09:21:05] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[09:21:05] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[09:21:05] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[09:21:05] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[09:21:05] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[09:21:05] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[09:21:05] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[09:21:05] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[09:21:05] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[09:21:05] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[09:21:05] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[09:21:05] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[09:21:05] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[09:21:05] [Server thread/INFO]: [WorldGuard] Loading region data...
[09:21:05] [Server thread/INFO]: [packetevents] Enabling packetevents v2.9.5
[09:21:05] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[09:21:05] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.39-SNAPSHOT (build 3941)
[09:21:05] [packetevents-update-check-thread/INFO]: [packetevents] You are running the latest release of PacketEvents. Your build: (2.9.5)
[09:21:05] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[09:21:06] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[09:21:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizens [1.0.0]
[09:21:06] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[09:21:06] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v5.3.0-pre.3
[09:21:06] [Server thread/WARN]: [Multiverse-Core] Plugin Denizen threw an exception when testing if it is a generator plugin! 
[09:21:06] [Server thread/WARN]: [Multiverse-Core] This is NOT a bug in Multiverse. Do NOT report this to Multiverse support.
[09:21:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "String.length()" because "input" is null
[09:21:06] [Server thread/WARN]:     at Denizen-1.3.1-b7222-DEV.jar//com.denizenscript.denizencore.utilities.CoreUtilities.toLowerCase(CoreUtilities.java:577)
[09:21:06] [Server thread/WARN]:     at Denizen-1.3.1-b7222-DEV.jar//com.denizenscript.denizen.Denizen.getDefaultWorldGenerator(Denizen.java:621)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.core.world.generators.GeneratorProvider.testIsGeneratorPlugin(GeneratorProvider.java:98)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.core.world.generators.GeneratorProvider.loadPluginGenerators(GeneratorProvider.java:83)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.core.world.generators.GeneratorProvider.<init>(GeneratorProvider.java:54)
[09:21:06] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62)
[09:21:06] [Server thread/WARN]:     at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502)
[09:21:06] [Server thread/WARN]:     at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.glassfish.hk2.utilities.reflection.ReflectionHelper.makeMe(ReflectionHelper.java:1356)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.jvnet.hk2.internal.ClazzCreator.createMe(ClazzCreator.java:271)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.jvnet.hk2.internal.ClazzCreator.create(ClazzCreator.java:395)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.jvnet.hk2.internal.SystemDescriptor.create(SystemDescriptor.java:479)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.jvnet.hk2.internal.SingletonContext$1.compute(SingletonContext.java:61)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.jvnet.hk2.internal.SingletonContext$1.compute(SingletonContext.java:49)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.glassfish.hk2.utilities.cache.Cache$OriginThreadAwareFuture$1.call(Cache.java:74)
[09:21:06] [Server thread/WARN]:     at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:317)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.glassfish.hk2.utilities.cache.Cache$OriginThreadAwareFuture.run(Cache.java:131)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.glassfish.hk2.utilities.cache.Cache.compute(Cache.java:176)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.jvnet.hk2.internal.SingletonContext.findOrCreate(SingletonContext.java:100)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.jvnet.hk2.internal.Utilities.createService(Utilities.java:2111)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.jvnet.hk2.internal.ServiceHandleImpl.getService(ServiceHandleImpl.java:98)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.jvnet.hk2.internal.ServiceLocatorImpl.getService(ServiceLocatorImpl.java:696)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.jvnet.hk2.internal.ThreeThirtyResolver.resolve(ThreeThirtyResolver.java:55)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.jvnet.hk2.internal.ClazzCreator.resolve(ClazzCreator.java:197)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.jvnet.hk2.internal.ClazzCreator.resolveAllDependencies(ClazzCreator.java:214)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.jvnet.hk2.internal.ClazzCreator.create(ClazzCreator.java:387)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.jvnet.hk2.internal.SystemDescriptor.create(SystemDescriptor.java:479)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.jvnet.hk2.internal.SingletonContext$1.compute(SingletonContext.java:61)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.jvnet.hk2.internal.SingletonContext$1.compute(SingletonContext.java:49)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.glassfish.hk2.utilities.cache.Cache$OriginThreadAwareFuture$1.call(Cache.java:74)
[09:21:06] [Server thread/WARN]:     at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:317)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.glassfish.hk2.utilities.cache.Cache$OriginThreadAwareFuture.run(Cache.java:131)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.glassfish.hk2.utilities.cache.Cache.compute(Cache.java:176)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.jvnet.hk2.internal.SingletonContext.findOrCreate(SingletonContext.java:100)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.jvnet.hk2.internal.Utilities.createService(Utilities.java:2111)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.jvnet.hk2.internal.ServiceLocatorImpl.getService(ServiceLocatorImpl.java:683)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.jvnet.hk2.internal.ThreeThirtyResolver.resolve(ThreeThirtyResolver.java:55)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.jvnet.hk2.internal.ClazzCreator.resolve(ClazzCreator.java:197)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.jvnet.hk2.internal.ClazzCreator.resolveAllDependencies(ClazzCreator.java:214)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.jvnet.hk2.internal.ClazzCreator.create(ClazzCreator.java:387)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.jvnet.hk2.internal.SystemDescriptor.create(SystemDescriptor.java:479)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.jvnet.hk2.internal.SingletonContext$1.compute(SingletonContext.java:61)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.jvnet.hk2.internal.SingletonContext$1.compute(SingletonContext.java:49)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.glassfish.hk2.utilities.cache.Cache$OriginThreadAwareFuture$1.call(Cache.java:74)
[09:21:06] [Server thread/WARN]:     at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:317)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.glassfish.hk2.utilities.cache.Cache$OriginThreadAwareFuture.run(Cache.java:131)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.glassfish.hk2.utilities.cache.Cache.compute(Cache.java:176)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.jvnet.hk2.internal.SingletonContext.findOrCreate(SingletonContext.java:100)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.jvnet.hk2.internal.Utilities.createService(Utilities.java:2111)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.jvnet.hk2.internal.ServiceLocatorImpl.internalGetService(ServiceLocatorImpl.java:775)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.jvnet.hk2.internal.ServiceLocatorImpl.getUnqualifiedService(ServiceLocatorImpl.java:787)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.jvnet.hk2.internal.IterableProviderImpl.get(IterableProviderImpl.java:88)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.core.config.CoreConfigNodes.lambda$new$4(CoreConfigNodes.java:402)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.core.config.node.ConfigNode.onSetValue(ConfigNode.java:191)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.core.config.handle.BaseConfigurationHandle.lambda$setUpNodes$3(BaseConfigurationHandle.java:87)
[09:21:06] [Server thread/WARN]:     at java.base/java.util.HashMap.forEach(HashMap.java:1429)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.core.config.handle.BaseConfigurationHandle.setUpNodes(BaseConfigurationHandle.java:86)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.core.config.handle.FileConfigurationHandle.lambda$load$0(FileConfigurationHandle.java:46)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.vavr.control.Try.andThenTry(Try.java:308)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.core.config.handle.FileConfigurationHandle.load(FileConfigurationHandle.java:44)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.core.config.CoreConfig.lambda$load$0(CoreConfig.java:113)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.vavr.control.Try.flatMapTry(Try.java:489)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.external.vavr.control.Try.flatMap(Try.java:471)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.core.config.CoreConfig.load(CoreConfig.java:113)
[09:21:06] [Server thread/WARN]:     at multiverse-core-5.3.0-pre.3.jar//org.mvplugins.multiverse.core.MultiverseCore.onEnable(MultiverseCore.java:91)
[09:21:06] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[09:21:06] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[09:21:06] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[09:21:06] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[09:21:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:666)
[09:21:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:622)
[09:21:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:746)
[09:21:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:491)
[09:21:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:314)
[09:21:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1179)
[09:21:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:313)
[09:21:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[09:21:06] [Server thread/INFO]: Preparing start region for dimension minecraft:boubuilds
[09:21:06] [Server thread/INFO]: Preparing spawn area: 0%
[09:21:06] [Server thread/INFO]: Time elapsed: 85 ms
[09:21:06] [Server thread/INFO]: [WorldGuard] (boubuilds) TNT ignition is PERMITTED.
[09:21:06] [Server thread/INFO]: [WorldGuard] (boubuilds) Lighters are PERMITTED.
[09:21:06] [Server thread/INFO]: [WorldGuard] (boubuilds) Lava fire is PERMITTED.
[09:21:06] [Server thread/INFO]: [WorldGuard] (boubuilds) Fire spread is UNRESTRICTED.
[09:21:06] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'boubuilds'
[09:21:06] [Server thread/INFO]: Preparing start region for dimension minecraft:world_spawn
[09:21:06] [Server thread/INFO]: Preparing spawn area: 0%
[09:21:06] [Server thread/INFO]: Time elapsed: 99 ms
[09:21:06] [Server thread/INFO]: [WorldGuard] (world_spawn) TNT ignition is PERMITTED.
[09:21:06] [Server thread/INFO]: [WorldGuard] (world_spawn) Lighters are PERMITTED.
[09:21:06] [Server thread/INFO]: [WorldGuard] (world_spawn) Lava fire is PERMITTED.
[09:21:06] [Server thread/INFO]: [WorldGuard] (world_spawn) Fire spread is UNRESTRICTED.
[09:21:06] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_spawn'
[09:21:07] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn2.0
[09:21:07] [Server thread/INFO]: Preparing spawn area: 0%
[09:21:07] [Server thread/INFO]: Time elapsed: 35 ms
[09:21:07] [Server thread/INFO]: [WorldGuard] (spawn2.0) TNT ignition is PERMITTED.
[09:21:07] [Server thread/INFO]: [WorldGuard] (spawn2.0) Lighters are PERMITTED.
[09:21:07] [Server thread/INFO]: [WorldGuard] (spawn2.0) Lava fire is PERMITTED.
[09:21:07] [Server thread/INFO]: [WorldGuard] (spawn2.0) Fire spread is UNRESTRICTED.
[09:21:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'spawn2.0'
[09:21:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: multiverse-core [5.3.0-pre.3]
[09:21:07] [Server thread/INFO]: [Multiverse-Core] API service loaded!
[09:21:07] [Server thread/INFO]: [Multiverse-Core] Version 5.3.0-pre.3 (API v5.3) Enabled - By dumptruckman, Rigby, fernferret, lithium3141, main--, benwoo1110 and Zax71
[09:21:07] [Server thread/INFO]: [Multiverse-Core] Loving Multiverse-Core? Please consider supporting the project with a small donation: https://github.com/sponsors/Multiverse
[09:21:07] [Server thread/INFO]: [Essentials] Enabling Essentials v2.22.0-dev+29-37e1054
[09:21:07] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[09:21:07] [Server thread/INFO]: [Essentials] No kits found to migrate.
[09:21:07] [Server thread/INFO]: [Essentials] Selected 1.14+ Sign Data Provider as the provider for SignDataProvider
[09:21:07] [Server thread/INFO]: [Essentials] Selected 1.8.3+ Spawner Item Provider as the provider for SpawnerItemProvider
[09:21:07] [Server thread/INFO]: [Essentials] Selected Reflection Online Mode Provider as the provider for OnlineModeProvider
[09:21:07] [Server thread/INFO]: [Essentials] Selected Reflection Formatted Command Alias Provider as the provider for FormattedCommandAliasProvider
[09:21:07] [Server thread/INFO]: [Essentials] Selected Paper Biome Key Provider as the provider for BiomeKeyProvider
[09:21:07] [Server thread/INFO]: [Essentials] Selected 1.21+ InventoryView Interface ABI Provider as the provider for InventoryViewProvider
[09:21:07] [Server thread/INFO]: [Essentials] Selected 1.20.6+ Potion Meta Provider as the provider for PotionMetaProvider
[09:21:07] [Server thread/INFO]: [Essentials] Selected Paper Container Provider as the provider for ContainerProvider
[09:21:07] [Server thread/INFO]: [Essentials] Selected Paper Serialization Provider as the provider for SerializationProvider
[09:21:07] [Server thread/INFO]: [Essentials] Selected 1.12+ Spawner Block Provider as the provider for SpawnerBlockProvider
[09:21:07] [Server thread/INFO]: [Essentials] Selected 1.12.2+ Player Locale Provider as the provider for PlayerLocaleProvider
[09:21:07] [Server thread/INFO]: [Essentials] Selected Legacy Biome Name Provider as the provider for BiomeNameProvider
[09:21:07] [Server thread/INFO]: [Essentials] Selected 1.20.5+ Banner Data Provider as the provider for BannerDataProvider
[09:21:07] [Server thread/INFO]: [Essentials] Selected 1.11+ Item Unbreakable Provider as the provider for ItemUnbreakableProvider
[09:21:07] [Server thread/INFO]: [Essentials] Selected 1.13+ Spawn Egg Provider as the provider for SpawnEggProvider
[09:21:07] [Server thread/INFO]: [Essentials] Selected Paper Server State Provider as the provider for ServerStateProvider
[09:21:07] [Server thread/INFO]: [Essentials] Selected Paper Known Commands Provider as the provider for KnownCommandsProvider
[09:21:07] [Server thread/INFO]: [Essentials] Selected 1.14.4+ Persistent Data Container Provider as the provider for PersistentDataProvider
[09:21:07] [Server thread/INFO]: [Essentials] Selected Paper Material Tag Provider as the provider for MaterialTagProvider
[09:21:07] [Server thread/INFO]: [Essentials] Selected 1.21.4+ Sync Commands Provider as the provider for SyncCommandsProvider
[09:21:07] [Server thread/INFO]: [Essentials] Selected 1.17.1+ World Info Provider as the provider for WorldInfoProvider
[09:21:07] [Server thread/INFO]: [Essentials] Selected Paper Tick Count Provider as the provider for TickCountProvider
[09:21:07] [Server thread/INFO]: [Essentials] Selected 1.20.4+ Damage Event Provider as the provider for DamageEventProvider
[09:21:07] [Server thread/INFO]: [Essentials] Loaded 43880 items from items.json.
[09:21:07] [Server thread/INFO]: [Essentials] Using locale en_US
[09:21:07] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[09:21:08] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[09:21:08] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[09:21:08] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v11.0.7-SNAPSHOT
[09:21:08] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises.jar
[09:21:08] [Server thread/INFO]: [LibsDisguises] Discovered nms version: (Package: {Not package relocated}) (LD: v1_21_R5) (MC: 1.21.8)
[09:21:08] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1617
[09:21:08] [Server thread/INFO]: [LibsDisguises] Build Date: 08/08/2025 12:07
[09:21:08] [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/
[09:21:08] [Server thread/INFO]: [LibsDisguises] You are running the free version, commands limited to non-players and operators. (Console, Command Blocks, Admins)
[09:21:08] [Server thread/INFO]: [LibsDisguises] Config 'TallSelfDisguises' is set to 'SCALED', LD will scale down (when possible) oversized disguises from self disguise. https://www.spigotmc.org/wiki/lib-s-disguises-faq/#tall-disguises-self-disguises
[09:21:08] [Server thread/INFO]: [com.github.retrooper.packetevents.PacketEventsAPI] Loading block mappings for V_1_21_6/19...
[09:21:08] [Server thread/INFO]: [com.github.retrooper.packetevents.PacketEventsAPI] Finished loading block mappings for V_1_21_6/19 in 148.499115ms
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_dessa_tent_citizen
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_oasis_dessa_scrapper
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_khesusiris_generic_guard
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_spa_attendee_1
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_khesusiris_town_generic
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_khesusiris_town_generic_librarian
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_dweller_vampires
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_hidden_dwarf
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_oasis_dessa_enchanter
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_ogre_mines_old_miner
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_pontis_scrapper
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_spa_attendee_3
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_dessa_tent_generic
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_slums_1
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_groves_inhabitant_alt
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_dessa_generic_guard
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_expedition_leader
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_spa_attendee_2
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_dessa_town_generic
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_spa_attendee_5
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_oasis_dessa_repairman
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_tappesheh_banker
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_first_mate
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_fields_well_npc
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_spa_attendee_6
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_oasis_khesusiris_scrapper
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise vampire_manor_generic_necro
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_30_seeker_of_the_staid
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_26_grim_grovetender
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise airship_the_prowler
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise air_ship_tier_45_witherblind
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_36_cruel_cultist
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_15_entombed_tenant
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise vampire_manor_generic_vampire
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise air_ship_tier_60_mess_hall_mate
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise invasion_impostor
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise air_ship_tier_50_scourge
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_blood_temple_conjurer
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise air_ship_tier_65_bodyguard
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise invasion_gray_man
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemob_gladiator
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_groves_elf_summoner
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_12_sinister_siren
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_skeleton_template
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_20_undead_drifter
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_tappesheh_shining_army
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_20_vampiric_sorcerer
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_blood_temple_cultist
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ogre_mines_ogre_archer
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise pirate_ship_captain
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_pirate_ship_pirate_dummy
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_the_pirate_ship_quest
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise pirate_ship_redbeard
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise pirate_ship_whitebeard
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_guide_1
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_back_teleporter
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_guild_attendant
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_woodleague_master
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_enchanter
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_barkeep
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_quest_giver
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_unbinder
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_story_dungeons_quest_npc
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_world_binder_teleporter
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_bone_monastery_teleporter
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_craftenmines_laboratory_teleporter
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_the_climb_teleporter
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_frost_queen_teleporter
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_special_blacksmith
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_blacksmith
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_repairman
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ag_combat_instructor
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_the_deep_mines_teleporter
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_the_mines_teleporter
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_the_nether_wastes_teleporter
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_the_bridge_teleporter
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_the_city_teleporter
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_the_cave_teleporter
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_the_palace_teleporter
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_the_quarry_teleporter
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_caeruleaum_forager
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_caeruleaum_fisherman
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_ogre_mines_lone_miner
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_caeruleaum_leader
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_caeruleaum_hint_giver
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ogre_mines_ogre_warrior
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ogre_mines_ogre_magi
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_mountain_guide
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_ogre_mines_escaped_miner
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_caeruleaum_fletcher
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_pontis_fish_repairman
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_pontis_fish_scrapper
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_caerulean_merchant
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_catacombs_bonewalker
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_gladius_monk
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise lighthouse_sick_man
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_groves_lighthouse_custodian_alt
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_ogre_mines_panicked_miner
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_pontis_guard
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_uplifted_experiment
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_royal_guard
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise noxious_ninja
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_sewer_donatello
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_sewer_raphael
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise spore_spreader
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise ice_village_minor_ice
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise gamma_werewolf
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise alpha_werewolf_p2
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_farmstead_wife
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_farmstead_son
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_primis_undead_captain
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_gladius_barkeep
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_elf_skin
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_farmstead_lighthouse_boss
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise arena_iron_master
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_mrs_claus_skin
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ghost_of_christmas_1_skin
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_grinch_skin
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_saint_nick_skin
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_santa_claus_skin
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_sentient_present_2
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise em_travelling_merchant
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_minor_air
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_sewer_leonardo
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_sewer_michelangelo
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_blood_temple_eradicator
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_gladius_guard
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_gladius_lord
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_gladius_strategist
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_gladius_quartermaster
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_gladius_gatekeeper
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_citizen_7
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_gardener
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_citizen_8
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_citizen_6
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_mille_scout_leader
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_mille_scout_1
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_goblin_king
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_terrvilla_generic_1
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ice_village_ice_mage
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_mille_general_cylindrus
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_mille_general_bromia
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_pontis_mille_shogun
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_mille_major
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise lighthouse_mille_man
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_citizen_2
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_citizen_9
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_traveler
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_citizen_5
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_citizen_1
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_citizen_10
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_citizen_4
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_citizen_3
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_mille_general_rogerius
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_slums_generic_2
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_slums_3
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_slums_generic_1
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_slums_2
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_fields_windmill_boy
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_lumberjack
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_lumberlord
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_fields_farmer_boy
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_fields_farmer
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_fields_farmer_berry
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis__fields_camp_hunter_generic_npc
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis__fields_camp_hunter_traveler
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis__fields_camp_hunter_bow
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_fields_magmus
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_suspicious_man
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_catacomb_golem
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_groves_elf_brute
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_groves_elf_sharpshooter
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_mountain_pass_healer
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_catacombs_silversword
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_catacombs_guard
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_catacombs_bloated
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_catacombs_undisturbed
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_sentient_present_3
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ghost_of_christmas_2_skin
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ghost_of_christmas_3_skin
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ghost_of_christmas_4_skin
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_groves_inhabitant
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_groves_parkour
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_groves_hole_1
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_nemus_leader
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_groves_hole_2
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_blood_temple_toxic
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_delio
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_69ozcanofbepis
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_magmaguy
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_frostcone
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_royal_guard_centurion
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_groves_lighthouse_custodian
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_catacomb_necromancer
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_dessa_docks_citizen
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_husk_template
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_dweller_plant
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_dweller_zanerun
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_zanerun_citizen
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_oasis_zanerun_scrapper
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_zanerun_generic
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_oasis_zanerun_repairman
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_zanerun_generic_guard
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_oasis_zanerun_enchanter
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_oasis_khesusiris_repairman
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_oasis_khesusiris_enchanter
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_30_forsakensoul
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_20_wrapped_wraith_p2
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_sentient_present_1
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise fresh_skeleton_fem
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise em_id_the_nether_wastes_fiend
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise em_id_the_nether_wastes_toxic_miasma
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise em_id_the_nether_wastes_nether_spores
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise em_id_the_nether_wastes_nether_moss
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise em_id_the_nether_wastes_nether_shroom
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise em_id_the_nether_wastes_shroud
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise em_id_the_nether_wastes_heavy_miasma
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_city_dwarf_corrupted
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_city_dwarf_broken
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_climb_undead_2
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_climb_undead
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_palace_stone_king
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_palace_stone_guardian
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_mines_living_slime
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_mines_undying
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_bridge_drone
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_quarry_wizard
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_quarry_lift_master
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_quarry_light_bones
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_quarry_wizard_totem
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_quarry_dedicated_miner
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_quarry_lift_archer
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_quarry_ore_hauler
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_quarry_thundersmith
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_catacombs_forgotten
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_35_light_of_darkness
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_egg
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_dweller_khesusiris
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise hallosseum_event_boss
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise invasion_green_man
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise airship_skymate_kevin
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise airship_skymate_dummy
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise airship_dockhand
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise air_ship_tier_70_miniboss_wayfinder
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise air_ship_tier_75_boss
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise air_ship_tier_45_knockback
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise airship_town_elarion
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise air_ship_tier_50_powder_monkeys
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise air_ship_tier_65_boatswain_boss
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise em_id_the_deep_mines_tired
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise em_id_the_deep_mines_twisted_excavator
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise em_id_the_deep_mines_transporter_ore
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise em_id_the_deep_mines_season_miner
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise em_id_the_deep_mines_nether_moss
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise em_id_the_deep_mines_nether_shroom
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise em_id_the_deep_mines_foreman
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise em_id_the_deep_mines_corrupted_digger
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise em_colosseum_generic_2
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise em_colosseum_generic_1
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise em_colosseum_potion_seller
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise em_colosseum_generic_3
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise em_colosseum_guard
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise em_colosseum_merchant
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_pit_master
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise em_colosseum_clone
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise dark_cathedral_tier_75_reinforcement
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise em_id_the_deep_mines_greedy_miner
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_castle_brave_knight
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_castle_cowardly_knight
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_castle_charlemagne
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_castle_arcane_knight
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_castle_ser_prancelot
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise em_id_the_nether_wastes_deadly_miasma
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise arena_skellz
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_15_entombed_tenant_p2
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise the_shredder
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_pontis_twisted_copy
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_terravilla_annoyed_explorer
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ice_village_worried_mother
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ice_village_generic_1
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ice_village_razorback_hunter
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ice_village_tower_squatter
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ice_village_generic_3
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ice_village_leader
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ice_village_missing_daughter
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ice_village_generic_prisoner
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ice_village_prisoner_quest
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ice_village_jail_master
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ice_village_jail_guard
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_ice_village_escaped_prisoner
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ice_village_pubkeeper
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ice_village_generic_2
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ice_village_worried_wife
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ice_village_friendly_villager
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ice_village_violet
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ice_village_fisherman_boat
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ice_village_worried_father
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_ice_village_lightkeeper
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise em_id_the_nether_wastes_thick_miasma
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_dweller_hill
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_admin_adv
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_current_pharaoh
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_lighthouse_generic
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_dweller_desert
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_40_chief_cultist
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_dweller_hut
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_dweller_town
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_tappesheh_npc_generic
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_tappesheh_guard_generic
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_tappesheh_general
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_oasis_tappesheh_repairman
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_oasis_tappesheh_enchanter
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_oasis_tappesheh_scrapper
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_dweller_tappesheh
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_dweller_water
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise em_id_the_nether_bell_unrotten
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise em_id_the_nether_bell_corpse_knight
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_terrvilla_generic_2
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_ice_village_meek_customer
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_ice_village_naughty_customer
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_terravilla_bar_brawler
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_terravilla_overseer
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_terravilla_researcher
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_terravilla_robber_slugger
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_terravilla_robber_gladiator
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise elitemobs_terravilla_explorer
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise primis_earth_temple_golem
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise arena_diamond_master
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise arena_purple_monster
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise oasis_final_boss_pharaoh
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise em_yggdrasil_generic_4
[09:21:09] [Server thread/INFO]: [LibsDisguises] Loaded 331 custom disguises
[09:21:09] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[09:21:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: libsdisguises [1.0.0]
[09:21:09] [Server thread/INFO]: [LibsDisguises] PlaceholderAPI support enabled
[09:21:09] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.9.7
[09:21:09] [Server thread/INFO]: [DecentHolograms] Initialized NMS adapter for v1_21_R5 (1.21.8).
[09:21:09] [Server thread/INFO]: [DecentHolograms] NBT-API loaded successfully.
[09:21:09] [Server thread/INFO]: [Sentinel] Enabling Sentinel v2.9.2-SNAPSHOT (build 529)
[09:21:09] [Server thread/INFO]: [Sentinel] Sentinel loading...
[09:21:09] [Server thread/INFO]: [Sentinel] Running on java version: 21.0.2
[09:21:09] [Server thread/INFO]: [Sentinel] Sentinel loaded on a fully supported Minecraft version. If you encounter any issues or need to ask a question, please join our Discord at https://discord.gg/Q6pZGSR and post in the '#sentinel' channel.
[09:21:09] [Server thread/INFO]: [Sentinel] Vault linked! Group targets will work.
[09:21:09] [Server thread/INFO]: [Sentinel] Sentinel found WorldGuard! Adding support for it!
[09:21:09] [Server thread/INFO]: [Sentinel] Sentinel loaded!
[09:21:09] [Server thread/INFO]: [BlueMap] Enabling BlueMap v5.11
[09:21:09] [Server thread/INFO]: [BlueMap] Saving all worlds once, to make sure the level.dat is present...
[09:21:09] [Server thread/WARN]: A manual (plugin-induced) save has been detected while server is configured to auto-save. This may affect performance.
[09:21:10] [BlueMap-Load/INFO]: [BlueMap] Loading...
[09:21:10] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[09:21:10] [Server thread/INFO]: [Votifier] Loaded token for website: default
[09:21:10] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[09:21:10] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[09:21:10] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /[0:0:0:0:0:0:0:0%0]:8031.
[09:21:10] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.30.1
[09:21:10] [Server thread/INFO]: [TAB] Enabling TAB v5.2.5
[09:21:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [5.2.5]
[09:21:10] [BlueMap-Load/INFO]: [BlueMap] Loading resources...
[09:21:10] [Server thread/INFO]: [TAB] Enabled in 186ms
[09:21:10] [Server thread/INFO]: [Lands] Enabling Lands v7.16.16
[09:21:10] [Server thread/INFO]: [Lands]  _                        _      
[09:21:10] [Server thread/INFO]: [Lands] | |                      | |     
[09:21:10] [Server thread/INFO]: [Lands] | |      __ _  _ __    __| | ___ 
[09:21:10] [Server thread/INFO]: [Lands] | |     / _` || '_ \  / _` |/ __|
[09:21:10] [Server thread/INFO]: [Lands] | |____| (_| || | | || (_| |\__ \
[09:21:10] [Server thread/INFO]: [Lands] \_____/ \__,_||_| |_| \__,_||___/
[09:21:10] [Server thread/INFO]: [Lands] Version: 7.16.16 Previous: 7.16.16
[09:21:10] [Server thread/INFO]: [Lands] Server: 1.21.8 running Paper
[09:21:10] [Server thread/INFO]: [Lands] Licensed to: 2310530
[09:21:10] [Server thread/INFO]: [Lands] Experiencing issues or having questions? Join our Discord!
[09:21:10] [Server thread/INFO]: [Lands] Discord: https://discord.incredibleplugins.com
[09:21:10] [Server thread/INFO]: [Lands] Wiki: https://wiki.incredibleplugins.com/lands
[09:21:10] [Server thread/INFO]: [Lands]  
[09:21:11] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated DecentHolograms as hologram manager.
[09:21:11] [Server thread/INFO]: [Lands] Performing initial data load.
[09:21:11] [pool-78-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (1cc66c00dd0d091057d8a04adf1cc0714d8391ad)
[09:21:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[09:21:11] [Server thread/INFO]: [Lands] There are currently 62 created land(s).
[09:21:11] [Server thread/INFO]: [Lands] Initial data load took 174 ms.
[09:21:11] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.10.1
[09:21:11] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[09:21:11] [BlueMap-Load/INFO]: [BlueMap] Resources loaded.
[09:21:11] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[09:21:11] [BlueMap-Load/INFO]: [BlueMap] Initializing Storage: 'file' (Type: 'bluemap:file')
[09:21:11] [BlueMap-Load/INFO]: [BlueMap] Loading map 'world'...
[09:21:11] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[09:21:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console channel ID was invalid, not forwarding console output
[09:21:11] [Server thread/INFO]: [ajLeaderboards] Loaded 4 boards
[09:21:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.10.1]
[09:21:11] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[09:21:11] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.10.1 by ajgeiss0702 enabled!
[09:21:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[09:21:11] [Server thread/INFO]: [WorldBorder] Enabling WorldBorder v2.1.5
[09:21:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[09:21:11] [Server thread/INFO]: [WorldBorder] [CONFIG] Using rectangular/square border, knockback of 3.0 blocks, and timer delay of 5.
[09:21:11] [Server thread/INFO]: [WorldBorder] [CONFIG] Border-checking timed task started.
[09:21:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Multiverse-Core hook
[09:21:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[09:21:11] [Server thread/INFO]: [WorldBorder] [CONFIG] World "world_spawn" has border radius 175x164 at X: -2.0 Z: 40.5
[09:21:11] [Server thread/INFO]: [WorldBorder] For reference, the main world's spawn location is at X: 0.0 Y: 68.0 Z: 0.0
[09:21:11] [BlueMap-Load/INFO]: [BlueMap] Loading map 'world_the_end'...
[09:21:11] [Server thread/INFO]: [GSit] Enabling GSit v2.4.3
[09:21:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [2.4.3]
[09:21:11] [Server thread/INFO]: [WorldGuard] Registering session handler dev.geco.gsit.link.worldguard.RegionFlagHandler
[09:21:11] [Server thread/INFO]: [GSit] The plugin was successfully enabled.
[09:21:11] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
[09:21:11] [Server thread/INFO]: [GSit] Link with WorldGuard successful!
[09:21:11] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.19
[09:21:11] [BlueMap-Load/INFO]: [BlueMap] Loading map 'world_nether'...
[09:21:11] [Server thread/INFO]: [VotingPlugin] Loaded LuckPerms hook!
[09:21:12] [BlueMap-Load/INFO]: [BlueMap] Loading map 'world_spawn'...
[09:21:12] [BlueMap-Load/INFO]: [BlueMap] WebServer bound to all network interfaces on port 8079
[09:21:12] [Thread-32/INFO]: [BlueMap] WebServer started.
[09:21:12] [BlueMap-Load/INFO]: [BlueMap] Loaded!
[09:21:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: votingplugin [1.6]
[09:21:12] [Server thread/INFO]: [VotingPlugin] Loading PlaceholderAPI expansion
[09:21:12] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[09:21:12] [Server thread/INFO]: [DiscordSRV] API listener com.bencodez.votingplugin.discord.DiscordHandler subscribed (1 methods)
[09:21:12] [Server thread/INFO]: [VotingPlugin] DiscordHandler loaded; awaiting Discord readiness.
[09:21:12] [Server thread/INFO]: [VotingPlugin] DiscordSRV was already ready; manual update now available.
[09:21:12] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.19
[09:21:12] [Server thread/INFO]: [EliteMobs] Enabling EliteMobs v9.5.4
[09:21:12] [Server thread/INFO]:  _____ _     _____ _____ ________  ______________  _____
[09:21:12] [Server thread/INFO]: |  ___| |   |_   _|_   _|  ___|  \/  |  _  | ___ \/  ___|
[09:21:12] [Server thread/INFO]: | |__ | |     | |   | | | |__ | .  . | | | | |_/ /\ `--.
[09:21:12] [Server thread/INFO]: |  __|| |     | |   | | |  __|| |\/| | | | | ___ \ `--. \
[09:21:12] [Server thread/INFO]: | |___| |_____| |_  | | | |___| |  | \ \_/ / |_/ //\__/ /
[09:21:12] [Server thread/INFO]: \____/\_____/\___/  \_/ \____/\_|  |_/\___/\____/ \____/
[09:21:12] [Server thread/INFO]: By MagmaGuy - v. 9.5.4
[09:21:12] [Server thread/INFO]: [EliteMobs] Supported server version detected: v1_21_R5
[09:21:12] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 31 ms to scan 125 urls, producing 0 keys and 0 values
[09:21:12] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 23 ms to scan 1 urls, producing 1 keys and 60 values
[09:21:12] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 5 ms to scan 1 urls, producing 1 keys and 16 values
[09:21:13] [pool-92-thread-1/INFO]: [ajLeaderboards] You are up to date! (2.10.1)
[09:21:16] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 4 ms to scan 1 urls, producing 1 keys and 71 values
[09:21:16] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 14 ms to scan 1 urls, producing 10 keys and 220 values
[09:21:16] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 1 ms to scan 1 urls, producing 1 keys and 15 values
[09:21:16] [Server thread/INFO]: [EliteMobs] WorldGuard compatibility is enabled!
[09:21:16] [Server thread/INFO]: [EliteMobs] [(EliteMobs] Vault detected.
[09:21:16] [Server thread/INFO]: [EliteMobs] Opened database successfully
[09:21:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: elitemobs [9.5.4]
[09:21:16] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 4 ms to scan 1 urls, producing 1 keys and 116 values
[09:21:25] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 2 ms to scan 1 urls, producing 1 keys and 73 values
[09:21:25] [Server thread/INFO]: [EliteMobs] Loading world em_primis !
[09:21:25] [Server thread/INFO]: Preparing start region for dimension minecraft:em_primis
[09:21:25] [Server thread/INFO]: Time elapsed: 0 ms
[09:21:25] [Server thread/INFO]: [WorldGuard] (em_primis) TNT ignition is PERMITTED.
[09:21:25] [Server thread/INFO]: [WorldGuard] (em_primis) Lighters are PERMITTED.
[09:21:25] [Server thread/INFO]: [WorldGuard] (em_primis) Lava fire is PERMITTED.
[09:21:25] [Server thread/INFO]: [WorldGuard] (em_primis) Fire spread is UNRESTRICTED.
[09:21:25] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'em_primis'
[09:21:25] [Server thread/INFO]: [EliteMobs] Loading world em_primis_wormhole !
[09:21:25] [Server thread/INFO]: Preparing start region for dimension minecraft:em_primis_wormhole
[09:21:25] [Server thread/INFO]: Time elapsed: 0 ms
[09:21:25] [Server thread/INFO]: [WorldGuard] (em_primis_wormhole) TNT ignition is PERMITTED.
[09:21:25] [Server thread/INFO]: [WorldGuard] (em_primis_wormhole) Lighters are PERMITTED.
[09:21:25] [Server thread/INFO]: [WorldGuard] (em_primis_wormhole) Lava fire is PERMITTED.
[09:21:25] [Server thread/INFO]: [WorldGuard] (em_primis_wormhole) Fire spread is UNRESTRICTED.
[09:21:25] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'em_primis_wormhole'
[09:21:25] [Server thread/INFO]: [EliteMobs] Loading world em_yggdrasil !
[09:21:26] [Server thread/INFO]: Preparing start region for dimension minecraft:em_yggdrasil
[09:21:26] [Server thread/INFO]: Time elapsed: 0 ms
[09:21:26] [Server thread/INFO]: [WorldGuard] (em_yggdrasil) TNT ignition is PERMITTED.
[09:21:26] [Server thread/INFO]: [WorldGuard] (em_yggdrasil) Lighters are PERMITTED.
[09:21:26] [Server thread/INFO]: [WorldGuard] (em_yggdrasil) Lava fire is PERMITTED.
[09:21:26] [Server thread/INFO]: [WorldGuard] (em_yggdrasil) Fire spread is UNRESTRICTED.
[09:21:26] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'em_yggdrasil'
[09:21:26] [Server thread/INFO]: [EliteMobs] Loading world em_adventurers_guild !
[09:21:26] [Server thread/INFO]: Preparing start region for dimension minecraft:em_adventurers_guild
[09:21:26] [Server thread/INFO]: Time elapsed: 0 ms
[09:21:26] [Server thread/INFO]: [WorldGuard] (em_adventurers_guild) TNT ignition is PERMITTED.
[09:21:26] [Server thread/INFO]: [WorldGuard] (em_adventurers_guild) Lighters are PERMITTED.
[09:21:26] [Server thread/INFO]: [WorldGuard] (em_adventurers_guild) Lava fire is PERMITTED.
[09:21:26] [Server thread/INFO]: [WorldGuard] (em_adventurers_guild) Fire spread is UNRESTRICTED.
[09:21:26] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'em_adventurers_guild'
[09:21:26] [Server thread/INFO]: [EliteMobs] Loading world em_oasis !
[09:21:26] [Server thread/INFO]: Preparing start region for dimension minecraft:em_oasis
[09:21:26] [Server thread/INFO]: Time elapsed: 0 ms
[09:21:26] [Server thread/INFO]: [WorldGuard] (em_oasis) TNT ignition is PERMITTED.
[09:21:26] [Server thread/INFO]: [WorldGuard] (em_oasis) Lighters are PERMITTED.
[09:21:26] [Server thread/INFO]: [WorldGuard] (em_oasis) Lava fire is PERMITTED.
[09:21:26] [Server thread/INFO]: [WorldGuard] (em_oasis) Fire spread is UNRESTRICTED.
[09:21:26] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'em_oasis'
[09:21:26] [Server thread/INFO]: [EliteMobs] Loading world em_oasis_wormhole !
[09:21:26] [Server thread/INFO]: Preparing start region for dimension minecraft:em_oasis_wormhole
[09:21:26] [Server thread/INFO]: Time elapsed: 1 ms
[09:21:26] [Server thread/INFO]: [WorldGuard] (em_oasis_wormhole) TNT ignition is PERMITTED.
[09:21:26] [Server thread/INFO]: [WorldGuard] (em_oasis_wormhole) Lighters are PERMITTED.
[09:21:26] [Server thread/INFO]: [WorldGuard] (em_oasis_wormhole) Lava fire is PERMITTED.
[09:21:26] [Server thread/INFO]: [WorldGuard] (em_oasis_wormhole) Fire spread is UNRESTRICTED.
[09:21:26] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'em_oasis_wormhole'
[09:21:26] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 3 ms to scan 1 urls, producing 1 keys and 134 values
[09:21:27] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 1 ms to scan 1 urls, producing 1 keys and 1 values
[09:21:27] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 3 ms to scan 1 urls, producing 1 keys and 33 values
[09:21:27] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 1 ms to scan 1 urls, producing 1 keys and 24 values
[09:21:28] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 1 ms to scan 1 urls, producing 1 keys and 1 values
[09:21:28] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 0 ms to scan 1 urls, producing 1 keys and 8 values
[09:21:28] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 1 ms to scan 1 urls, producing 1 keys and 4 values
[09:21:28] [Server thread/INFO]: [Denizen] Enabling Denizen v1.3.1-SNAPSHOT (build 7222-DEV)
[09:21:28] [Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.91.0-SNAPSHOT (Build 1409), impl for Spigot v1.3.1-SNAPSHOT (build 7222-DEV) 
[09:21:28] [Server thread/INFO]: +> [Denizen] Running on java version: 21.0.2 
[09:21:28] [Server thread/INFO]: +> [Denizen] Running on fully supported Java 21. 
[09:21:28] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[09:21:28] [Server thread/INFO]: +> [Denizen]  Denizen  scriptable minecraft 
[09:21:28] [Server thread/INFO]: +> [Denizen]  
[09:21:28] [Server thread/INFO]: +> [Denizen] by: The DenizenScript team 
[09:21:28] [Server thread/INFO]: +> [Denizen] Chat with us at: https://discord.gg/Q6pZGSR 
[09:21:28] [Server thread/INFO]: +> [Denizen] Or learn more at: https://denizenscript.com 
[09:21:28] [Server thread/INFO]: +> [Denizen] version: 1.3.1-SNAPSHOT (build 7222-DEV) 
[09:21:28] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[09:21:28] [Server thread/INFO]: +> [Denizen] Legacy Spigot name support enabled. This may be unnecessary; see config.yml for more information. 
[09:21:28] [Server thread/INFO]: +> [TriggerRegistry] Loaded 4 core triggers 
[09:21:29] [Server thread/INFO]: +> [PaperModule] Loading Paper support module... 
[09:21:29] [Server thread/INFO]: +> [Denizen] Loaded 153 core commands and 30 core object types, at 1098ms from start. 
[09:21:29] [Server thread/INFO]: +> [ScriptHelper] No scripts in /plugins/Denizen/scripts/ to load! 
[09:21:29] [Server thread/INFO]: +> [ScriptRegistry] Loading 0 script files... 
[09:21:29] [Server thread/INFO]: +> [DenizenCore] Scripts loaded! File load took 1ms, processing 22ms. 
[09:21:29] [Server thread/INFO]: +> [Denizen] Final full init took 1153ms. 
[09:21:29] [Server thread/WARN]: [Multiverse-Core] Plugin Denizen threw an exception when testing if it is a generator plugin! 
[09:21:29] [Server thread/WARN]: [Multiverse-Core] This is NOT a bug in Multiverse. Do NOT report this to Multiverse support.
[09:21:29] [Server thread/WARN]: java.lang.NullPointerException
[09:21:29] [Server thread/INFO]: [AuraSkills] Enabling AuraSkills v2.3.7
[09:21:29] [Server thread/INFO]: [AuraSkills] Loaded 21 message files
[09:21:29] [Server thread/INFO]: [AuraSkills] Successfully registered hook DecentHolograms
[09:21:29] [Server thread/INFO]: [AuraSkills] Successfully registered hook LuckPerms
[09:21:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: auraskills [2.3.7]
[09:21:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aureliumskills [2.3.7]
[09:21:29] [Server thread/INFO]: [AuraSkills] Successfully registered hook PlaceholderAPI
[09:21:29] [Server thread/INFO]: [AuraSkills] Successfully registered hook ProtocolLib
[09:21:29] [Server thread/INFO]: [AuraSkills] Successfully registered hook Vault
[09:21:29] [Server thread/INFO]: [AuraSkills] Successfully registered hook WorldGuard
[09:21:29] [Server thread/INFO]: [AuraSkills] Successfully registered hook Nexo
[09:21:30] [Server thread/INFO]: [AuraSkills] Loaded 160 config options in 44 ms
[09:21:30] [Server thread/INFO]: [AuraSkills] Loaded 3 blocked/disabled worlds
[09:21:30] [Server thread/INFO]: [AuraSkills] [ACF] Enabled Asynchronous Tab Completion Support!
[09:21:30] [Server thread/INFO]: [Nexo] Enabling Nexo v1.12.1
[09:21:30] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: Nexo
[09:21:30] [Server thread/INFO]: Nexo | NMS-Version v1_21_R6 has been detected.
[09:21:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: nexo [1.12.1]
[09:21:30] [Server thread/INFO]: Nexo | Plugin "PlaceholderAPI" detected, enabling hooks
[09:21:30] [Server thread/INFO]: Nexo | Plugin "WorldGuard" detected, enabling hooks
[09:21:30] [Server thread/INFO]: [DiscordUtils] Enabling DiscordUtils v3.3.0
[09:21:30] [Server thread/INFO]: 
[09:21:30] [Server thread/INFO]:     DiscordUtils v3.3.0
[09:21:30] [Server thread/INFO]:     Running on Purpur
[09:21:30] [Server thread/INFO]: 
[09:21:30] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Starting...
[09:21:30] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-2 - Added connection org.sqlite.jdbc4.JDBC4Connection@30fdc0c3
[09:21:30] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Start completed.
[09:21:30] [Server thread/INFO]: [DiscordUtils] Loading bot...
[09:21:30] [ForkJoinPool.commonPool-worker-4/INFO]: Nexo | Skipped downloading DefaultPack as it is up to date!
[09:21:31] [Server thread/INFO]: [net.dv8tion.jda.api.JDA] Login Successful!
[09:21:31] [JDA MainWS-ReadThread/INFO]: [net.dv8tion.jda.internal.requests.WebSocketClient] Connected to WebSocket
[09:21:31] [JDA MainWS-ReadThread/INFO]: [net.dv8tion.jda.api.JDA] Finished Loading!
[09:21:31] [Server thread/INFO]: [DiscordUtils] Logged as Head Collector
[09:21:31] [Server thread/INFO]: [Chunky] Enabling Chunky v1.4.40
[09:21:31] [Server thread/INFO]: [EconomyShopGUI-Premium] Enabling EconomyShopGUI-Premium v5.27.2
[09:21:32] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Using lang-en.yml as language file
[09:21:32] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed loading 14 section configs from /sections/
[09:21:32] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed loading 14 shop configs from /shops/
[09:21:32] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Validating shop settings
[09:21:32] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Using minecraft version 1.21.8...
[09:21:32] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Successfully hooked into Vault and using UltraEconomy as economy provider
[09:21:32] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed loading 1 economy provider(s) for all 14 shop sections.
[09:21:32] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Spawner provider set to AUTO in config
[09:21:32] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Automatically searching for compatible spawner provider....
[09:21:32] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: RoseStacker found, integrating...
[09:21:32] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: RoseStacker not enabled yet, waiting...
[09:21:32] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Providers not enabled yet, waiting...
[09:21:32] [Server thread/INFO]: [UltimateAutoRestart] Enabling UltimateAutoRestart v2025.07a
[09:21:32] [Server thread/INFO]: [UltimateAutoRestart] 2025.07a, a free resource by Norska - Thanks for downloading!
[09:21:32] [Server thread/INFO]: [UltimateAutoRestart] Join www.norska.dev/discord/ for support!
[09:21:32] [Server thread/INFO]: [UltimateAutoRestart] Attempting hooks...
[09:21:32] [Server thread/INFO]: [GrimAC] Enabling GrimAC v2.3.72-070116b03
[09:21:32] [Server thread/INFO]: [GrimAC] Registering packets...
[09:21:32] [Server thread/INFO]: [GrimAC] Registering tick schedulers...
[09:21:32] [Server thread/INFO]: Grim Version: 2.3.72-070116b03
[09:21:32] [Server thread/WARN]: [GrimAC] GrimAC has detected that you have installed ViaBackwards on a 1.21.2+ server.
[09:21:32] [Server thread/WARN]: [GrimAC] This setup is currently unsupported and you will experience issues with older clients using vehicles.
[09:21:32] [Server thread/INFO]: [GrimAC] Registering singular bukkit event... (PistonEvent)
[09:21:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: grim [2.3.72-070116b03]
[09:21:32] [Server thread/INFO]: [AxAFKZone] Enabling AxAFKZone v1.7.2
[09:21:32] [Server thread/INFO]: â•  Loaded zone afkpool!
[09:21:32] [Server thread/INFO]: [Geyser-Recipe-Fix] Enabling Geyser-Recipe-Fix v1.5
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Enabling PlayTimePulse v1.0.5-SNAPSHOT
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Debug mode enabled
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Starting PlaytimeConfig initialization...
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Config loaded
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Namespaced keys created
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Loading GUI config...
[09:21:32] [Server thread/INFO]: [PlayTimePulse] GUI section found in config
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Navigation section found in config
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Prev-page section found in config
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Next-page section found in config
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Close section found in config
[09:21:32] [Server thread/INFO]: [PlayTimePulse] GUI config loading complete
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Loading translations for language: en
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Loaded custom language file: en.yml - Using custom translations
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Loaded translations: Status='Status:', Claimed='Claimed', Ready='Ready to Claim', NotClaimed='Not Claimed'
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Loading GUI config...
[09:21:32] [Server thread/INFO]: [PlayTimePulse] GUI section found in config
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Navigation section found in config
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Prev-page section found in config
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Next-page section found in config
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Close section found in config
[09:21:32] [Server thread/INFO]: [PlayTimePulse] GUI config loading complete
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Loading rewards configuration...
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Checking for rewards section in config...
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Rewards section found in config
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got rewards section, found 34 reward keys
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: level_0
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: level_0
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: level_0
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for level_0 has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: level_0
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: level_1
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: level_1
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: level_1
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for level_1 has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: level_1
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: level_2
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: level_2
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: level_2
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for level_2 has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: level_2
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: level_3
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: level_3
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: level_3
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for level_3 has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: level_3
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: squire
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: squire
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: squire
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for squire has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: squire
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: level_4
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: level_4
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: level_4
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for level_4 has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: level_4
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: level_5
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: level_5
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: level_5
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for level_5 has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: level_5
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: level_6
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: level_6
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: level_6
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for level_6 has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: level_6
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: level_7
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: level_7
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: level_7
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for level_7 has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: level_7
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: adept
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: adept
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: adept
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for adept has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: adept
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: level_8
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: level_8
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: level_8
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for level_8 has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: level_8
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: level_9
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: level_9
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: level_9
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for level_9 has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: level_9
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: level_10
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: level_10
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: level_10
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for level_10 has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: level_10
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: level_11
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: level_11
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: level_11
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for level_11 has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: level_11
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: knight
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: knight
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: knight
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for knight has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: knight
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: level_12
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: level_12
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: level_12
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for level_12 has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: level_12
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: level_13
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: level_13
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: level_13
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for level_13 has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: level_13
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: level_14
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: level_14
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: level_14
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for level_14 has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: level_14
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: level_15
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: level_15
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: level_15
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for level_15 has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: level_15
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: defender
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: defender
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: defender
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for defender has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: defender
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: level_16
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: level_16
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: level_16
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for level_16 has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: level_16
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: level_17
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: level_17
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: level_17
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for level_17 has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: level_17
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: level_18
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: level_18
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: level_18
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for level_18 has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: level_18
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: level_19
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: level_19
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: level_19
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for level_19 has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: level_19
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: level_20
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: level_20
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: level_20
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for level_20 has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: level_20
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: level_21
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: level_21
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: level_21
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for level_21 has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: level_21
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: level_22
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: level_22
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: level_22
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for level_22 has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: level_22
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: level_23
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: level_23
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: level_23
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for level_23 has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: level_23
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: vanguard
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: vanguard
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: vanguard
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for vanguard has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: vanguard
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: level_24
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: level_24
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: level_24
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for level_24 has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: level_24
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: level_25
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: level_25
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: level_25
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for level_25 has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: level_25
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: level_26
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: level_26
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: level_26
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for level_26 has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: level_26
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: level_27
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: level_27
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: level_27
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for level_27 has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: level_27
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Processing reward key: mystic_sage
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Processing reward: mystic_sage
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully got reward section for: mystic_sage
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward data for mystic_sage has 10 entries
[09:21:32] [Server thread/INFO]: [PlayTimePulse] [DEBUG] Reward data keys: [id, name, material, headId, slot, page, claimSound, lore, requiredPlaytime, commands]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Successfully loaded reward: mystic_sage
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Reward loading complete: 34 loaded, 0 failed
[09:21:32] [Server thread/INFO]: [PlayTimePulse] PlaytimeConfig initialized with 34 rewards
[09:21:32] [Server thread/INFO]: [PlayTimePulse] RewardsGUI initialized
[09:21:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playtime [1.0.0]
[09:21:32] [Server thread/INFO]: [PlayTimePulse] Hooked into PlaceholderAPI!
[09:21:32] [Server thread/INFO]: [PlayTimePulse] PlayTimePulse v1.0.5-SNAPSHOT loaded!
[09:21:32] [Server thread/INFO]: [Join Commands] Enabling JoinCommands v3.1.0.120
[09:21:32] [Server thread/INFO]: [sleep-most] Enabling sleep-most v5.6.0
[09:21:33] [Server thread/INFO]: [sleep-most] Hooked to PlaceholderAPI
[09:21:33] [Server thread/INFO]: [sleep-most] Hooked to GSit
[09:21:33] [Server thread/INFO]: [sleep-most] Hooked to Essentials
[09:21:33] [Server thread/INFO]: [sleep-most] GSit hook detected and registered GSit event listener
[09:21:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: sleepmost [5.6.0]
[09:21:33] [Server thread/INFO]: [AdvancedKits] Enabling AdvancedKits v1.21.10
[09:21:33] [Server thread/INFO]: [AdvancedKits] Loading library boosted-yaml
[09:21:33] [Server thread/INFO]: [AdvancedKits] Loading library YamlAssist
[09:21:33] [Server thread/INFO]: [AdvancedKits] Loading library gson
[09:21:33] [Server thread/INFO]: [AdvancedKits] Loading library XSeries
[09:21:33] [Server thread/INFO]: [AdvancedKits] Loading library fast-uuid
[09:21:33] [Server thread/INFO]: [AdvancedKits] Loading library adventure-api
[09:21:33] [Server thread/INFO]: [AdvancedKits] Loading library adventure-key
[09:21:33] [Server thread/INFO]: [AdvancedKits] Loading library examination-api
[09:21:33] [Server thread/INFO]: [AdvancedKits] Loading library examination-string
[09:21:33] [Server thread/INFO]: [AdvancedKits] Loading library adventure-text-serializer-legacy
[09:21:33] [Server thread/INFO]: [AdvancedKits] Loading library adventure-text-minimessage
[09:21:33] [Server thread/INFO]: [AdvancedKits] [NBTAPI] Found Minecraft: 1.21.8! Trying to find NMS support
[09:21:33] [Server thread/INFO]: [AdvancedKits] [NBTAPI] NMS support 'MC1_21_R5' loaded!
[09:21:33] [Server thread/INFO]: [AdvancedKits] [NBTAPI] Using the plugin 'AdvancedKits' to create a bStats instance!
[09:21:33] [Server thread/INFO]: [AdvancedKits] Successfully connected to the YAML database!
[09:21:33] [Server thread/INFO]: [AdvancedKits] Successfully registered economy with ID EXP!
[09:21:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedkits [1.21.10]
[09:21:33] [Server thread/INFO]: [AdvancedKits] Successfully hooked into PlaceholderAPI (EXPANSION)!
[09:21:33] [Server thread/INFO]: [AdvancedKits] Successfully hooked into PlaceholderAPI (PLACEHOLDER)!
[09:21:33] [Server thread/INFO]: [AdvancedKits] Successfully registered economy with ID VAULT!
[09:21:33] [Server thread/INFO]: [AdvancedKits] Successfully hooked into Vault (ECONOMY) [UltraEconomy]!
[09:21:33] [Server thread/INFO]: [AdvancedKits] Successfully registered economy with ID ULTRAECONOMY-GEMS!
[09:21:33] [Server thread/INFO]: [AdvancedKits] Successfully registered economy with ID ULTRAECONOMY-SOULS!
[09:21:33] [Server thread/INFO]: [AdvancedKits] Successfully hooked into UltraEconomy (ECONOMY)!
[09:21:33] [Server thread/INFO]: [AdvancedKits] Successfully registered economy with ID ESSENTIALS!
[09:21:33] [Server thread/INFO]: [AdvancedKits] Successfully hooked into Essentials (ECONOMY)!
[09:21:33] [Server thread/INFO]: [AdvancedKits] Successfully registered economy with ID VOTINGPLUGIN!
[09:21:33] [Server thread/INFO]: [AdvancedKits] Successfully hooked into VotingPlugin (ECONOMY)!
[09:21:33] [Server thread/INFO]: [AdvancedKits] Successfully registered economy with ID ELITEMOBS!
[09:21:33] [Server thread/INFO]: [AdvancedKits] Successfully hooked into EliteMobs (ECONOMY)!
[09:21:33] [Server thread/INFO]: [AdvancedKits] Enabled asynchronous tab completion support with PaperSpigot!
[09:21:33] [Server thread/INFO]: [AdvancedKits] Successfully enabled in 346 ms!
[09:21:33] [Server thread/INFO]: [EvenMoreFish] Enabling EvenMoreFish v2.0.13
[09:21:33] [Server thread/INFO]: [CommandAPI] Hooked into Paper ServerResourcesReloadedEvent
[09:21:33] [/INFO]: [AdvancedKits] There is not a new update available.
[09:21:33] [Server thread/INFO]: [EvenMoreFish] Successfully loaded all configurations
[09:21:33] [Server thread/INFO]: [EvenMoreFish] Economy attempting to hook into Vault.
[09:21:33] [Server thread/INFO]: [EvenMoreFish] Economy hooked into Vault.
[09:21:33] [Server thread/INFO]: [EvenMoreFish] EvenMoreFish has successfully hooked into vault.
[09:21:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: emf [2.0.13]
[09:21:33] [Server thread/INFO]: [EvenMoreFish] Loaded Addon Java 17 Addons 1.1.0 by [EvenMoreFish]
[09:21:33] [Server thread/INFO]: [EvenMoreFish] Loaded Addon Java 21 Addons 1.1.0 by [EvenMoreFish]
[09:21:33] [Server thread/INFO]: [EvenMoreFish] Loaded Addon Internal Addons 1.0.0 by [EvenMoreFish]
[09:21:33] [Server thread/INFO]: [EvenMoreFish] Database is disabled in config
[09:21:33] [Server thread/INFO]: [EvenMoreFish] Loaded FishManager with 5 Rarities and 71 Fish.
[09:21:33] [Server thread/INFO]: [EvenMoreFish] Loaded 6 baits successfully.
[09:21:33] [Server thread/INFO]: [EvenMoreFish] Loaded RodManager with 1 Custom Rods.
[09:21:33] [Server thread/INFO]: [EvenMoreFish] Loaded 4 competition file(s) and 30 scheduled competitions.
[09:21:33] [Server thread/INFO]: [EvenMoreFish] EvenMoreFish by Oheers : Enabled
[09:21:33] [Server thread/INFO]: [AdvancedJobs] Enabling AdvancedJobs v1.8.32
[09:21:33] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: AdvancedJobs
[09:21:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedjobs [1.0.0]
[09:21:33] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.1-Release
[09:21:33] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[09:21:34] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[09:21:34] [Server thread/WARN]: [DeluxeMenus] Found 'data' option for item: teststone in menu: basics_menu. This option is deprecated and will be removed soon. Please use 'damage' instead.
[09:21:34] [Server thread/INFO]: [DeluxeMenus] 10 GUI menus loaded!
[09:21:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.1-Release]
[09:21:34] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[09:21:34] [Server thread/INFO]: [GeyserExtras] Enabling GeyserExtras v2.0.0
[09:21:34] [Server thread/INFO]: [GeyserExtras] --------------GeyserExtras--------------
[09:21:34] [Server thread/INFO]: [GeyserExtras] Version: 2.0.0-BETA-7
[09:21:34] [Server thread/INFO]: [GeyserExtras] Server Type: SPIGOT
[09:21:34] [Server thread/INFO]: [GeyserExtras] Platform Type: Spigot
[09:21:34] [Server thread/INFO]: [GeyserExtras] Floodgate installed: Yes
[09:21:34] [Server thread/INFO]: [GeyserExtras] Loading config...
[09:21:34] [Server thread/WARN]: [GeyserExtras] WARNING: Floodgate is installed, so GeyserExtras Settings will not
[09:21:34] [Server thread/WARN]: [GeyserExtras] show up in the Game Settings menu due to how forms work on GeyserMC.
[09:21:34] [Server thread/WARN]: [GeyserExtras] If you want a temporary work around to this, use Geyser-Standalone,
[09:21:34] [Server thread/WARN]: [GeyserExtras] otherwise a notification toast will show up informing players that
[09:21:34] [Server thread/WARN]: [GeyserExtras] they will have to double tap inventory.
[09:21:34] [Server thread/INFO]: [GeyserExtras] Registering events...
[09:21:34] [Server thread/INFO]: [BetterStructures] Enabling BetterStructures v2.0.0
[09:21:34] [Server thread/INFO]:     ____       __  __            _____ __                  __                      
[09:21:34] [Server thread/INFO]:    / __ )___  / /_/ /____  _____/ ___// /________  _______/ /___  __________  _____
[09:21:34] [Server thread/INFO]:   / __  / _ \/ __/ __/ _ \/ ___/\__ \/ __/ ___/ / / / ___/ __/ / / / ___/ _ \/ ___/
[09:21:34] [Server thread/INFO]:  / /_/ /  __/ /_/ /_/  __/ /   ___/ / /_/ /  / /_/ / /__/ /_/ /_/ / /  /  __(__  ) 
[09:21:34] [Server thread/INFO]: /_____/\___/\__/\__/\___/_/   /____/\__/_/   \__,_/\___/\__/\__,_/_/   \___/____/
[09:21:34] [Server thread/INFO]: [BetterStructures] Initialized version 2.0.0!
[09:21:34] [Server thread/INFO]: [BetterStructures] Supported server version detected: v1_21_R5
[09:21:34] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 22 ms to scan 1 urls, producing 1 keys and 5 values
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key spiteful in configuration file treasure_nether.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key wither_coated in configuration file treasure_nether.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key aerials_bane in configuration file treasure_nether.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key conductivity_curse in configuration file treasure_nether.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key illagers_bane in configuration file treasure_nether.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key photosynthesis in configuration file treasure_nether.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key traveler in configuration file treasure_nether.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key gravity in configuration file treasure_nether.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key ghasted in configuration file treasure_nether.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key outreach in configuration file treasure_nether.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key antidote in configuration file treasure_nether.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key spiteful in configuration file treasure_overworld_underground.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key wither_coated in configuration file treasure_overworld_underground.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key aerials_bane in configuration file treasure_overworld_underground.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key conductivity_curse in configuration file treasure_overworld_underground.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key illagers_bane in configuration file treasure_overworld_underground.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key photosynthesis in configuration file treasure_overworld_underground.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key traveler in configuration file treasure_overworld_underground.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key gravity in configuration file treasure_overworld_underground.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key ghasted in configuration file treasure_overworld_underground.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key outreach in configuration file treasure_overworld_underground.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key antidote in configuration file treasure_overworld_underground.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key spiteful in configuration file treasure_special.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key wither_coated in configuration file treasure_special.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key aerials_bane in configuration file treasure_special.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key conductivity_curse in configuration file treasure_special.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key illagers_bane in configuration file treasure_special.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key photosynthesis in configuration file treasure_special.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key traveler in configuration file treasure_special.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key gravity in configuration file treasure_special.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key ghasted in configuration file treasure_special.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key outreach in configuration file treasure_special.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key antidote in configuration file treasure_special.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key spiteful in configuration file treasure_overworld_surface.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key wither_coated in configuration file treasure_overworld_surface.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key aerials_bane in configuration file treasure_overworld_surface.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key conductivity_curse in configuration file treasure_overworld_surface.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key illagers_bane in configuration file treasure_overworld_surface.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key photosynthesis in configuration file treasure_overworld_surface.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key traveler in configuration file treasure_overworld_surface.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key gravity in configuration file treasure_overworld_surface.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key ghasted in configuration file treasure_overworld_surface.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key outreach in configuration file treasure_overworld_surface.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key antidote in configuration file treasure_overworld_surface.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Thread-59/WARN]: [GeyserExtras] GeyserExtras is on the latest version.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key spiteful in configuration file treasure_end.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key wither_coated in configuration file treasure_end.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key aerials_bane in configuration file treasure_end.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key conductivity_curse in configuration file treasure_end.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key illagers_bane in configuration file treasure_end.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key photosynthesis in configuration file treasure_end.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key traveler in configuration file treasure_end.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key gravity in configuration file treasure_end.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key ghasted in configuration file treasure_end.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key outreach in configuration file treasure_end.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [BetterStructures] Failed to get valid enchantment from key antidote in configuration file treasure_end.yml ! This is almost certainly because another plugin is using enchantments that are pretending to be vanilla Minecraft enchantments, when they aren't, and doing so in a way that doesn't allow items to be enchanted via normal means. This enchantment will be ignored for generating items, you can ignore this warning if you didn't plan to use this enchantment in the first place. Warnings about this specific enchantment will now be suppressed.
[09:21:34] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 2 ms to scan 1 urls, producing 1 keys and 29 values
[09:21:34] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 1 ms to scan 1 urls, producing 1 keys and 1 values
[09:21:34] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 15 ms to scan 125 urls, producing 0 keys and 0 values
[09:22:00] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 1 ms to scan 1 urls, producing 1 keys and 10 values
[09:22:00] [Server thread/INFO]: [SimpleNicks] Enabling SimpleNicks v2.1.2
[09:22:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: simplenicks [2.0.0]
[09:22:00] [Server thread/INFO]: [HeadDrop] Enabling HeadDrop v5.4.5
[09:22:00] [Server thread/INFO]: [HeadDrop] [HeadDrop] 
==============================
[09:22:00] [Server thread/INFO]: [HeadDrop] [HeadDrop]     HeadDrop Plugin v5.4.5
[09:22:00] [Server thread/INFO]: [HeadDrop] [HeadDrop] ==============================

[09:22:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: headdrop [1.0]
[09:22:00] [Server thread/INFO]: [HeadDrop] [HeadDrop] Hooked into PlaceholderAPI!
[09:22:00] [Server thread/INFO]: [HeadDrop] [HeadDrop] Hooked into Geyser!
[09:22:00] [Server thread/INFO]: [HeadDrop] [HeadDrop] Enabled successfully!
[09:22:00] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.4-SNAPSHOT
[09:22:00] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[09:22:00] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[09:22:00] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[09:22:00] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[09:22:00] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[09:22:00] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[09:22:00] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[09:22:00] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[09:22:00] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[09:22:00] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[09:22:00] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[09:22:00] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[09:22:00] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[09:22:00] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[09:22:00] [Server thread/INFO]: [MiniMOTD] Enabling MiniMOTD v2.2.0
[09:22:01] [Server thread/ERROR]: [MiniMOTD] Failed to register events for class xyz.jpenilla.minimotd.paper.MiniMOTDPaper because io/papermc/paper/threadedregions/RegionizedServerInitEvent does not exist.
[09:22:01] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.22.0-dev+29-37e1054
[09:22:01] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[09:22:01] [Server thread/INFO]: [TreeCuter] Enabling TreeCuter vv1.9.1
[09:22:01] [Server thread/INFO]: [GlowingEntities] [GlowingEntities] Found server version 1.21.8
[09:22:01] [Server thread/INFO]: [GlowingEntities] [GlowingEntities] Loaded transparent mappings.
[09:22:01] [Server thread/WARN]: Glowing is not supported on this server version: 1.21.8-2489-4fd4df0 (MC: 1.21.8)
[09:22:01] [Server thread/WARN]: Suported ver: [1.17.1, 1.18.2, 1.19.4, 1.20.2, 1.20.4, 1.20.5, 1.20.6, 1.21.1,  1.21.2, 1.21.3, 1.21.4, 1.21.5]
[09:22:01] [Server thread/WARN]: Suported engines: Paper and forks
[09:22:01] [Server thread/WARN]: 
[09:22:01] [Server thread/INFO]: 
[09:22:01] [Server thread/INFO]: TreeCuter by Norbit4!
[09:22:01] [Server thread/INFO]: 
[09:22:01] [Server thread/INFO]: Hooked to: WorldGuard
[09:22:01] [Server thread/INFO]: Hooked to: PlaceholderAPI
[09:22:01] [Server thread/INFO]: 
[09:22:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: treecuter [1.8.7]
[09:22:01] [Server thread/INFO]: [TempFly] Enabling TempFly v3.1.7
[09:22:01] [Server thread/INFO]: [TempFly] Initializing ClipAPI
[09:22:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tempfly [3.1.7]
[09:22:01] [Server thread/INFO]: [Tebex] Enabling Tebex v2.2.1
[09:22:01] [Server thread/INFO]: [HuskHomes] Enabling HuskHomes v4.9.9
[09:22:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: huskhomes [4.9.9]
[09:22:01] [Server thread/INFO]: [HuskHomes] Registered 'on_enable' hooks
[09:22:01] [Server thread/INFO]: [HuskHomes] Successfully enabled HuskHomes v4.9.9
[09:22:01] [OkHttp https://plugin.tebex.io/.../INFO]: [Tebex] Connected to Nytherra RPG's Game Server - Minecraft: Java Edition server.
[09:22:01] [Server thread/INFO]: [RoseStacker] Enabling RoseStacker v1.5.36
[09:22:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rosestacker [1.5.36]
[09:22:02] [Server thread/INFO]: [LPC] Enabling LPC v3.6.2
[09:22:02] [Server thread/INFO]: [DiscordSRVUtils] Enabling DiscordSRVUtils v1.2.14-BETA-1
[09:22:02] [Server thread/INFO]: 
[09:22:02] [Server thread/INFO]: []=====[Enabling DiscordSRVUtils]=====[]
[09:22:02] [Server thread/INFO]: | Information:
[09:22:02] [Server thread/INFO]: |   Name: DiscordSRVUtils
[09:22:02] [Server thread/INFO]: |   Developers: BlueTree242
[09:22:02] [Server thread/INFO]: |   Version: 1.2.14-BETA-1
[09:22:02] [Server thread/INFO]: |   Storage: HsqlDB
[09:22:02] [Server thread/INFO]: | Support:
[09:22:02] [Server thread/INFO]: |   Github: https://github.com/BlueTree242/BlueDevelopersInc/issues
[09:22:02] [Server thread/INFO]: |   Wiki: https://wiki.discordsrvutils.xyz
[09:22:02] [Server thread/INFO]: |   Discord: https://discordsrvutils.xyz/support
[09:22:02] [Server thread/INFO]: []====================================[]
[09:22:02] [Server thread/INFO]: [DiscordSRVUtils] MySQL is disabled, using hsqldb
[09:22:02] [Server thread/INFO]: [DiscordSRVUtils] HikariPool-1 - Starting...
[09:22:02] [Server thread/INFO]: [DiscordSRVUtils] HikariPool-1 - Driver does not support get/set network timeout for connections. (feature not supported)
[09:22:02] [Server thread/INFO]: [DiscordSRVUtils] HikariPool-1 - Start completed.
[09:22:03] [Server thread/INFO]: [DiscordSRVUtils] [Flyway] Schema "PUBLIC" is up to date. No migration necessary.
[09:22:03] [Server thread/INFO]: [DiscordSRVUtils] MySQL/HsqlDB Connected & Setup
[09:22:03] [Server thread/INFO]: [DiscordSRV] API listener dev.bluetree242.discordsrvutils.listeners.discordsrv.DiscordSRVListener subscribed (3 methods)
[09:22:03] [DSU-THREAD/INFO]: [DiscordSRVUtils] Successfully hooked into Essentials
[09:22:03] [DSU-THREAD/INFO]: [DiscordSRVUtils] Successfully hooked into PlaceholderAPI
[09:22:03] [Server thread/INFO]: [EpicRename] Enabling EpicRename v3.12.2
[09:22:03] [Server thread/INFO]: [EpicRename] [CheckServerVersion] Server running 1.20.5 or newer. Hex color code support has been enabled.
[09:22:03] [Server thread/INFO]: [EpicRename] Version: 3.12.2 MC Version: ONE_DOT_TWENTY_DOT_FIVE_OR_NEWER
[09:22:03] [Server thread/INFO]: [EpicRename] This plugin is Copyright (c) 2025 Justin "JustBru00" Brubaker. This plugin is licensed under the MPL v2.0. You can view a copy of the MPL v2.0 license at: http://bit.ly/2eMknxx
[09:22:03] [Server thread/INFO]: [EpicRename] Starting to enable plugin...
[09:22:03] [Server thread/INFO]: [EpicRename] Prefix set to: '[EpicRename] '
[09:22:03] [Server thread/INFO]: [EpicRename] Plugin Enabled!
[09:22:03] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v23.0
[09:22:03] [DSU-THREAD/INFO]: [DiscordSRVUtils] Plugin is ready to function.
[09:22:03] [Server thread/INFO]: [CoreProtect] CoreProtect Community Edition has been successfully enabled! 
[09:22:03] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[09:22:03] [Server thread/INFO]: --------------------
[09:22:03] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[09:22:03] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[09:22:03] [Server thread/INFO]: --------------------
[09:22:03] [Server thread/INFO]: [ChunkyBorder] Enabling ChunkyBorder v1.2.23
[09:22:03] [Server thread/INFO]: [AdvancedPortals] Enabling AdvancedPortals v2.5.0
[09:22:03] [Server thread/INFO]: [AdvancedPortals] Loading Advanced Portals Core v2.5.0 for MC: 1.21.8
[09:22:03] [Server thread/INFO]: [AdvancedPortals] Advanced portals have been enabled!
[09:22:03] [Server thread/INFO]: [spark] Starting background profiler...
[09:22:04] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[09:22:04] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[09:22:04] [Server thread/INFO]: [Geyser-Spigot] 
[09:22:04] [Server thread/INFO]: [Geyser-Spigot] Loading Geyser version 2.8.3-b936 (git-master-5abc036)
[09:22:04] [Server thread/INFO]: [Geyser-Spigot] 
[09:22:04] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[09:22:04] [Server thread/INFO]: [Geyser-Spigot] Registered 274 custom skulls as custom blocks.
[09:22:04] [Server thread/INFO]: [Geyser-Spigot] Registered 274 custom blocks.
[09:22:06] [Server thread/INFO]: [Geyser-Spigot] Registered 1 custom items
[09:22:06] [Server thread/INFO]: [Geyser-Spigot] Reusing cached player skull resource pack.
[09:22:06] [GeyserServer-4-1/INFO]: [Geyser-Spigot] Started Geyser on UDP port 19132
[09:22:06] [Server thread/INFO]: [GeyserExtras] Initializing cache...
[09:22:06] [Server thread/INFO]: [GeyserExtras] Loading cache...
[09:22:06] [Server thread/INFO]: [GeyserExtras] Loading resources...
[09:22:06] [Server thread/INFO]: [GeyserExtras] Checking for pack updates...
[09:22:06] [Server thread/INFO]: [GeyserExtras] Loading resources...
[09:22:06] [Server thread/INFO]: [GeyserExtras] Loading Emote Data...
[09:22:06] [Server thread/INFO]: [GeyserExtras] Done! (32.508s)
[09:22:06] [Server thread/INFO]: [GeyserExtras] ----------------------------------------
[09:22:06] [Server thread/INFO]: [Geyser-Spigot] Done (1.992s)! Run /geyser help for help!
[09:22:06] [Server thread/INFO]: Done preparing level "world" (64.143s)
[09:22:06] [Server thread/INFO]: Running delayed init tasks
[09:22:06] [Craft Scheduler Thread - 8 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[09:22:06] [Craft Scheduler Thread - 8 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[09:22:06] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[09:22:06] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[09:22:06] [Craft Scheduler Thread - 10 - Essentials/INFO]: [Essentials] Fetching version information...
[09:22:06] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v2.15.1)!
[09:22:06] [Craft Scheduler Thread - 6 - FreeMinecraftModels/INFO]: [FreeMinecraftModels] Latest public release is 2.3.8
[09:22:06] [Craft Scheduler Thread - 6 - FreeMinecraftModels/INFO]: [FreeMinecraftModels] Your version is 2.3.8
[09:22:06] [Craft Scheduler Thread - 8 - DecentHolograms/INFO]: [DecentHolograms] Loaded 36 holograms!
[09:22:06] [Craft Scheduler Thread - 16 - EliteMobs/WARN]: [EliteMobs] Failed to check content yggdrasil_realm.yml ! The remote server doesn't have a version listed for it, report it to the developer!
[09:22:06] [Craft Scheduler Thread - 6 - FreeMinecraftModels/INFO]: [FreeMinecraftModels] You are running the latest version!
[09:22:07] [Craft Scheduler Thread - 22 - EliteMobs/INFO]: [EliteMobs] Latest public release is 9.5.4
[09:22:07] [Craft Scheduler Thread - 22 - EliteMobs/INFO]: [EliteMobs] Your version is 9.5.4
[09:22:07] [Craft Scheduler Thread - 22 - EliteMobs/INFO]: [EliteMobs] You are running the latest version!
[09:22:07] [Craft Scheduler Thread - 27 - BetterStructures/INFO]: [BetterStructures] Latest public release is 2.0.0
[09:22:07] [Craft Scheduler Thread - 27 - BetterStructures/INFO]: [BetterStructures] Your version is 2.0.0
[09:22:07] [Craft Scheduler Thread - 27 - BetterStructures/INFO]: [BetterStructures] You are running the latest version!
[09:22:07] [Craft Scheduler Thread - 19 - GrimAC/INFO]: New GrimAC version found! Version 2.3.72-40a4c08 is available to be downloaded here: https://modrinth.com/plugin/grimac
[09:22:07] [Craft Scheduler Thread - 34 - RoseStacker/INFO]: [RoseStacker] Fetched 137 translation locales.
[09:22:07] [Craft Scheduler Thread - 10 - Essentials/WARN]: [Essentials] You're 3 EssentialsX dev build(s) out of date!
[09:22:07] [Craft Scheduler Thread - 10 - Essentials/WARN]: [Essentials] Download it here: https://essentialsx.net/downloads.html
[09:22:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrv [1.30.1]
[09:22:07] [Craft Scheduler Thread - 31 - DiscordSRVUtils/INFO]: [DiscordSRVUtils] You are up to date.
[09:22:07] [Server thread/INFO]: The God of Mischief has blessed us with his presence!
[09:22:08] [Server thread/INFO]: [AuraSkills] Loaded 11 skills with 317 total sources
[09:22:08] [Server thread/INFO]: [AuraSkills] Loaded 9 stats and 17 traits
[09:22:08] [Server thread/INFO]: [AuraSkills] Loaded 22 pattern rewards and 0 level rewards
[09:22:08] [Server thread/INFO]: [AuraSkills] Loaded 53 loot entries in 4 pools and 2 tables
[09:22:08] [Server thread/INFO]: Nexo | PackServer set to SELFHOST
[09:22:08] [Server thread/INFO]: Nexo | Started Self-Host Pack-Server...
[09:22:08] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Enabled Nexo hook...
[09:22:08] [Server thread/INFO]: [EconomyShopGUI-Premium] [DEBUG]: ITEMS provider loaded, waiting...
[09:22:08] [Server thread/INFO]: [EvenMoreFish] Detected that Nexo has finished loading all items...
[09:22:08] [Server thread/INFO]: [EvenMoreFish] Reloading EMF.
[09:22:08] [Server thread/INFO]: [EvenMoreFish] Successfully reloaded all configurations
[09:22:08] [Server thread/INFO]: [EvenMoreFish] Loaded FishManager with 5 Rarities and 71 Fish.
[09:22:08] [Server thread/INFO]: [EvenMoreFish] Loaded 6 baits successfully.
[09:22:08] [Server thread/INFO]: [EvenMoreFish] Loaded RodManager with 1 Custom Rods.
[09:22:08] [Server thread/INFO]: [EvenMoreFish] Loaded 4 competition file(s) and 30 scheduled competitions.
[09:22:08] [ForkJoinPool.commonPool-worker-5/INFO]: Nexo | Generating resourcepack...
[09:22:08] [ForkJoinPool.commonPool-worker-5/INFO]: Nexo | Importing DefaultPack...
[09:22:08] [ForkJoinPool.commonPool-worker-5/INFO]: Nexo | Importing external-pack Nautical-Ranks-V3-Java.zip...
[09:22:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrvutils [1.2.14-BETA-1]
[09:22:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrvutils [1.2.14-BETA-1]
[09:22:08] [Server thread/INFO]: [CoreProtect] FastAsyncWorldEdit logging successfully initialized.
[09:22:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[09:22:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: floodgate [1.5.2]
[09:22:08] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion griefprevention due to a missing plugin: GriefPrevention
[09:22:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: localtime [1.2]
[09:22:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[09:22:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[09:22:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: playerlist [3.0.8]
[09:22:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.7.3]
[09:22:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.2]
[09:22:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[09:22:08] [Server thread/WARN]: [PlaceholderAPI] Failed to load external expansion votingplugin. Identifier is already in use.
[09:22:08] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion votingplugin due to an unknown issue.
[09:22:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: worldguard [1.4.2]
[09:22:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: math [2.0.2]
[09:22:08] [Server thread/INFO]: 11 placeholder hook(s) registered!
[09:22:08] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Enabled PlaceholderAPI hook...
[09:22:08] [Server thread/INFO]: [EconomyShopGUI-Premium] [DEBUG]: PLACEHOLDERS provider loaded, waiting...
[09:22:08] [Server thread/INFO]: [Citizens] Loaded 12 NPCs.
[09:22:09] [Server thread/INFO]: [Lands] [Integrations] Registered item provider: NEXO
[09:22:09] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated PlaceholderAPI for parsing placeholders from 3rd party plugins in chat messages and GUI menus
[09:22:09] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated LuckPerms for offline permission lookups.
[09:22:09] [Server thread/INFO]: [Lands] [Integrations] Integrated Bedrock GUI forms for Bedrock players.
[09:22:09] [Server thread/INFO]: [Lands] Added region provider: WorldGuard Type: SERVER
[09:22:09] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated Vault economy into economy system. Name: UltraEconomy
[09:22:09] [Server thread/INFO]: [Lands] [Integrations] Added Lands target option to Sentinel.
[09:22:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lands [7.16.16]
[09:22:09] [Server thread/INFO]: [Lands] [Integrations] Successfully registered placeholders at PlaceholderAPI. More info: https://wiki.incredibleplugins.com/lands/configuration/placeholderapi-placeholders
[09:22:09] [Server thread/INFO]: [Lands] BlueMap is ready now.
[09:22:09] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated BlueMap into web-map system.
[09:22:09] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated FastAsyncWorldEdit. 
[09:22:09] [Server thread/INFO]: [Lands] [Integrations] Successfully loaded LuckPerms contexts. More information: https://wiki.incredibleplugins.com/lands/permissions/luckperms-context
[09:22:09] [Server thread/INFO]: [Lands] [Economy] Next economic tasks (taxes, upkeep, nations upkeep) execution is in 1 day(s), 13 hour(s), 37 minute(s), 50 second(s). Interval: 3 day(s)
[09:22:09] [Server thread/INFO]: +> [ScriptEvent] Processed 0 script event paths. 
[09:22:09] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[09:22:09] [Server thread/INFO]: +> [Denizen] Denizen fully loaded at: 2025/09/29 09:21:28 
[09:22:09] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Using RoseStacker as spawner provider.
[09:22:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: esgui [1.2.0]
[09:22:09] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Debug mode is enabled.
[09:22:09] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Loading all items...
[09:22:09] [Craft Scheduler Thread - 4 - UltraEconomy/INFO]: [UltraEconomy] Translations successfully loaded & applied (37 Translation files found)
[09:22:09] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Loaded cached interval for rotating shop RotatingShop with next rotation in 30m 8s...
[09:22:09] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Successfully enabled rotating shop RotatingShop, with a rotating interval of 1h
[09:22:09] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed delayed loading.
[09:22:09] [Server thread/INFO]: [ViaVersion] You are running a development version of the plugin, please report any bugs to GitHub.
[09:22:09] [ForkJoinPool.commonPool-worker-5/INFO]: Nexo | Validating ResourcePack files...
[09:22:09] [Server thread/INFO]: Done (85.381s)! For help, type "help"
[09:22:09] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2622ms or 52 ticks behind
[09:22:09] [ForkJoinPool.commonPool-worker-5/INFO]: Nexo | Finished generating resourcepack!

[09:22:09] [ForkJoinPool.commonPool-worker-5/INFO]: Nexo | Resourcepack has been uploaded to SelfHost!
[09:22:09] [Server thread/INFO]: [AuraSkills] Loaded 7 menus
[09:22:09] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Successfully registered 20 slash commands (0 conflicted) for 1 plugins in 1/1 guilds (0 cancelled)
[09:22:09] [Server thread/INFO]: [AdvancedJobs] Successfully hooked into ProtocolLib, AuraSkills, WorldGuard, PlaceholderAPI, Lands, Geyser-Spigot, Essentials, Vault, LuckPerms, ViaVersion, TAB, DiscordSRV.
[09:22:09] [Server thread/INFO]: [Citizens] Hooked into Citizens
[09:22:09] [Server thread/INFO]: [Lands] Hooked into Lands
[09:22:09] [Server thread/INFO]: [EconomyShopGUI-Premium] Hooked into EconomyShopGUI-Premium
[09:22:09] [Server thread/INFO]: [Votifier] Hooked into Votifier
[09:22:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultimateautorestart [2025.07a]
[09:22:12] [Server thread/INFO]: [UltimateAutoRestart] Hooked into PlaceholderAPI!
[09:22:12] [Server thread/INFO]: [UltimateAutoRestart] Successfully performed 1 hooks!
[09:22:12] [DiscordSRV - JDA Callback 0/INFO]: [VotingPlugin] Edited Top Voters AllTime (ID: 1403007846135627838)
[09:22:12] [DiscordSRV - JDA Callback 0/INFO]: [VotingPlugin] Edited Top Voters Monthly (ID: 1403007847327072336)
[09:22:12] [DiscordSRV - JDA Callback 0/INFO]: [VotingPlugin] Edited Top Voters Weekly (ID: 1403007848564129873)
[09:22:14] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[09:22:14] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[09:22:14] [Craft Scheduler Thread - 40 - HuskHomes/INFO]: [HuskHomes] Registered 'after_load' hooks
[09:22:14] [ForkJoinPool.commonPool-worker-5/INFO]: [Lands] You're using the latest version.
[09:22:19] [Craft Scheduler Thread - 13 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin is up to date! Version: 6.19
[09:22:19] [DiscordSRV - JDA Callback 0/INFO]: [VotingPlugin] Edited Top Voters Daily (ID: 1403007849566703739)
[09:22:36] [User Authenticator #0/INFO]: UUID of player Stevexhunt is 845d4245-92e9-4fc6-b16a-313942d68612
[09:22:36] [Server thread/INFO]: [HorriblePlayerLoginEventHack] You have plugins listening to the PlayerLoginEvent, this will cause re-configuration APIs to be unavailable: [LuckPerms, EliteMobs, UltraEconomy, Denizen, DiscordSRV, DeluxeMenus, ProtocolLib, WorldGuard]
[09:22:36] [Netty Epoll Server IO #2/INFO]: [ac.grim.grimac.shaded.com.github.retrooper.packetevents.PacketEventsAPI] Loading block mappings for V_1_21_6/19...
[09:22:36] [Netty Epoll Server IO #2/INFO]: [ac.grim.grimac.shaded.com.github.retrooper.packetevents.PacketEventsAPI] Finished loading block mappings for V_1_21_6/19 in 130.792281ms
[09:22:38] [Server thread/INFO]: [VotingPlugin] Login: Stevexhunt (845d4245-92e9-4fc6-b16a-313942d68612)
[09:22:38] [Server thread/INFO]: Stevexhunt joined the game
[09:22:38] [Server thread/INFO]: Stevexhunt[/         ip          ] logged in with entity id 1336 at ([world_spawn]48.195469626774376, -20.0, -8.101746681075282)
[09:22:38] [Craft Scheduler Thread - 30 - SRVaults/INFO]: [SRVaults] [SRVaults] User 845d4245-92e9-4fc6-b16a-313942d68612 data successfully read!
[09:22:39] [Craft Scheduler Thread - 10 - EliteMobs/INFO]: [EliteMobs] User 845d4245-92e9-4fc6-b16a-313942d68612 data successfully read!