Paste #136376: broomestick

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

View Raw Paste Download This Paste
Copy Link


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


[09:34:44] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.7+6-LTS; Eclipse Adoptium Temurin-21.0.7+6) on Linux 5.14.0-503.34.1.el9_5.x86_64 (amd64)
[09:34:44] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.8-60-main@29c8822 (2025-09-06T21:49:13Z) for Minecraft 1.21.8
[09:34:44] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[09:34:45] [ServerMain/INFO]: [PluginInitializerManager] Initialized 90 plugins
[09:34:45] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (90):
 - AdvancedReplay (1.8.15), AltherianEngine (1.0.0), AntiCheatReplay (2.7.22), AntiHealthIndicator (1.4.3), AntiPopup (12.1), BannerMaker (2.5.0), BigDoors (Alpha 0.1.8.61), BigDoorsPhysics (2.4.3), BlueMap (5.9), BlueMapPlayerControl (1.6), Botarmy (1.0.0), BountyGuard (2.0.0), BreweryX (3.4.10;HEAD), BroomestickAntiXray (1.0), ChatGuard (1.0.0), ChestProtect (5.20.17), ChestShop (3.12.3-SNAPSHOT (build 445)), ChestShopNotifier (1.3.3 (build 51)), ChunkSpawnerLimiter (4.4.2), Chunky (1.4.40), Citizens (2.0.39-SNAPSHOT (build 3851)), CoreProtect (23.0), CustomTools (1.0.0), DecentHolograms (2.9.7), DeluxeTags (1.8.2-Release), DiscordBridge (1.5.8), DiscordSRV (1.30.1), Disease (1.0.0), DivinityEconomy (3.5.6), EpicRename (3.12.1), Essentials (2.22.0-dev+28-0aa25c8), EssentialsSpawn (2.22.0-dev+28-0aa25c8), FastAsyncWorldEdit (2.13.3-SNAPSHOT-1174;d83f24a), GSit (2.4.3), HSR (1.0.0), HeadDrop (5.4.5), ImageFrame (1.8.5.0), Insights (6.19.7), InvSeePlusPlus (0.30.7), InvSeePlusPlus_Clear (0.30.7), InvSeePlusPlus_Give (0.30.7), InventoryRollbackPlus (1.7.6), ItemframeSnipper (1.0.0), Keepinv (1.0.0), LPC (3.6.2), Lands (7.16.16), LevelledMobs (4.3.2.1 b125), LiteBans (2.18.0), LuckPerms (5.5.9), Maintenance (4.3.0), MinecartTrains (1.4.1), Movecraft (8.0.0_beta-6), Multiverse-Core (5.1.1), Multiverse-Inventories (5.1.1), NotQuests (5.19.0), NoteBlockAPI (1.6.3), OpenAudioMc (6.10.14), PhoenixCratesLite (4.3.0), PlaceholderAPI (2.11.6), Plan (5.6 build 2965), PlugManX (2.4.1), ProAntiTab (1.9.1), ProtocolLib (5.4.0-SNAPSHOT-753), PuddingAPI (2503151209), ReferralX (1.3.0-UNIVERSAL), Reports (1.0.0), RewardsLite (3.1.10), SkBee (3.12.3), SkCord (3.3-RELEASE), Skript (2.12.1), StaffChat (3.7), StaffPanel (1.0.0), Stafflogger (1.0.0), SuperVanish (6.2.20), SyncDeluxe (1.0.0), TAB (5.2.4), Tebex (2.2.1), TradeManager (1.4.9), Ultimate_BlockRegeneration (2.0.45), Vault (1.7.3-b131), Votifier (2.7.3), VotingPlugin (6.18.7), Vulcan (2.9.7.2), Wars (1.0.0), WorldGuard (7.0.14+2339-43997ec), XenonGear (1.0.0), ajLeaderboards (2.10.1), floodgate (2.2.4-SNAPSHOT (b118-40d320a)), packetevents (2.9.5), statsAPI (1.0.0)
[09:34:47] [ServerMain/WARN]: resource-pack-id missing, using default of d8087762-1320-3c8d-80b6-03469b22f1ef
[09:34:47] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[09:34:47] [ServerMain/INFO]: [ca.spottedleaf.dataconverter.minecraft.datatypes.MCTypeRegistry] Initialising converters for DataConverter...
[09:34:47] [ServerMain/INFO]: [ca.spottedleaf.dataconverter.minecraft.datatypes.MCTypeRegistry] Finished initialising converters for DataConverter in 162.6ms
[09:34:48] [ServerMain/INFO]: Loaded 1407 recipes
[09:34:48] [ServerMain/INFO]: Loaded 1520 advancements
[09:34:48] [Server thread/INFO]: Starting minecraft server version 1.21.8
[09:34:48] [Server thread/INFO]: Loading properties
[09:34:48] [Server thread/INFO]: This server is running Paper version 1.21.8-60-main@29c8822 (2025-09-06T21:49:13Z) (Implementing API version 1.21.8-R0.1-SNAPSHOT)
[09:34:48] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[09:34:48] [Server thread/INFO]: Server Ping Player Sample Count: 12
[09:34:48] [Server thread/INFO]: Using 4 threads for Netty based IO
[09:34:48] [Server thread/INFO]: [MoonriseCommon] Paper is using 8 worker threads, 1 I/O threads
[09:34:48] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using population gen parallelism: true
[09:34:49] [Server thread/INFO]: Default game type: SURVIVAL
[09:34:49] [Server thread/INFO]: Generating keypair
[09:34:49] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25578
[09:34:49] [Server thread/INFO]: Using epoll channel type
[09:34:49] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[09:34:49] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
[09:34:49] [Server thread/INFO]: [SpigotLibraryLoader] [BlueMap] Loading 1 libraries... please wait
[09:34:49] [Server thread/INFO]: [SpigotLibraryLoader] [BlueMap] Loaded library /home/container/libraries/com/flowpowered/flow-math/1.0.3/flow-math-1.0.3.jar
[09:34:49] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loading 5 libraries... please wait
[09:34:49] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/org/redisson/redisson/3.48.0/redisson-3.48.0.jar
[09:34:49] [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:34:49] [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:34:49] [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:34:49] [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:34:49] [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:34:49] [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:34:49] [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:34:49] [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:34:49] [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:34:49] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/javax/cache/cache-api/1.1.1/cache-api-1.1.1.jar
[09:34:49] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/projectreactor/reactor-core/3.6.2/reactor-core-3.6.2.jar
[09:34:49] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar
[09:34:49] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/reactivex/rxjava3/rxjava/3.1.8/rxjava-3.1.8.jar
[09:34:49] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/com/esotericsoftware/kryo/5.6.2/kryo-5.6.2.jar
[09:34:49] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/com/esotericsoftware/reflectasm/1.11.9/reflectasm-1.11.9.jar
[09:34:49] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/org/objenesis/objenesis/3.4/objenesis-3.4.jar
[09:34:49] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/com/esotericsoftware/minlog/1.3.1/minlog-1.3.1.jar
[09:34:49] [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:34:49] [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:34:49] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/org/yaml/snakeyaml/2.3/snakeyaml-2.3.jar
[09:34:49] [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:34:49] [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:34:49] [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:34:49] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/net/bytebuddy/byte-buddy/1.15.3/byte-buddy-1.15.3.jar
[09:34:49] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/org/jodd/jodd-util/6.3.0/jodd-util-6.3.0.jar
[09:34:49] [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:34:49] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/com/zaxxer/HikariCP/4.0.3/HikariCP-4.0.3.jar
[09:34:49] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/org/slf4j/slf4j-jdk14/1.7.32/slf4j-jdk14-1.7.32.jar
[09:34:49] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.32/slf4j-api-1.7.32.jar
[09:34:49] [Server thread/INFO]: [SpigotLibraryLoader] [BigDoors] Loading 1 libraries... please wait
[09:34:49] [Server thread/INFO]: [SpigotLibraryLoader] [BigDoors] Loaded library /home/container/libraries/net/bytebuddy/byte-buddy/1.14.17/byte-buddy-1.14.17.jar
[09:34:49] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 3 libraries... please wait
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/ch/ethz/globis/phtree/phtree/2.8.2/phtree-2.8.2.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/org/joml/joml/1.10.8/joml-1.10.8.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.15/fastutil-8.5.15.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [HeadDrop] Loading 2 libraries... please wait
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [HeadDrop] Loaded library /home/container/libraries/com/zaxxer/HikariCP/6.3.0/HikariCP-6.3.0.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [HeadDrop] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [HeadDrop] Loaded library /home/container/libraries/org/json/json/20250517/json-20250517.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loading 8 libraries... please wait
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/com/zaxxer/HikariCP/4.0.3/HikariCP-4.0.3.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/org/slf4j/slf4j-jdk14/2.0.12/slf4j-jdk14-2.0.12.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.12/slf4j-api-2.0.12.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/org/redisson/redisson/3.48.0/redisson-3.48.0.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/io/netty/netty-common/4.1.121.Final/netty-common-4.1.121.Final.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/io/netty/netty-codec/4.1.121.Final/netty-codec-4.1.121.Final.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/io/netty/netty-buffer/4.1.121.Final/netty-buffer-4.1.121.Final.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/io/netty/netty-transport/4.1.121.Final/netty-transport-4.1.121.Final.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/io/netty/netty-resolver/4.1.121.Final/netty-resolver-4.1.121.Final.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/io/netty/netty-resolver-dns/4.1.121.Final/netty-resolver-dns-4.1.121.Final.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/io/netty/netty-codec-dns/4.1.121.Final/netty-codec-dns-4.1.121.Final.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/io/netty/netty-handler/4.1.121.Final/netty-handler-4.1.121.Final.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] 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:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/javax/cache/cache-api/1.1.1/cache-api-1.1.1.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/io/projectreactor/reactor-core/3.6.2/reactor-core-3.6.2.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/io/reactivex/rxjava3/rxjava/3.1.8/rxjava-3.1.8.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/com/esotericsoftware/kryo/5.6.2/kryo-5.6.2.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/com/esotericsoftware/reflectasm/1.11.9/reflectasm-1.11.9.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/org/objenesis/objenesis/3.4/objenesis-3.4.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/com/esotericsoftware/minlog/1.3.1/minlog-1.3.1.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/com/fasterxml/jackson/core/jackson-annotations/2.18.2/jackson-annotations-2.18.2.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.18.2/jackson-dataformat-yaml-2.18.2.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/com/fasterxml/jackson/core/jackson-core/2.18.2/jackson-core-2.18.2.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/com/fasterxml/jackson/core/jackson-databind/2.18.2/jackson-databind-2.18.2.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.18.2/jackson-datatype-jsr310-2.18.2.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/net/bytebuddy/byte-buddy/1.15.3/byte-buddy-1.15.3.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/org/jodd/jodd-util/6.3.0/jodd-util-6.3.0.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/org/yaml/snakeyaml/2.2/snakeyaml-2.2.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/net/dv8tion/JDA/5.1.2/JDA-5.1.2.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/com/neovisionaries/nv-websocket-client/2.14/nv-websocket-client-2.14.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/com/squareup/okhttp3/okhttp/4.12.0/okhttp-4.12.0.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/com/squareup/okio/okio/3.6.0/okio-3.6.0.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/com/squareup/okio/okio-jvm/3.6.0/okio-jvm-3.6.0.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib-common/1.9.10/kotlin-stdlib-common-1.9.10.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.8.21/kotlin-stdlib-jdk8-1.8.21.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib/1.8.21/kotlin-stdlib-1.8.21.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/org/jetbrains/annotations/13.0/annotations-13.0.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.8.21/kotlin-stdlib-jdk7-1.8.21.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/club/minnced/opus-java/1.1.1/opus-java-1.1.1.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/club/minnced/opus-java-api/1.1.1/opus-java-api-1.1.1.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/net/java/dev/jna/jna/4.4.0/jna-4.4.0.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/club/minnced/opus-java-natives/1.1.1/opus-java-natives-1.1.1.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/org/apache/commons/commons-collections4/4.4/commons-collections4-4.4.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/net/sf/trove4j/core/3.1.0/core-3.1.0.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/com/google/crypto/tink/tink/1.14.1/tink-1.14.1.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/com/google/errorprone/error_prone_annotations/2.22.0/error_prone_annotations-2.22.0.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/com/google/protobuf/protobuf-java/3.25.3/protobuf-java-3.25.3.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/club/minnced/discord-webhooks/0.8.4/discord-webhooks-0.8.4.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/org/json/json/20230618/json-20230618.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/ch/qos/logback/logback-classic/1.2.8/logback-classic-1.2.8.jar
[09:34:54] [Server thread/INFO]: [SpigotLibraryLoader] [DiscordBridge] Loaded library /home/container/libraries/ch/qos/logback/logback-core/1.2.8/logback-core-1.2.8.jar
[09:34:55] [Server thread/INFO]: [SpigotLibraryLoader] [RewardsLite] Loading 1 libraries... please wait
[09:34:55] [Server thread/INFO]: [SpigotLibraryLoader] [RewardsLite] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.1.0/HikariCP-5.1.0.jar
[09:34:55] [Server thread/INFO]: [SpigotLibraryLoader] [RewardsLite] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[09:34:55] [Server thread/WARN]: Legacy plugin statsAPI v1.0.0 does not specify an api-version.
[09:34:55] [Server thread/INFO]: [SpigotLibraryLoader] [BreweryX] Loading 1 libraries... please wait
[09:34:55] [Server thread/INFO]: [SpigotLibraryLoader] [BreweryX] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib/2.0.21/kotlin-stdlib-2.0.21.jar
[09:34:55] [Server thread/INFO]: [SpigotLibraryLoader] [BreweryX] Loaded library /home/container/libraries/org/jetbrains/annotations/13.0/annotations-13.0.jar
[09:34:55] [Server thread/INFO]: [SpigotLibraryLoader] [ChestProtect] Loading 4 libraries... please wait
[09:34:55] [Server thread/INFO]: [SpigotLibraryLoader] [ChestProtect] Loaded library /home/container/libraries/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.jar
[09:34:55] [Server thread/INFO]: [SpigotLibraryLoader] [ChestProtect] Loaded library /home/container/libraries/com/zaxxer/HikariCP/4.0.3/HikariCP-4.0.3.jar
[09:34:55] [Server thread/INFO]: [SpigotLibraryLoader] [ChestProtect] Loaded library /home/container/libraries/org/slf4j/slf4j-jdk14/1.7.32/slf4j-jdk14-1.7.32.jar
[09:34:55] [Server thread/INFO]: [SpigotLibraryLoader] [ChestProtect] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.32/slf4j-api-1.7.32.jar
[09:34:55] [Server thread/INFO]: [SpigotLibraryLoader] [Movecraft] Loading 1 libraries... please wait
[09:34:55] [Server thread/INFO]: [SpigotLibraryLoader] [Movecraft] Loaded library /home/container/libraries/org/roaringbitmap/RoaringBitmap/1.0.6/RoaringBitmap-1.0.6.jar
[09:34:55] [Server thread/INFO]: [SpigotLibraryLoader] [SkCord] Loading 1 libraries... please wait
[09:34:55] [Server thread/INFO]: [SpigotLibraryLoader] [SkCord] Loaded library /home/container/libraries/com/fasterxml/jackson/core/jackson-databind/2.15.2/jackson-databind-2.15.2.jar
[09:34:55] [Server thread/INFO]: [SpigotLibraryLoader] [SkCord] Loaded library /home/container/libraries/com/fasterxml/jackson/core/jackson-annotations/2.15.2/jackson-annotations-2.15.2.jar
[09:34:55] [Server thread/INFO]: [SpigotLibraryLoader] [SkCord] Loaded library /home/container/libraries/com/fasterxml/jackson/core/jackson-core/2.15.2/jackson-core-2.15.2.jar
[09:34:55] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loading 1 libraries... please wait
[09:34:55] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[09:34:55] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[09:34:55] [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:34:55] [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:34:55] [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:34:55] [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:34:55] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.5.9
[09:34:55] [Server thread/INFO]: [LuckPerms] Loading configuration...
[09:34:55] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[09:34:55] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.13.3-SNAPSHOT-1174;d83f24a
[09:34:55] [Server thread/WARN]: 
**********************************************
** You are using the Spigot-mapped FAWE jar on a modern Paper version.
** This will result in slower first-run times and wasted disk space from plugin remapping.
** Download the Paper FAWE jar from Modrinth to avoid this: https://modrinth.com/plugin/fastasyncworldedit/
**********************************************
[09:34:55] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@327ef093]
[09:34:55] [Server thread/INFO]: [LiteBans] Loading server plugin LiteBans v2.18.0
[09:34:55] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[09:34:55] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.14+2339-43997ec
[09:34:55] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.4.0-SNAPSHOT-753
[09:34:55] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.21.8) has not yet been tested! Proceed with caution.
[09:34:56] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.22.0-dev+28-0aa25c8
[09:34:56] [Server thread/INFO]: [CoreLogging] Loading server plugin Multiverse-Core v5.1.1
[09:34:56] [Server thread/INFO]: [floodgate] Loading server plugin floodgate v2.2.4-SNAPSHOT (b118-40d320a)
[09:34:56] [Server thread/INFO]: [floodgate] Took 247ms to boot Floodgate
[09:34:56] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.9.7
[09:34:56] [Server thread/INFO]: [BlueMap] Loading server plugin BlueMap v5.9
[09:34:56] [Server thread/INFO]: [GSit] Loading server plugin GSit v2.4.3
[09:34:56] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.9.5
[09:34:56] [Server thread/INFO]: [SuperVanish] Loading server plugin SuperVanish v6.2.20
[09:34:56] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.12.1
[09:34:56] [Server thread/INFO]: [Multiverse-Inventories] Loading server plugin Multiverse-Inventories v5.1.1
[09:34:56] [Server thread/INFO]: [Lands] Loading server plugin Lands v7.16.16
[09:34:56] [Server thread/WARN]: [Lands] [Wars] Incompatible material value for your server version found: REDSTONE_DUST Setting: block-break
[09:34:56] [Server thread/WARN]: [Lands] [Wars] Incompatible material value for your server version found: REDSTONE_REPEATER Setting: block-break
[09:34: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:34:56] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[09:34:56] [Server thread/INFO]: [Lands] Using SQLite: /home/container/plugins/Lands/Data
[09:34:56] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ConnectionPool - Starting...
[09:34:57] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ConnectionPool - Start completed.
[09:34:57] [Server thread/INFO]: [Lands] Successfully connected to SQL database.
[09:34:57] [Server thread/INFO]: [Lands] Setting up tables...
[09:34:57] [Server thread/INFO]: [Lands] Your SQL DBMS version: 3.49.1 (SQLite) Wiki: https://wiki.incredibleplugins.com/lands/configuration/database
[09:34:57] [Server thread/INFO]: [Lands] Successfully connected to SQL database.
[09:34:57] [Server thread/INFO]: [Lands] Added flag 'lands-claim' to the plugin WorldGuard.
[09:34:57] [Server thread/INFO]: [Vulcan] Loading server plugin Vulcan v2.9.7.2
[09:34:57] [Server thread/INFO]: [ChestShop] Loading server plugin ChestShop v3.12.3-SNAPSHOT (build 445)
[09:34:57] [Server thread/INFO]: [ChestShop] WorldGuard version 7.0.14+2339-43997ec loaded.
[09:34:57] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.30.1
[09:34:57] [Server thread/INFO]: [Votifier] Loading server plugin Votifier v2.7.3
[09:34:57] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v23.0
[09:34:57] [Server thread/INFO]: [InvSee++] Loading server plugin InvSeePlusPlus v0.30.7
[09:34:57] [Server thread/INFO]: [BigDoors] Loading server plugin BigDoors vAlpha 0.1.8.61
[09:34:57] [Server thread/INFO]: [AdvancedReplay] Loading server plugin AdvancedReplay v1.8.15
[09:34:57] [Server thread/INFO]: [PuddingAPI] Loading server plugin PuddingAPI v2503151209
[09:34:57] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.39-SNAPSHOT (build 3851)
[09:34:57] [Server thread/INFO]: [HeadDrop] Loading server plugin HeadDrop v5.4.5
[09:34:57] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[09:34:57] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@4ddbec0b
[09:34:57] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[09:34:57] [Server thread/INFO]: [HeadDrop] [STDOUT] Cleaned up 0 rows older than 30 days.
[09:34:57] [Server thread/WARN]: Nag author(s): '[RRS]' of 'HeadDrop v5.4.5' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[09:34:57] [Server thread/INFO]: [HeadDrop] Hooked into WorldGuard!
[09:34:57] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.2.4
[09:34:57] [Server thread/INFO]: [StaffPanel] Loading server plugin StaffPanel v1.0.0
[09:34:57] [Server thread/INFO]: [ChestShopNotifier] Loading server plugin ChestShopNotifier v1.3.3 (build 51)
[09:34:57] [Server thread/INFO]: [DiscordBridge] Loading server plugin DiscordBridge v1.5.8
[09:34:57] [Server thread/WARN]: [DiscordBridge] [GUI] Invalid sound option: ENTITY_VILLAGER_NO Option: failure - You can find the correct sound names by using the /playsound command ingame. This is not a plugin issue.
[09:34:57] [Server thread/INFO]: [DiscordBridge] Using SQLite: /home/container/plugins/DiscordBridge/Data
[09:34:57] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ConnectionPool - Starting...
[09:34:57] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ConnectionPool - Start completed.
[09:34:57] [Server thread/INFO]: [DiscordBridge] Successfully connected to SQL database.
[09:34:57] [Server thread/INFO]: [DiscordBridge] [Modules] Loaded module: LINKING
[09:34:57] [Server thread/INFO]: [DiscordBridge] [Modules] Loaded module: EVENTS
[09:34:57] [Server thread/INFO]: [Plan] Loading server plugin Plan v5.6 build 2965
[09:34:57] [Server thread/INFO]: [TradeManager] Loading server plugin TradeManager v1.4.9
[09:34:57] [Server thread/INFO]: [ReferralX] Loading server plugin ReferralX v1.3.0-UNIVERSAL
[09:34:57] [Server thread/INFO]: [Stafflogger] Loading server plugin Stafflogger v1.0.0
[09:34:57] [Server thread/INFO]: [AltherianEngine] Loading server plugin AltherianEngine v1.0.0
[09:34:57] [Server thread/INFO]: [SyncDeluxe] Loading server plugin SyncDeluxe v1.0.0
[09:34:57] [Server thread/INFO]: [ProAntiTab] Loading server plugin ProAntiTab v1.9.1
[09:34:57] [Server thread/INFO]: [ChatGuard] Loading server plugin ChatGuard v1.0.0
[09:34:57] [Server thread/INFO]: [Botarmy] Loading server plugin Botarmy v1.0.0
[09:34:57] [Server thread/INFO]: [Ultimate_BlockRegeneration] Loading server plugin Ultimate_BlockRegeneration v2.0.45
[09:34:57] [Server thread/INFO]: [InvSee++_Give] Loading server plugin InvSeePlusPlus_Give v0.30.7
[09:34:57] [Server thread/INFO]: [BountyGuard] Loading server plugin BountyGuard v2.0.0
[09:34:57] [Server thread/INFO]: [BigDoorsPhysics] Loading server plugin BigDoorsPhysics v2.4.3
[09:34:57] [Server thread/INFO]: [XenonGear] Loading server plugin XenonGear v1.0.0
[09:34:57] [Server thread/INFO]: [ImageFrame] Loading server plugin ImageFrame v1.8.5.0
[09:34:57] [Server thread/INFO]: [BroomestickAntiXray] Loading server plugin BroomestickAntiXray v1.0
[09:34:57] [Server thread/INFO]: [LevelledMobs] Loading server plugin LevelledMobs v4.3.2.1 b125
[09:34:57] [Server thread/INFO]: [LevelledMobs] Loading commands
[09:34:57] [Server thread/INFO]: [AntiCheatReplay] Loading server plugin AntiCheatReplay v2.7.22
[09:34:57] [Server thread/INFO]: [Keepinv] Loading server plugin Keepinv v1.0.0
[09:34:57] [Server thread/INFO]: [Maintenance] Loading server plugin Maintenance v4.3.0
[09:34:57] [Server thread/INFO]: [Tebex] Loading server plugin Tebex v2.2.1
[09:34:57] [Server thread/INFO]: [StaffChat] Loading server plugin StaffChat v3.7
[09:34:57] [Server thread/INFO]: [BlueMapPlayerControl] Loading server plugin BlueMapPlayerControl v1.6
[09:34:57] [Server thread/INFO]: [Disease] Loading server plugin Disease v1.0.0
[09:34:57] [Server thread/INFO]: [AntiPopup] Loading server plugin AntiPopup v12.1
[09:34:57] [Server thread/WARN]: [AntiPopup] [packetevents] We currently do not support the Minecraft version 1.21.8, so things might break. PacketEvents will behave as if the Minecraft version were 1.21.7!
[09:34:57] [Server thread/INFO]: [AntiPopup] Loaded PacketEvents.
[09:34:57] [Server thread/INFO]: [DivinityEconomy] Loading server plugin DivinityEconomy v3.5.6
[09:34:57] [Server thread/INFO]: [MinecartTrains] Loading server plugin MinecartTrains v1.4.1
[09:34:57] [Server thread/INFO]: [PhoenixCratesLite] Loading server plugin PhoenixCratesLite v4.3.0
[09:34:57] [Server thread/INFO]: [RewardsLite] Loading server plugin RewardsLite v3.1.10
[09:34:57] [Server thread/INFO]: [Reports] Loading server plugin Reports v1.0.0
[09:34:57] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.10.1
[09:34:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[09:34:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[09:34:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[09:34:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[09:34:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[09:34:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[09:34:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[09:34:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[09:34:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[09:34:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[09:34:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[09:34:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[09:34:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[09:34:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[09:34:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[09:34:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[09:34:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okhttp
[09:34:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okhttp
[09:34:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio
[09:34:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio
[09:34:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio-jvm
[09:34:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio-jvm
[09:34:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk8
[09:34:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk8
[09:34:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib
[09:34:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib
[09:34:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-common
[09:34:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-common
[09:34:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for annotations
[09:34:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for annotations
[09:34:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk7
[09:34:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk7
[09:34:57] [Server thread/INFO]: [statsAPI] Loading server plugin statsAPI v1.0.0
[09:34:57] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.22.0-dev+28-0aa25c8
[09:34:57] [Server thread/INFO]: [LPC] Loading server plugin LPC v3.6.2
[09:34:57] [Server thread/INFO]: [BannerMaker] Loading server plugin BannerMaker v2.5.0
[09:34:57] [Server thread/INFO]: [IFSnipper] Loading server plugin ItemframeSnipper v1.0.0
[09:34:57] [Server thread/INFO]: [Wars] Loading server plugin Wars v1.0.0
[09:34:57] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.4.40
[09:34:57] [Server thread/INFO]: [BreweryX] Loading server plugin BreweryX v3.4.10;HEAD
[09:34:57] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: BreweryX
[09:34:57] [Server thread/INFO]: [CustomTools] Loading server plugin CustomTools v1.0.0
[09:34:57] [Server thread/INFO]: [DeluxeTags] Loading server plugin DeluxeTags v1.8.2-Release
[09:34:57] [Server thread/INFO]: [ChestProtect] Loading server plugin ChestProtect v5.20.17
[09:34:57] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: ChestProtect
[09:34:57] [Server thread/INFO]: [ChestProtect] Added flag 'chestprotect-lock' to the plugin WorldGuard.
[09:34:57] [Server thread/INFO]: [ChestProtect] Using SQLite: /home/container/plugins/ChestProtect/Data
[09:34:57] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ConnectionPool - Starting...
[09:34:57] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ConnectionPool - Start completed.
[09:34:57] [Server thread/INFO]: [ChestProtect] Successfully connected to SQL database.
[09:34:57] [Server thread/INFO]: [ChestProtect] Setting up general tables...
[09:34:57] [Server thread/INFO]: [AntiHealthIndicator] Loading server plugin AntiHealthIndicator v1.4.3
[09:34:57] [Server thread/INFO]: [HSR] Loading server plugin HSR v1.0.0
[09:34:57] [Server thread/INFO]: [Movecraft] Loading server plugin Movecraft v8.0.0_beta-6
[09:34:57] [Server thread/INFO]: [SkCord] Loading server plugin SkCord v3.3-RELEASE
[09:34:57] [Server thread/INFO]: [NotQuests] Loading server plugin NotQuests v5.19.0
[09:34:57] [Server thread/INFO]: [Insights] Loading server plugin Insights v6.19.7
[09:34:57] [Server thread/INFO]: [EpicRename] Loading server plugin EpicRename v3.12.1
[09:34:57] [Server thread/INFO]: [OpenAudioMc] Loading server plugin OpenAudioMc v6.10.14
[09:34:57] [Server thread/INFO]: [CSL] Loading server plugin ChunkSpawnerLimiter v4.4.2
[09:34:57] [Server thread/INFO]: [SkBee] Loading server plugin SkBee v3.12.3
[09:34:57] [Server thread/INFO]: [InvSee++_Clear] Loading server plugin InvSeePlusPlus_Clear v0.30.7
[09:34:57] [Server thread/INFO]: [NoteBlockAPI] Loading server plugin NoteBlockAPI v1.6.3
[09:34:57] [Server thread/INFO]: [PlugManX] Loading server plugin PlugManX v2.4.1
[09:34:57] [Server thread/INFO]: [VotingPlugin] Loading server plugin VotingPlugin v6.18.7
[09:34:57] [Server thread/INFO]: [InventoryRollbackPlus] Loading server plugin InventoryRollbackPlus v1.7.6
[09:34:57] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[09:34:57] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.5.9
[09:34:58] [Server thread/INFO]:         __    
[09:34:58] [Server thread/INFO]:   |    |__)   LuckPerms v5.5.9
[09:34:58] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[09:34:58] [Server thread/INFO]: 
[09:34:58] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MYSQL]
[09:34:58] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[09:34:58] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[09:34:58] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[09:34:59] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[09:34:59] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[09:34:59] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1548ms)
[09:34:59] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[09:34:59] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[09:34:59] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[09:34:59] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[09:34:59] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[09:34:59] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.13.3-SNAPSHOT-1174;d83f24a
[09:34:59] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[09:34:59] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[09:34:59] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[09:34:59] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[09:34:59] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_6.PaperweightFaweAdapter as the Bukkit adapter
[09:34:59] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.4.0-SNAPSHOT-753
[09:34:59] [Server thread/INFO]: [DivinityEconomy] Enabling DivinityEconomy v3.5.6
[09:34:59] [Server thread/INFO]: [DivinityEconomy v3.5.6]> Detected config versions local/plugin | 3.5.6/3.5.6
[09:34:59] [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:35:00] [Server thread/INFO]: [DivinityEconomy v3.5.6]> Loaded lang file: en_GB.yml.
[09:35:00] [Server thread/INFO]: [DivinityEconomy v3.5.6]> Vault detected.
[09:35:00] [Server thread/INFO]: [DivinityEconomy v3.5.6]> Invalid bank file: .yml. Skipping...
[09:35:00] [Server thread/INFO]: [DivinityEconomy v3.5.6]> Economy is enabled. Provider: org.divinitycraft.divinityeconomy.economy.DivinityEconomy@79705f85
[09:35:00] [Server thread/INFO]: [DivinityEconomy v3.5.6]> Loaded 1295 items (current/default quantities: 5910696437 / 3736114925) from materials.yml
[09:35:01] [Server thread/INFO]: [DivinityEconomy v3.5.6]> Loaded 25441 item aliases from materialAliases.yml
[09:35:01] [Server thread/INFO]: [DivinityEconomy v3.5.6]> Loaded 184 items (current/default quantities: 32196977 / 32197239) from potions.yml
[09:35:01] [Server thread/INFO]: [DivinityEconomy v3.5.6]> Bad config value in potionAliases.yml: 'windchargelingerpot' - Corresponding value 'wind_charge_lingering_potion' does not exist.
[09:35:01] [Server thread/INFO]: [DivinityEconomy v3.5.6]> Bad config value in potionAliases.yml: 'windchargecloudpot' - Corresponding value 'wind_charge_lingering_potion' does not exist.
[09:35:01] [Server thread/INFO]: [DivinityEconomy v3.5.6]> Bad config value in potionAliases.yml: 'windchargeareapot' - Corresponding value 'wind_charge_lingering_potion' does not exist.
[09:35:01] [Server thread/INFO]: [DivinityEconomy v3.5.6]> Bad config value in potionAliases.yml: 'windchargepot' - Corresponding value 'wind_charge_potion' does not exist.
[09:35:01] [Server thread/INFO]: [DivinityEconomy v3.5.6]> Bad config value in potionAliases.yml: 'windpot' - Corresponding value 'wind_charge_potion' does not exist.
[09:35:01] [Server thread/INFO]: [DivinityEconomy v3.5.6]> Bad config value in potionAliases.yml: 'gustpot' - Corresponding value 'wind_charge_potion' does not exist.
[09:35:01] [Server thread/INFO]: [DivinityEconomy v3.5.6]> Bad config value in potionAliases.yml: 'windchargesplashpot' - Corresponding value 'wind_charge_splash_potion' does not exist.
[09:35:01] [Server thread/INFO]: [DivinityEconomy v3.5.6]> Bad config value in potionAliases.yml: 'windsplashpot' - Corresponding value 'wind_charge_splash_potion' does not exist.
[09:35:01] [Server thread/INFO]: [DivinityEconomy v3.5.6]> Bad config value in potionAliases.yml: 'gustsplashpot' - Corresponding value 'wind_charge_splash_potion' does not exist.
[09:35:01] [Server thread/INFO]: [DivinityEconomy v3.5.6]> Bad config value in potionAliases.yml: 'windchargearrow' - Corresponding value 'wind_charge_tipped_arrow' does not exist.
[09:35:01] [Server thread/INFO]: [DivinityEconomy v3.5.6]> Bad config value in potionAliases.yml: 'windarrow' - Corresponding value 'wind_charge_tipped_arrow' does not exist.
[09:35:01] [Server thread/INFO]: [DivinityEconomy v3.5.6]> Bad config value in potionAliases.yml: 'gustarrow' - Corresponding value 'wind_charge_tipped_arrow' does not exist.
[09:35:01] [Server thread/INFO]: [DivinityEconomy v3.5.6]> Loaded 10972 item aliases from potionAliases.yml
[09:35:01] [Server thread/INFO]: [DivinityEconomy v3.5.6]> Loaded 82 items (current/default quantities: 200 / 200) from entities.yml
[09:35:01] [Server thread/INFO]: [DivinityEconomy v3.5.6]> Loaded 1284 item aliases from entityAliases.yml
[09:35:01] [Server thread/INFO]: [DivinityEconomy v3.5.6]> Loaded 42 items (current/default quantities: 507253 / 507253) from enchants.yml
[09:35:01] [Server thread/INFO]: [DivinityEconomy v3.5.6]> Loaded 76 item aliases from enchantAliases.yml
[09:35:01] [Server thread/INFO]: [DivinityEconomy v3.5.6]> Loaded 1 items (current/default quantities: 1215752192 / 1215752192) from experience.yml
[09:35:01] [Server thread/INFO]: [DivinityEconomy v3.5.6]> Loaded 3 mail for 70 users
[09:35:01] [Server thread/INFO]: [DivinityEconomy v3.5.6]> Loaded 37 help entries
[09:35:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: de [3.5.6]
[09:35:01] [Server thread/INFO]: [DivinityEconomy v3.5.6]> PlaceholderAPI was found and is enabled, 25 placeholders have been registered.
[09:35:01] [Server thread/INFO]: [DivinityEconomy v3.5.6]> Plugin Enabled
[09:35:01] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.4.1
[09:35:01] [Server thread/WARN]: [PlugManX] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[09:35:01] [Server thread/WARN]: [PlugManX] It seems like you're running on paper.
[09:35:01] [Server thread/WARN]: [PlugManX] PlugManX cannot interact with paper-plugins, yet.
[09:35:01] [Server thread/WARN]: [PlugManX] Also, if you encounter any issues, please join my discord: https://discord.gg/GxEFhVY6ff
[09:35:01] [Server thread/WARN]: [PlugManX] Or create an issue on GitHub: https://github.com/TheBlackEntity/PlugMan
[09:35:01] [Server thread/WARN]: [PlugManX] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[09:35:01] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[09:35:01] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[09:35:01] [Server thread/WARN]: Whilst this makes it possible to use Velocity, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[09:35:01] [Server thread/WARN]: Please see https://docs.papermc.io/velocity/security for further information.
[09:35:01] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[09:35:01] [Server thread/INFO]: Preparing level "world"
[09:35:01] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[09:35:01] [Server thread/INFO]: Preparing spawn area: 0%
[09:35:02] [Server thread/INFO]: Time elapsed: 414 ms
[09:35:02] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[09:35:02] [Server thread/INFO]: Preparing spawn area: 0%
[09:35:02] [Server thread/INFO]: Time elapsed: 60 ms
[09:35:02] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.18.0
[09:35:02] [Server thread/INFO]: [LiteBans] Using system locale (en_gb)
[09:35:02] [Server thread/INFO]: [LiteBans] Loaded 2 templates from templates.yml!
[09:35:02] [Server thread/INFO]: [LiteBans] Loading: mysql 8.0.29
[09:35:02] [Server thread/INFO]: [LiteBans] Connecting to database...
[09:35:02] [Server thread/INFO]: [LiteBans] Connected to MySQL database successfully (50.8 ms).
[09:35:02] [Server thread/INFO]: [LiteBans] Database connection fully initialized (62 ms).
[09:35:02] [Server thread/INFO]: [LiteBans] v2.18.0 enabled. Startup took 64 ms.
[09:35:02] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[09:35:02] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[09:35:02] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.14+2339-43997ec
[09:35:02] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[09:35:02] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[09:35:02] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[09:35:02] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[09:35:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[09:35:02] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[09:35:02] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[09:35:02] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[09:35:02] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[09:35:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[09:35:02] [Server thread/INFO]: [WorldGuard] Loading region data...
[09:35:02] [Server thread/INFO]: [Essentials] Enabling Essentials v2.22.0-dev+28-0aa25c8
[09:35:02] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[09:35:02] [Server thread/INFO]: [Essentials] No kits found to migrate.
[09:35:03] [Server thread/INFO]: [Essentials] Selected 1.21.4+ Sync Commands Provider as the provider for SyncCommandsProvider
[09:35:03] [Server thread/INFO]: [Essentials] Selected 1.12+ Spawner Block Provider as the provider for SpawnerBlockProvider
[09:35:03] [Server thread/INFO]: [Essentials] Selected Reflection Online Mode Provider as the provider for OnlineModeProvider
[09:35:03] [Server thread/INFO]: [Essentials] Selected 1.20.6+ Potion Meta Provider as the provider for PotionMetaProvider
[09:35:03] [Server thread/INFO]: [Essentials] Selected 1.14.4+ Persistent Data Container Provider as the provider for PersistentDataProvider
[09:35:03] [Server thread/INFO]: [Essentials] Selected 1.17.1+ World Info Provider as the provider for WorldInfoProvider
[09:35:03] [Server thread/INFO]: [Essentials] Selected 1.21+ InventoryView Interface ABI Provider as the provider for InventoryViewProvider
[09:35:03] [Server thread/INFO]: [Essentials] Selected Paper Known Commands Provider as the provider for KnownCommandsProvider
[09:35:03] [Server thread/INFO]: [Essentials] Selected 1.14+ Sign Data Provider as the provider for SignDataProvider
[09:35:03] [Server thread/INFO]: [Essentials] Selected Paper Biome Key Provider as the provider for BiomeKeyProvider
[09:35:03] [Server thread/INFO]: [Essentials] Selected Reflection Formatted Command Alias Provider as the provider for FormattedCommandAliasProvider
[09:35:03] [Server thread/INFO]: [Essentials] Selected Paper Server State Provider as the provider for ServerStateProvider
[09:35:03] [Server thread/INFO]: [Essentials] Selected Legacy Biome Name Provider as the provider for BiomeNameProvider
[09:35:03] [Server thread/INFO]: [Essentials] Selected 1.11+ Item Unbreakable Provider as the provider for ItemUnbreakableProvider
[09:35:03] [Server thread/INFO]: [Essentials] Selected Paper Tick Count Provider as the provider for TickCountProvider
[09:35:03] [Server thread/INFO]: [Essentials] Selected 1.13+ Spawn Egg Provider as the provider for SpawnEggProvider
[09:35:03] [Server thread/INFO]: [Essentials] Selected 1.12.2+ Player Locale Provider as the provider for PlayerLocaleProvider
[09:35:03] [Server thread/INFO]: [Essentials] Selected Paper Serialization Provider as the provider for SerializationProvider
[09:35:03] [Server thread/INFO]: [Essentials] Selected Paper Container Provider as the provider for ContainerProvider
[09:35:03] [Server thread/INFO]: [Essentials] Selected 1.20.5+ Banner Data Provider as the provider for BannerDataProvider
[09:35:03] [Server thread/INFO]: [Essentials] Selected Paper Material Tag Provider as the provider for MaterialTagProvider
[09:35:03] [Server thread/INFO]: [Essentials] Selected 1.20.4+ Damage Event Provider as the provider for DamageEventProvider
[09:35:03] [Server thread/INFO]: [Essentials] Selected 1.8.3+ Spawner Item Provider as the provider for SpawnerItemProvider
[09:35:03] [Server thread/INFO]: [Essentials] Loaded 43880 items from items.json.
[09:35:03] [Server thread/INFO]: [Essentials] Using locale en_gb
[09:35:03] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[09:35:03] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[09:35:03] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[09:35:03] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[09:35:03] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v5.1.1
[09:35:03] [Server thread/INFO]: Preparing start region for dimension minecraft:endevent
[09:35:03] [Server thread/INFO]: Preparing spawn area: 0%
[09:35:03] [Server thread/INFO]: Time elapsed: 20 ms
[09:35:03] [Server thread/INFO]: [WorldGuard] (endevent) TNT ignition is PERMITTED.
[09:35:03] [Server thread/INFO]: [WorldGuard] (endevent) Lighters are PERMITTED.
[09:35:03] [Server thread/INFO]: [WorldGuard] (endevent) Lava fire is PERMITTED.
[09:35:03] [Server thread/INFO]: [WorldGuard] (endevent) Fire spread is UNRESTRICTED.
[09:35:03] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'endevent'
[09:35:03] [Server thread/INFO]: Preparing start region for dimension minecraft:battlefield
[09:35:03] [Server thread/INFO]: Preparing spawn area: 0%
[09:35:03] [Server thread/INFO]: Time elapsed: 30 ms
[09:35:03] [Server thread/INFO]: [WorldGuard] (battlefield) TNT ignition is PERMITTED.
[09:35:03] [Server thread/INFO]: [WorldGuard] (battlefield) Lighters are PERMITTED.
[09:35:03] [Server thread/INFO]: [WorldGuard] (battlefield) Lava fire is PERMITTED.
[09:35:03] [Server thread/INFO]: [WorldGuard] (battlefield) Fire spread is UNRESTRICTED.
[09:35:03] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'battlefield'
[09:35:03] [Server thread/INFO]: Preparing start region for dimension minecraft:miningworld
[09:35:03] [Server thread/INFO]: Preparing spawn area: 0%
[09:35:03] [Server thread/INFO]: Time elapsed: 18 ms
[09:35:03] [Server thread/INFO]: [WorldGuard] (MiningWorld) TNT ignition is PERMITTED.
[09:35:03] [Server thread/INFO]: [WorldGuard] (MiningWorld) Lighters are PERMITTED.
[09:35:03] [Server thread/INFO]: [WorldGuard] (MiningWorld) Lava fire is PERMITTED.
[09:35:03] [Server thread/INFO]: [WorldGuard] (MiningWorld) Fire spread is UNRESTRICTED.
[09:35:03] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'MiningWorld'
[09:35:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: multiverse-core [5.1.1]
[09:35:03] [Server thread/INFO]: [Multiverse-Core] API service loaded!
[09:35:03] [Server thread/INFO]: [Multiverse-Core] Version 5.1.1 (API v5.1) Enabled - By dumptruckman, Rigby, fernferret, lithium3141, main--, benwoo1110 and Zax71
[09:35:03] [Server thread/INFO]: [Multiverse-Core] Loving Multiverse-Core? Please consider supporting the project with a small donation: https://github.com/sponsors/Multiverse
[09:35:03] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.4-SNAPSHOT (b118-40d320a)
[09:35:03] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.9.7
[09:35:03] [Server thread/INFO]: [DecentHolograms] Initialized NMS adapter for v1_21_R5 (1.21.8).
[09:35:03] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.8! Trying to find NMS support
[09:35:03] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R5' loaded!
[09:35:03] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[09:35:03] [Server thread/INFO]: [DecentHolograms] NBT-API loaded successfully.
[09:35:03] [Server thread/INFO]: [BlueMap] Enabling BlueMap v5.9
[09:35:03] [Server thread/INFO]: [BlueMap] Saving all worlds once, to make sure the level.dat is present...
[09:35:03] [Server thread/WARN]: A manual (plugin-induced) save has been detected while server is configured to auto-save. This may affect performance.
[09:35:04] [BlueMap-Load/INFO]: [BlueMap] Loading...
[09:35:04] [Server thread/INFO]: [GSit] Enabling GSit v2.4.3
[09:35:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [2.4.3]
[09:35:04] [Server thread/INFO]: [WorldGuard] Registering session handler dev.geco.gsit.link.worldguard.RegionFlagHandler
[09:35:04] [Server thread/INFO]: [GSit] The plugin was successfully enabled.
[09:35:04] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
[09:35:04] [Server thread/INFO]: [GSit] Link with WorldGuard successful!
[09:35:04] [Server thread/INFO]: [packetevents] Enabling packetevents v2.9.5
[09:35:04] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[09:35:04] [Server thread/INFO]: [SuperVanish] Enabling SuperVanish v6.2.20
[09:35:04] [Server thread/INFO]: [SuperVanish] Hooked into PaperSpigot for server list ping support
[09:35:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: supervanish [6.2.20]
[09:35:04] [Server thread/INFO]: [SuperVanish] Hooked into PlaceholderAPI
[09:35:04] [Server thread/INFO]: [SuperVanish] Hooked into Essentials
[09:35:04] [Server thread/INFO]: [Skript] Enabling Skript v2.12.1
[09:35:04] [BlueMap-Load/INFO]: [BlueMap] Loading resources...
[09:35:04] [packetevents-update-check-thread/INFO]: [packetevents] You are running the latest release of PacketEvents. Your build: (2.9.5)
[09:35:04] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] A new version of Skript is available: 2.12.2 (you're currently running 2.12.1)
[09:35:04] [ForkJoinPool.commonPool-worker-1/INFO]: Download it at: <aqua><u><link:https://github.com/SkriptLang/Skript/releases/download/2.12.2/Skript-2.12.2.jar>https://github.com/SkriptLang/Skript/releases/download/2.12.2/Skript-2.12.2.jar
[09:35:04] [BlueMap-Load/INFO]: [BlueMap] Loading textures...
[09:35:04] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[09:35:04] [Server thread/INFO]: [Multiverse-Inventories] Enabling Multiverse-Inventories v5.1.1
[09:35:04] [BlueMap-Load/INFO]: [BlueMap] Baking resources...
[09:35:04] [BlueMap-Load/INFO]: [BlueMap] Resources loaded.
[09:35:04] [Server thread/INFO]: [Multiverse-Inventories] The following worlds for group 'default' are not loaded: world_the_end
[09:35:04] [BlueMap-Load/INFO]: [BlueMap] Initializing Storage: 'file' (Type: 'bluemap:file')
[09:35:04] [BlueMap-Load/INFO]: [BlueMap] Loading map 'world'...
[09:35:05] [BlueMap-Load/INFO]: [BlueMap] Loading map 'world_nether'...
[09:35:05] [BlueMap-Load/INFO]: [BlueMap] WebServer bound to all network interfaces on port 8000
[09:35:05] [Thread-24/INFO]: [BlueMap] WebServer started.
[09:35:05] [BlueMap-Load/INFO]: [BlueMap] Loaded!
[09:35:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: multiverse-inventories [5.1.1]
[09:35:05] [Server thread/INFO]: [Multiverse-Inventories] Loading player names map...
[09:35:05] [Server thread/INFO]: [Multiverse-Inventories] Version 5.1.1 (API v5.1) Enabled - By dumptruckman and benwoo1110
[09:35:05] [Server thread/INFO]: [Lands] Enabling Lands v7.16.16
[09:35:05] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] Loaded 5504 aliases in 366ms
[09:35:05] [Server thread/INFO]: [Lands]  _                        _      
[09:35:05] [Server thread/INFO]: [Lands] | |                      | |     
[09:35:05] [Server thread/INFO]: [Lands] | |      __ _  _ __    __| | ___ 
[09:35:05] [Server thread/INFO]: [Lands] | |     / _` || '_ \  / _` |/ __|
[09:35:05] [Server thread/INFO]: [Lands] | |____| (_| || | | || (_| |\__ \
[09:35:05] [Server thread/INFO]: [Lands] \_____/ \__,_||_| |_| \__,_||___/
[09:35:05] [Server thread/INFO]: [Lands] Version: 7.16.16 Previous: 7.16.16
[09:35:05] [Server thread/INFO]: [Lands] Server: 1.21.8 running Paper
[09:35:05] [Server thread/INFO]: [Lands] Licensed to: 1213773
[09:35:05] [Server thread/INFO]: [Lands] Experiencing issues or having questions? Join our Discord!
[09:35:05] [Server thread/INFO]: [Lands] Discord: https://discord.incredibleplugins.com
[09:35:05] [Server thread/INFO]: [Lands] Wiki: https://wiki.incredibleplugins.com/lands
[09:35:05] [Server thread/INFO]: [Lands]  
[09:35:05] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated DecentHolograms as hologram manager.
[09:35:05] [Server thread/INFO]: [Lands] [Integrations] Added support for the vanish feature of the plugin SuperVanish.
[09:35:05] [Server thread/INFO]: [Lands] Performing initial data load.
[09:35:05] [Server thread/INFO]: [Lands] There are currently 56 created land(s).
[09:35:05] [Server thread/WARN]: [Lands] [Roles] The FLY flag is in the 'display' list in roles.yml, but flight control is disabled in config.yml. This flag won't have any effect as long as it's disabled in config.yml.
[09:35:05] [Server thread/INFO]: [Lands] Initial data load took 134 ms.
[09:35:05] [Server thread/INFO]: [Vulcan] Enabling Vulcan v2.9.7.2
[09:35:05] [Server thread/INFO]: [Vulcan] Starting Vulcan. Server Version: .1.21.8 detected!
[09:35:06] [Server thread/INFO]: [Vulcan] Floodgate 2.0 found. Enabling hook!
[09:35:06] [Server thread/INFO]: [Vulcan] GSit found. Enabling hook!
[09:35:06] [Server thread/INFO]: [Vulcan] BStats enabled!
[09:35:06] [Server thread/INFO]: [Vulcan] Registered GSit Listener!
[09:35:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: Vulcan [2.9.7.2]
[09:35:06] [Server thread/INFO]: [Vulcan] PlaceholderAPI found. Enabling hook!
[09:35:06] [Server thread/INFO]: [ChestShop] Enabling ChestShop v3.12.3-SNAPSHOT (build 445)
[09:35:06] [Server thread/INFO]: [ChestShop] Found locales ga, cs, zh, sr, pl, zh_tw, ca, el, ro, fr, bg, en_pt, ko, es_mx, fi, de, no, lol, ja, vi, ru, lb, ku, uk, he, la, en, lt, pt_br, ar, da, nl, sk, sl, tr, kk, af, hu, es, is, cy, sv, it, pt, th
[09:35:06] [Server thread/INFO]: [ChestShop] Using DivinityEconomy as the Economy provider now.
[09:35:06] [Server thread/INFO]: [ChestShop] Vault loaded!
[09:35:06] [Server thread/INFO]: [ChestShop] Auto-updater is disabled. If you want the plugin to automatically download new releases then set 'TURN_OFF_UPDATES' to 'false' in your config.yml!
[09:35:06] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.30.1
[09:35:06] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[09:35:06] [Server thread/INFO]: [Votifier] Loaded token for website: default
[09:35:06] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[09:35:06] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[09:35:06] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /[0:0:0:0:0:0:0:0%0]:8001.
[09:35:06] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v23.0
[09:35:06] [Server thread/INFO]: [CoreProtect] Development branch detected, skipping patch scripts.
[09:35:06] [Server thread/INFO]: [CoreProtect] CoreProtect Community Edition has been successfully enabled! 
[09:35:06] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[09:35:06] [Server thread/INFO]: --------------------
[09:35:06] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[09:35:06] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[09:35:06] [Server thread/INFO]: --------------------
[09:35:06] [Server thread/INFO]: [InvSee++] Enabling InvSeePlusPlus v0.30.7
[09:35:06] [Server thread/INFO]: [BigDoors] Enabling BigDoors vAlpha 0.1.8.61
[09:35:06] [Server thread/INFO]: [BigDoors] Power Block Types:
[09:35:06] [Server thread/INFO]: [BigDoors]  - GOLD_BLOCK
[09:35:06] [Server thread/INFO]: [BigDoors] Blacklisted materials:
[09:35:06] [Server thread/INFO]: [BigDoors]  - BEDROCK
[09:35:06] [Server thread/INFO]: [BigDoors]  - END_PORTAL
[09:35:06] [Server thread/INFO]: [BigDoors]  - END_PORTAL_FRAME
[09:35:06] [Server thread/INFO]: [BigDoors]  - NETHER_PORTAL
[09:35:06] [Server thread/INFO]: [BigDoors]  - OBSIDIAN
[09:35:06] [Server thread/INFO]: [BigDoors]  - BARRIER
[09:35:06] [Server thread/INFO]: [BigDoors] No materials Whitelisted!
[09:35:06] [Server thread/INFO]: [BigDoors] DestroyListed materials:
[09:35:06] [Server thread/INFO]: [BigDoors]  - LAVA
[09:35:06] [Server thread/INFO]: [BigDoors]  - WATER
[09:35:06] [Server thread/INFO]: [BigDoors]  - SNOW
[09:35:06] [Server thread/INFO]: [BigDoors]  - FERN
[09:35:06] [Server thread/INFO]: [BigDoors]  - SHORT_GRASS
[09:35:06] [Server thread/INFO]: [BigDoors]  - TALL_GRASS
[09:35:06] [Server thread/INFO]: [BigDoors]  - TALL_GRASS
[09:35:06] [Server thread/INFO]: [BigDoors]  - SEAGRASS
[09:35:06] [Server thread/INFO]: [BigDoors]  - TALL_SEAGRASS
[09:35:06] [Server thread/INFO]: [BigDoors] Enabling stats! Thanks, it really helps!
[09:35:06] [Server thread/INFO]: [BigDoors] Successfully hooked into "WorldGuard"!
[09:35:06] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: BigDoors
[09:35:06] [Server thread/INFO]: [Lands] Nag author(s) of plugin BigDoors. It uses the deprecated LandsIntegration of Lands: https://wiki.incredibleplugins.com/lands/developers/update
[09:35:06] [Server thread/INFO]: [BigDoors] Successfully hooked into "Lands"!
[09:35:06] [Server thread/INFO]: [AdvancedReplay] Enabling AdvancedReplay v1.8.15
[09:35:06] [Server thread/INFO]: [AdvancedReplay] Loading Replay v1.8.15 by Jumper251
[09:35:06] [Server thread/INFO]: [AdvancedReplay] Finished (19ms)
[09:35:06] [Server thread/INFO]: [PuddingAPI] Enabling PuddingAPI v2503151209
[09:35:06] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.39-SNAPSHOT (build 3851)
[09:35:06] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[09:35:07] [Server thread/INFO]: [Citizens] Detected system language [[en_gb]]. If youd like you can contribute to Citizens translations via our Discord! https://discord.gg/Q6pZGSR
[09:35:07] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[09:35:07] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[09:35:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizens [1.0.0]
[09:35:07] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[09:35:07] [pool-74-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (1cc66c00dd0d091057d8a04adf1cc0714d8391ad)
[09:35:07] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[09:35:07] [Server thread/INFO]: [SuperVanish] Hooked into Citizens
[09:35:07] [Server thread/INFO]: [HeadDrop] Enabling HeadDrop v5.4.5
[09:35:07] [Server thread/INFO]: [HeadDrop] [HeadDrop] 
==============================
[09:35:07] [Server thread/INFO]: [HeadDrop] [HeadDrop]     HeadDrop Plugin v5.4.5
[09:35:07] [Server thread/INFO]: [HeadDrop] [HeadDrop] ==============================

[09:35:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: headdrop [1.0]
[09:35:07] [Server thread/INFO]: [HeadDrop] [HeadDrop] Hooked into PlaceholderAPI!
[09:35:07] [Server thread/INFO]: [HeadDrop] [HeadDrop] Enabled successfully!
[09:35:07] [Server thread/INFO]: [TAB] Enabling TAB v5.2.4
[09:35:07] [Server thread/INFO]: [TAB] [WARN] [config.yml] belowname-objective: Belowname value is set to be empty, but the configured value must evaluate to a number. Using 0.
[09:35:07] [Server thread/INFO]: [TAB] [WARN] Found a total of 1 issues.
[09:35:07] [Server thread/INFO]: [TAB] Enabled in 91ms
[09:35:07] [Server thread/INFO]: [StaffPanel] Enabling StaffPanel v1.0.0
[09:35:07] [Server thread/INFO]: [StaffPanel] StaffPanel has been enabled!
[09:35:07] [Server thread/INFO]: [ChestShopNotifier] Enabling ChestShopNotifier v1.3.3 (build 51)
[09:35:07] [Server thread/INFO]: [ChestShopNotifier] Connecting to the database...
[09:35:07] [Server thread/WARN]: @EventHandler method com.wfector.notifier.ChestShopNotifier#onChestShopTransaction returns non-void type boolean. This is unsupported behavior and will no longer work in a future version of Paper. This should be reported to the developers of ChestShopNotifier v1.3.3 (build 51) (BetaBlaze,Phoenix616,FrankHeijden)
[09:35:07] [Server thread/INFO]: [DiscordBridge] Enabling DiscordBridge v1.5.8
[09:35:07] [Server thread/INFO]: [DiscordBridge] Version: 1.5.8 Previous: 1.5.8
[09:35:07] [Server thread/INFO]: [DiscordBridge] Server: 1.21.8 running Paper
[09:35:07] [Server thread/INFO]: [DiscordBridge] Licensed to: 1213773
[09:35:07] [Server thread/INFO]: [DiscordBridge] Experiencing issues or having questions? Join our Discord!
[09:35:07] [Server thread/INFO]: [DiscordBridge] Discord: https://discord.incredibleplugins.com
[09:35:07] [Server thread/INFO]: [DiscordBridge] Wiki: https://wiki.incredibleplugins.com/discordbridge
[09:35:07] [Server thread/INFO]: [DiscordBridge]  
[09:35:07] [Server thread/INFO]: [DiscordBridge] [Integrations] Added support for the vanish feature of the plugin SuperVanish.
[09:35:07] [Server thread/INFO]: [DiscordSRV] API listener me.angeschossen.discordbridge.gXWTv.Srqvu subscribed (1 methods)
[09:35:07] [Server thread/INFO]: [DiscordBridge] Successfully set link manager. Plugin: DiscordSRV
[09:35:07] [Server thread/INFO]: [Plan] Enabling Plan v5.6 build 2965
[09:35:07] [Server thread/INFO]: [Plan] 
[09:35:07] [Server thread/INFO]: [Plan]            ██▌
[09:35:07] [Server thread/INFO]: [Plan]      ██▌   ██▌
[09:35:07] [Server thread/INFO]: [Plan]   ██▌██▌██▌██▌  Player Analytics
[09:35:07] [Server thread/INFO]: [Plan]   ██▌██▌██▌██▌  v5.6 build 2965
[09:35:07] [Server thread/INFO]: [Plan] 
[09:35:07] [Server thread/INFO]: [Plan] Locale: 'English' by AuroraLS3
[09:35:07] [Server thread/INFO]: [Plan] Downloading SQLite Driver, this may take a while...
[09:35:07] [Plan SQLiteDB-transaction-thread-1/INFO]: [Plan] Database: Making sure schema is up to date..
[09:35:07] [Server thread/INFO]: [Plan] SQLite-database connection established.
[09:35:07] [Plan SQLiteDB-transaction-thread-1/INFO]: [Plan] Applying Patch: BadNukkitRegisterValuePatch..
[09:35:07] [Plan SQLiteDB-transaction-thread-1/INFO]: [Plan] All database patches applied successfully.
[09:35:07] [Server thread/INFO]: [Plan] WebServer: Certificate KeyStore File not Found: plugins/Plan/Cert.jks
[09:35:07] [Server thread/INFO]: [Plan] WebServer: No Certificate -> Using HTTP-server for Visualization.
[09:35:07] [Server thread/INFO]: [Plan] WebServer: User Authorization Disabled! (Not secure over HTTP)
[09:35:07] [Server thread/INFO]: [Plan] Webserver running on PORT 19135 ( http://88.198.134.177:19135 )
[09:35:07] [Server thread/INFO]: [Plan] Downloading IP Address parsing library for Allowlist checking, this may take a while...
[09:35:07] [Server thread/INFO]: [Plan] Loading server identifying information
[09:35:07] [Server thread/INFO]: [Plan] Server identifier loaded: 4fa1f5a8-e7cb-4cb6-9649-2dffe4547e6e
[09:35:07] [Server thread/INFO]: [Plan] Registered extension: DiscordSRV
[09:35:08] [Server thread/INFO]: [DiscordSRV] API listener net.playeranalytics.extension.discordsrv.DiscordSRVListener subscribed (2 methods)
[09:35:08] [Server thread/INFO]: [Plan] Registered extension: Essentials
[09:35:08] [Server thread/INFO]: [Plan] Registered extension: EssentialsEco
[09:35:08] [Server thread/INFO]: [Plan] Registered extension: Floodgate
[09:35:08] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[09:35:08] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: Plan
[09:35:08] [Server thread/INFO]: [Plan] Registered extension: Lands
[09:35:08] [Server thread/INFO]: [Plan] Registered extension: Litebans
[09:35:08] [Server thread/INFO]: [Plan] Registered extension: LuckPerms
[09:35:08] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console forwarding assigned to channel TC:survival-console(1400567662169423975)
[09:35:08] [Server thread/INFO]: [Plan] Registered extension: nuVotifier
[09:35:08] [Server thread/INFO]: [Plan] Registered extension: PlaceholderAPI
[09:35:08] [Server thread/INFO]: [Plan] Registered extension: Economy (Vault)
[09:35:08] [Server thread/INFO]: [Plan] Registered extension: Permission Groups (Vault)
[09:35:08] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[09:35:08] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling SuperVanish hook
[09:35:08] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[09:35:08] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Multiverse-Core hook
[09:35:08] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[09:35:08] [Server thread/INFO]: [Plan] Player Analytics Enabled.
[09:35:08] [Server thread/INFO]: [TradeManager] Enabling TradeManager v1.4.9
[09:35:08] [Server thread/INFO]: [ReferralX] Enabling ReferralX v1.3.0-UNIVERSAL
[09:35:08] [Server thread/INFO]: [ReferralX] STANDALONE BUKKIT MODE ENABLED
[09:35:08] [Server thread/INFO]: [ReferralX] Loaded 351 players from standalone data
[09:35:08] [Server thread/INFO]: [ReferralX] Standalone data file loaded
[09:35:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: referralx [1.4.0]
[09:35:08] [Server thread/INFO]: [ReferralX] PlaceholderAPI support enabled!
[09:35:08] [Server thread/INFO]: [ReferralX] ReferralX Bukkit v1.4.0 with STANDALONE mode loaded!
[09:35:08] [Server thread/INFO]: [Stafflogger] Enabling Stafflogger v1.0.0
[09:35:08] [Server thread/INFO]: [AltherianEngine] Enabling AltherianEngine v1.0.0
[09:35:08] [Server thread/INFO]: [AltherianEngine] Loaded custom recipe: Netherite_Boots
[09:35:08] [Server thread/INFO]: [AltherianEngine] Loaded custom recipe: Netherite_Leggings
[09:35:08] [Server thread/INFO]: [AltherianEngine] Loaded custom recipe: Netherite_Chestplate
[09:35:08] [Server thread/INFO]: [AltherianEngine] Loaded custom recipe: Netherite_Helmet
[09:35:08] [Server thread/INFO]: [AltherianEngine] Loaded custom recipe: Netherite_Sword
[09:35:08] [Server thread/INFO]: [AltherianEngine] Loaded custom recipe: Netherite_Pickaxe
[09:35:08] [Server thread/INFO]: [AltherianEngine] Loaded custom recipe: Netherite_Axe
[09:35:08] [Server thread/INFO]: [AltherianEngine] Loaded custom recipe: Netherite_Shovel
[09:35:08] [Server thread/INFO]: [AltherianEngine] Loaded custom recipe: Netherite_Hoe
[09:35:08] [Server thread/INFO]: [AltherianEngine] Loaded custom recipe: Respawn_Anchor
[09:35:08] [Server thread/INFO]: [AltherianEngine] Loaded custom recipe: TNT_Minecart
[09:35:08] [Server thread/INFO]: [AltherianEngine] Loaded custom recipe: End_Crystal
[09:35:08] [Server thread/INFO]: [AltherianEngine] Loaded custom recipe: Mace
[09:35:08] [Server thread/INFO]: [AltherianEngine] Loaded custom recipe: Cobwebs
[09:35:08] [Server thread/INFO]: [AltherianEngine] Loaded custom recipe: Bottle_O__Enchanting
[09:35:08] [Server thread/INFO]: [AltherianEngine] Loaded custom recipe: AlienAxe
[09:35:08] [Server thread/INFO]: [AltherianEngine] AltherianEngine has been enabled!
[09:35:08] [Server thread/INFO]: [SyncDeluxe] Enabling SyncDeluxe v1.0.0
[09:35:08] [Server thread/INFO]: [fr.winzoria.libs.hikari.HikariDataSource] SyncDeluxe-Pool - Starting...
[09:35:08] [Server thread/INFO]: [fr.winzoria.libs.hikari.HikariDataSource] SyncDeluxe-Pool - Start completed.
[09:35:08] [Server thread/INFO]: [SyncDeluxe] Database connection established successfully.
[09:35:08] [Server thread/INFO]: [SyncDeluxe] Detecting server version...
[09:35:08] [Server thread/INFO]: [SyncDeluxe] Detected version: Minecraft 1.21 (NMS: craftbukkit)
[09:35:08] [Server thread/INFO]: [SyncDeluxe] Using Modern adapter for versions 1.13+
[09:35:08] [Server thread/INFO]: [SyncDeluxe] Version adapter initialized successfully: 1.13+ (Modern)
[09:35:08] [Server thread/INFO]: [SyncDeluxe] Version adapter initialized for 1.13, 1.14, 1.15, 1.16, 1.17, 1.18, 1.19, 1.20+
[09:35:08] [Server thread/INFO]: [SyncDeluxe] Vault detected and configured successfully.
[09:35:08] [Server thread/INFO]: [SyncDeluxe] Automatic save enabled (interval: 300 seconds).
[09:35:08] [Server thread/INFO]: [SyncDeluxe] SyncDeluxe enabled successfully!
[09:35:08] [Server thread/INFO]: [ProAntiTab] Enabling ProAntiTab v1.9.1
[09:35:08] [Server thread/INFO]: [ProAntiTab] Successfully hooked into PlaceholderAPI!
[09:35:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pat [1.9.1]
[09:35:08] [Server thread/INFO]: [ProAntiTab] Successfully hooked into LuckPerms for easier usage.
[09:35:08] [Server thread/INFO]: [ChatGuard] Enabling ChatGuard v1.0.0
[09:35:08] [Server thread/INFO]: [Botarmy] Enabling Botarmy v1.0.0
[09:35:08] [Server thread/INFO]: [Botarmy] Botarmy has been enabled successfully!
[09:35:08] [Server thread/INFO]: [Ultimate_BlockRegeneration] Enabling Ultimate_BlockRegeneration v2.0.45
[09:35:09] [Server thread/INFO]: ****************************
[09:35:09] [Server thread/INFO]:       Ultimate BlockRegen     
[09:35:09] [Server thread/INFO]:  Regenerate Blocks in Style 
[09:35:09] [Server thread/INFO]:                             
[09:35:09] [Server thread/INFO]:         V:2.0.45        
[09:35:09] [Server thread/INFO]:        Made By HmmboYt      
[09:35:09] [Server thread/INFO]:  Join Our Discord For Support  
[09:35:09] [Server thread/INFO]: ****************************
[09:35:09] [Server thread/INFO]: Thanks for using our plugin 1213773 - %%__BUILTBYBIT__%%-1613242306
[09:35:09] [Server thread/INFO]: [Ultimate_BlockRegeneration] Vault Loaded
[09:35:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ubr [1.0]
[09:35:09] [Server thread/INFO]: [Ultimate_BlockRegeneration] [STDOUT] Plugin Exists
[09:35:09] [Server thread/WARN]: Nag author(s): '[]' of 'Ultimate_BlockRegeneration v2.0.45' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[09:35:09] [Server thread/INFO]: [InvSee++_Give] Enabling InvSeePlusPlus_Give v0.30.7
[09:35:09] [Server thread/INFO]: [BountyGuard] Enabling BountyGuard v2.0.0
[09:35:09] [Server thread/INFO]: [BountyGuard] BountyGuard has been enabled successfully.
[09:35:09] [Server thread/INFO]: [BigDoorsPhysics] Enabling BigDoorsPhysics v2.4.3
[09:35:09] [Server thread/INFO]: [BigDoorsPhysics] Loading Config
[09:35:09] [Server thread/INFO]: [net.bonn2.bigdoorsphysics.relocated.org.reflections.Reflections] Reflections took 33 ms to scan 1 urls, producing 2 keys and 6 values
[09:35:09] [Server thread/INFO]: [BigDoorsPhysics] Discovered 5 version adapters
[09:35:09] [Server thread/INFO]: [BigDoorsPhysics] Loaded net.bonn2.bigdoorsphysics.versions.v1_20_2.VersionUtil_v1_20_2
[09:35:09] [Server thread/INFO]: [BigDoorsPhysics] Registering Events
[09:35:09] [Server thread/INFO]: [BigDoorsPhysics] Registering Commands
[09:35:09] [Server thread/INFO]: [BigDoorsPhysics] Enabling ProtocolLib Support
[09:35:09] [Server thread/INFO]: [XenonGear] Enabling XenonGear v1.0.0
[09:35:09] [Server thread/INFO]: [XenonGear] Registered 14 alien items from configuration.
[09:35:09] [Server thread/INFO]: [XenonGear] Loaded 9 custom recipes
[09:35:09] [Server thread/INFO]: [XenonGear] Xenon Gear has been enabled successfully!
[09:35:09] [Server thread/INFO]: [XenonGear] Custom alien items and effects are now available!
[09:35:09] [Server thread/INFO]: [XenonGear] Use /edititem to customize enchantments, armor effects, and durability!
[09:35:09] [Server thread/INFO]: [XenonGear] Use /xenonrecipes create to create custom recipes for your tools!
[09:35:09] [Server thread/INFO]: [ImageFrame] Enabling ImageFrame v1.8.5.0
[09:35:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: imageframe [1.0.0]
[09:35:10] [Server thread/INFO]: [ImageFrame] ImageFrame has been Enabled!
[09:35:10] [Server thread/INFO]: [BroomestickAntiXray] Enabling BroomestickAntiXray v1.0
[09:35:10] [Server thread/INFO]: [BroomestickAntiXray] BroomestickAntiXray has been enabled.
[09:35:10] [Server thread/INFO]: [LevelledMobs] Enabling LevelledMobs v4.3.2.1 b125
[09:35:10] [Server thread/INFO]: [LevelledMobs] Enabling commands
[09:35:10] [Server thread/INFO]: [LevelledMobs] Building reflection cache, use simple names: true
[09:35:10] [Server thread/INFO]: [LevelledMobs] Found Essentials, loading integration
[09:35:10] [Server thread/INFO]: [LevelledMobs] Using NMS version 1.21.8 for nametag support
[09:35:10] [Server thread/INFO]: [LevelledMobs] File Loader: Loading files...
[09:35:10] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'settings.yml'...
[09:35:10] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'messages.yml'...
[09:35:10] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'externalplugins.yml'...
[09:35:10] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'rules.yml'...
[09:35:10] [Server thread/INFO]: [LevelledMobs] Current rules hash: 9b0f48e3273bb9cc29d2891ad33fb3410fec8cf1e77c2092ff670fd38f6d4ff5
[09:35:10] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'customdrops.yml'...
[09:35:10] [Server thread/INFO]: [LevelledMobs] Listeners: Registering event listeners...
[09:35:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: LevelledMobs [4.3.2.1 b125]
[09:35:10] [Server thread/INFO]: [LevelledMobs] Running misc procedures
[09:35:10] [Server thread/INFO]: [LevelledMobs] Tasks: Starting async nametag auto update task...
[09:35:10] [Server thread/INFO]: [LevelledMobs] Start-up complete (took 77ms)
[09:35:10] [Server thread/INFO]: [AntiCheatReplay] Enabling AntiCheatReplay v2.7.22
[09:35:10] [Server thread/INFO]: [Keepinv] Enabling Keepinv v1.0.0
[09:35:10] [Server thread/INFO]: [Keepinv] Keepinv plugin has been enabled!
[09:35:10] [Server thread/INFO]: [Maintenance] Enabling Maintenance v4.3.0
[09:35:11] [Server thread/INFO]: [Tebex] Enabling Tebex v2.2.1
[09:35:11] [Server thread/INFO]: [StaffChat] Enabling StaffChat v3.7
[09:35:11] [Server thread/INFO]: [StaffChat] Hooked into PlaceholderAPI! But configuration disables it, it is still in beta testing so we do not recommend using it.
[09:35:11] [Server thread/INFO]: [BlueMapPlayerControl] Enabling BlueMapPlayerControl v1.6
[09:35:11] [Server thread/INFO]: [BlueMapPlayerControl] BlueMapPlayerControl enabled
[09:35:11] [Server thread/INFO]: [Disease] Enabling Disease v1.0.0
[09:35:11] [Server thread/WARN]: [Disease] Could not save config.yml to plugins/Disease/config.yml because config.yml already exists.
[09:35:11] [Server thread/INFO]: [Disease] Loaded 6 infection records
[09:35:11] [Server thread/INFO]: [Disease] Disease plugin has been enabled!
[09:35:11] [Server thread/INFO]: [AntiPopup] Enabling AntiPopup v12.1
[09:35:11] [Server thread/INFO]: [AntiPopup] Config enabled.
[09:35:11] [Server thread/INFO]: [AntiPopup] Initiated PacketEvents.
[09:35:11] [Server thread/INFO]: [AntiPopup] Hooked on 1.21.7
[09:35:11] [Server thread/INFO]: [AntiPopup] Commands registered.
[09:35:11] [Server thread/INFO]: [AntiPopup] Logger filter enabled.
[09:35:11] [Server thread/INFO]: [MinecartTrains] Enabling MinecartTrains v1.4.1
[09:35:11] [Server thread/INFO]: [MinecartTrains] PuddingAPI version is newer than expected but should work fine.
[09:35:11] [Server thread/INFO]: [MinecartTrains] Expected version would be: 2312201546
[09:35:11] [Server thread/INFO]: [MinecartTrains] Successfully (re)loaded config.yml
[09:35:11] [Server thread/INFO]: [MinecartTrains] Successfully (re)loaded physics.yml
[09:35:11] [Server thread/INFO]: [MinecartTrains] Successfully (re)loaded messages.yml
[09:35:11] [Server thread/INFO]: [PhoenixCratesLite] Enabling PhoenixCratesLite v4.3.0
[09:35:11] [Server thread/INFO]: Loading cross version adapter...
[09:35:11] [OkHttp https://plugin.tebex.io/.../INFO]: [Tebex] Connected to Cartoria Worldbuilding's Game Server - Minecraft: Java Edition server.
[09:35:11] [Server thread/INFO]:   ____    ____                               
[09:35:11] [Server thread/INFO]:  |  _ \  / ___|                              
[09:35:11] [Server thread/INFO]:  | |_) || |       Phoenix Crates Lite v4.3.0      
[09:35:11] [Server thread/INFO]:  |  __/ | |___    https://phoenixplugins.com/
[09:35:11] [Server thread/INFO]:  |_|     \____|                             
[09:35:11] [Server thread/INFO]:                                                  
[09:35:11] [Server thread/INFO]: Loading settings...
[09:35:11] [Server thread/INFO]: Loading file "config.yml".
[09:35:11] [Server thread/INFO]: File "config.yml" is up to date. Importing configurations.
[09:35:11] [Server thread/INFO]: MiniMessage founded. Preparing hook...
[09:35:11] [Server thread/INFO]: Checking for internal patchs...
[09:35:11] [Server thread/INFO]: [PhoenixCratesLite] Current patch: #202509111232
[09:35:11] [Server thread/INFO]: [PhoenixCratesLite] No patches to run.
[09:35:11] [Server thread/INFO]: Vault founded. Preparing Economy...
[09:35:11] [Server thread/INFO]: Placeholder API founded. Preparing placeholders...
[09:35:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: phoenixcrates [1.0.0]
[09:35:11] [Server thread/INFO]: Loading components...
[09:35:11] [Server thread/INFO]: Loading database...
[09:35:11] [Server thread/WARN]: 2 [Server thread] INFO com.phoenixplugins.phoenixcrates.lib.hikari.HikariDataSource - CyberSQLitePool - Starting...
[09:35:11] [Server thread/WARN]: 9 [Server thread] INFO com.phoenixplugins.phoenixcrates.lib.hikari.HikariDataSource - CyberSQLitePool - Start completed.
[09:35:11] [Server thread/INFO]: Loading menus...
[09:35:11] [Server thread/INFO]: Loading file "menus/default_rewards_preview.yml".
[09:35:11] [Server thread/INFO]: File "menus/default_rewards_preview.yml" is up to date. Importing configurations.
[09:35:11] [Server thread/INFO]: Loading file "menus/default_select_reward.yml".
[09:35:11] [Server thread/INFO]: File "menus/default_select_reward.yml" is up to date. Importing configurations.
[09:35:11] [Server thread/INFO]: Loading players data...
[09:35:11] [Server thread/INFO]: Loading keys...
[09:35:11] [Server thread/INFO]: No resource with the name "key.yml" founded.
[09:35:11] [Server thread/INFO]: Loading file "keys/killskey.yml".
[09:35:11] [Server thread/INFO]: File "keys/killskey.yml" is up to date. Importing configurations.
[09:35:11] [Server thread/INFO]: No resource with the name "key.yml" founded.
[09:35:11] [Server thread/INFO]: Loading file "keys/Rewards.yml".
[09:35:11] [Server thread/INFO]: File "keys/Rewards.yml" is up to date. Importing configurations.
[09:35:11] [Server thread/INFO]: No resource with the name "key.yml" founded.
[09:35:11] [Server thread/INFO]: Loading file "keys/example1.yml".
[09:35:11] [Server thread/INFO]: File "keys/example1.yml" is up to date. Importing configurations.
[09:35:11] [Server thread/INFO]: Loaded 3 keys.
[09:35:11] [Server thread/INFO]: Loading crates...
[09:35:11] [Server thread/INFO]: Loading file "locations.yml".
[09:35:11] [Server thread/INFO]: File "locations.yml" is up to date. Importing configurations.
[09:35:11] [Server thread/INFO]: Loading file "crates/crate_1752756053471.yml".
[09:35:11] [Server thread/INFO]: File "crates/crate_1752756053471.yml" is up to date. Importing configurations.
[09:35:11] [Server thread/INFO]: Loading file "crates/Rewards.yml".
[09:35:11] [Server thread/INFO]: File "crates/Rewards.yml" is up to date. Importing configurations.
[09:35:11] [Server thread/INFO]: Loading file "crates/kills.yml".
[09:35:11] [Server thread/INFO]: File "crates/kills.yml" is up to date. Importing configurations.
[09:35:11] [Server thread/INFO]: Loaded 3 types.
[09:35:11] [Server thread/INFO]: Loaded 3 crates.
[09:35:11] [Server thread/INFO]: Loading commands...
[09:35:11] [Server thread/INFO]: 
[09:35:11] [Server thread/INFO]: Plugin loaded successfully!
[09:35:11] [Server thread/INFO]: [Any questions or problems that may arise, contact us through
[09:35:11] [Server thread/INFO]: the website or our discord: https://phoenixplugins.com/discord]
[09:35:11] [Server thread/INFO]: 
[09:35:11] [Server thread/INFO]: [RewardsLite] Enabling RewardsLite v3.1.10
[09:35:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rewardslite [1.0.0]
[09:35:11] [Server thread/INFO]: [RewardsLite] Loaded 7 rewards.
[09:35:11] [Server thread/INFO]: [Reports] Enabling Reports v1.0.0
[09:35:11] [Server thread/INFO]: [Reports] Reports plugin has been enabled!
[09:35:11] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.10.1
[09:35:11] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[09:35:12] [Server thread/INFO]: [ajLeaderboards] Loaded 13 boards
[09:35:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.10.1]
[09:35:12] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[09:35:12] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.10.1 by ajgeiss0702 enabled!
[09:35:12] [Server thread/INFO]: [statsAPI] Enabling statsAPI v1.0.0*
[09:35:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: statsapi [1.0.0]
[09:35:12] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.22.0-dev+28-0aa25c8
[09:35:12] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[09:35:12] [Server thread/INFO]: [LPC] Enabling LPC v3.6.2
[09:35:12] [Server thread/INFO]: [BannerMaker] Enabling BannerMaker v2.5.0
[09:35:12] [Server thread/INFO]: [BannerMaker] Language: en
[09:35:12] [Server thread/INFO]: [BannerMaker] Vault dependency found! Enable economy supported
[09:35:12] [Server thread/INFO]: [IFSnipper] Enabling ItemframeSnipper v1.0.0
[09:35:12] [Server thread/INFO]: [IFSnipper] Thank you for using ItemframeSnipper!
[09:35:12] [Server thread/INFO]: [Wars] Enabling Wars v1.0.0
[09:35:12] [Server thread/INFO]: [Wars] Loaded 2 attackers and 3 defenders
[09:35:12] [Server thread/INFO]: [Wars] LuckPerms integration enabled!
[09:35:12] [Server thread/INFO]: [Wars] Loaded 5 siege attackers and 3 siege defenders
[09:35:12] [Server thread/INFO]: [Wars] WorldGuard detected! Region functionality enabled.
[09:35:12] [Server thread/INFO]: [Wars] Wars plugin has been enabled!
[09:35:12] [Server thread/INFO]: [Chunky] Enabling Chunky v1.4.40
[09:35:12] [Server thread/INFO]: [BreweryX] Enabling BreweryX v3.4.10;HEAD
[09:35:12] [Server thread/INFO]: [BreweryX] Using language: en.yml
[09:35:12] [Server thread/INFO]: [BreweryX] Minecraft version: 1.21
[09:35:12] [Server thread/INFO]: [BreweryX] DataManager created: SQLite
[09:35:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: breweryx [3.4.10;HEAD]
[09:35:12] [Server thread/INFO]: [BreweryX] Using scheduler: PaperScheduler
[09:35:12] [Server thread/INFO]: [BreweryX] Environment: Paper
[09:35:12] [Server thread/INFO]: [BreweryX] BreweryX enabled!
[09:35:12] [Server thread/INFO]: [CustomTools] Enabling CustomTools v1.0.0
[09:35:12] [Server thread/ERROR]: [CustomTools] Error loading custom item super_pickaxe: No enum constant org.bukkit.Material.diamond_pickaxe
[09:35:12] [Server thread/INFO]: [CustomTools] Loaded enchantment FIRE_ASPECT level 3 for item flame_sword
[09:35:12] [Server thread/INFO]: [CustomTools] Loaded enchantment SHARPNESS level 6 for item flame_sword
[09:35:12] [Server thread/INFO]: [CustomTools] Loaded enchantment SWEEPING_EDGE level 2 for item flame_sword
[09:35:12] [Server thread/INFO]: [CustomTools] Loaded enchantment KNOCKBACK level 1 for item flame_sword
[09:35:12] [Server thread/INFO]: [CustomTools] Loaded custom item: flame_sword
[09:35:12] [Server thread/INFO]: [CustomTools] Loaded enchantment SHARPNESS level 3 for item fly_swatter
[09:35:12] [Server thread/INFO]: [CustomTools] Loaded enchantment SWEEPING_EDGE level 2 for item fly_swatter
[09:35:12] [Server thread/INFO]: [CustomTools] Loaded enchantment KNOCKBACK level 5 for item fly_swatter
[09:35:12] [Server thread/INFO]: [CustomTools] Loaded custom item: fly_swatter
[09:35:12] [Server thread/INFO]: [CustomTools] Loaded enchantment EFFICIENCY level 10 for item 100
[09:35:12] [Server thread/INFO]: [CustomTools] Loaded enchantment UNBREAKING level 5 for item 100
[09:35:12] [Server thread/INFO]: [CustomTools] Loaded custom item: 100
[09:35:12] [Server thread/INFO]: [CustomTools] Loaded enchantment EFFICIENCY level 10 for item 102
[09:35:12] [Server thread/INFO]: [CustomTools] Loaded enchantment UNBREAKING level 5 for item 102
[09:35:12] [Server thread/INFO]: [CustomTools] Loaded custom item: 102
[09:35:12] [Server thread/INFO]: [CustomTools] Loaded enchantment EFFICIENCY level 10 for item 103
[09:35:12] [Server thread/INFO]: [CustomTools] Loaded enchantment UNBREAKING level 5 for item 103
[09:35:12] [Server thread/INFO]: [CustomTools] Loaded custom item: 103
[09:35:12] [Server thread/INFO]: [CustomTools] Applied enchantment sweeping_edge level 2 to item flame_sword
[09:35:12] [Server thread/INFO]: [CustomTools] Applied enchantment knockback level 1 to item flame_sword
[09:35:12] [Server thread/INFO]: [CustomTools] Applied enchantment sharpness level 6 to item flame_sword
[09:35:12] [Server thread/INFO]: [CustomTools] Applied enchantment fire_aspect level 3 to item flame_sword
[09:35:12] [Server thread/INFO]: [CustomTools] Loaded recipe for: flame_sword
[09:35:12] [Server thread/INFO]: [CustomTools] Applied enchantment sweeping_edge level 2 to item fly_swatter
[09:35:12] [Server thread/INFO]: [CustomTools] Applied enchantment knockback level 5 to item fly_swatter
[09:35:12] [Server thread/INFO]: [CustomTools] Applied enchantment sharpness level 3 to item fly_swatter
[09:35:12] [Server thread/INFO]: [CustomTools] Loaded recipe for: fly_swatter
[09:35:12] [Server thread/INFO]: [CustomTools] Applied enchantment unbreaking level 5 to item 100
[09:35:12] [Server thread/INFO]: [CustomTools] Applied enchantment efficiency level 10 to item 100
[09:35:12] [Server thread/INFO]: [CustomTools] Loaded recipe for: 100
[09:35:12] [Server thread/INFO]: [CustomTools] Applied enchantment unbreaking level 5 to item 102
[09:35:12] [Server thread/INFO]: [CustomTools] Applied enchantment efficiency level 10 to item 102
[09:35:12] [Server thread/INFO]: [CustomTools] Loaded recipe for: 102
[09:35:12] [Server thread/INFO]: [CustomTools] Applied enchantment unbreaking level 5 to item 103
[09:35:12] [Server thread/INFO]: [CustomTools] Applied enchantment efficiency level 10 to item 103
[09:35:12] [Server thread/INFO]: [CustomTools] Loaded recipe for: 103
[09:35:12] [Server thread/INFO]: [CustomTools] CustomTools has been enabled!
[09:35:12] [Server thread/INFO]: [DeluxeTags] Enabling DeluxeTags v1.8.2-Release
[09:35:12] [Server thread/INFO]: [DeluxeTags] Using standard hex colors format: #aaFF00
[09:35:12] [Server thread/INFO]: [DeluxeTags] 25 tags loaded
[09:35:12] [Server thread/INFO]: [DeluxeTags] Loading DeluxeTags messages.yml
[09:35:12] [Server thread/INFO]: [DeluxeTags] PAPI Chat enabled. This means your chat plugin will use placeholders to fetch the tags!
[09:35:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxetags [1.8.2-Release]
[09:35:12] [Server thread/INFO]: [DeluxeTags] ----------------------------
[09:35:12] [Server thread/INFO]: [DeluxeTags]      DeluxeTags Updater
[09:35:12] [Server thread/INFO]: [DeluxeTags]  
[09:35:12] [Server thread/INFO]: [DeluxeTags] You are running 1.8.2-Release
[09:35:12] [Server thread/INFO]: [DeluxeTags] The latest version
[09:35:12] [Server thread/INFO]: [DeluxeTags] of DeluxeTags!
[09:35:12] [Server thread/INFO]: [DeluxeTags]  
[09:35:12] [Server thread/INFO]: [DeluxeTags] ----------------------------
[09:35:12] [Server thread/INFO]: [ChestProtect] Enabling ChestProtect v5.20.17
[09:35:12] [Server thread/INFO]: [ChestProtect] Version: 5.20.17 Previous: 5.20.17
[09:35:12] [Server thread/INFO]: [ChestProtect] Server: 1.21.8 running Paper
[09:35:12] [Server thread/INFO]: [ChestProtect] Licensed to: 1213773
[09:35:12] [Server thread/INFO]: [ChestProtect] Experiencing issues or having questions? Join our Discord!
[09:35:12] [Server thread/INFO]: [ChestProtect] Discord: https://discord.incredibleplugins.com
[09:35:12] [Server thread/INFO]: [ChestProtect] Wiki: https://wiki.incredibleplugins.com/chestprotect
[09:35:12] [Server thread/INFO]: [ChestProtect]  
[09:35:12] [Server thread/INFO]: [ChestProtect] [Integrations] Successfully integrated DecentHolograms as hologram manager.
[09:35:12] [Server thread/INFO]: [ChestProtect] [Integrations] Added support for the vanish feature of the plugin SuperVanish.
[09:35:12] [Server thread/INFO]: [AntiHealthIndicator] Enabling AntiHealthIndicator v1.4.3
[09:35:12] [Server thread/INFO]: [HSR] Enabling HSR v1.0.0
[09:35:12] [Server thread/INFO]: [HSR] High Speed Rail recipe registered successfully!
[09:35:12] [Server thread/INFO]: [HSR] Loaded 183 high speed rail blocks from data
[09:35:12] [Server thread/INFO]: [HSR] HSR Plugin has been enabled!
[09:35:12] [Server thread/INFO]: [HSR] High Speed Rails plugin is ready to use!
[09:35:12] [Server thread/INFO]: [Movecraft] Enabling Movecraft v8.0.0_beta-6
[09:35:12] [Server thread/INFO]: [Movecraft] Recognized PilotTool setting of: STICK
[09:35:12] [Server thread/INFO]: [Movecraft] Loading support for 1.21.8
[09:35:12] [Server thread/INFO]: [Movecraft] Loaded 3 Craft files
[09:35:12] [Server thread/INFO]: [Movecraft] [V 8.0.0_beta-6] has been enabled.
[09:35:12] [Server thread/INFO]: [SkCord] Enabling SkCord v3.3-RELEASE
[09:35:12] [Server thread/INFO]: [SkCord] SkCord has been enabled!
[09:35:12] [Server thread/INFO]: [NotQuests] Enabling NotQuests v5.19.0
[09:35:12] [Server thread/INFO]: [NotQuests] Loading NotQuests Paper...
[09:35:12] [Server thread/INFO]: [NotQuests]: Loading general config
[09:35:12] [Server thread/INFO]: [NotQuests]: Detected version: 1.21.8-R0.1-SNAPSHOT (Paper)
[09:35:12] [Server thread/INFO]: [NotQuests] Enabling NotQuests Paper...
[09:35:12] [Server thread/INFO]: [NotQuests]: NotQuests (Paper) is starting...
[09:35:12] [Server thread/INFO]: [NotQuests]: PlaceholderAPI found. Enabled PlaceholderAPI support!
[09:35:12] [Server thread/INFO]: [NotQuests]: Vault found. Enabled Vault support!
[09:35:12] [Server thread/INFO]: [NotQuests]: WorldEdit found. Enabled WorldEdit support!
[09:35:12] [Server thread/INFO]: [NotQuests]: Citizens found. Enabled Citizens support!
[09:35:12] [Server thread/INFO]: [NotQuests]: LuckPerms found. Enabled LuckPerms support!
[09:35:12] [Server thread/INFO]: [NotQuests]: Floodgate found. Enabled Floodgate support!
[09:35:12] [Server thread/INFO]: [NotQuests]: getLanguageConfig() is null. Loading language config...
[09:35:12] [Server thread/INFO]: [NotQuests]: Creating or updating default.yml...
[09:35:12] [Server thread/INFO]: [NotQuests]: Loading language config en-US.yml
[09:35:13] [Server thread/INFO]: [NotQuests]: Failed to initialize Brigadier support: Could not initialize Brigadier mappings. Reason: paper brigadier initialization failure (null)
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variables...
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable True
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable False
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable Condition
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable QuestPoints
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable Money
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable ActiveQuests
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable CompletedQuests
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable CompletedObjectiveIDsOfQuest
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable Permission
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable Statistic
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable Name
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable Experience
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable ExperienceLevel
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable CurrentWorld
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable CurrentPositionX
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable CurrentPositionY
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable CurrentPositionZ
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable RandomNumberBetweenRange
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable PlaytimeTicks
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable PlaytimeMinutes
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable PlaytimeHours
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable Glowing
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable Op
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable Climbing
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable InLava
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable InWater
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable Ping
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable WalkSpeed
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable FlySpeed
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable Sleeping
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable Sneaking
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable Sprinting
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable Swimming
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable Health
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable MaxHealth
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable GameMode
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable Flying
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable DayOfWeek
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable CurrentBiome
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable Chance
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable Advancement
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable Inventory
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable EnderChest
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable ContainerInventory
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable Block
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable TagBoolean
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable TagInteger
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable TagFloat
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable TagDouble
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable TagString
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable QuestOnCooldown
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable QuestAbleToAccept
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable QuestReachedMaxAccepts
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable QuestReachedMaxCompletions
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable QuestReachedMaxFails
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable ItemInInventoryEnchantments
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable ReflectionStaticDouble
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable ReflectionStaticFloat
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable ReflectionStaticInteger
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable ReflectionStaticBoolean
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable ReflectionStaticString
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable PlaceholderAPINumber
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable PlaceholderAPIString
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering variable FloodgateIsFloodgatePlayer
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering objectives...
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering objective Condition
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering objective BreakBlocks
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering objective PlaceBlocks
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering objective PickupItems
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering objective FishItems
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering objective TriggerCommand
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering objective OtherQuest
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering objective KillMobs
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering objective ConsumeItems
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering objective DeliverItems
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering objective TalkToNPC
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering objective EscortNPC
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering objective CraftItems
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering objective Enchant
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering objective KillEliteMobs
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering objective ReachLocation
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering objective BreedMobs
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering objective SlimefunResearch
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering objective RunCommand
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering objective Interact
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering objective Jump
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering objective Sneak
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering objective SmeltItems
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering objective OpenBuriedTreasure
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering objective ShearSheep
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering objective Objective
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering objective NumberVariable
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering objective TownyReachResidentCount
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering objective TownyNationReachTownCount
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering objective JobsRebornReachJobLevel
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering objective ProjectKorraUseAbility
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering conditions...
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering condition CompletedObjective
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering condition WorldTime
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering condition Date
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering condition Number
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number condition: PlaytimeTicks
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number condition: CurrentPositionX
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number condition: CurrentPositionY
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number condition: CurrentPositionZ
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number condition: MaxHealth
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number condition: TagDouble
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number condition: RandomNumberBetweenRange
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number condition: Experience
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number condition: Ping
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number condition: PlaytimeHours
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number condition: FlySpeed
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number condition: ReflectionStaticFloat
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number condition: WalkSpeed
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number condition: Money
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number condition: Statistic
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number condition: PlaytimeMinutes
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number condition: ReflectionStaticInteger
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number condition: ReflectionStaticDouble
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number condition: Health
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number condition: ExperienceLevel
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number condition: TagInteger
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number condition: TagFloat
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number condition: PlaceholderAPINumber
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number condition: QuestPoints
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering condition String
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering string condition: TagString
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering string condition: ReflectionStaticString
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering string condition: Name
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering string condition: GameMode
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering string condition: Block
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering string condition: PlaceholderAPIString
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering string condition: CurrentWorld
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering string condition: DayOfWeek
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering string condition: CurrentBiome
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering condition Boolean
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Op
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: InWater
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: QuestOnCooldown
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: InLava
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: True
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: False
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: QuestReachedMaxCompletions
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Permission
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Swimming
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: ReflectionStaticBoolean
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Flying
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Sneaking
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Sprinting
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Climbing
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: FloodgateIsFloodgatePlayer
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: QuestAbleToAccept
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Condition
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: QuestReachedMaxAccepts
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Glowing
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: QuestReachedMaxFails
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Chance
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Sleeping
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: TagBoolean
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Advancement
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering condition List
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering list condition: ItemInInventoryEnchantments
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering list condition: CompletedObjectiveIDsOfQuest
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering list condition: ActiveQuests
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering list condition: CompletedQuests
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering condition ItemStackList
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering ItemStackList condition: ContainerInventory
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering ItemStackList condition: Inventory
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering ItemStackList condition: EnderChest
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering actions...
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering action Action
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering action GiveQuest
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering action CompleteQuest
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering action FailQuest
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering action TriggerCommand
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering action StartConversation
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering action ConsoleCommand
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering action PlayerCommand
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering action Chat
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering action GiveItem
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering action SpawnMob
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering action SendMessage
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering action BroadcastMessage
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering action PlaySound
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering action Number
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number action: PlaytimeTicks
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number action: CurrentPositionX
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number action: CurrentPositionY
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number action: CurrentPositionZ
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number action: MaxHealth
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number action: TagDouble
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number action: Experience
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number action: PlaytimeHours
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number action: FlySpeed
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number action: ReflectionStaticFloat
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number action: WalkSpeed
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number action: Money
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number action: Statistic
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number action: PlaytimeMinutes
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number action: ReflectionStaticInteger
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number action: ReflectionStaticDouble
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number action: Health
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number action: ExperienceLevel
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number action: TagInteger
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number action: TagFloat
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering number action: QuestPoints
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering action String
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering string action: TagString
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering string action: ReflectionStaticString
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering string action: Name
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering string action: GameMode
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering string action: Block
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering string action: CurrentWorld
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering action Boolean
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean action: Op
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean action: Permission
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean action: Swimming
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean action: ReflectionStaticBoolean
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean action: Flying
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean action: Sneaking
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean action: Sprinting
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean action: Glowing
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean action: TagBoolean
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering boolean action: Advancement
[09:35:13] [Server thread/INFO]: [NotQuests]: Registering action List
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering list action: CompletedObjectiveIDsOfQuest
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering list action: ActiveQuests
[09:35:13] [Server thread/INFO]: [NotQuests]:   Registering list action: CompletedQuests
[09:35:14] [Server thread/INFO]: [NotQuests]: Registering action ItemStackList
[09:35:14] [Server thread/INFO]: [NotQuests]:   Registering ItemStackList action: ContainerInventory
[09:35:14] [Server thread/INFO]: [NotQuests]:   Registering ItemStackList action: Inventory
[09:35:14] [Server thread/INFO]: [NotQuests]:   Registering ItemStackList action: EnderChest
[09:35:14] [Server thread/INFO]: [NotQuests]: Registering action Beam
[09:35:14] [Server thread/INFO]: [NotQuests]: Registering triggers...
[09:35:14] [Server thread/INFO]: [NotQuests]: Registering trigger BEGIN
[09:35:14] [Server thread/INFO]: [NotQuests]: Registering trigger COMPLETE
[09:35:14] [Server thread/INFO]: [NotQuests]: Registering trigger DEATH
[09:35:14] [Server thread/INFO]: [NotQuests]: Registering trigger DISCONNECT
[09:35:14] [Server thread/INFO]: [NotQuests]: Registering trigger FAIL
[09:35:14] [Server thread/INFO]: [NotQuests]: Registering trigger NPCDEATH
[09:35:14] [Server thread/INFO]: [NotQuests]: Registering trigger WORLDENTER
[09:35:14] [Server thread/INFO]: [NotQuests]: Registering trigger WORLDLEAVE
[09:35:14] [pool-110-thread-1/INFO]: [ajLeaderboards] You are up to date! (2.10.1)
[09:35:14] [Server thread/INFO]: [NotQuests]: Registering events for Citizens (on time)...
[09:35:14] [Server thread/INFO]: [NotQuests]: Initialized CitizensEvents
[09:35:14] [Server thread/INFO]: [NotQuests]: Loading categories and configurations...
[09:35:14] [Server thread/INFO]: [NotQuests]: Checking folder for categories: NotQuests
[09:35:14] [Server thread/INFO]: [NotQuests]:   Loading real category: default
[09:35:14] [Server thread/INFO]: [NotQuests]: Checking folder for categories: default
[09:35:14] [Server thread/INFO]: [NotQuests]: Scheduled Actions Data load for following categories: [default]...
[09:35:14] [Server thread/INFO]: [NotQuests]: Loading actions for category default
[09:35:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: notquests [5.19.0]
[09:35:14] [Server thread/INFO]: [NotQuests]: Loading conversations...
[09:35:14] [Server thread/INFO]: [NotQuests]: Initializing modern packet injector...
[09:35:14] [Server thread/INFO]: [NotQuests]: Scheduled Tags Data load for following categories: [default]
[09:35:14] [Server thread/INFO]: [NotQuests]:   Loading tags for category default
[09:35:14] [Server thread/INFO]: [NotQuests]: Scheduled Items Data load for following categories: [default]
[09:35:14] [Server thread/INFO]: [NotQuests]:   Loading Items for category default
[09:35:14] [Server thread/INFO]: [NotQuests]: Initial loading has completed!
[09:35:14] [Server thread/INFO]: [Insights] Enabling Insights v6.19.7
[09:35:14] [Server thread/INFO]: [Insights] Loaded limit 'tile-limit.yml'
[09:35:14] [Server thread/INFO]: [Insights] Loaded limit 'bed-limit.yml'
[09:35:14] [Server thread/INFO]: [Insights] Loaded limit 'redstone-limit.yml'
[09:35:14] [Server thread/INFO]: [Insights] Unregistered listener of 'BlockFromToEvent'
[09:35:14] [Server thread/INFO]: [Insights] Unregistered listener of 'LeavesDecayEvent'
[09:35:14] [Server thread/INFO]: [Insights] Unregistered listener of 'FluidLevelChangeEvent'
[09:35:14] [Server thread/INFO]: [Insights] Unregistered listener of 'SpongeAbsorbEvent'
[09:35:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: insights [6.19.7]
[09:35:15] [Server thread/INFO]: [EpicRename] Enabling EpicRename v3.12.1
[09:35:15] [Server thread/INFO]: [EpicRename] [CheckServerVersion] Server running 1.7 or 1.8. EpicRename will stop supporting these versions in the near future.
[09:35:15] [Server thread/INFO]: [EpicRename] Version: 3.12.1 MC Version: ONE_DOT_SEVEN_OR_NEWER
[09:35:15] [Server thread/INFO]: [EpicRename] This plugin is Copyright (c) 2022 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:35:15] [Server thread/INFO]: [EpicRename] Starting to enable plugin...
[09:35:15] [Server thread/INFO]: [EpicRename] Prefix set to: '[EpicRename] '
[09:35:15] [Server thread/INFO]: [EpicRename] Plugin Enabled!
[09:35:15] [Server thread/INFO]: [OpenAudioMc] Enabling OpenAudioMc v6.10.14
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Starting OpenAudioMc, build 1549 by Mats
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Using the main config file..
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Starting configuration module
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Using the main config file..
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Starting configuration module
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Detected md_5 chat support, using default user adapter
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Skipped 46/46 migrations.
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] ModuleLoaderService: Loading modules from /home/container/plugins/OpenAudioMc/modules
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Using networking class com.craftmend.openaudiomc.generic.networking.DefaultNetworkingService
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Initializing connection service...
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Starting authentication module
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] This server already has an account, skipping sign up.
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Adding spigot tables
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for Alias
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (alias<->Alias.java)
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for ClientDataStore
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (client_data_store<->ClientDataStore.java)
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for MojangProfile
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (mojang_profile<->MojangProfile.java)
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for RegionProperties
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (region_properties<->RegionProperties.java)
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for Speaker
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (speaker<->Speaker.java)
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for StoredWorldChunk
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (stored_world_chunk<->StoredWorldChunk.java)
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for TimedRegionProperties
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (timed_region_properties<->TimedRegionProperties.java)
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for MediaRule
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (media_rule<->MediaRule.java)
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Initializing account details
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] The server is empty! ignoring voice chat.
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Loading aliases...
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Loaded 0 aliases
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Enabling the 1.13 speaker system
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Starting redstone speaker tick task with interval 5 ticks
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for Playlist
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (playlists<->Playlist.java)
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for PlaylistEntry
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (playlist_entries<->PlaylistEntry.java)
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Loaded 0 media chunks from file.
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Loading static voice channels..
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Created static channel: survival
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Created static channel: off-topic
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Created static channel: staff-chat
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Created static channel: admin-chat
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Loaded 4 static voice channels
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Plugin LiteBans is already enabled, running handler
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Plugin Essentials is already enabled, running handler
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Plugin WorldGuard is already enabled, running handler
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Turns out you have WorldGuard installed! enabling regions and the region tasks..
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Scanning 0 regions for duplicates (out of 0 total regions)
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] No duplicate regions found, skipping cleanup...
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Plugin PlaceholderAPI is already enabled, running handler
[09:35:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: oa [1.0.0]
[09:35:15] [Server thread/INFO]: [OpenAudioMc] [info] Starting and loading took 20307MS
[09:35:15] [Server thread/INFO]: [CSL] Enabling ChunkSpawnerLimiter v4.4.2
[09:35:15] [Server thread/INFO]: [CSL] [ACF] Enabled Asynchronous Tab Completion Support!
[09:35:15] [Server thread/INFO]: [CSL] [ACF] Enabled Brigadier Support!
[09:35:15] [Server thread/WARN]: [CSL] "ChunkSpawnerLimiter v4.4.2" has registered a listener for com.destroystokyo.paper.event.brigadier.CommandRegisteredEvent on method "public void com.cyprias.chunkspawnerlimiter.libs.acf.PaperBrigadierManager.onCommandRegister(com.destroystokyo.paper.event.brigadier.CommandRegisteredEvent<com.destroystokyo.paper.brigadier.BukkitBrigadierCommandSource>)", but the event is Deprecated. "This event has been superseded by the Commands API and will be removed in a future release. Listen to LifecycleEvents.COMMANDS instead."; please notify the authors [Cyprias, sarhatabaot].
[09:35:15] [Server thread/INFO]: [SkBee] Enabling SkBee v3.12.3
[09:35:15] [Server thread/INFO]: [SkBee] Registry Elements successfully loaded
[09:35:15] [Server thread/INFO]: [SkBee] Loading NBTApi...
[09:35:15] [Server thread/INFO]: [SkBee] [NBTAPI] Found Minecraft: 1.21.8! Trying to find NMS support
[09:35:15] [Server thread/INFO]: [SkBee] [NBTAPI] NMS support 'MC1_21_R5' loaded!
[09:35:15] [Server thread/INFO]: [SkBee] Successfully loaded NBTApi!
[09:35:15] [Server thread/INFO]: [SkBee] NBT Elements successfully loaded
[09:35:15] [Server thread/INFO]: [SkBee] Text Component Elements successfully loaded
[09:35:15] [Server thread/INFO]: [SkBee] Advancement Elements successfully loaded
[09:35:15] [Server thread/INFO]: [SkBee] BossBar Elements successfully loaded
[09:35:15] [Server thread/INFO]: [SkBee] Bound Elements successfully loaded
[09:35:15] [Server thread/INFO]: [SkBee] Damage Source Elements successfully loaded
[09:35:15] [Server thread/INFO]: [SkBee] Display Entity Elements successfully loaded
[09:35:15] [Server thread/INFO]: [SkBee] Fastboard[Adventure] Elements successfully loaded
[09:35:15] [Server thread/INFO]: [SkBee] Fishing Elements successfully loaded
[09:35:15] [Server thread/INFO]: [SkBee] Game Event Elements successfully loaded
[09:35:15] [Server thread/INFO]: [SkBee] Item Component Elements successfully loaded
[09:35:15] [Server thread/INFO]: [SkBee] Particle Elements successfully loaded
[09:35:15] [Server thread/INFO]: [SkBee] Property Elements successfully loaded
[09:35:15] [Server thread/INFO]: [SkBee] RayTrace Elements successfully loaded
[09:35:15] [Server thread/INFO]: [SkBee] Recipe Elements successfully loaded
[09:35:15] [Server thread/INFO]: [SkBee] Scoreboard Elements successfully loaded
[09:35:15] [Server thread/INFO]: [SkBee] Statistic Elements successfully loaded
[09:35:15] [Server thread/INFO]: [SkBee] Structure Elements successfully loaded
[09:35:15] [Server thread/INFO]: [SkBee] SwitchCase Elements successfully loaded
[09:35:15] [Server thread/INFO]: [SkBee] Tick Manager Elements successfully loaded
[09:35:15] [Server thread/INFO]: [SkBee] Villager Elements successfully loaded
[09:35:15] [Server thread/INFO]: [SkBee] Virtual Furnace Elements disabled via config
[09:35:15] [Server thread/INFO]: [SkBee] World Border Elements disabled (now in Skript)
[09:35:15] [Server thread/INFO]: [SkBee] World Creator Elements successfully loaded
[09:35:15] [Server thread/INFO]: [SkBee] Chunk Generator Elements successfully loaded
[09:35:15] [Server thread/INFO]: [SkBee] Loaded (461) elements:
[09:35:15] [Server thread/INFO]: [SkBee]  - 56 events
[09:35:15] [Server thread/INFO]: [SkBee]  - 71 effects
[09:35:15] [Server thread/INFO]: [SkBee]  - 276 expressions
[09:35:15] [Server thread/INFO]: [SkBee]  - 26 conditions
[09:35:15] [Server thread/INFO]: [SkBee]  - 32 sections
[09:35:15] [Server thread/INFO]: [SkBee]  - 11 properties
[09:35:15] [Server thread/INFO]: [SkBee] Checking for update...
[09:35:15] [Server thread/INFO]: [SkBee] Plugin is up to date!
[09:35:15] [Server thread/INFO]: [SkBee] Successfully enabled v3.12.3 in 0.42 seconds
[09:35:15] [Server thread/INFO]: [InvSee++_Clear] Enabling InvSeePlusPlus_Clear v0.30.7
[09:35:15] [Server thread/INFO]: [NoteBlockAPI] Enabling NoteBlockAPI v1.6.3
[09:35:15] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.18.7
[09:35:15] [Server thread/INFO]: [VotingPlugin] Loaded LuckPerms hook!
[09:35:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: votingplugin [1.6]
[09:35:16] [Server thread/INFO]: [VotingPlugin] Loading PlaceholderAPI expansion
[09:35:16] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[09:35:16] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.18.7
[09:35:16] [Server thread/INFO]: [InventoryRollbackPlus] Enabling InventoryRollbackPlus v1.7.6
[09:35:16] [Server thread/INFO]: [InventoryRollbackPlus] Attempting support for version: 1.21.8-60-29c8822 (MC: 1.21.8)
[09:35:16] [Server thread/INFO]: [InventoryRollbackPlus] Using CraftBukkit version: v1_21_R5
[09:35:16] [Server thread/INFO]: [InventoryRollbackPlus] Inventory backup data is set to save to: YAML
[09:35:16] [Server thread/INFO]: [InventoryRollbackPlus] bStats are enabled
[09:35:16] [Server thread/INFO]: [InventoryRollbackPlus] Tests completed: 5, Skipped: 0, Failed: 0
[09:35:16] [Server thread/INFO]: [InventoryRollbackPlus] All tests passed successfully.
[09:35:16] [Server thread/INFO]: [spark] Starting background profiler...
[09:35:16] [Server thread/WARN]: Could not register alias report because it contains commands that do not exist: playerreports:report $1-
[09:35:16] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[09:35:16] [Server thread/INFO]: Done preparing level "world" (15.324s)
[09:35:16] [Server thread/INFO]: Running delayed init tasks
[09:35:16] [Craft Scheduler Thread - 2 - DivinityEconomy/INFO]: [DivinityEconomy v3.5.6]> Invalid bank file: .yml. Skipping...
[09:35:16] [Craft Scheduler Thread - 4 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[09:35:16] [Craft Scheduler Thread - 0 - Essentials/INFO]: [Essentials] Fetching version information...
[09:35:17] [Craft Scheduler Thread - 12 - ChestShopNotifier/INFO]: [com.wfector.lib.hikari.HikariDataSource] HikariPool-1 - Starting...
[09:35:17] [Craft Scheduler Thread - 33 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] Checking for updates...
[09:35:17] [Craft Scheduler Thread - 41 - Vault/INFO]: [Vault] Checking for Updates ... 
[09:35:17] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[09:35:17] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[09:35:17] [Craft Scheduler Thread - 36 - NotQuests/INFO]: [rocks.gravili.notquests.paper.shadow.hikari.HikariDataSource] HikariPool-1 - Starting...
[09:35:17] [Craft Scheduler Thread - 12 - ChestShopNotifier/INFO]: [com.wfector.lib.hikari.HikariDataSource] HikariPool-1 - Start completed.
[09:35:17] [Craft Scheduler Thread - 4 - DecentHolograms/INFO]: [DecentHolograms] Loaded 40 holograms!
[09:35:17] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[09:35:17] [Craft Scheduler Thread - 12 - ChestShopNotifier/INFO]: [ChestShopNotifier] Database connected!
[09:35:17] [Craft Scheduler Thread - 36 - NotQuests/INFO]: [rocks.gravili.notquests.paper.shadow.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@3761565a
[09:35:17] [Craft Scheduler Thread - 36 - NotQuests/INFO]: [rocks.gravili.notquests.paper.shadow.hikari.HikariDataSource] HikariPool-1 - Start completed.
[09:35:17] [Craft Scheduler Thread - 36 - NotQuests/INFO]: [NotQuests]: Backing up database...
[09:35:17] [Craft Scheduler Thread - 15 - StaffChat/INFO]: [StaffChat] There is a new update available for Staff Chat. Download it here: https://www.spigotmc.org/resources/1-7-1-17-staff-chat.92585/
[09:35:17] [Craft Scheduler Thread - 36 - NotQuests/INFO]: [NotQuests]: Your sqlite database has been successfully backed up to plugins/NotQuests/backups/database_sqlite-backup-2025-09-29-09-35-17.db
[09:35:17] [Craft Scheduler Thread - 35 - SkCord/INFO]: [SkCord] You are using the latest version of SkCord.
[09:35:17] [Craft Scheduler Thread - 33 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] You are running the latest version.
[09:35:17] [Craft Scheduler Thread - 36 - NotQuests/INFO]: [NotQuests]: Adding 'Profile' column to database tables if it the table exists but the column doesn't exist yet...
[09:35:17] [Craft Scheduler Thread - 36 - NotQuests/INFO]: [NotQuests]: Adding 'Profile' column to database tables if it the table exists but the column doesn't exist yet...
[09:35:17] [Craft Scheduler Thread - 36 - NotQuests/INFO]: [NotQuests]: Adding 'Profile' column to database tables if it the table exists but the column doesn't exist yet...
[09:35:17] [Craft Scheduler Thread - 36 - NotQuests/INFO]: [NotQuests]: Adding 'Profile' column to database tables if it the table exists but the column doesn't exist yet...
[09:35:17] [Craft Scheduler Thread - 36 - NotQuests/INFO]: [NotQuests]: Adding 'Profile' column to database tables if it the table exists but the column doesn't exist yet...
[09:35:17] [Craft Scheduler Thread - 36 - NotQuests/INFO]: [NotQuests]: Adding 'Profile' column to database tables if it the table exists but the column doesn't exist yet...
[09:35:17] [Craft Scheduler Thread - 36 - NotQuests/INFO]: [NotQuests]: Creating database table 'QuestPlayerProfileData' if it doesn't exist yet...
[09:35:17] [Craft Scheduler Thread - 36 - NotQuests/INFO]: [NotQuests]: Creating database table 'QuestPlayerData' if it doesn't exist yet...
[09:35:17] [Craft Scheduler Thread - 36 - NotQuests/INFO]: [NotQuests]: Creating database table 'ActiveQuests' if it doesn't exist yet...
[09:35:17] [Craft Scheduler Thread - 36 - NotQuests/INFO]: [NotQuests]: Creating database table 'FailedQuests' if it doesn't exist yet...
[09:35:17] [Craft Scheduler Thread - 36 - NotQuests/INFO]: [NotQuests]: Creating database table 'CompletedQuests' if it doesn't exist yet...
[09:35:17] [Craft Scheduler Thread - 36 - NotQuests/INFO]: [NotQuests]: Adding 'ProgressNeeded' column to 'ActiveObjectives' if it the table exists but the column doesn't exist yet...
[09:35:17] [Craft Scheduler Thread - 36 - NotQuests/INFO]: [NotQuests]: Creating database table 'ActiveObjectives' if it doesn't exist yet...
[09:35:17] [Craft Scheduler Thread - 36 - NotQuests/INFO]: [NotQuests]: Creating database table 'ActiveTriggers' if it doesn't exist yet...
[09:35:17] [Craft Scheduler Thread - 36 - NotQuests/INFO]: [NotQuests]: Creating database table 'Tags' if it doesn't exist yet...
[09:35:17] [Craft Scheduler Thread - 36 - NotQuests/INFO]: [NotQuests]: Loaded player data
[09:35:17] [Craft Scheduler Thread - 36 - NotQuests/INFO]: [NotQuests]: Registering Citizens nquestgiver trait...
[09:35:17] [Craft Scheduler Thread - 36 - NotQuests/INFO]: [NotQuests]: Citizens nquestgiver trait has been registered!
[09:35:17] [Craft Scheduler Thread - 36 - NotQuests/INFO]: [NotQuests]: Tried to load NPC data before quest data was loaded. NotQuests is scheduling another load...
[09:35:17] [Craft Scheduler Thread - 36 - NotQuests/INFO]: [NotQuests]: Trying to bind Conversations to NPCs...
[09:35:17] [Craft Scheduler Thread - 36 - NotQuests/INFO]: [NotQuests]: Scheduled Quest Data load for following categories: [default]
[09:35:17] [Craft Scheduler Thread - 14 - Plan/INFO]: [Plan] You're using the latest version.
[09:35:17] [Craft Scheduler Thread - 36 - NotQuests/INFO]: [NotQuests]: Loading Quests data from default category...
[09:35:17] [Craft Scheduler Thread - 41 - Vault/INFO]: [Vault] No new version available
[09:35:17] [Craft Scheduler Thread - 36 - NotQuests/INFO]: [NotQuests]:    Loading Quest Joe...
[09:35:17] [Craft Scheduler Thread - 36 - NotQuests/INFO]: [NotQuests]:    Loading Quest WitherSlayer...
[09:35:17] [Craft Scheduler Thread - 36 - NotQuests/INFO]: [NotQuests]: Loading NPC data...
[09:35:17] [Craft Scheduler Thread - 36 - NotQuests/INFO]: [NotQuests]: NPC data loaded!
[09:35:17] [Server thread/INFO]: [Skript] Loading variables...
[09:35:17] [Server thread/INFO]: [Skript] Loaded 61 variables in 0.0 seconds
[09:35:17] [Server thread/INFO]: [Skript] Line 3: (siege.sk)
[09:35:17] [Server thread/INFO]:     Can't understand this structure: on custom event "WarsWarStartEvent"
[09:35:17] [Server thread/INFO]:     Line: on custom event "WarsWarStartEvent":
[09:35:17] [Server thread/INFO]:  
[09:35:17] [Server thread/INFO]: [Skript] Line 10: (siege.sk)
[09:35:17] [Server thread/INFO]:     Can't understand this structure: on custom event "WarsWarEndEvent"
[09:35:17] [Server thread/INFO]:     Line: on custom event "WarsWarEndEvent":
[09:35:17] [Server thread/INFO]:  
[09:35:17] [Craft Scheduler Thread - 0 - Essentials/WARN]: [Essentials] You're 4 EssentialsX dev build(s) out of date!
[09:35:17] [Craft Scheduler Thread - 0 - Essentials/WARN]: [Essentials] Download it here: https://essentialsx.net/downloads.html
[09:35:17] [Server thread/INFO]: [Skript] Loaded 17 scripts with a total of 21 structures in 0.27 seconds
[09:35:17] [Server thread/INFO]: [Skript] Finished loading.
[09:35:17] [Server thread/INFO]: [CoreProtect] FastAsyncWorldEdit logging successfully initialized.
[09:35:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrv [1.30.1]
[09:35:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: plan [5.6 build 2965]
[09:35:17] [Server thread/INFO]: [ChatGuard] All player warnings have been reset.
[09:35:17] [Server thread/INFO]: [AntiCheatReplay] Vulcan detected, enabling support..
[09:35:17] [Server thread/INFO]: [Multiverse-Inventories] First run!
[09:35:17] [Server thread/INFO]: Checking for conflicts in groups...
[09:35:17] [Server thread/INFO]: No group conflicts found!
[09:35:17] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated PlaceholderAPI for parsing placeholders from 3rd party plugins in chat messages and GUI menus
[09:35:17] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated LuckPerms for offline permission lookups.
[09:35:17] [Server thread/WARN]: [Lands] [GUI] Invalid sound option: ENTITY_VILLAGER_NO Option: failure - You can find the correct sound names by using the /playsound command ingame. This is not a plugin issue. You need to edit the file en-US_gui-bedrock.yml.
[09:35:17] [Server thread/WARN]: [Lands] [GUI] Invalid sound option: ENTITY_PLAYER_LEVELUP Option: confirm - You can find the correct sound names by using the /playsound command ingame. This is not a plugin issue. You need to edit the file en-US_gui-bedrock.yml.
[09:35:17] [Server thread/WARN]: [Lands] [GUI] Invalid sound option: BLOCK_ANVIL_HIT Option: cancel - You can find the correct sound names by using the /playsound command ingame. This is not a plugin issue. You need to edit the file en-US_gui-bedrock.yml.
[09:35:17] [Server thread/WARN]: [Lands] [GUI] Invalid sound option: ENTITY_VILLAGER_NO Option: failure - You can find the correct sound names by using the /playsound command ingame. This is not a plugin issue. You need to edit the file en-US_gui-bedrock.yml.
[09:35:17] [Server thread/WARN]: [Lands] [GUI] Invalid sound option: ENTITY_PLAYER_LEVELUP Option: confirm - You can find the correct sound names by using the /playsound command ingame. This is not a plugin issue. You need to edit the file en-US_gui-bedrock.yml.
[09:35:17] [Server thread/WARN]: [Lands] [GUI] Invalid sound option: BLOCK_ANVIL_HIT Option: cancel - You can find the correct sound names by using the /playsound command ingame. This is not a plugin issue. You need to edit the file en-US_gui-bedrock.yml.
[09:35:17] [Server thread/INFO]: [Lands] [Integrations] Integrated Bedrock GUI forms for Bedrock players.
[09:35:17] [Server thread/INFO]: [Lands] Added region provider: WorldGuard Type: SERVER
[09:35:17] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated Vault economy into economy system. Name: DivinityEconomy
[09:35:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lands [7.16.16]
[09:35:17] [Server thread/INFO]: [Lands] [Integrations] Successfully registered placeholders at PlaceholderAPI. More info: https://wiki.incredibleplugins.com/lands/configuration/placeholderapi-placeholders
[09:35:17] [User Authenticator #1/INFO]: UUID of player broomestick is c051786e-4f1a-47a1-9654-2797c4559053
[09:35:17] [User Authenticator #0/INFO]: UUID of player Capitalist_stick is a1b303b7-7cf7-4132-815d-bd51f1fe7ef4
[09:35:17] [Server thread/INFO]: [Lands] BlueMap is ready now.
[09:35:17] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated BlueMap into web-map system.
[09:35:17] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated FastAsyncWorldEdit. 
[09:35:17] [Server thread/INFO]: [Lands] [Integrations] Successfully loaded LuckPerms contexts. More information: https://wiki.incredibleplugins.com/lands/permissions/luckperms-context
[09:35:17] [Server thread/INFO]: [Lands] [Economy] Next economic tasks (taxes, upkeep, nations upkeep) execution is in 5 day(s), 13 hour(s), 24 minute(s), 42 second(s). Interval: 7 day(s)
[09:35:17] [Server thread/INFO]: [Citizens] Loaded 47 NPCs.
[09:35:17] [Server thread/INFO]: [NotQuests]: Processing Citizens Enable Event...
[09:35:17] [Server thread/INFO]: [NotQuests]: Registering Citizens nquestgiver trait...
[09:35:17] [Server thread/INFO]: [NotQuests]: Citizens nquestgiver trait has been registered!
[09:35:17] [Server thread/INFO]: [NotQuests]: Trying to bind Conversations to NPCs...
[09:35:17] [Server thread/INFO]: [DiscordBridge] [Integrations] Successfully integrated PlaceholderAPI for parsing placeholders from 3rd party plugins in chat messages and GUI menus
[09:35:17] [Server thread/INFO]: [DiscordBridge] [Integrations] Successfully integrated LuckPerms for offline permission lookups.
[09:35:17] [Server thread/INFO]: [DiscordBridge] [Integrations] Integrated Bedrock GUI forms for Bedrock players.
[09:35:17] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: DiscordBridge
[09:35:17] [Server thread/INFO]: [DiscordBridge] [Modules] Loaded module: LANDS
[09:35:17] [Server thread/INFO]: [DiscordBridge] [Modules] Loaded module: BOT
[09:35:17] [Server thread/INFO]: [DiscordBridge] Successfully set link manager. Plugin: DiscordBridge
[09:35:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordbridge [1.5.8]
[09:35:17] [Server thread/INFO]: [DiscordBridge] [Integrations] Successfully registered placeholders at PlaceholderAPI.
[09:35:17] [Server thread/INFO]: [ChestProtect] [Integrations] Successfully integrated PlaceholderAPI for parsing placeholders from 3rd party plugins in chat messages and GUI menus
[09:35:17] [Server thread/INFO]: [ChestProtect] [Integrations] Successfully integrated LuckPerms for offline permission lookups.
[09:35:17] [Server thread/WARN]: [ChestProtect] [GUI] Invalid sound option: ENTITY_PLAYER_LEVELUP Option: confirm - You can find the correct sound names by using the /playsound command ingame. This is not a plugin issue. You need to edit the file en-US_gui-bedrock.yml.
[09:35:17] [Server thread/WARN]: [ChestProtect] [GUI] Invalid sound option: BLOCK_ANVIL_HIT Option: cancel - You can find the correct sound names by using the /playsound command ingame. This is not a plugin issue. You need to edit the file en-US_gui-bedrock.yml.
[09:35:17] [Server thread/WARN]: [ChestProtect] [GUI] Invalid sound option: ENTITY_PLAYER_LEVELUP Option: confirm - You can find the correct sound names by using the /playsound command ingame. This is not a plugin issue. You need to edit the file en-US_gui-bedrock.yml.
[09:35:17] [Server thread/WARN]: [ChestProtect] [GUI] Invalid sound option: BLOCK_ANVIL_HIT Option: cancel - You can find the correct sound names by using the /playsound command ingame. This is not a plugin issue. You need to edit the file en-US_gui-bedrock.yml.
[09:35:17] [Server thread/INFO]: [ChestProtect] [Integrations] Integrated Bedrock GUI forms for Bedrock players.
[09:35:17] [Server thread/INFO]: [ChestProtect] Added region provider: Lands Type: CLAIMING
[09:35:17] [Server thread/INFO]: [ChestProtect] Added region provider: WorldGuard Type: SERVER
[09:35:17] [Server thread/INFO]: [SuperVanish] Your current version of SuperVanish is outdated - New version: '6.2.21'; Currently: '6.2.20'
[09:35:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.7.3]
[09:35:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: bungee [2.3]
[09:35:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[09:35:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[09:35:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[09:35:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.2]
[09:35:17] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion deluxechat due to a missing plugin: DeluxeChat
[09:35:17] [Server thread/INFO]: Vanish Placeholders - Hooked into SuperVanish or PremiumVanish
[09:35:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vanish [1.2]
[09:35:17] [Server thread/WARN]: [PlaceholderAPI] Failed to load external expansion votingplugin. Identifier is already in use.
[09:35:17] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion votingplugin due to an unknown issue.
[09:35:17] [Server thread/INFO]: 7 placeholder hook(s) registered!
[09:35:17] [Server thread/INFO]: [NotQuests]: Checking for bugged NPCs...
[09:35:17] [Server thread/INFO]: [NotQuests]: No bugged NPCs found! Amount of checked NPCs: 47
[09:35:17] [Server thread/INFO]: Done (33.278s)! For help, type "help"
[09:35:17] [Craft Scheduler Thread - 25 - AntiCheatReplay/INFO]: [AntiCheatReplay] Checking if Vulcan API is enabled
[09:35:17] [Craft Scheduler Thread - 25 - AntiCheatReplay/INFO]: [AntiCheatReplay] Vulcan API is enabled
[09:35:17] [Craft Scheduler Thread - 11 - AntiCheatReplay/INFO]: [AntiCheatReplay] You are up to date!
[09:35:17] [Server thread/INFO]: [HorriblePlayerLoginEventHack] You have plugins listening to the PlayerLoginEvent, this will cause re-configuration APIs to be unavailable: [LuckPerms, BigDoors, BreweryX, DiscordSRV, SuperVanish, Essentials, Maintenance, Plan, NotQuests, ProtocolLib, WorldGuard]
[09:35:18] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[09:35:18] [Craft Scheduler Thread - 13 - Insights/INFO]: [Insights] Checking for updates...
[09:35:18] [Server thread/INFO]: [ChestProtect] [Integrations] Successfully integrated Vault economy into economy system. Name: DivinityEconomy
[09:35:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chestprotect [5.20.17]
[09:35:18] [Server thread/INFO]: [ChestProtect] [Integrations] Successfully integrated PlaceholderAPI into chat system.
[09:35:18] [Craft Scheduler Thread - 11 - ProAntiTab/INFO]: [PAT | Bukkit] There is a new version available! (1.9.4)
[09:35:18] [Craft Scheduler Thread - 11 - ProAntiTab/INFO]: [PAT | Bukkit] You are still using the 1.9.1.
[09:35:18] [Craft Scheduler Thread - 11 - ProAntiTab/INFO]: [PAT | Bukkit] Get the newest version here:
[09:35:18] [Craft Scheduler Thread - 11 - ProAntiTab/INFO]: [PAT | Bukkit] https://www.rayzs.de/products/proantitab/page
[09:35:18] [Craft Scheduler Thread - 13 - Insights/INFO]: [Insights] We are up-to-date!
[09:35:18] [Craft Scheduler Thread - 19 - DiscordBridge/INFO]: [net.dv8tion.jda.api.sharding.ShardManager] Login Successful!
[09:35:19] [JDA [0 / 1] MainWS-WriteThread/INFO]: [net.dv8tion.jda.internal.requests.WebSocketClient] Connected to WebSocket
[09:35:19] [Server thread/INFO]: [ChestShopNotifier] User joined. Checking for updates...
[09:35:19] [Server thread/WARN]: java.lang.NoSuchFieldException: channels
[09:35:19] [Server thread/WARN]:     at java.base/java.lang.Class.getDeclaredField(Class.java:2782)
[09:35:19] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getDeclaredField(AbstractDefaultRulesReflectionProxy.java:90)
[09:35:19] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getDeclaredField(Unknown Source)
[09:35:19] [Server thread/WARN]:     at ProAntiTab-1.9.1.jar//de.rayzs.pat.utils.Reflection.getFieldByName(Reflection.java:101)
[09:35:19] [Server thread/WARN]:     at ProAntiTab-1.9.1.jar//de.rayzs.pat.api.brand.impl.BukkitServerBrand.preparePlayer(BukkitServerBrand.java:85)
[09:35:19] [Server thread/WARN]:     at ProAntiTab-1.9.1.jar//de.rayzs.pat.api.brand.CustomServerBrand.preparePlayer(CustomServerBrand.java:15)
[09:35:19] [Server thread/WARN]:     at ProAntiTab-1.9.1.jar//de.rayzs.pat.plugin.listeners.bukkit.BukkitPlayerConnectionListener.onPlayerJoin(BukkitPlayerConnectionListener.java:29)
[09:35:19] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[09:35:19] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:71)
[09:35:19] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[09:35:19] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[09:35:19] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[09:35:19] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.placeNewPlayer(PlayerList.java:332)
[09:35:19] [Server thread/WARN]:     at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.handleConfigurationFinished(ServerConfigurationPacketListenerImpl.java:185)
[09:35:19] [Server thread/WARN]:     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:22)
[09:35:19] [Server thread/WARN]:     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:8)
[09:35:19] [Server thread/WARN]:     at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:29)
[09:35:19] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[09:35:19] [Server thread/WARN]:     at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:155)
[09:35:19] [Server thread/WARN]:     at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24)
[09:35:19] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1450)
[09:35:19] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:176)
[09:35:19] [Server thread/WARN]:     at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:129)
[09:35:19] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1430)
[09:35:19] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1424)
[09:35:19] [Server thread/WARN]:     at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:139)
[09:35:19] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1381)
[09:35:19] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1389)
[09:35:19] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1266)
[09:35:19] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[09:35:19] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[09:35:19] [Server thread/ERROR]: Could not pass event PlayerJoinEvent to Ultimate_BlockRegeneration v2.0.45
java.lang.NullPointerException: Cannot invoke "String.equals(Object)" because the return value of "org.hmmbo.ultimate_blockregeneration.utils.general.License_Manager.getStatus()" is null
    at Ultimate_BlockRegeneration-2.0.45 (2).jar/org.hmmbo.ultimate_blockregeneration.eventfunctions.events.BlockEvents.joinevent(BlockEvents.java:231) ~[Ultimate_BlockRegeneration-2.0.45 (2).jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-api-1.21.8-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:71) ~[paper-api-1.21.8-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.8.jar:1.21.8-60-29c8822]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.8.jar:1.21.8-60-29c8822]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-api-1.21.8-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.players.PlayerList.placeNewPlayer(PlayerList.java:332) ~[paper-1.21.8.jar:1.21.8-60-29c8822]
    at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.handleConfigurationFinished(ServerConfigurationPacketListenerImpl.java:185) ~[paper-1.21.8.jar:1.21.8-60-29c8822]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:22) ~[paper-1.21.8.jar:1.21.8-60-29c8822]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:8) ~[paper-1.21.8.jar:1.21.8-60-29c8822]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:29) ~[paper-1.21.8.jar:1.21.8-60-29c8822]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.8.jar:1.21.8-60-29c8822]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:155) ~[paper-1.21.8.jar:1.21.8-60-29c8822]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.8.jar:1.21.8-60-29c8822]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1450) ~[paper-1.21.8.jar:1.21.8-60-29c8822]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:176) ~[paper-1.21.8.jar:1.21.8-60-29c8822]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:129) ~[paper-1.21.8.jar:1.21.8-60-29c8822]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1430) ~[paper-1.21.8.jar:1.21.8-60-29c8822]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1424) ~[paper-1.21.8.jar:1.21.8-60-29c8822]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:139) ~[paper-1.21.8.jar:1.21.8-60-29c8822]
    at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1381) ~[paper-1.21.8.jar:1.21.8-60-29c8822]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1389) ~[paper-1.21.8.jar:1.21.8-60-29c8822]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1266) ~[paper-1.21.8.jar:1.21.8-60-29c8822]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.8.jar:1.21.8-60-29c8822]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[09:35:19] [Server thread/INFO]: [VotingPlugin] Login: broomestick (c051786e-4f1a-47a1-9654-2797c4559053)
[09:35:19] [Server thread/INFO]: broomestick[/51.9.229.82:42354] logged in with entity id 595 at ([world]-265.3043555760239, 82.0, 331.87762177355154)
[09:35:19] [Craft Scheduler Thread - 35 - NotQuests/INFO]: [NotQuests]: Loading PlayerData of player c051786e-4f1a-47a1-9654-2797c4559053...
[09:35:19] [Craft Scheduler Thread - 35 - NotQuests/INFO]: [NotQuests]: Loaded player with uuid c051786e-4f1a-47a1-9654-2797c4559053 (Profile: default) and questPoints: 10
[09:35:19] [Craft Scheduler Thread - 35 - NotQuests/INFO]: [NotQuests]: Loading tags for broomestick (Profile: default) ...
[09:35:19] [Craft Scheduler Thread - 35 - NotQuests/INFO]: [NotQuests]:   Loaded 0 tags for broomestick:
[09:35:19] [JDA [0 / 1] MainWS-ReadThread/INFO]: [net.dv8tion.jda.api.JDA] Finished Loading!
[09:35:19] [JDA [0 / 1] MainWS-ReadThread/INFO]: [DiscordBridge] Updating commands for shard. Guilds: 1
[09:35:19] [JDA [0 / 1] MainWS-ReadThread/INFO]: [DiscordBridge] Bot logged in successfully.
[09:35:19] [JDA [0 / 1] MainWS-ReadThread/INFO]: [DiscordBridge] Bot logged in.
[09:35:19] [Server thread/INFO]: [ChestShopNotifier] User joined. Checking for updates...
[09:35:19] [Server thread/WARN]: java.lang.NoSuchFieldException: channels
[09:35:19] [Server thread/WARN]:     at java.base/java.lang.Class.getDeclaredField(Class.java:2782)
[09:35:19] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getDeclaredField(AbstractDefaultRulesReflectionProxy.java:90)
[09:35:19] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getDeclaredField(Unknown Source)
[09:35:19] [Server thread/WARN]:     at ProAntiTab-1.9.1.jar//de.rayzs.pat.utils.Reflection.getFieldByName(Reflection.java:101)
[09:35:19] [Server thread/WARN]:     at ProAntiTab-1.9.1.jar//de.rayzs.pat.api.brand.impl.BukkitServerBrand.preparePlayer(BukkitServerBrand.java:85)
[09:35:19] [Server thread/WARN]:     at ProAntiTab-1.9.1.jar//de.rayzs.pat.api.brand.CustomServerBrand.preparePlayer(CustomServerBrand.java:15)
[09:35:19] [Server thread/WARN]:     at ProAntiTab-1.9.1.jar//de.rayzs.pat.plugin.listeners.bukkit.BukkitPlayerConnectionListener.onPlayerJoin(BukkitPlayerConnectionListener.java:29)
[09:35:19] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[09:35:19] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:71)
[09:35:19] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[09:35:19] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[09:35:19] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[09:35:19] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.placeNewPlayer(PlayerList.java:332)
[09:35:19] [Server thread/WARN]:     at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.handleConfigurationFinished(ServerConfigurationPacketListenerImpl.java:185)
[09:35:19] [Server thread/WARN]:     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:22)
[09:35:19] [Server thread/WARN]:     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:8)
[09:35:19] [Server thread/WARN]:     at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:29)
[09:35:19] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[09:35:19] [Server thread/WARN]:     at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:155)
[09:35:19] [Server thread/WARN]:     at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24)
[09:35:19] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1450)
[09:35:19] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:176)
[09:35:19] [Server thread/WARN]:     at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:129)
[09:35:19] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1430)
[09:35:19] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1424)
[09:35:19] [Server thread/WARN]:     at net.minecraft.util.thread.BlockableEventLoop.runAllTasks(BlockableEventLoop.java:118)
[09:35:19] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1385)
[09:35:19] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1266)
[09:35:19] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[09:35:19] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[09:35:19] [Server thread/INFO]: [VotingPlugin] Login: Capitalist_stick (a1b303b7-7cf7-4132-815d-bd51f1fe7ef4)
[09:35:19] [Server thread/INFO]: Capitalist_stick[/51.9.229.82:42344] logged in with entity id 594 at ([world]4143.242657968167, -30.0, 4962.862613997646)
[09:35:19] [Craft Scheduler Thread - 9 - NotQuests/INFO]: [NotQuests]: Loading PlayerData of player a1b303b7-7cf7-4132-815d-bd51f1fe7ef4...
[09:35:19] [Craft Scheduler Thread - 9 - NotQuests/INFO]: [NotQuests]: Loaded player with uuid a1b303b7-7cf7-4132-815d-bd51f1fe7ef4 (Profile: default) and questPoints: 0
[09:35:19] [Craft Scheduler Thread - 9 - NotQuests/INFO]: [NotQuests]: Loading tags for Capitalist_stick (Profile: default) ...
[09:35:19] [Craft Scheduler Thread - 9 - NotQuests/INFO]: [NotQuests]:   Loaded 0 tags for Capitalist_stick:
[09:35:19] [ForkJoinPool.commonPool-worker-3/INFO]: [DiscordBridge] Updated commands: lands, online, nations, config, account
[09:35:19] [Craft Scheduler Thread - 0 - ImageFrame/INFO]: [ImageFrame] Data loading completed! Loaded 36 ImageMaps!
[09:35:19] [Server thread/INFO]: [+] Netherite  Capitalist_stick
[09:35:20] [Craft Scheduler Thread - 22 - Ultimate_BlockRegeneration/WARN]: [Ultimate_BlockRegeneration] Connection to host failed
[09:35:20] [Craft Scheduler Thread - 22 - Ultimate_BlockRegeneration/INFO]: [Ultimate_BlockRegeneration] ==== License Manager ====
[09:35:20] [Craft Scheduler Thread - 22 - Ultimate_BlockRegeneration/INFO]: [Ultimate_BlockRegeneration] License status: NORMAL
[09:35:20] [Craft Scheduler Thread - 22 - Ultimate_BlockRegeneration/INFO]: [Ultimate_BlockRegeneration] Reason: Connection to host failed
[09:35:20] [Craft Scheduler Thread - 22 - Ultimate_BlockRegeneration/INFO]: [Ultimate_BlockRegeneration] ==========================
[09:35:20] [Craft Scheduler Thread - 41 - LiteBans/INFO]: [LiteBans] [Sync] Cached 462 offline users for tab completion in 106 ms. Memory used: 2515 bytes (reduced 52% from 5162 bytes)
[09:35:21] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[09:35:21] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[09:35:22] [ForkJoinPool.commonPool-worker-1/INFO]: [DiscordBridge] There is a new version available: 1.5.9
[09:35:22] [ForkJoinPool.commonPool-worker-3/INFO]: [Lands] You're using the latest version.
[09:35:22] [ForkJoinPool.commonPool-worker-4/INFO]: [ChestProtect] You're using the latest version.
[09:35:23] [Server thread/INFO]: broomestick issued server command: /v
[09:35:23] [ForkJoinPool.commonPool-worker-4/INFO]: [Lands] Saved 1 name changes to the database.
[09:35:24] [Craft Scheduler Thread - 11 - ChestShopNotifier/INFO]: [ChestShopNotifier] Found rows: 0
[09:35:24] [Craft Scheduler Thread - 11 - ChestShopNotifier/INFO]: [ChestShopNotifier] Done.
[09:35:24] [Craft Scheduler Thread - 29 - ChestShopNotifier/INFO]: [ChestShopNotifier] Found rows: 0
[09:35:24] [Craft Scheduler Thread - 29 - ChestShopNotifier/INFO]: [ChestShopNotifier] Done.
[09:35:24] [Craft Scheduler Thread - 14 - OpenAudioMc/INFO]: [OpenAudioMc] [info] Attempting to login to voice chat...
[09:35:24] [OaVoiceWorker/INFO]: [OpenAudioMc] [info] Voice chat connected!
[09:35:26] [Server thread/INFO]: broomestick lost connection: Disconnected
[09:35:26] [Server thread/INFO]: [-] [Game Mgr]  broomestick
[09:35:26] [Craft Scheduler Thread - 34 - NotQuests/INFO]: [NotQuests]: Saving PlayerData of player broomestick...
[09:35:26] [Craft Scheduler Thread - 34 - NotQuests/INFO]: [NotQuests]: PlayerData of player broomestick was saved (10 QuestPoints, Profile: default)
[09:35:26] [Craft Scheduler Thread - 23 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin has an update available! Your Version: 6.18.7 New Version: 6.19
[09:36:16] [Craft Scheduler Thread - 35 - DivinityEconomy/INFO]: [DivinityEconomy v3.5.6]> Invalid bank file: .yml. Skipping...
[09:36:38] [Server thread/INFO]: Capitalist_stick issued server command: /spawn
[09:37:05] [User Authenticator #2/INFO]: UUID of player broomestick is c051786e-4f1a-47a1-9654-2797c4559053
[09:37:06] [Server thread/INFO]: [ChestShopNotifier] User joined. Checking for updates...
[09:37:06] [Server thread/WARN]: java.lang.NoSuchFieldException: channels
[09:37:06] [Server thread/WARN]:     at java.base/java.lang.Class.getDeclaredField(Class.java:2782)
[09:37:06] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getDeclaredField(AbstractDefaultRulesReflectionProxy.java:90)
[09:37:06] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getDeclaredField(Unknown Source)
[09:37:06] [Server thread/WARN]:     at ProAntiTab-1.9.1.jar//de.rayzs.pat.utils.Reflection.getFieldByName(Reflection.java:101)
[09:37:06] [Server thread/WARN]:     at ProAntiTab-1.9.1.jar//de.rayzs.pat.api.brand.impl.BukkitServerBrand.preparePlayer(BukkitServerBrand.java:85)
[09:37:06] [Server thread/WARN]:     at ProAntiTab-1.9.1.jar//de.rayzs.pat.api.brand.CustomServerBrand.preparePlayer(CustomServerBrand.java:15)
[09:37:06] [Server thread/WARN]:     at ProAntiTab-1.9.1.jar//de.rayzs.pat.plugin.listeners.bukkit.BukkitPlayerConnectionListener.onPlayerJoin(BukkitPlayerConnectionListener.java:29)
[09:37:06] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[09:37:06] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:71)
[09:37:06] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[09:37:06] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[09:37:06] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[09:37:06] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.placeNewPlayer(PlayerList.java:332)
[09:37:06] [Server thread/WARN]:     at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.handleConfigurationFinished(ServerConfigurationPacketListenerImpl.java:185)
[09:37:06] [Server thread/WARN]:     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:22)
[09:37:06] [Server thread/WARN]:     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:8)
[09:37:06] [Server thread/WARN]:     at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:29)
[09:37:06] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[09:37:06] [Server thread/WARN]:     at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:155)
[09:37:06] [Server thread/WARN]:     at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24)
[09:37:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1450)
[09:37:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:176)
[09:37:06] [Server thread/WARN]:     at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:129)
[09:37:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1430)
[09:37:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1424)
[09:37:06] [Server thread/WARN]:     at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:139)
[09:37:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1381)
[09:37:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1389)
[09:37:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1266)
[09:37:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[09:37:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[09:37:06] [Server thread/INFO]: [VotingPlugin] Login: broomestick (c051786e-4f1a-47a1-9654-2797c4559053)
[09:37:06] [Server thread/INFO]: broomestick[/51.9.229.82:40634] logged in with entity id 3495 at ([world]-265.5136, 83.69999995231629, 326.4522)
[09:37:06] [Craft Scheduler Thread - 23 - NotQuests/INFO]: [NotQuests]: Loading PlayerData of player c051786e-4f1a-47a1-9654-2797c4559053...
[09:37:06] [Craft Scheduler Thread - 23 - NotQuests/INFO]: [NotQuests]: Loaded player with uuid c051786e-4f1a-47a1-9654-2797c4559053 (Profile: default) and questPoints: 10
[09:37:06] [Craft Scheduler Thread - 23 - NotQuests/INFO]: [NotQuests]: Loading tags for broomestick (Profile: default) ...
[09:37:06] [Craft Scheduler Thread - 23 - NotQuests/INFO]: [NotQuests]:   Loaded 0 tags for broomestick:
[09:37:08] [Server thread/INFO]: broomestick issued server command: /v
[09:37:10] [Craft Scheduler Thread - 9 - ChestShopNotifier/INFO]: [ChestShopNotifier] Found rows: 0
[09:37:10] [Craft Scheduler Thread - 9 - ChestShopNotifier/INFO]: [ChestShopNotifier] Done.
[09:37:12] [Server thread/WARN]: [SuperVanish] Could not intercept tab-completions using ProtocolLib: Field index 0 is out of bounds for length 0
[09:37:16] [Server thread/INFO]: broomestick issued server command: /citizens reload
[09:37:16] [Craft Scheduler Thread - 39 - DivinityEconomy/INFO]: [DivinityEconomy v3.5.6]> Invalid bank file: .yml. Skipping...
[09:37:17] [Server thread/INFO]: broomestick issued server command: /citizens reload
[09:37:17] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[09:37:17] [Server thread/INFO]: [NotQuests]: Processing Citizens Reload Event...
[09:37:17] [Server thread/INFO]: [NotQuests]: Registering Citizens nquestgiver trait...
[09:37:17] [Server thread/INFO]: [NotQuests]: Citizens nquestgiver trait has been registered!
[09:37:17] [Server thread/INFO]: [NotQuests]: Trying to bind Conversations to NPCs...
[09:37:17] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 7a020f15-bbf5-2847-8bc3-022a739e1399
[09:37:17] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances c303f2d8-5a36-2e9f-bfea-59ae20db79b0
[09:37:17] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances ebb8547b-2e74-2fd2-99aa-38ecf3ff11ca
[09:37:17] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 5cf59ecb-e1f8-24b0-85df-e43c325be677
[09:37:17] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 370c8451-3849-2235-85f5-cfa24fb1b593
[09:37:17] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 724c6a64-19c7-22ae-87d2-a9dbdf0b277a
[09:37:17] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances d43f03c0-06f3-2679-9ec3-cccc76f7ebee
[09:37:17] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 5d1356df-d048-2204-83a6-05f1c245c344
[09:37:17] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 3eb4cfb8-8bfb-2ab1-8c33-681419f8dd65
[09:37:17] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 44ef6cc9-6650-275b-bcde-c0e25c8f05ac
[09:37:17] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 2ba6ebf0-033e-2049-9f6d-fd7257b1a2a0
[09:37:17] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances cede4e53-80b3-2dd8-9400-a70e87291923
[09:37:17] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 8cca2627-4e29-2da7-9d29-ac980fc67fae
[09:37:24] [Server thread/INFO]: broomestick issued server command: /npc select
[09:37:31] [Server thread/INFO]: broomestick issued server command: /npc command remove server dungeons
[09:37:33] [Server thread/INFO]: broomestick lost connection: Disconnected
[09:37:33] [Server thread/INFO]: [-] [Game Mgr]  broomestick
[09:37:33] [Craft Scheduler Thread - 23 - NotQuests/INFO]: [NotQuests]: Saving PlayerData of player broomestick...
[09:37:33] [Craft Scheduler Thread - 23 - NotQuests/INFO]: [NotQuests]: PlayerData of player broomestick was saved (10 QuestPoints, Profile: default)
[09:37:38] [User Authenticator #2/INFO]: UUID of player broomestick is c051786e-4f1a-47a1-9654-2797c4559053
[09:37:39] [Server thread/INFO]: [ChestShopNotifier] User joined. Checking for updates...
[09:37:39] [Server thread/WARN]: java.lang.NoSuchFieldException: channels
[09:37:39] [Server thread/WARN]:     at java.base/java.lang.Class.getDeclaredField(Class.java:2782)
[09:37:39] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getDeclaredField(AbstractDefaultRulesReflectionProxy.java:90)
[09:37:39] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getDeclaredField(Unknown Source)
[09:37:39] [Server thread/WARN]:     at ProAntiTab-1.9.1.jar//de.rayzs.pat.utils.Reflection.getFieldByName(Reflection.java:101)
[09:37:39] [Server thread/WARN]:     at ProAntiTab-1.9.1.jar//de.rayzs.pat.api.brand.impl.BukkitServerBrand.preparePlayer(BukkitServerBrand.java:85)
[09:37:39] [Server thread/WARN]:     at ProAntiTab-1.9.1.jar//de.rayzs.pat.api.brand.CustomServerBrand.preparePlayer(CustomServerBrand.java:15)
[09:37:39] [Server thread/WARN]:     at ProAntiTab-1.9.1.jar//de.rayzs.pat.plugin.listeners.bukkit.BukkitPlayerConnectionListener.onPlayerJoin(BukkitPlayerConnectionListener.java:29)
[09:37:39] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[09:37:39] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:71)
[09:37:39] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[09:37:39] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[09:37:39] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[09:37:39] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.placeNewPlayer(PlayerList.java:332)
[09:37:39] [Server thread/WARN]:     at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.handleConfigurationFinished(ServerConfigurationPacketListenerImpl.java:185)
[09:37:39] [Server thread/WARN]:     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:22)
[09:37:39] [Server thread/WARN]:     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:8)
[09:37:39] [Server thread/WARN]:     at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:29)
[09:37:39] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[09:37:39] [Server thread/WARN]:     at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:155)
[09:37:39] [Server thread/WARN]:     at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24)
[09:37:39] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1450)
[09:37:39] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:176)
[09:37:39] [Server thread/WARN]:     at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:129)
[09:37:39] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1430)
[09:37:39] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1424)
[09:37:39] [Server thread/WARN]:     at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:139)
[09:37:39] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1381)
[09:37:39] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1389)
[09:37:39] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1266)
[09:37:39] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[09:37:39] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[09:37:39] [Server thread/INFO]: [VotingPlugin] Login: broomestick (c051786e-4f1a-47a1-9654-2797c4559053)
[09:37:39] [Server thread/INFO]: broomestick[/51.9.229.82:48824] logged in with entity id 3778 at ([world]-265.5136, 83.69999995231629, 326.4522)
[09:37:39] [Craft Scheduler Thread - 45 - NotQuests/INFO]: [NotQuests]: Loading PlayerData of player c051786e-4f1a-47a1-9654-2797c4559053...
[09:37:39] [Craft Scheduler Thread - 45 - NotQuests/INFO]: [NotQuests]: Loaded player with uuid c051786e-4f1a-47a1-9654-2797c4559053 (Profile: default) and questPoints: 10
[09:37:39] [Craft Scheduler Thread - 45 - NotQuests/INFO]: [NotQuests]: Loading tags for broomestick (Profile: default) ...
[09:37:39] [Craft Scheduler Thread - 45 - NotQuests/INFO]: [NotQuests]:   Loaded 0 tags for broomestick:
[09:37:43] [Server thread/INFO]: broomestick issued server command: /citizens reload
[09:37:44] [Craft Scheduler Thread - 23 - ChestShopNotifier/INFO]: [ChestShopNotifier] Found rows: 0
[09:37:44] [Craft Scheduler Thread - 23 - ChestShopNotifier/INFO]: [ChestShopNotifier] Done.
[09:37:45] [Server thread/INFO]: broomestick issued server command: /citizens reload
[09:37:45] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[09:37:45] [Server thread/INFO]: [NotQuests]: Processing Citizens Reload Event...
[09:37:45] [Server thread/INFO]: [NotQuests]: Registering Citizens nquestgiver trait...
[09:37:45] [Server thread/INFO]: [NotQuests]: Citizens nquestgiver trait has been registered!
[09:37:45] [Server thread/INFO]: [NotQuests]: Trying to bind Conversations to NPCs...
[09:37:45] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 7a020f15-bbf5-2847-8bc3-022a739e1399
[09:37:45] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances c303f2d8-5a36-2e9f-bfea-59ae20db79b0
[09:37:45] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances ebb8547b-2e74-2fd2-99aa-38ecf3ff11ca
[09:37:45] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 5cf59ecb-e1f8-24b0-85df-e43c325be677
[09:37:45] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 370c8451-3849-2235-85f5-cfa24fb1b593
[09:37:45] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 724c6a64-19c7-22ae-87d2-a9dbdf0b277a
[09:37:45] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances d43f03c0-06f3-2679-9ec3-cccc76f7ebee
[09:37:45] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 5d1356df-d048-2204-83a6-05f1c245c344
[09:37:45] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 3eb4cfb8-8bfb-2ab1-8c33-681419f8dd65
[09:37:45] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 44ef6cc9-6650-275b-bcde-c0e25c8f05ac
[09:37:45] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 2ba6ebf0-033e-2049-9f6d-fd7257b1a2a0
[09:37:45] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances cede4e53-80b3-2dd8-9400-a70e87291923
[09:37:45] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 8cca2627-4e29-2da7-9d29-ac980fc67fae
[09:37:51] [Server thread/INFO]: broomestick issued server command: /npc select
[09:37:54] [Craft Scheduler Thread - 34 - LiteBans/INFO]: [LiteBans] A plugin update is available! Your version: 2.18.0, latest version: 2.18.5
[09:37:54] [Craft Scheduler Thread - 34 - LiteBans/INFO]: [LiteBans] Updates can be downloaded from here:
[09:37:54] [Craft Scheduler Thread - 34 - LiteBans/INFO]: [LiteBans] https://www.spigotmc.org/resources/litebans.3715/
[09:38:00] [Server thread/INFO]: broomestick issued server command: /npc command remove
[09:38:02] [Server thread/INFO]: broomestick issued server command: /npc command remove all
[09:38:16] [Server thread/INFO]: broomestick issued server command: /npc command add -p server dungeons
[09:38:16] [Craft Scheduler Thread - 39 - DivinityEconomy/INFO]: [DivinityEconomy v3.5.6]> Invalid bank file: .yml. Skipping...
[09:38:17] [Server thread/INFO]: broomestick lost connection: Disconnected
[09:38:17] [Craft Scheduler Thread - 4 - NotQuests/INFO]: [NotQuests]: Saving PlayerData of player broomestick...
[09:38:17] [Craft Scheduler Thread - 4 - NotQuests/INFO]: [NotQuests]: PlayerData of player broomestick was saved (10 QuestPoints, Profile: default)
[09:38:24] [User Authenticator #2/INFO]: UUID of player broomestick is c051786e-4f1a-47a1-9654-2797c4559053
[09:38:24] [Server thread/INFO]: [ChestShopNotifier] User joined. Checking for updates...
[09:38:24] [Server thread/WARN]: java.lang.NoSuchFieldException: channels
[09:38:24] [Server thread/WARN]:     at java.base/java.lang.Class.getDeclaredField(Class.java:2782)
[09:38:24] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getDeclaredField(AbstractDefaultRulesReflectionProxy.java:90)
[09:38:24] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getDeclaredField(Unknown Source)
[09:38:24] [Server thread/WARN]:     at ProAntiTab-1.9.1.jar//de.rayzs.pat.utils.Reflection.getFieldByName(Reflection.java:101)
[09:38:24] [Server thread/WARN]:     at ProAntiTab-1.9.1.jar//de.rayzs.pat.api.brand.impl.BukkitServerBrand.preparePlayer(BukkitServerBrand.java:85)
[09:38:24] [Server thread/WARN]:     at ProAntiTab-1.9.1.jar//de.rayzs.pat.api.brand.CustomServerBrand.preparePlayer(CustomServerBrand.java:15)
[09:38:24] [Server thread/WARN]:     at ProAntiTab-1.9.1.jar//de.rayzs.pat.plugin.listeners.bukkit.BukkitPlayerConnectionListener.onPlayerJoin(BukkitPlayerConnectionListener.java:29)
[09:38:24] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[09:38:24] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:71)
[09:38:24] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[09:38:24] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[09:38:24] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[09:38:24] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.placeNewPlayer(PlayerList.java:332)
[09:38:24] [Server thread/WARN]:     at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.handleConfigurationFinished(ServerConfigurationPacketListenerImpl.java:185)
[09:38:24] [Server thread/WARN]:     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:22)
[09:38:24] [Server thread/WARN]:     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:8)
[09:38:24] [Server thread/WARN]:     at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:29)
[09:38:24] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[09:38:24] [Server thread/WARN]:     at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:155)
[09:38:24] [Server thread/WARN]:     at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24)
[09:38:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1450)
[09:38:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:176)
[09:38:24] [Server thread/WARN]:     at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:129)
[09:38:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1430)
[09:38:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1424)
[09:38:24] [Server thread/WARN]:     at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:139)
[09:38:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1381)
[09:38:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1389)
[09:38:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1266)
[09:38:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[09:38:24] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[09:38:24] [Server thread/INFO]: [VotingPlugin] Login: broomestick (c051786e-4f1a-47a1-9654-2797c4559053)
[09:38:24] [Server thread/INFO]: broomestick[/51.9.229.82:56070] logged in with entity id 4286 at ([world]-265.5136, 83.69999995231629, 326.4522)
[09:38:24] [Craft Scheduler Thread - 48 - NotQuests/INFO]: [NotQuests]: Loading PlayerData of player c051786e-4f1a-47a1-9654-2797c4559053...
[09:38:24] [Craft Scheduler Thread - 48 - NotQuests/INFO]: [NotQuests]: Loaded player with uuid c051786e-4f1a-47a1-9654-2797c4559053 (Profile: default) and questPoints: 10
[09:38:24] [Craft Scheduler Thread - 48 - NotQuests/INFO]: [NotQuests]: Loading tags for broomestick (Profile: default) ...
[09:38:24] [Craft Scheduler Thread - 48 - NotQuests/INFO]: [NotQuests]:   Loaded 0 tags for broomestick:
[09:38:29] [Craft Scheduler Thread - 49 - ChestShopNotifier/INFO]: [ChestShopNotifier] Found rows: 0
[09:38:29] [Craft Scheduler Thread - 49 - ChestShopNotifier/INFO]: [ChestShopNotifier] Done.
[09:38:31] [Server thread/INFO]: broomestick issued server command: /citizens reload
[09:38:32] [Server thread/INFO]: broomestick issued server command: /citizens reload
[09:38:32] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[09:38:32] [Server thread/INFO]: [NotQuests]: Processing Citizens Reload Event...
[09:38:32] [Server thread/INFO]: [NotQuests]: Registering Citizens nquestgiver trait...
[09:38:32] [Server thread/INFO]: [NotQuests]: Citizens nquestgiver trait has been registered!
[09:38:32] [Server thread/INFO]: [NotQuests]: Trying to bind Conversations to NPCs...
[09:38:32] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 7a020f15-bbf5-2847-8bc3-022a739e1399
[09:38:32] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances c303f2d8-5a36-2e9f-bfea-59ae20db79b0
[09:38:32] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances ebb8547b-2e74-2fd2-99aa-38ecf3ff11ca
[09:38:32] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 5cf59ecb-e1f8-24b0-85df-e43c325be677
[09:38:32] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 370c8451-3849-2235-85f5-cfa24fb1b593
[09:38:32] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 724c6a64-19c7-22ae-87d2-a9dbdf0b277a
[09:38:32] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances d43f03c0-06f3-2679-9ec3-cccc76f7ebee
[09:38:32] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 5d1356df-d048-2204-83a6-05f1c245c344
[09:38:32] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 3eb4cfb8-8bfb-2ab1-8c33-681419f8dd65
[09:38:32] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 44ef6cc9-6650-275b-bcde-c0e25c8f05ac
[09:38:32] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 2ba6ebf0-033e-2049-9f6d-fd7257b1a2a0
[09:38:32] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances cede4e53-80b3-2dd8-9400-a70e87291923
[09:38:32] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 8cca2627-4e29-2da7-9d29-ac980fc67fae
[09:39:12] [Server thread/INFO]: broomestick issued server command: /npc command remove all
[09:39:16] [Craft Scheduler Thread - 45 - DivinityEconomy/INFO]: [DivinityEconomy v3.5.6]> Invalid bank file: .yml. Skipping...
[09:39:57] [Server thread/INFO]: broomestick issued server command: /npc select
[09:40:16] [Craft Scheduler Thread - 54 - DivinityEconomy/INFO]: [DivinityEconomy v3.5.6]> Invalid bank file: .yml. Skipping...
[09:40:17] [Server thread/INFO]: broomestick issued server command: /npc command add -p server dungeons
[09:40:18] [Server thread/INFO]: broomestick lost connection: Disconnected
[09:40:18] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Saving PlayerData of player broomestick...
[09:40:18] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: PlayerData of player broomestick was saved (10 QuestPoints, Profile: default)
[09:40:22] [User Authenticator #3/INFO]: UUID of player broomestick is c051786e-4f1a-47a1-9654-2797c4559053
[09:40:22] [Server thread/INFO]: [ChestShopNotifier] User joined. Checking for updates...
[09:40:22] [Server thread/WARN]: java.lang.NoSuchFieldException: channels
[09:40:22] [Server thread/WARN]:     at java.base/java.lang.Class.getDeclaredField(Class.java:2782)
[09:40:22] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getDeclaredField(AbstractDefaultRulesReflectionProxy.java:90)
[09:40:22] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getDeclaredField(Unknown Source)
[09:40:22] [Server thread/WARN]:     at ProAntiTab-1.9.1.jar//de.rayzs.pat.utils.Reflection.getFieldByName(Reflection.java:101)
[09:40:22] [Server thread/WARN]:     at ProAntiTab-1.9.1.jar//de.rayzs.pat.api.brand.impl.BukkitServerBrand.preparePlayer(BukkitServerBrand.java:85)
[09:40:22] [Server thread/WARN]:     at ProAntiTab-1.9.1.jar//de.rayzs.pat.api.brand.CustomServerBrand.preparePlayer(CustomServerBrand.java:15)
[09:40:22] [Server thread/WARN]:     at ProAntiTab-1.9.1.jar//de.rayzs.pat.plugin.listeners.bukkit.BukkitPlayerConnectionListener.onPlayerJoin(BukkitPlayerConnectionListener.java:29)
[09:40:22] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[09:40:22] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:71)
[09:40:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[09:40:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[09:40:22] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[09:40:22] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.placeNewPlayer(PlayerList.java:332)
[09:40:22] [Server thread/WARN]:     at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.handleConfigurationFinished(ServerConfigurationPacketListenerImpl.java:185)
[09:40:22] [Server thread/WARN]:     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:22)
[09:40:22] [Server thread/WARN]:     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:8)
[09:40:22] [Server thread/WARN]:     at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:29)
[09:40:22] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[09:40:22] [Server thread/WARN]:     at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:155)
[09:40:22] [Server thread/WARN]:     at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24)
[09:40:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1450)
[09:40:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:176)
[09:40:22] [Server thread/WARN]:     at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:129)
[09:40:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1430)
[09:40:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1424)
[09:40:22] [Server thread/WARN]:     at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:139)
[09:40:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1381)
[09:40:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1389)
[09:40:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1266)
[09:40:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[09:40:22] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[09:40:22] [Server thread/INFO]: [VotingPlugin] Login: broomestick (c051786e-4f1a-47a1-9654-2797c4559053)
[09:40:22] [Server thread/INFO]: broomestick[/51.9.229.82:44316] logged in with entity id 5199 at ([world]-265.5136, 83.69999995231629, 326.4522)
[09:40:22] [Craft Scheduler Thread - 39 - NotQuests/INFO]: [NotQuests]: Loading PlayerData of player c051786e-4f1a-47a1-9654-2797c4559053...
[09:40:22] [Craft Scheduler Thread - 39 - NotQuests/INFO]: [NotQuests]: Loaded player with uuid c051786e-4f1a-47a1-9654-2797c4559053 (Profile: default) and questPoints: 10
[09:40:22] [Craft Scheduler Thread - 39 - NotQuests/INFO]: [NotQuests]: Loading tags for broomestick (Profile: default) ...
[09:40:22] [Craft Scheduler Thread - 39 - NotQuests/INFO]: [NotQuests]:   Loaded 0 tags for broomestick:
[09:40:25] [Server thread/INFO]: broomestick issued server command: /v
[09:40:27] [Craft Scheduler Thread - 41 - ChestShopNotifier/INFO]: [ChestShopNotifier] Found rows: 0
[09:40:27] [Craft Scheduler Thread - 41 - ChestShopNotifier/INFO]: [ChestShopNotifier] Done.
[09:40:30] [Server thread/INFO]: broomestick issued server command: /citizens reload
[09:40:31] [Server thread/INFO]: broomestick issued server command: /citizens reload
[09:40:31] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[09:40:31] [Server thread/INFO]: [NotQuests]: Processing Citizens Reload Event...
[09:40:31] [Server thread/INFO]: [NotQuests]: Registering Citizens nquestgiver trait...
[09:40:31] [Server thread/INFO]: [NotQuests]: Citizens nquestgiver trait has been registered!
[09:40:31] [Server thread/INFO]: [NotQuests]: Trying to bind Conversations to NPCs...
[09:40:31] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 7a020f15-bbf5-2847-8bc3-022a739e1399
[09:40:31] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances c303f2d8-5a36-2e9f-bfea-59ae20db79b0
[09:40:31] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances ebb8547b-2e74-2fd2-99aa-38ecf3ff11ca
[09:40:31] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 5cf59ecb-e1f8-24b0-85df-e43c325be677
[09:40:31] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 370c8451-3849-2235-85f5-cfa24fb1b593
[09:40:31] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 724c6a64-19c7-22ae-87d2-a9dbdf0b277a
[09:40:31] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances d43f03c0-06f3-2679-9ec3-cccc76f7ebee
[09:40:31] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 5d1356df-d048-2204-83a6-05f1c245c344
[09:40:31] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 3eb4cfb8-8bfb-2ab1-8c33-681419f8dd65
[09:40:31] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 44ef6cc9-6650-275b-bcde-c0e25c8f05ac
[09:40:31] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 2ba6ebf0-033e-2049-9f6d-fd7257b1a2a0
[09:40:31] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances cede4e53-80b3-2dd8-9400-a70e87291923
[09:40:31] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 8cca2627-4e29-2da7-9d29-ac980fc67fae
[09:41:16] [Craft Scheduler Thread - 23 - DivinityEconomy/INFO]: [DivinityEconomy v3.5.6]> Invalid bank file: .yml. Skipping...
[09:42:16] [Craft Scheduler Thread - 15 - DivinityEconomy/INFO]: [DivinityEconomy v3.5.6]> Invalid bank file: .yml. Skipping...
[09:43:09] [Server thread/INFO]: broomestick issued server command: /npc list
[09:43:16] [Craft Scheduler Thread - 58 - DivinityEconomy/INFO]: [DivinityEconomy v3.5.6]> Invalid bank file: .yml. Skipping...
[09:43:17] [Server thread/INFO]: broomestick issued server command: /npc despawn
[09:43:26] [Server thread/INFO]: broomestick issued server command: /npc create dungeons
[09:43:34] [Server thread/INFO]: broomestick issued server command: /npc command add -p server dungeons
[09:43:35] [Server thread/INFO]: broomestick lost connection: Disconnected
[09:43:35] [Server thread/INFO]: [-] [Game Mgr]  broomestick
[09:43:35] [Craft Scheduler Thread - 34 - NotQuests/INFO]: [NotQuests]: Saving PlayerData of player broomestick...
[09:43:35] [Craft Scheduler Thread - 34 - NotQuests/INFO]: [NotQuests]: PlayerData of player broomestick was saved (10 QuestPoints, Profile: default)
[09:43:52] [User Authenticator #4/INFO]: UUID of player broomestick is c051786e-4f1a-47a1-9654-2797c4559053
[09:43:52] [Server thread/INFO]: [ChestShopNotifier] User joined. Checking for updates...
[09:43:52] [Server thread/WARN]: java.lang.NoSuchFieldException: channels
[09:43:52] [Server thread/WARN]:     at java.base/java.lang.Class.getDeclaredField(Class.java:2782)
[09:43:52] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getDeclaredField(AbstractDefaultRulesReflectionProxy.java:90)
[09:43:52] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getDeclaredField(Unknown Source)
[09:43:52] [Server thread/WARN]:     at ProAntiTab-1.9.1.jar//de.rayzs.pat.utils.Reflection.getFieldByName(Reflection.java:101)
[09:43:52] [Server thread/WARN]:     at ProAntiTab-1.9.1.jar//de.rayzs.pat.api.brand.impl.BukkitServerBrand.preparePlayer(BukkitServerBrand.java:85)
[09:43:52] [Server thread/WARN]:     at ProAntiTab-1.9.1.jar//de.rayzs.pat.api.brand.CustomServerBrand.preparePlayer(CustomServerBrand.java:15)
[09:43:52] [Server thread/WARN]:     at ProAntiTab-1.9.1.jar//de.rayzs.pat.plugin.listeners.bukkit.BukkitPlayerConnectionListener.onPlayerJoin(BukkitPlayerConnectionListener.java:29)
[09:43:52] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[09:43:52] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:71)
[09:43:52] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[09:43:52] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[09:43:52] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[09:43:52] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.placeNewPlayer(PlayerList.java:332)
[09:43:52] [Server thread/WARN]:     at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.handleConfigurationFinished(ServerConfigurationPacketListenerImpl.java:185)
[09:43:52] [Server thread/WARN]:     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:22)
[09:43:52] [Server thread/WARN]:     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:8)
[09:43:52] [Server thread/WARN]:     at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:29)
[09:43:52] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[09:43:52] [Server thread/WARN]:     at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:155)
[09:43:52] [Server thread/WARN]:     at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24)
[09:43:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1450)
[09:43:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:176)
[09:43:52] [Server thread/WARN]:     at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:129)
[09:43:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1430)
[09:43:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1424)
[09:43:52] [Server thread/WARN]:     at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:139)
[09:43:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1381)
[09:43:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1389)
[09:43:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1266)
[09:43:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[09:43:52] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[09:43:52] [Server thread/INFO]: [VotingPlugin] Login: broomestick (c051786e-4f1a-47a1-9654-2797c4559053)
[09:43:52] [Server thread/INFO]: broomestick[/51.9.229.82:38918] logged in with entity id 6836 at ([world]-265.6640764960511, 83.69999995231629, 326.7066279943558)
[09:43:52] [Craft Scheduler Thread - 52 - NotQuests/INFO]: [NotQuests]: Loading PlayerData of player c051786e-4f1a-47a1-9654-2797c4559053...
[09:43:52] [Craft Scheduler Thread - 52 - NotQuests/INFO]: [NotQuests]: Loaded player with uuid c051786e-4f1a-47a1-9654-2797c4559053 (Profile: default) and questPoints: 10
[09:43:52] [Craft Scheduler Thread - 52 - NotQuests/INFO]: [NotQuests]: Loading tags for broomestick (Profile: default) ...
[09:43:52] [Craft Scheduler Thread - 52 - NotQuests/INFO]: [NotQuests]:   Loaded 0 tags for broomestick:
[09:43:56] [Server thread/INFO]: broomestick issued server command: /npc rel
[09:43:57] [Craft Scheduler Thread - 45 - ChestShopNotifier/INFO]: [ChestShopNotifier] Found rows: 0
[09:43:57] [Craft Scheduler Thread - 45 - ChestShopNotifier/INFO]: [ChestShopNotifier] Done.
[09:44:00] [Server thread/INFO]: broomestick issued server command: /citizens reload
[09:44:01] [Server thread/INFO]: broomestick issued server command: /citizens reload
[09:44:01] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[09:44:01] [Server thread/INFO]: [NotQuests]: Processing Citizens Reload Event...
[09:44:01] [Server thread/INFO]: [NotQuests]: Registering Citizens nquestgiver trait...
[09:44:01] [Server thread/INFO]: [NotQuests]: Citizens nquestgiver trait has been registered!
[09:44:01] [Server thread/INFO]: [NotQuests]: Trying to bind Conversations to NPCs...
[09:44:01] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 7a020f15-bbf5-2847-8bc3-022a739e1399
[09:44:01] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances c303f2d8-5a36-2e9f-bfea-59ae20db79b0
[09:44:01] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances ebb8547b-2e74-2fd2-99aa-38ecf3ff11ca
[09:44:01] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 5cf59ecb-e1f8-24b0-85df-e43c325be677
[09:44:01] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 370c8451-3849-2235-85f5-cfa24fb1b593
[09:44:01] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 724c6a64-19c7-22ae-87d2-a9dbdf0b277a
[09:44:01] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances d43f03c0-06f3-2679-9ec3-cccc76f7ebee
[09:44:01] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 5d1356df-d048-2204-83a6-05f1c245c344
[09:44:01] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 3eb4cfb8-8bfb-2ab1-8c33-681419f8dd65
[09:44:01] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 44ef6cc9-6650-275b-bcde-c0e25c8f05ac
[09:44:01] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 2ba6ebf0-033e-2049-9f6d-fd7257b1a2a0
[09:44:01] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 8cca2627-4e29-2da7-9d29-ac980fc67fae
[09:44:16] [Craft Scheduler Thread - 45 - DivinityEconomy/INFO]: [DivinityEconomy v3.5.6]> Invalid bank file: .yml. Skipping...
[09:45:16] [Craft Scheduler Thread - 52 - DivinityEconomy/INFO]: [DivinityEconomy v3.5.6]> Invalid bank file: .yml. Skipping...
[09:45:24] [EventThread/INFO]: [OpenAudioMc] [info] The server closed the primary connection, but we were already aware of this. Ignoring.
[09:46:16] [Craft Scheduler Thread - 70 - DivinityEconomy/INFO]: [DivinityEconomy v3.5.6]> Invalid bank file: .yml. Skipping...