Paste #103580: DenizenMetaBot Auto-Repaste Of log From Hydra Melody

Date: 2022/12/01 11:28:02 UTC-08:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[06:54:39] [ServerMain/INFO]: Building unoptimized datafixer
[06:54:40] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[06:54:42] [ServerMain/INFO]: Loaded 7 recipes
[06:54:43] [Server thread/INFO]: Starting minecraft server version 1.19.2
[06:54:43] [Server thread/INFO]: Loading properties
[06:54:43] [Server thread/INFO]: This server is running Paper version git-Paper-300 (MC: 1.19.2) (Implementing API version 1.19.2-R0.1-SNAPSHOT) (Git: 54daefa)
[06:54:43] [Server thread/INFO]: Server Ping Player Sample Count: 12
[06:54:43] [Server thread/INFO]: Using 4 threads for Netty based IO
[06:54:43] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 8 worker threads, and gen parallelism of 8 threads
[06:54:44] [Server thread/INFO]: Default game type: SURVIVAL
[06:54:44] [Server thread/INFO]: Generating keypair
[06:54:44] [Server thread/INFO]: Starting Minecraft server on 162.33.19.122:25565
[06:54:44] [Server thread/INFO]: Using epoll channel type
[06:54:44] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[06:54:44] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[06:54:45] [Server thread/ERROR]: [STDERR] [org.bukkit.craftbukkit.v1_19_R1.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[06:54:49] [Server thread/WARN]: Legacy plugin SimpleTrash v1.0 does not specify an api-version.
[06:54:49] [Server thread/WARN]: Legacy plugin Broadcast v1.7 does not specify an api-version.
[06:54:49] [Server thread/WARN]: Legacy plugin SimpleTpa v6.1 does not specify an api-version.
[06:54:49] [Server thread/WARN]: Legacy plugin ObsidianBreaker v2.1 does not specify an api-version.
[06:54:49] [Server thread/WARN]: Legacy plugin PermissionsEx v1.23.4 does not specify an api-version.
[06:54:49] [Server thread/WARN]: Legacy plugin LegacyKB v2.0.2 does not specify an api-version.
[06:54:50] [Server thread/INFO]: [LiteEco] Loading 2 libraries... please wait
[06:54:50] [Server thread/INFO]: [LiteEco] Loaded library /home/mch/multicraft/servers/server153724/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[06:54:50] [Server thread/INFO]: [LiteEco] Loaded library /home/mch/multicraft/servers/server153724/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[06:54:50] [Server thread/INFO]: [LiteEco] Loaded library /home/mch/multicraft/servers/server153724/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.7.20/kotlin-stdlib-jdk8-1.7.20.jar
[06:54:50] [Server thread/INFO]: [LiteEco] Loaded library /home/mch/multicraft/servers/server153724/libraries/org/jetbrains/kotlin/kotlin-stdlib/1.7.20/kotlin-stdlib-1.7.20.jar
[06:54:50] [Server thread/INFO]: [LiteEco] Loaded library /home/mch/multicraft/servers/server153724/libraries/org/jetbrains/kotlin/kotlin-stdlib-common/1.7.20/kotlin-stdlib-common-1.7.20.jar
[06:54:50] [Server thread/INFO]: [LiteEco] Loaded library /home/mch/multicraft/servers/server153724/libraries/org/jetbrains/annotations/13.0/annotations-13.0.jar
[06:54:50] [Server thread/INFO]: [LiteEco] Loaded library /home/mch/multicraft/servers/server153724/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.7.20/kotlin-stdlib-jdk7-1.7.20.jar
[06:54:50] [Server thread/WARN]: Legacy plugin EasyClearChat v3.7.0 does not specify an api-version.
[06:54:50] [Server thread/WARN]: Legacy plugin EssentialsChat vTeamCity does not specify an api-version.
[06:54:50] [Server thread/WARN]: Legacy plugin SmashHit v1.0-RC2 does not specify an api-version.
[06:54:50] [Server thread/INFO]: [StackMob] Loading 1 libraries... please wait
[06:54:50] [Server thread/INFO]: [StackMob] Loaded library /home/mch/multicraft/servers/server153724/libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
[06:54:50] [Server thread/INFO]: [VotingPlugin] Loading 1 libraries... please wait
[06:54:50] [Server thread/INFO]: [VotingPlugin] Loaded library /home/mch/multicraft/servers/server153724/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[06:54:50] [Server thread/INFO]: [VotingPlugin] Loaded library /home/mch/multicraft/servers/server153724/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[06:54:50] [Server thread/INFO]: [VotingPlugin] Loaded library /home/mch/multicraft/servers/server153724/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[06:54:50] [Server thread/INFO]: [VotingPlugin] Loaded library /home/mch/multicraft/servers/server153724/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[06:54:50] [Server thread/INFO]: [VotingPlugin] Loaded library /home/mch/multicraft/servers/server153724/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[06:54:50] [Server thread/INFO]: [VotingPlugin] Loaded library /home/mch/multicraft/servers/server153724/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[06:54:50] [Server thread/INFO]: [TubeTils] Loading TubeTils v1.0.5
[06:54:50] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.11.2
[06:54:50] [Server thread/INFO]: [SimpleGeyserVL] Loading SimpleGeyserVL v1.1b
[06:54:50] [Server thread/INFO]: [NametagEdit] Loading NametagEdit v4.5.11
[06:54:50] [Server thread/INFO]: [NoteBlockAPI] Loading NoteBlockAPI v1.6.1-SNAPSHOT
[06:54:50] [Server thread/INFO]: [NoEncryption] Loading NoEncryption v4.3
[06:54:50] [Server thread/INFO]: [SimpleTrash] Loading SimpleTrash v1.0
[06:54:50] [Server thread/INFO]: [BisectHosting] Loading BisectHosting v1.0.4
[06:54:50] [Server thread/INFO]: [VoidGen] Loading VoidGen v2.2.1
[06:54:50] [Server thread/INFO]: [PVPControl] Loading PVPControl v1.4.2
[06:54:50] [Server thread/INFO]: [AutoSmelt] Loading AutoSmelt v1.9.1
[06:54:50] [Server thread/INFO]: [Broadcast] Loading Broadcast v1.7
[06:54:50] [Server thread/INFO]: [SetSpawn] Loading SetSpawn v4.0
[06:54:50] [Server thread/INFO]: [BuycraftX] Loading BuycraftX v12.0.8
[06:54:50] [Server thread/INFO]: [Votifier] Loading Votifier v2.7.3
[06:54:50] [Server thread/INFO]: [GroundItems] Loading GroundItems v1.0
[06:54:50] [Server thread/INFO]: [LaggRemover] Loading LaggRemover v2.0.6
[06:54:50] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v5.0.0-SNAPSHOT-b569
[06:54:50] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.19.2) has not yet been tested! Proceed with caution.
[06:54:52] [Server thread/INFO]: [VoidSpawn] Loading VoidSpawn v1.20.0
[06:54:52] [Server thread/INFO]: [SimpleTpa] Loading SimpleTpa v6.1
[06:54:52] [Server thread/INFO]: [ServerListMotdSpigot] Loading ServerListMotdSpigot v1.2.5
[06:54:52] [Server thread/INFO]: [ObsidianBreaker] Loading ObsidianBreaker v2.1
[06:54:52] [Server thread/INFO]: [PermissionsEx] Loading PermissionsEx v1.23.4
[06:54:52] [Server thread/INFO]: [LegacyKB] Loading LegacyKB v2.0.2
[06:54:52] [Server thread/INFO]: [EzHomes] Loading EzHomes v1.7.2
[06:54:52] [Server thread/INFO]: [Enterprise] Loading Enterprise v1.7
[06:54:52] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[06:54:52] [Server thread/INFO]: [LiteEco] Loading LiteEco v1.1.5-SNAPSHOT
[06:54:52] [Server thread/INFO]: [LiteEco] Configuration database.db exist !
[06:54:52] [Server thread/INFO]: [LiteEco] Configuration config.yml exist !
[06:54:52] [Server thread/INFO]: [floodgate] Loading floodgate v2.2.0-SNAPSHOT (b70-6e2c19f)
[06:54:52] [Server thread/INFO]: [floodgate] Took 521ms to boot Floodgate
[06:54:52] [Server thread/INFO]: [EasyClearChat] Loading EasyClearChat v3.7.0
[06:54:52] [Server thread/INFO]: [AntiCooldown] Loading AntiCooldown v4.0.3
[06:54:52] [Server thread/INFO]: [CommandDoesNotExist] Loading CommandDoesNotExist v4.2.1
[06:54:52] [Server thread/INFO]: [AuctionHouse] Loading AuctionHouse v3.3.1
[06:54:52] [Server thread/INFO]: [ChatItem] Loading ChatItem v2.4.5
[06:54:52] [Server thread/INFO]: [Orebfuscator] Loading Orebfuscator v5.3.1
[06:54:52] [Server thread/INFO]: [PlayerVaults] Loading PlayerVaults v4.2.9
[06:54:52] [Server thread/INFO]: [Geyser-Spigot] Loading Geyser-Spigot v2.1.0-SNAPSHOT
[06:54:53] [Server thread/INFO]: [Geyser-Spigot] Loading extensions...
[06:54:53] [Server thread/INFO]: [Geyser-Spigot] Loaded 0 extension(s)
[06:54:53] [Server thread/INFO]: [NexEngine] Loading NexEngine v2.2.0 build-18/06/2022
[06:54:53] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.2.12+6240-87f4ae1
[06:54:54] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@48596ce6]
[06:54:54] [Server thread/INFO]: [PlayerKits] Loading PlayerKits v2.24.2
[06:54:54] [Server thread/INFO]: [DecentHolograms] Loading DecentHolograms v2.7.5
[06:54:54] [Server thread/INFO]: [Essentials] Loading Essentials v2.19.7
[06:54:54] [Server thread/INFO]: [AdvancedBan] Loading AdvancedBan v2.3.0
[06:54:54] [Server thread/INFO]: [SilkSpawners] Loading SilkSpawners v2.1.8
[06:54:54] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.3.1-b861
[06:54:54] [Server thread/INFO]: [TradeSystem] Loading TradeSystem v2.1.3
[06:54:54] [Server thread/INFO]: [ajLeaderboards] Loading ajLeaderboards v2.6.2
[06:54:54] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[gson]
[06:54:54] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, gson]
[06:54:54] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[jar-relocator]
[06:54:54] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, jar-relocator]
[06:54:54] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[asm]
[06:54:54] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, asm]
[06:54:54] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[asm-commons]
[06:54:54] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, asm-commons]
[06:54:54] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[gson]
[06:54:54] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, gson]
[06:54:54] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[HikariCP]
[06:54:54] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, HikariCP]
[06:54:54] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[slf4j-api]
[06:54:54] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, slf4j-api]
[06:54:54] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[h2]
[06:54:54] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, h2]
[06:54:54] [Server thread/INFO]: [EssentialsChat] Loading EssentialsChat vTeamCity
[06:54:54] [Server thread/INFO]: [NFCNotes] Loading NFCNotes v2.3.0
[06:54:54] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.7+216b061
[06:54:54] [Server thread/INFO]: [SmashHit] Loading SmashHit v1.0-RC2
[06:54:54] [Server thread/INFO]: [Factions] Loading Factions v1.6.9.5-U0.6.19-b304
[06:54:54] [Server thread/INFO]: [Factions] Registered flag 'fuuid-claim' with WorldGuard.
[06:54:54] [Server thread/INFO]: [Factions] Registered flag 'fuuid-pvp' with WorldGuard.
[06:54:54] [Server thread/INFO]: [Factions] Registered flag 'fuuid-noloss' with WorldGuard.
[06:54:54] [Server thread/INFO]: [Images] Loading Images v2.2.7
[06:54:54] [Server thread/INFO]: [DeathMessages] Loading DeathMessages v1.4.15
[06:54:54] [Server thread/INFO]: [Negativity] Loading Negativity v1.12.3
[06:54:54] [Server thread/INFO]: [BetterRTP] Loading BetterRTP v3.6.1
[06:54:54] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.30-SNAPSHOT (build 2665)
[06:54:54] [Server thread/INFO]: [ExcellentCrates] Loading ExcellentCrates v4.0.5
[06:54:54] [Server thread/INFO]: [mcMMO] Loading mcMMO v2.1.218-SNAPSHOT
[06:54:54] [Server thread/INFO]: [mcMMO] Registered WG flags successfully!
[06:54:54] [Server thread/INFO]: [SuperVanish] Loading SuperVanish v6.2.12
[06:54:54] [Server thread/INFO]: [StackMob] Loading StackMob v5.8.4
[06:54:54] [Server thread/INFO]: [StackMob] Registered WorldGuard region flag.
[06:54:54] [Server thread/INFO]: [TabList] Loading TabList v5.6.3
[06:54:54] [Server thread/INFO]: [CitizensGUI] Loading CitizensGUI v1.11
[06:54:54] [Server thread/INFO]: [SimpleScore] Loading SimpleScore v3.12.2
[06:54:54] [Server thread/INFO]: [CustomJoinMessages] Loading CustomJoinMessages v17.0.0
[06:54:54] [Server thread/INFO]: [VotingPlugin] Loading VotingPlugin v6.9.5
[06:54:54] [Server thread/INFO]: [ShopGUIPlus] Loading ShopGUIPlus v1.77.4
[06:54:54] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[06:54:54] [Server thread/INFO]: [TubeTils] Enabling TubeTils v1.0.5
[06:54:54] [Server thread/INFO]: [TubeTils] The Plugin will be activated ...
[06:54:54] [Server thread/INFO]: [TubeTils] Set Instances ...
[06:54:54] [Server thread/INFO]: [TubeTils] Setting Instances done!
[06:54:54] [Server thread/INFO]: [TubeTils] The plugin was successfully activated!
[06:54:54] [Server thread/INFO]: [VoidGen] Enabling VoidGen v2.2.1
[06:54:54] [Server thread/INFO]: [VoidGen] Using VoidChunkGen: VERSION_UNKNOWN
[06:54:54] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0-SNAPSHOT-b569
[06:54:54] [Server thread/INFO]: [ProtocolLib] Started structure compiler thread.
[06:54:54] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[06:54:54] [Server thread/WARN]: [Vault] Loaded class com.earth2me.essentials.api.Economy from Essentials v2.19.7 which is not a depend or softdepend of this plugin.
[06:54:54] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[06:54:54] [Server thread/WARN]: [Vault] Loaded class ru.tehkode.permissions.bukkit.PermissionsEx from PermissionsEx v1.23.4 which is not a depend or softdepend of this plugin.
[06:54:54] [Server thread/INFO]: [Vault] [Permission] PermissionsEx found: Waiting
[06:54:54] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[06:54:54] [Server thread/INFO]: [Vault] [Chat] PermissionsEx found: Waiting
[06:54:54] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[06:54:54] [Server thread/INFO]: [LiteEco] Enabling LiteEco v1.1.5-SNAPSHOT
[06:54:54] [Server thread/WARN]: [LiteEco] PlaceholderAPI hook initialized
[06:54:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: liteeco [1.0.0]
[06:54:54] [Server thread/WARN]: [LiteEco] Registered Vault interface.
[06:54:55] [Server thread/INFO]: [LiteEco] Please download update of plugin LiteEco your version: 1.1.5-SNAPSHOT > updated version: 1.1.7-SNAPSHOT
[06:54:55] [Server thread/INFO]: [LiteEco] Registering commands with Cloud Command Framework !
[06:54:55] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[06:54:55] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@152ca95e
[06:54:55] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[06:54:55] [Server thread/INFO]: [LiteEco] Table lite_eco was successfully created.
[06:54:55] [Server thread/INFO]: [LiteEco] Bukkit Listener AccountEconomyManageListener registered () -> ok
[06:54:55] [Server thread/INFO]: [LiteEco] Bukkit Listener PlayerEconomyPayListener registered () -> ok
[06:54:55] [Server thread/INFO]: [LiteEco] Bukkit Listener ConsoleEconomyTransactionListener registered () -> ok
[06:54:55] [Server thread/INFO]: [LiteEco] Bukkit Listener PlayerJoinListener registered () -> ok
[06:54:55] [Server thread/INFO]: [LiteEco] Listeners registered(4) in time 16 ms -> ok
[06:54:55] [Server thread/INFO]: [LiteEco] Plugin enabled in time 984 ms
[06:54:55] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.0 build-18/06/2022
[06:54:55] [Server thread/INFO]: [NexEngine] Loaded NMS version: V1_19_R1
[06:54:55] [Server thread/INFO]: [NexEngine] Successfully hooked with PermissionsEx permissions
[06:54:55] [Server thread/INFO]: [NexEngine] Successfully hooked with LiteEco economy
[06:54:55] [Server thread/INFO]: [NexEngine] Successfully hooked with PermissionsEx_Chat chat
[06:54:55] [Server thread/INFO]: [NexEngine] Successfully hooked with Vault!
[06:54:55] [Server thread/INFO]: [NexEngine] Plugin loaded in 74 ms!
[06:54:55] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.12+6240-87f4ae1
[06:54:55] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[06:54:55] [Server thread/WARN]: [WorldEdit] Loaded class ru.tehkode.permissions.PermissionManager from PermissionsEx v1.23.4 which is not a depend or softdepend of this plugin.
[06:54:55] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[06:54:56] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_19_R1.PaperweightAdapter as the Bukkit adapter
[06:54:56] [Server thread/INFO]: Preparing level "lobby"
[06:54:56] [Server thread/INFO]: -------- World Settings For [lobby] --------
[06:54:56] [Server thread/INFO]: Item Merge Radius: 4.0
[06:54:56] [Server thread/INFO]: Item Despawn Rate: 6000
[06:54:56] [Server thread/INFO]: View Distance: 8
[06:54:56] [Server thread/INFO]: Simulation Distance: 8
[06:54:56] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[06:54:56] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[06:54:56] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[06:54:56] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[06:54:56] [Server thread/INFO]: Mob Spawn Range: 6
[06:54:56] [Server thread/INFO]: Experience Merge Radius: 6.0
[06:54:56] [Server thread/INFO]: Cactus Growth Modifier: 100%
[06:54:56] [Server thread/INFO]: Cane Growth Modifier: 100%
[06:54:56] [Server thread/INFO]: Melon Growth Modifier: 100%
[06:54:56] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[06:54:56] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[06:54:56] [Server thread/INFO]: Sapling Growth Modifier: 100%
[06:54:56] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[06:54:56] [Server thread/INFO]: Carrot Growth Modifier: 100%
[06:54:56] [Server thread/INFO]: Potato Growth Modifier: 100%
[06:54:56] [Server thread/INFO]: Wheat Growth Modifier: 100%
[06:54:56] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[06:54:56] [Server thread/INFO]: Vine Growth Modifier: 100%
[06:54:56] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[06:54:56] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[06:54:56] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[06:54:56] [Server thread/INFO]: Kelp Growth Modifier: 100%
[06:54:56] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[06:54:56] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[06:54:56] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[06:54:56] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[06:54:56] [Server thread/INFO]: Entity Activation Range: An 25 / Mo 30 / Ra 60 / Mi 25 / Tiv false / Isa false
[06:54:56] [Server thread/INFO]: Entity Tracking Range: Pl 100 / An 50 / Mo 50 / Mi 35 / Other 35
[06:54:56] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[06:54:56] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[06:54:56] [Server thread/INFO]: Max TNT Explosions: 100
[06:54:56] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[06:54:57] [Server thread/INFO]: -------- World Settings For [lobby_nether] --------
[06:54:57] [Server thread/INFO]: Item Merge Radius: 4.0
[06:54:57] [Server thread/INFO]: Item Despawn Rate: 6000
[06:54:57] [Server thread/INFO]: View Distance: 8
[06:54:57] [Server thread/INFO]: Simulation Distance: 8
[06:54:57] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[06:54:57] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[06:54:57] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[06:54:57] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[06:54:57] [Server thread/INFO]: Mob Spawn Range: 6
[06:54:57] [Server thread/INFO]: Experience Merge Radius: 6.0
[06:54:57] [Server thread/INFO]: Cactus Growth Modifier: 100%
[06:54:57] [Server thread/INFO]: Cane Growth Modifier: 100%
[06:54:57] [Server thread/INFO]: Melon Growth Modifier: 100%
[06:54:57] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[06:54:57] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[06:54:57] [Server thread/INFO]: Sapling Growth Modifier: 100%
[06:54:57] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[06:54:57] [Server thread/INFO]: Carrot Growth Modifier: 100%
[06:54:57] [Server thread/INFO]: Potato Growth Modifier: 100%
[06:54:57] [Server thread/INFO]: Wheat Growth Modifier: 100%
[06:54:57] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[06:54:57] [Server thread/INFO]: Vine Growth Modifier: 100%
[06:54:57] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[06:54:57] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[06:54:57] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[06:54:57] [Server thread/INFO]: Kelp Growth Modifier: 100%
[06:54:57] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[06:54:57] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[06:54:57] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[06:54:57] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[06:54:57] [Server thread/INFO]: Entity Activation Range: An 25 / Mo 30 / Ra 60 / Mi 25 / Tiv false / Isa false
[06:54:57] [Server thread/INFO]: Entity Tracking Range: Pl 100 / An 50 / Mo 50 / Mi 35 / Other 35
[06:54:57] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[06:54:57] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[06:54:57] [Server thread/INFO]: Max TNT Explosions: 100
[06:54:57] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[06:54:57] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[06:54:57] [Server thread/INFO]: Time elapsed: 124 ms
[06:54:57] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[06:54:57] [Server thread/INFO]: Time elapsed: 30 ms
[06:54:57] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.2
[06:54:58] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[06:54:58] [Server thread/INFO]: [SimpleGeyserVL] Enabling SimpleGeyserVL v1.1b
[06:54:58] [Server thread/INFO]: [SimpleGeyserVL] [SimpleGeyserVL] Loaded vote command: eco give $player$ 20
[06:54:58] [Server thread/INFO]: [SimpleGeyserVL] [SimpleGeyserVL] Loaded vote command: xp give $player$ 100
[06:54:58] [Server thread/INFO]: [SimpleGeyserVL] [SimpleGeyserVL] Loaded player msg: Thank you! You have been awarded twenty dollars.
[06:54:58] [Server thread/INFO]: [SimpleGeyserVL] [SimpleGeyserVL] Loaded proadcast msg: Thank %player% for /voteing for us on %service%!
[06:54:58] [Server thread/WARN]: [SimpleGeyserVL] Loaded class com.vexsoftware.votifier.model.VotifierEvent from Votifier v2.7.3 which is not a depend or softdepend of this plugin.
[06:54:58] [Server thread/INFO]: [NametagEdit] Enabling NametagEdit v4.5.11
[06:54:58] [Server thread/INFO]: [NametagEdit] Found PermissionsEx! Hooking in.
[06:54:58] [Server thread/WARN]: [NametagEdit] Loaded class ru.tehkode.permissions.events.PermissionEntityEvent from PermissionsEx v1.23.4 which is not a depend or softdepend of this plugin.
[06:54:58] [Server thread/INFO]: [NoteBlockAPI] Enabling NoteBlockAPI v1.6.1-SNAPSHOT
[06:54:58] [Server thread/INFO]: [NoEncryption] Enabling NoEncryption v4.3
[06:54:58] [Server thread/INFO]: [NoEncryption] Your server is running version 1.19.2-R0.1-SNAPSHOT.
[06:54:58] [Server thread/INFO]: [NoEncryption] Compatibility successful!
[06:54:58] [Server thread/INFO]: [NoEncryption] If you used /reload to update NoEncryption, your players need to disconnect and join back.
[06:54:58] [Server thread/INFO]: [SimpleTrash] Enabling SimpleTrash v1.0*
[06:54:58] [Server thread/INFO]: [BisectHosting] Enabling BisectHosting v1.0.4
[06:54:58] [Server thread/INFO]: [PVPControl] Enabling PVPControl v1.4.2
[06:54:58] [Server thread/INFO]: [Vadelia] 47 language statements loaded.
[06:54:58] [Server thread/INFO]: [Vadelia] Checking dependencies..
[06:54:58] [Server thread/WARN]: [PVPControl] Loaded class com.earth2me.essentials.Essentials from Essentials v2.19.7 which is not a depend or softdepend of this plugin.
[06:54:58] [Server thread/INFO]: [Vadelia] Hooked plugins: EssentialsX
[06:54:58] [Server thread/INFO]: [Vadelia] Combat logged enabled!
[06:54:58] [Server thread/INFO]: [AutoSmelt] Enabling AutoSmelt v1.9.1
[06:54:58] [Server thread/WARN]: [AutoSmelt] Loaded class com.sk89q.worldguard.bukkit.WorldGuardPlugin from WorldGuard v7.0.7+216b061 which is not a depend or softdepend of this plugin.
[06:54:58] [Server thread/WARN]: [AutoSmelt] Loaded class com.sk89q.worldedit.bukkit.WorldEditPlugin from WorldEdit v7.2.12+6240-87f4ae1 which is not a depend or softdepend of this plugin.
[06:54:58] [Server thread/INFO]: [AutoSmelt] [STDOUT] [AutoSmelt Log] WorldGuard functionality added
[06:54:58] [Server thread/WARN]: Nag author(s): '[tweedjt]' of 'AutoSmelt' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[06:54:58] [Server thread/INFO]: [AutoSmelt] [STDOUT] [AutoSmelt Log] Starting AutoSmelt
[06:54:58] [Server thread/INFO]: [Broadcast] Enabling Broadcast v1.7*
[06:54:58] [Server thread/INFO]: [Broadcast] [STDOUT] [Broadcast]: Failed to connect to metrics service
[06:54:58] [Server thread/WARN]: Nag author(s): '[iShadey]' of 'Broadcast' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[06:54:58] [Server thread/WARN]: java.net.UnknownHostException: metrics.joshuahagon.co.uk
[06:54:58] [Server thread/WARN]:     at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:567)
[06:54:58] [Server thread/WARN]:     at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
[06:54:58] [Server thread/WARN]:     at java.base/java.net.Socket.connect(Socket.java:633)
[06:54:58] [Server thread/WARN]:     at java.base/sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:299)
[06:54:58] [Server thread/WARN]:     at java.base/sun.security.ssl.BaseSSLSocketImpl.connect(BaseSSLSocketImpl.java:174)
[06:54:58] [Server thread/WARN]:     at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:183)
[06:54:58] [Server thread/WARN]:     at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:498)
[06:54:58] [Server thread/WARN]:     at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:603)
[06:54:58] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.HttpsClient.<init>(HttpsClient.java:266)
[06:54:58] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:380)
[06:54:58] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:189)
[06:54:58] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242)
[06:54:58] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128)
[06:54:58] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:175)
[06:54:58] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1665)
[06:54:58] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589)
[06:54:58] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:224)
[06:54:58] [Server thread/WARN]:     at java.base/java.net.URL.openStream(URL.java:1161)
[06:54:58] [Server thread/WARN]:     at Broadcast 1.7.jar//co.uk.joshuahagon.web.Metrics.addMetric(Metrics.java:20)
[06:54:58] [Server thread/WARN]:     at Broadcast 1.7.jar//co.uk.joshuahagon.plugin.broadcast.Main.onEnable(Main.java:29)
[06:54:58] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264)
[06:54:58] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:370)
[06:54:58] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:542)
[06:54:58] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugin(CraftServer.java:565)
[06:54:58] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugins(CraftServer.java:479)
[06:54:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:636)
[06:54:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:422)
[06:54:58] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:306)
[06:54:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1100)
[06:54:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305)
[06:54:58] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[06:54:58] [Server thread/INFO]: [SetSpawn] Enabling SetSpawn v4.0
[06:54:58] [Server thread/INFO]: [SetSpawn] Enabled!
[06:54:58] [Server thread/INFO]: [BuycraftX] Enabling BuycraftX v12.0.8
[06:54:58] [Server thread/INFO]: [BuycraftX] Validating your server key...
[06:54:59] [Server thread/INFO]: [BuycraftX] Fetching all server packages...
[06:54:59] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[06:54:59] [Server thread/INFO]: [Votifier] Loaded token for website: default
[06:54:59] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[06:54:59] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[06:54:59] [Server thread/INFO]: [GroundItems] Enabling GroundItems v1.0
[06:54:59] [Server thread/INFO]: [LaggRemover] Enabling LaggRemover v2.0.6
[06:54:59] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /162.33.19.122:8192.
[06:54:59] [Server thread/INFO]: [LaggRemover] Loaded 0 module(s)
[06:54:59] [Server thread/INFO]: [LaggRemover] The LaggRemover AI is now active!
[06:54:59] [Server thread/INFO]: [LaggRemover] LaggRemover has been enabled!
[06:54:59] [Server thread/INFO]: [VoidSpawn] Enabling VoidSpawn v1.20.0
[06:54:59] [Server thread/INFO]: [VoidSpawn] No SkyBlock plugins found, disabling island mode support.
[06:54:59] [Server thread/INFO]: [VoidSpawn] v1.20.0 by EnderCrest enabled
[06:54:59] [Server thread/INFO]: [SimpleTpa] Enabling SimpleTpa v6.1*
[06:54:59] [Server thread/INFO]: [SimpleTpa] If you need support contact me at https://discord.gg/SZUkza9
[06:54:59] [Server thread/INFO]: [SimpleTpa] Simple Tpa has been enabled on version 6.1
[06:54:59] [Server thread/INFO]: Enabled metrics. You may opt-out by changing plugins/bStats/config.yml
[06:54:59] [Server thread/INFO]: [ServerListMotdSpigot] Enabling ServerListMotdSpigot v1.2.5
[06:54:59] [Server thread/INFO]: [ServerListMotdSpigot] Plugin by KennyTV
[06:54:59] [Server thread/INFO]: Found PlaceholderAPI, now using its placeholders!
[06:54:59] [Server thread/INFO]: [ObsidianBreaker] Enabling ObsidianBreaker v2.1*
[06:54:59] [Server thread/INFO]: [ObsidianBreaker] Couldn't find support for v1_19_R1. Block cracks not activated.
[06:54:59] [Server thread/INFO]: [PermissionsEx] Enabling PermissionsEx v1.23.4*
[06:54:59] [Server thread/INFO]: [PermissionsEx] Initializing file backend
[06:54:59] [Server thread/INFO]: [PermissionsEx] Permissions file successfully reloaded
[06:54:59] [Server thread/INFO]: WEPIF: PermissionsEx detected! Using PermissionsEx for permissions.
[06:54:59] [Server thread/INFO]: [Vault][Permission] PermissionsEx hooked.
[06:54:59] [Server thread/INFO]: [Vault] [Vault][Chat] PermissionsEx_Chat hooked.
[06:54:59] [Server thread/INFO]: [LegacyKB] Enabling LegacyKB v2.0.2*
[06:54:59] [Server thread/INFO]: [EzHomes] Enabling EzHomes v1.7.2
[06:54:59] [Thread-20/WARN]: [PermissionsEx] The updater could not find any files for the project id 31279
[06:55:00] [Server thread/INFO]: [EzHomes] Yay! You are using Paper! We will make teleports async!
[06:55:00] [Server thread/INFO]: [Enterprise] Enabling Enterprise v1.7
[06:55:00] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.0-SNAPSHOT (b70-6e2c19f)
[06:55:00] [Server thread/INFO]: [EasyClearChat] Enabling EasyClearChat v3.7.0*
[06:55:00] [Server thread/INFO]: [EasyClearChat] English language chosen correctly.
[06:55:00] [Server thread/INFO]: [EasyClearChat] Plugin enabled. Plugin created by xtomyserrax
[06:55:00] [Server thread/INFO]: [AntiCooldown] Enabling AntiCooldown v4.0.3
[06:55:00] [Server thread/INFO]: [AntiCooldownLogger] Currently installed TubeTils version meet the requirements!
[06:55:00] [Server thread/INFO]: [AntiCooldownLogger] ProtocolLib is installed! Support for ProtocolLib enabled!
[06:55:00] [Server thread/INFO]: [AntiCooldownLogger] PlaceholderAPI is installed! Support for PlaceholderAPI enabled!
[06:55:00] [Server thread/INFO]: [AntiCooldownLogger] The Plugin will be activated ...
[06:55:00] [Server thread/INFO]: [AntiCooldownLogger] ==================================================
[06:55:00] [Server thread/INFO]: [AntiCooldownLogger] JOIN OUR DISCORD: https://discord.gg/73ZDfbx
[06:55:00] [Server thread/INFO]: [AntiCooldownLogger] ==================================================
[06:55:00] [Server thread/INFO]: [AntiCooldownLogger] Loading Config Files ...
[06:55:00] [Server thread/INFO]: [AntiCooldownLogger] Config values are loaded into the cache ...
[06:55:00] [Server thread/INFO]: [AntiCooldownLogger] World YourWorldName disabled!
[06:55:00] [Server thread/INFO]: [AntiCooldownLogger] WARNING: Material WOOD_AXE for CustomItemDamage cannot be found or is not supported by 1.19.2-R0.1-SNAPSHOT!
[06:55:00] [Server thread/INFO]: [AntiCooldownLogger] WARNING: Material GOLD_AXE for CustomItemDamage cannot be found or is not supported by 1.19.2-R0.1-SNAPSHOT!
[06:55:00] [Server thread/INFO]: [AntiCooldownLogger] WARNING: Material WOOD_PICKAXE for CustomItemDamage cannot be found or is not supported by 1.19.2-R0.1-SNAPSHOT!
[06:55:00] [Server thread/INFO]: [AntiCooldownLogger] WARNING: Material GOLD_PICKAXE for CustomItemDamage cannot be found or is not supported by 1.19.2-R0.1-SNAPSHOT!
[06:55:00] [Server thread/INFO]: [AntiCooldownLogger] Config values were successfully cached!
[06:55:00] [Server thread/INFO]: [AntiCooldownLogger] Config Files was successfully loaded!
[06:55:00] [Server thread/INFO]: [AntiCooldownLogger] Checking for updates ...
[06:55:00] [Server thread/INFO]: [AntiCooldownLogger] Listeners will be registered ...
[06:55:00] [Server thread/INFO]: [AntiCooldownLogger] Listeners have been successfully registered!
[06:55:00] [Server thread/INFO]: [AntiCooldownLogger] Commands will be registered ...
[06:55:00] [Server thread/INFO]: [AntiCooldownLogger] Commands have been successfully registered!
[06:55:00] [Server thread/INFO]: [AntiCooldownLogger] Placeholders for PlacerholderAPI will be registered ...
[06:55:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: anticooldown [4.0.3]
[06:55:00] [Server thread/INFO]: [AntiCooldownLogger] Placeholders have been successfully registered!
[06:55:00] [Server thread/INFO]: [AntiCooldownLogger] Load and activate bStats ...
[06:55:00] [Server thread/INFO]: [AntiCooldownLogger] bStats was successfully loaded and activated!
[06:55:00] [Server thread/INFO]: [AntiCooldownLogger] The plugin was successfully activated in 546ms!
[06:55:00] [Server thread/INFO]: [CommandDoesNotExist] Enabling CommandDoesNotExist v4.2.1
[06:55:01] [Server thread/INFO]: [CDNE] [CDNE] ProcotolLib found
[06:55:01] [Server thread/INFO]: [CDNE] [CDNE] CommandDoesNotExist version 4.2.1 is Enabled
[06:55:01] [Server thread/INFO]: [AuctionHouse] Enabling AuctionHouse v3.3.1
[06:55:01] [Server thread/INFO]: [AuctionHouse] Found locale file en_us.json
[06:55:01] [Server thread/WARN]: [AuctionHouse] A backup of the database has been saved with .backup extension.
[06:55:01] [Server thread/INFO]: [AuctionHouse] Using NMS version v1_19_R1
[06:55:01] [Server thread/INFO]: [AuctionHouse] Using en_us locale
[06:55:01] [Server thread/INFO]: [AuctionHouse] Loaded 70 listings
[06:55:01] [Server thread/INFO]: [ChatItem] Enabling ChatItem v2.4.5
[06:55:01] [Server thread/INFO]: [ChatItem] Detected server version: v1_19
[06:55:01] [Server thread/INFO]: [ChatItem] The plugin ProtocolLib has been detected. Loading Protocollib support ...
[06:55:01] [Server thread/INFO]: [ChatItem] Loaded 5 getter for base components.
[06:55:01] [Server thread/INFO]: [ChatItem] Save method founded: b. Use ComponentBuilder's method.
[06:55:01] [Server thread/INFO]: [ChatItem] Manager automatically chosen: PacketEditing (packet), ChatListener (chat)
[06:55:01] [Server thread/INFO]: [Orebfuscator] Enabling Orebfuscator v5.3.1
[06:55:01] [Server thread/INFO]: [PlayerVaults] Enabling PlayerVaults v4.2.9
[06:55:02] [Server thread/INFO]: [PlayerVaults] Loaded! Took 326ms
[06:55:02] [Server thread/INFO]: [Geyser-Spigot] Enabling Geyser-Spigot v2.1.0-SNAPSHOT
[06:55:02] [Server thread/INFO]: [PlayerKits] Enabling PlayerKits v2.24.2
[06:55:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerkits [2.24.2]
[06:55:02] [Server thread/INFO]: [PlayerKits] Has been enabled! Version: 2.24.2
[06:55:02] [Server thread/INFO]: [PlayerKits] Thanks for using my plugin!  ~Ajneb97
[06:55:02] [Server thread/INFO]: There is a new version available. (2.24.3)
[06:55:02] [Server thread/INFO]: You can download it at: https://www.spigotmc.org/resources/75185/
[06:55:02] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.7.5
[06:55:02] [Server thread/INFO]: [DecentHolograms] Using ProtocolLib for packet listening.
[06:55:02] [Server thread/INFO]: [Essentials] Enabling Essentials v2.19.7
[06:55:02] [Server thread/WARN]: [Essentials] Loaded class {0} from {1} which is not a depend or softdepend of this plugin.
[06:55:02] [Server thread/ERROR]: [Essentials] You are using plugins known to cause severe issues with EssentialsX and other plugins.
[06:55:02] [Server thread/INFO]: [Essentials] Status determining class: me.doclic.noencryption.NoEncryption
[06:55:02] [Server thread/WARN]: [Essentials] Version mismatch! Please update EssentialsChat to the same version.
[06:55:02] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[06:55:02] [Server thread/INFO]: [Essentials] No kits found to migrate.
[06:55:02] [Server thread/INFO]: [Essentials] Loaded 36926 items from items.json.
[06:55:02] [Server thread/INFO]: [Essentials] Using locale en
[06:55:02] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[06:55:02] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[06:55:02] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[06:55:02] [Server thread/INFO]: [Essentials] Using Vault based permissions (PermissionsEx)
[06:55:02] [Server thread/INFO]: [AdvancedBan] Enabling AdvancedBan v2.3.0
[06:55:02] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[06:55:03] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.pool.PoolBase] HikariPool-1 - Driver does not support get/set network timeout for connections. (feature not supported)
[06:55:03] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[06:55:03] [Server thread/INFO]: 
 
[]=====[Enabling AdvancedBan]=====[]
| Information:
|   Name: AdvancedBan
|   Developer: Leoko
|   Version: 2.3.0
|   Storage: HSQLDB (local)
| Support:
|   Github: https://github.com/DevLeoko/AdvancedBan/issues
|   Discord: https://discord.gg/ycDG6rS
| Twitter: @LeokoGar
| Update:
|   You have the newest version
[]================================[]
 
[06:55:03] [Server thread/INFO]: [SilkSpawners] Enabling SilkSpawners v2.1.8
[06:55:03] [Server thread/INFO]: [SilkSpawners] [INFO]: Starting SilkSpawners v2.1.8
[06:55:03] [pool-32-thread-1/INFO]: [SilkSpawners] [INFO]: Checking for updates
[06:55:03] [Server thread/INFO]: [SilkSpawners] [INFO]: Loading Cross-Version support
[06:55:03] [Server thread/INFO]: [SilkSpawners] [INFO]: Loading support for NMS-Version v1_19_R1
[06:55:03] [Server thread/INFO]: [SilkSpawners] [INFO]: Loading locale file
[06:55:03] [Server thread/INFO]: [SilkSpawners] [INFO]: Starting metrics service. You can disable the collection of anonymous usage data by editing the config file under /plugins/bStats/
[06:55:03] [Server thread/INFO]: [SilkSpawners] [INFO]: Registering listeners
[06:55:03] [Server thread/INFO]: [SilkSpawners] [INFO]: Registering commands
[06:55:03] [Server thread/INFO]: [SilkSpawners] [INFO]: Started SilkSpawners v2.1.8
[06:55:03] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[06:55:03] [pool-32-thread-1/INFO]: [SilkSpawners] [INFO]: The plugin is up to date (v2.1.8)
[06:55:03] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[06:55:03] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[06:55:03] [Server thread/INFO]: -------- World Settings For [1] --------
[06:55:03] [Server thread/INFO]: Item Merge Radius: 4.0
[06:55:03] [Server thread/INFO]: Item Despawn Rate: 6000
[06:55:03] [Server thread/INFO]: View Distance: 8
[06:55:03] [Server thread/INFO]: Simulation Distance: 8
[06:55:03] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[06:55:03] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[06:55:03] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[06:55:03] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[06:55:03] [Server thread/INFO]: Mob Spawn Range: 6
[06:55:03] [Server thread/INFO]: Experience Merge Radius: 6.0
[06:55:03] [Server thread/INFO]: Cactus Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: Cane Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: Melon Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: Sapling Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: Carrot Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: Potato Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: Wheat Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: Vine Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: Kelp Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: Entity Activation Range: An 25 / Mo 30 / Ra 60 / Mi 25 / Tiv false / Isa false
[06:55:03] [Server thread/INFO]: Entity Tracking Range: Pl 100 / An 50 / Mo 50 / Mi 35 / Other 35
[06:55:03] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[06:55:03] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[06:55:03] [Server thread/INFO]: Max TNT Explosions: 100
[06:55:03] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[06:55:03] [Server thread/INFO]: -------- World Settings For [2] --------
[06:55:03] [Server thread/INFO]: Item Merge Radius: 4.0
[06:55:03] [Server thread/INFO]: Item Despawn Rate: 6000
[06:55:03] [Server thread/INFO]: View Distance: 8
[06:55:03] [Server thread/INFO]: Simulation Distance: 8
[06:55:03] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[06:55:03] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[06:55:03] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[06:55:03] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[06:55:03] [Server thread/INFO]: Mob Spawn Range: 6
[06:55:03] [Server thread/INFO]: Experience Merge Radius: 6.0
[06:55:03] [Server thread/INFO]: Cactus Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: Cane Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: Melon Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: Sapling Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: Carrot Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: Potato Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: Wheat Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: Vine Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: Kelp Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[06:55:03] [Server thread/INFO]: Entity Activation Range: An 25 / Mo 30 / Ra 60 / Mi 25 / Tiv false / Isa false
[06:55:03] [Server thread/INFO]: Entity Tracking Range: Pl 100 / An 50 / Mo 50 / Mi 35 / Other 35
[06:55:03] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[06:55:03] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[06:55:03] [Server thread/INFO]: Max TNT Explosions: 100
[06:55:03] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[06:55:04] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: lobby_the_end
[06:55:04] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[06:55:04] [Server thread/INFO]: -------- World Settings For [3] --------
[06:55:04] [Server thread/INFO]: Item Merge Radius: 4.0
[06:55:04] [Server thread/INFO]: Item Despawn Rate: 6000
[06:55:04] [Server thread/INFO]: View Distance: 8
[06:55:04] [Server thread/INFO]: Simulation Distance: 8
[06:55:04] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[06:55:04] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[06:55:04] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[06:55:04] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[06:55:04] [Server thread/INFO]: Mob Spawn Range: 6
[06:55:04] [Server thread/INFO]: Experience Merge Radius: 6.0
[06:55:04] [Server thread/INFO]: Cactus Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: Cane Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: Melon Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: Sapling Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: Carrot Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: Potato Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: Wheat Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: Vine Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: Kelp Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: Entity Activation Range: An 25 / Mo 30 / Ra 60 / Mi 25 / Tiv false / Isa false
[06:55:04] [Server thread/INFO]: Entity Tracking Range: Pl 100 / An 50 / Mo 50 / Mi 35 / Other 35
[06:55:04] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[06:55:04] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[06:55:04] [Server thread/INFO]: Max TNT Explosions: 100
[06:55:04] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[06:55:04] [Server thread/INFO]: -------- World Settings For [wild] --------
[06:55:04] [Server thread/INFO]: Item Merge Radius: 4.0
[06:55:04] [Server thread/INFO]: Item Despawn Rate: 6000
[06:55:04] [Server thread/INFO]: View Distance: 8
[06:55:04] [Server thread/INFO]: Simulation Distance: 8
[06:55:04] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[06:55:04] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[06:55:04] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[06:55:04] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[06:55:04] [Server thread/INFO]: Mob Spawn Range: 6
[06:55:04] [Server thread/INFO]: Experience Merge Radius: 6.0
[06:55:04] [Server thread/INFO]: Cactus Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: Cane Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: Melon Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: Sapling Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: Carrot Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: Potato Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: Wheat Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: Vine Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: Kelp Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[06:55:04] [Server thread/INFO]: Entity Activation Range: An 25 / Mo 30 / Ra 60 / Mi 25 / Tiv false / Isa false
[06:55:04] [Server thread/INFO]: Entity Tracking Range: Pl 100 / An 50 / Mo 50 / Mi 35 / Other 35
[06:55:04] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[06:55:04] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[06:55:04] [Server thread/INFO]: Max TNT Explosions: 100
[06:55:04] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[06:55:04] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[06:55:04] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[06:55:04] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: voidworld
[06:55:04] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[06:55:04] [Server thread/INFO]: [Multiverse-Core] 6 - World(s) loaded.
[06:55:04] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[06:55:04] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[06:55:04] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.1.3
[06:55:04] [Server thread/INFO]:  
[06:55:04] [Server thread/INFO]: __________________________________________________________
[06:55:04] [Server thread/INFO]:  
[06:55:04] [Server thread/INFO]:                        TradeSystem [2.1.3]
[06:55:04] [Server thread/INFO]:  
[06:55:04] [Server thread/INFO]: Status:
[06:55:04] [Server thread/INFO]:  
[06:55:04] [Server thread/INFO]: MC-Version: 1.19.2 (R0.1-SNAPSHOT, Paper)
[06:55:04] [Server thread/INFO]:  
[06:55:04] [Server thread/INFO]:   > Loading sounds
[06:55:04] [Server thread/INFO]:   > Loading blacklist
[06:55:04] [Server thread/INFO]:     ...got 3 blocked item(s)
[06:55:04] [Server thread/INFO]:   > Loading layouts
[06:55:04] [Server thread/INFO]:     ...got 4 layout(s)
[06:55:04] [Server thread/INFO]:   > Database logging is disabled
[06:55:05] [Server thread/INFO]:  
[06:55:05] [Server thread/INFO]: Finished (275ms)
[06:55:05] [Server thread/INFO]:  
[06:55:05] [Server thread/INFO]: __________________________________________________________
[06:55:05] [Server thread/INFO]:  
[06:55:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tradesystem [1.1]
[06:55:05] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.6.2
[06:55:05] [Server thread/WARN]: [ajLeaderboards] Unable to find 1.19 nms class: us.ajg0702.leaderboards.nms.nms19.HeadUtils19
[06:55:05] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[06:55:05] [Server thread/INFO]: [ajLeaderboards] The columns already exist for VotingPlugin_Total_AllTime. Canceling updater and bumping DB version.
[06:55:05] [Server thread/INFO]: [ajLeaderboards] The columns already exist for liteeco_balance. Canceling updater and bumping DB version.
[06:55:05] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_deaths. Canceling updater and bumping DB version.
[06:55:05] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_player_kills. Canceling updater and bumping DB version.
[06:55:05] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_time_played. Canceling updater and bumping DB version.
[06:55:05] [Server thread/INFO]: [ajLeaderboards] Loaded 5 boards
[06:55:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ajlb [2.6.2]
[06:55:05] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[06:55:05] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.6.2 by ajgeiss0702 enabled!
[06:55:05] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat vTeamCity*
[06:55:05] [Server thread/WARN]: Version mismatch! Please update all Essentials jars to the same version.
[06:55:05] [Server thread/INFO]: [NFCNotes] Enabling NFCNotes v2.3.0
[06:55:05] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.7+216b061
[06:55:05] [Server thread/INFO]: [WorldGuard] (lobby) TNT ignition is PERMITTED.
[06:55:05] [Server thread/INFO]: [WorldGuard] (lobby) Lighters are PERMITTED.
[06:55:05] [Server thread/INFO]: [WorldGuard] (lobby) Lava fire is PERMITTED.
[06:55:05] [Server thread/INFO]: [WorldGuard] (lobby) Fire spread is UNRESTRICTED.
[06:55:05] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'lobby'
[06:55:05] [Server thread/INFO]: [WorldGuard] (lobby_nether) TNT ignition is PERMITTED.
[06:55:05] [Server thread/INFO]: [WorldGuard] (lobby_nether) Lighters are PERMITTED.
[06:55:05] [Server thread/INFO]: [WorldGuard] (lobby_nether) Lava fire is PERMITTED.
[06:55:05] [Server thread/INFO]: [WorldGuard] (lobby_nether) Fire spread is UNRESTRICTED.
[06:55:05] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'lobby_nether'
[06:55:05] [Server thread/INFO]: [WorldGuard] (1) TNT ignition is PERMITTED.
[06:55:05] [Server thread/INFO]: [WorldGuard] (1) Lighters are PERMITTED.
[06:55:05] [Server thread/INFO]: [WorldGuard] (1) Lava fire is PERMITTED.
[06:55:05] [Server thread/INFO]: [WorldGuard] (1) Fire spread is UNRESTRICTED.
[06:55:05] [Server thread/INFO]: [WorldGuard] Loaded configuration for world '1'
[06:55:05] [Server thread/INFO]: [WorldGuard] (2) TNT ignition is PERMITTED.
[06:55:05] [Server thread/INFO]: [WorldGuard] (2) Lighters are PERMITTED.
[06:55:05] [Server thread/INFO]: [WorldGuard] (2) Lava fire is PERMITTED.
[06:55:05] [Server thread/INFO]: [WorldGuard] (2) Fire spread is UNRESTRICTED.
[06:55:05] [Server thread/INFO]: [WorldGuard] Loaded configuration for world '2'
[06:55:05] [Server thread/INFO]: [WorldGuard] (3) TNT ignition is PERMITTED.
[06:55:05] [Server thread/INFO]: [WorldGuard] (3) Lighters are PERMITTED.
[06:55:05] [Server thread/INFO]: [WorldGuard] (3) Lava fire is PERMITTED.
[06:55:05] [Server thread/INFO]: [WorldGuard] (3) Fire spread is UNRESTRICTED.
[06:55:05] [Server thread/INFO]: [WorldGuard] Loaded configuration for world '3'
[06:55:05] [Server thread/INFO]: [WorldGuard] (wild) TNT ignition is PERMITTED.
[06:55:05] [Server thread/INFO]: [WorldGuard] (wild) Lighters are PERMITTED.
[06:55:05] [Server thread/INFO]: [WorldGuard] (wild) Lava fire is PERMITTED.
[06:55:05] [Server thread/INFO]: [WorldGuard] (wild) Fire spread is UNRESTRICTED.
[06:55:05] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'wild'
[06:55:05] [Server thread/INFO]: [WorldGuard] Loading region data...
[06:55:06] [Server thread/WARN]: [NexEngine] Loaded class com.sk89q.worldguard.WorldGuard from WorldGuard v7.0.7+216b061 which is not a depend or softdepend of this plugin.
[06:55:06] [Server thread/INFO]: [NexEngine] Successfully hooked with WorldGuard!
[06:55:06] [Server thread/INFO]: [SmashHit] Enabling SmashHit v1.0-RC2*
[06:55:06] [Server thread/INFO]: [Factions] Enabling Factions v1.6.9.5-U0.6.19-b304
[06:55:06] [Server thread/INFO]: [Factions] === Starting up! ===
[06:55:06] [Server thread/INFO]: [Factions] 
[06:55:06] [Server thread/INFO]: [Factions] Factions UUID!
[06:55:06] [Server thread/INFO]: [Factions] Version 1.6.9.5-U0.6.19-b304
[06:55:06] [Server thread/INFO]: [Factions] 
[06:55:06] [Server thread/INFO]: [Factions] Need support? https://factions.support/help/
[06:55:06] [Server thread/INFO]: [Factions] 
[06:55:06] [Server thread/INFO]: [Factions] Detected Minecraft 1.19.2
[06:55:06] [Server thread/INFO]: [Factions] 
[06:55:06] [Server thread/INFO]: [Factions] Server UUID d026408f-6b69-4fac-afac-00640016907c
[06:55:06] [Server thread/INFO]: [Factions] Loaded 1429 material mappings.
[06:55:06] [Server thread/INFO]: [Factions] Loaded 32 players in 20 factions with 924 claims
[06:55:06] [Server thread/INFO]: [Factions] Using POWER for land/raid control. Enabling power commands.
[06:55:06] [Server thread/INFO]: [Factions] Enabling /f fly command
[06:55:06] [Server thread/INFO]: [Factions]  
[06:55:06] [Server thread/WARN]: [Factions] Notice: PermissionsEx version 1.x is dead. We suggest using LuckPerms (or PEX 2.0 when available). https://luckperms.net/
[06:55:06] [Server thread/INFO]: [Factions]  
[06:55:06] [Server thread/INFO]: [Factions] Using BUKKIT as a particle provider
[06:55:06] [Server thread/INFO]: [Factions] Using REDSTONE as the ParticleEffect for /f sc
[06:55:06] [Server thread/INFO]: [Factions] Found API support for sending player titles :D
[06:55:06] [Server thread/INFO]: [Factions] Found and connected to Essentials
[06:55:06] [Server thread/INFO]: [Factions] Based on main.conf will delete Essentials player homes in their old faction when they leave
[06:55:06] [Server thread/INFO]: [Factions] Using Essentials for teleportation
[06:55:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: factionsuuid [1.6.9.5-U0.6.19-b304]
[06:55:06] [Server thread/INFO]: [Factions] Successfully registered placeholders with PlaceholderAPI.
[06:55:06] [Server thread/INFO]: [Factions] Found support for WorldGuard version 7.0.7+216b061
[06:55:06] [Server thread/INFO]: [Factions] === Ready to go after 488ms! ===
[06:55:06] [Server thread/INFO]: [Images] Enabling Images v2.2.7
[06:55:06] [Server thread/INFO]: [Images] ProtocolLib detected. Enabling generic packet handling...
[06:55:06] [Server thread/INFO]: [DeathMessages] Enabling DeathMessages v1.4.15
[06:55:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deathmessages [1.4.15]
[06:55:06] [Server thread/INFO]: [DeathMessages] PlaceholderAPI Hook Enabled!
[06:55:06] [Server thread/INFO]: [DeathMessages] WorldGuard Hook Enabled!
[06:55:06] [Server thread/INFO]: [DeathMessages] bStats Hook Enabled!
[06:55:06] [Server thread/INFO]: [Negativity] Enabling Negativity v1.12.3
[06:55:06] [Server thread/INFO]: [Negativity] Detected server version: v1_19 (v1_19_R1)
[06:55:06] [Server thread/INFO]: [Negativity] The plugin ProtocolLib has been detected. Loading Protocollib support ...
[06:55:06] [Server thread/INFO]: [Negativity] This plugin is free, but you can buy the premium version : https://www.spigotmc.org/resources/86874 <3
[06:55:07] [Server thread/INFO]: [Negativity] Founded u/v/w baseBlock's methods
[06:55:07] [Server thread/INFO]: [Negativity] Loaded support for Essentials, WorldGuard, AdvancedBan, FloodGate.
[06:55:07] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.1
[06:55:07] [Server thread/WARN]: [BetterRTP] The world `world` doesn't seem to exist! Please update `master_world's` override! Maybe there are capital letters?
[06:55:07] [Server thread/WARN]: [BetterRTP] The world `world` doesn't seem to exist! Please update `creative_world's` override! Maybe there are capital letters?
[06:55:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: betterrtp [3.6.1]
[06:55:07] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.30-SNAPSHOT (build 2665)
[06:55:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[06:55:07] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[06:55:07] [Server thread/WARN]: [NexEngine] Loaded class net.citizensnpcs.api.trait.TraitInfo from Citizens v2.0.30-SNAPSHOT (build 2665) which is not a depend or softdepend of this plugin.
[06:55:07] [Server thread/INFO]: [NexEngine] Successfully hooked with Citizens!
[06:55:07] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v4.0.5
[06:55:07] [Server thread/INFO]: [ExcellentCrates] Powered by: NexEngine
[06:55:07] [Server thread/INFO]: [ExcellentCrates] Successfully hooked with DecentHolograms!
[06:55:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: excellentcrates [4.0.5]
[06:55:07] [Server thread/INFO]: [ExcellentCrates] Successfully hooked with PlaceholderAPI!
[06:55:07] [Server thread/INFO]: [ExcellentCrates] Loaded 5 animation configs.
[06:55:07] [Server thread/INFO]: [ExcellentCrates] Loaded 4 crate keys.
[06:55:07] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[06:55:07] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 127 ms!
[06:55:07] [Server thread/INFO]: [mcMMO] Enabling mcMMO v2.1.218-SNAPSHOT
[06:55:07] [Server thread/INFO]: [mcMMO] [config] Initializing config: config.yml
[06:55:07] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: config.yml
[06:55:07] [Server thread/INFO]: [mcMMO] [config] Config initialized: config.yml
[06:55:07] [Server thread/INFO]: [mcMMO] [Debug] No errors found in config.yml!
[06:55:07] [Server thread/INFO]: [mcMMO] Loading locale from plugins/mcMMO/locales/locale_override.properties
[06:55:07] [Server thread/INFO]: [mcMMO] [config] Initializing config: advanced.yml
[06:55:07] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: advanced.yml
[06:55:07] [Server thread/INFO]: [mcMMO] [config] Config initialized: advanced.yml
[06:55:07] [Server thread/INFO]: [mcMMO] [Debug] No errors found in advanced.yml!
[06:55:07] [Server thread/INFO]: [mcMMO] Platform String: 1.19.2-R0.1-SNAPSHOT
[06:55:07] [Server thread/INFO]: [mcMMO] Minecraft version determined to be - 1.19.2
[06:55:07] [Server thread/INFO]: [mcMMO] Loading compatibility layers...
[06:55:07] [Server thread/INFO]: [mcMMO] Finished loading compatibility layers.
[06:55:07] [Server thread/INFO]: [mcMMO] [config] Initializing config: persistent_data.yml
[06:55:07] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: persistent_data.yml
[06:55:07] [Server thread/INFO]: [mcMMO] [config] Config initialized: persistent_data.yml
[06:55:07] [Server thread/INFO]: [mcMMO] [Debug] No errors found in persistent_data.yml!
[06:55:07] [Server thread/INFO]: [mcMMO] [config] Initializing config: upgrades_overhaul.yml
[06:55:07] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: upgrades_overhaul.yml
[06:55:07] [Server thread/INFO]: [mcMMO] [config] Config initialized: upgrades_overhaul.yml
[06:55:07] [Server thread/INFO]: [mcMMO] [config] Initializing config: treasures.yml
[06:55:07] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: treasures.yml
[06:55:07] [Server thread/INFO]: [mcMMO] [config] Config initialized: treasures.yml
[06:55:07] [Server thread/INFO]: [mcMMO] [config] Initializing config: fishing_treasures.yml
[06:55:07] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: fishing_treasures.yml
[06:55:07] [Server thread/INFO]: [mcMMO] [config] Config initialized: fishing_treasures.yml
[06:55:07] [Server thread/INFO]: [mcMMO] Registering enchantments for Fishing Book...
[06:55:07] [Server thread/INFO]: [mcMMO] Loading mcMMO potions.yml File...
[06:55:07] [Server thread/INFO]: [mcMMO] [config] Initializing config: coreskills.yml
[06:55:07] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: coreskills.yml
[06:55:07] [Server thread/INFO]: [mcMMO] [config] Config initialized: coreskills.yml
[06:55:07] [Server thread/INFO]: [mcMMO] [config] Initializing config: sounds.yml
[06:55:07] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: sounds.yml
[06:55:07] [Server thread/INFO]: [mcMMO] [config] Config initialized: sounds.yml
[06:55:07] [Server thread/INFO]: [mcMMO] Loading mcMMO skillranks.yml File...
[06:55:09] [Server thread/INFO]: [mcMMO] [config] Initializing config: child.yml
[06:55:09] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: child.yml
[06:55:09] [Server thread/INFO]: [mcMMO] [config] Config initialized: child.yml
[06:55:09] [Server thread/INFO]: [mcMMO] [config] Initializing config: repair.vanilla.yml
[06:55:09] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: repair.vanilla.yml
[06:55:09] [Server thread/INFO]: [mcMMO] [config] Config initialized: repair.vanilla.yml
[06:55:09] [Server thread/INFO]: [mcMMO] [config] Initializing config: salvage.vanilla.yml
[06:55:09] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: salvage.vanilla.yml
[06:55:09] [Server thread/INFO]: [mcMMO] [config] Config initialized: salvage.vanilla.yml
[06:55:09] [Server thread/INFO]: [mcMMO] (plugins/mcMMO/flatfile/mcmmo.users) Validating database file..
[06:55:09] [Server thread/INFO]: [mcMMO] Enabling Acrobatics Skills
[06:55:09] [Server thread/INFO]: [mcMMO] Registered subskill: Roll
[06:55:09] [Server thread/INFO]: [mcMMO] [config] Initializing config: experience.yml
[06:55:09] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: experience.yml
[06:55:09] [Server thread/INFO]: [mcMMO] [config] Config initialized: experience.yml
[06:55:09] [Server thread/INFO]: [mcMMO] 0 entries in mcMMO World Blacklist
[06:55:10] [Server thread/INFO]: [mcMMO] [config] Initializing config: chat.yml
[06:55:10] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: chat.yml
[06:55:10] [Server thread/INFO]: [mcMMO] [config] Config initialized: chat.yml
[06:55:10] [Server thread/INFO]: [SuperVanish] Enabling SuperVanish v6.2.12
[06:55:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: supervanish [6.2.12]
[06:55:10] [Server thread/INFO]: [SuperVanish] Hooked into PlaceholderAPI
[06:55:10] [Server thread/INFO]: [SuperVanish] Hooked into Essentials
[06:55:10] [Server thread/INFO]: [SuperVanish] Hooked into Citizens
[06:55:10] [Server thread/INFO]: [StackMob] Enabling StackMob v5.8.4
[06:55:10] [Server thread/INFO]: [StackMob] StackMob v5.8.4 by antiPerson and contributors.
[06:55:10] [Server thread/INFO]: [StackMob] GitHub: https://github.com/Nathat23/StackMob-5 Discord: https://discord.gg/fz9xzuB
[06:55:10] [Server thread/INFO]: [StackMob] Loading config files...
[06:55:10] [Server thread/INFO]: [StackMob] Registering hooks and trait checks...
[06:55:10] [Server thread/INFO]: [StackMob] Registering events, commands and tasks...
[06:55:10] [Server thread/INFO]: [TabList] Enabling TabList v5.6.3
[06:55:10] [ForkJoinPool.commonPool-worker-1/INFO]: [StackMob] No update is currently available.
[06:55:10] [Server thread/INFO]: [TabList] Hooked PlaceholderAPI version: 2.11.2
[06:55:10] [Server thread/INFO]: [TabList] > Enabled v5.6.3 (75ms)
[06:55:10] [Server thread/INFO]: [CitizensGUI] Enabling CitizensGUI v1.11
[06:55:10] [Server thread/INFO]: [SimpleScore] Enabling SimpleScore v3.12.2
[06:55:10] [ForkJoinPool.commonPool-worker-1/INFO]: [TabList] -------------
[06:55:10] [ForkJoinPool.commonPool-worker-1/INFO]: [TabList] New update is available for TabList
[06:55:10] [ForkJoinPool.commonPool-worker-1/INFO]: [TabList] Your version: 5.6.3, New version 5.6.4
[06:55:10] [ForkJoinPool.commonPool-worker-1/INFO]: [TabList] Download: https://www.spigotmc.org/resources/46229/
[06:55:10] [ForkJoinPool.commonPool-worker-1/INFO]: [TabList] 
[06:55:10] [ForkJoinPool.commonPool-worker-1/INFO]: [TabList] Always consider upgrading to the latest version, which may include fixes.
[06:55:10] [ForkJoinPool.commonPool-worker-1/INFO]: [TabList] 
[06:55:10] [ForkJoinPool.commonPool-worker-1/INFO]: [TabList] To disable update checking, go to the config file
[06:55:10] [ForkJoinPool.commonPool-worker-1/INFO]: [TabList] -------------
[06:55:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: SimpleScore [3.12.2]
[06:55:11] [Server thread/INFO]: [CustomJoinMessages] Enabling CustomJoinMessages v17.0.0
[06:55:11] [Server thread/INFO]: [CustomJoinMessages] [ACF] Enabled Asynchronous Tab Completion Support!
[06:55:11] [Server thread/INFO]: [CustomJoinMessages] [ACF] Enabled Brigadier Support!
[06:55:11] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.9.5
[06:55:12] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[06:55:12] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.9.5
[06:55:12] [Server thread/INFO]: [ShopGUIPlus] Enabling ShopGUIPlus v1.77.4
[06:55:12] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[06:55:12] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[06:55:12] [Server thread/INFO]: [Geyser-Spigot] 
[06:55:12] [Server thread/INFO]: [Geyser-Spigot] Loading Geyser version 2.1.0-SNAPSHOT (git-master-c6e417a)
[06:55:12] [Server thread/INFO]: [Geyser-Spigot] 
[06:55:12] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[06:55:15] [Server thread/INFO]: [Geyser-Spigot] Started Geyser on 162.33.19.122:19132
[06:55:15] [Server thread/INFO]: [Geyser-Spigot] Done (2.485s)! Run /geyser help for help!
[06:55:15] [Server thread/INFO]: Running delayed init tasks
[06:55:15] [Server thread/INFO]: [AuctionHouse] Registered Service Provider LiteEco for Vault's Economy API
[06:55:15] [Server thread/INFO]: [AuctionHouse] Registered Service Provider Vault for Vault's Chat API
[06:55:15] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[06:55:15] [Craft Scheduler Thread - 24 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[06:55:15] [Craft Scheduler Thread - 26 - Essentials/INFO]: [Essentials] Fetching version information...
[06:55:15] [Craft Scheduler Thread - 23 - DecentHolograms/INFO]: 
A newer version of DecentHolograms is available. Download it from: https://www.spigotmc.org/resources/96927/
[06:55:15] [Craft Scheduler Thread - 7 - SmashHit/WARN]: [SmashHit] Plugin SmashHit v1.0-RC2 generated an exception while executing task 765
java.lang.NullPointerException: Damage resolver is null, unsupported Spigot version?
    at com.frash23.smashhit.SmashHitListener.<init>(SmashHitListener.java:49) ~[SmashHit.jar:?]
    at com.frash23.smashhit.SmashHit$1.run(SmashHit.java:61) ~[SmashHit.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.19.2.jar:git-Paper-300]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[paper-1.19.2.jar:git-Paper-300]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[paper-1.19.2.jar:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[06:55:15] [Craft Scheduler Thread - 24 - DecentHolograms/INFO]: [DecentHolograms] Loaded 17 holograms!
[06:55:15] [Craft Scheduler Thread - 31 - Vault/INFO]: [Vault] Checking for Updates ... 
[06:55:15] [Craft Scheduler Thread - 7 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[06:55:15] [Craft Scheduler Thread - 31 - Vault/INFO]: [Vault] No new version available
[06:55:15] [Craft Scheduler Thread - 24 - Factions/WARN]: [Factions] Update available: 0.6.20
[06:55:15] [Server thread/INFO]: [Factions] Found economy plugin through Vault: LiteEco
[06:55:15] [Server thread/INFO]: [Factions] Using Vault with permissions plugin PermissionsEx
[06:55:15] [Server thread/INFO]: [Factions] Found PlayerVaults hook, adding /f vault and /f setmaxvault commands.
[06:55:15] [Server thread/INFO]: [ExcellentCrates] Loaded 4 crates.
[06:55:15] [Craft Scheduler Thread - 10 - EzHomes/INFO]: [EzHomes] You are running the latest version.
[06:55:15] [Server thread/INFO]: [Citizens] Loaded 7 NPCs.
[06:55:15] [Server thread/INFO]: [ShopGUIPlus] ================================[ ShopGUI+ 1.77.4 ]================================
[06:55:15] [Server thread/INFO]: [ShopGUIPlus]  
[06:55:15] [Server thread/INFO]: [ShopGUIPlus] Vault economy registered.
[06:55:15] [Server thread/INFO]: [ShopGUIPlus] Vault economy enabled.
[06:55:15] [Server thread/INFO]: [ShopGUIPlus] Using Vault as default economy provider.
[06:55:15] [Server thread/INFO]: [ShopGUIPlus] Permissions support enabled.
[06:55:15] [Server thread/WARN]: [ShopGUIPlus] Found SilkSpawners but not hooked into it. You need to download an additional addon: https://brcdev.net/go/silkspawners-bridge
[06:55:15] [Server thread/INFO]: [ShopGUIPlus] No external spawner plugins registered, using built-in spawners support.
[06:55:16] [Server thread/INFO]: [ShopGUIPlus] Loaded 10 main menu items.
[06:55:16] [Server thread/WARN]: [ShopGUIPlus] Error occurred when loading misc > 73, item not loaded: Invalid or no material name specified
[06:55:16] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'misc' with 76 items.
[06:55:16] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'raiding' with 9 items.
[06:55:16] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'potions' with 13 items.
[06:55:16] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'ranks' with 4 items.
[06:55:16] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'food' with 19 items.
[06:55:16] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'building' with 9 items.
[06:55:16] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'kits' with 4 items.
[06:55:16] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'redstone' with 9 items.
[06:55:16] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'crates' with 2 items.
[06:55:16] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'enchanting' with 122 items.
[06:55:16] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R1! Trying to find NMS support
[06:55:16] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R1' loaded!
[06:55:16] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[06:55:16] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'spawners' with 9 items.
[06:55:16] [Server thread/INFO]: [ShopGUIPlus] Loaded 11 shops with total of 276 items.
[06:55:16] [Server thread/INFO]: [ShopGUIPlus] Loaded 0 permission-based price modifiers.
[06:55:16] [Server thread/INFO]: [ShopGUIPlus]  
[06:55:16] [Server thread/INFO]: [ShopGUIPlus] ====================================================================================
[06:55:16] [Server thread/INFO]: [AuctionHouse] Found PlaceholderAPI plugin
[06:55:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: auctionhouse [3.3.1]
[06:55:16] [Server thread/INFO]: [AuctionHouse] Registered PlaceholderAPI placeholders
[06:55:16] [Thread-42/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[06:55:16] [Server thread/INFO]: Done (32.791s)! For help, type "help"
[06:55:16] [Server thread/INFO]: Timings Reset
[06:55:16] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[06:55:16] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[06:55:16] [Craft Scheduler Thread - 29 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin is up to date! Version: 6.9.5
[06:55:16] [Craft Scheduler Thread - 31 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:55:16] [Craft Scheduler Thread - 31 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:55:17] [Craft Scheduler Thread - 35 - Images/INFO]: [Images] Loaded 2 images...
[06:55:20] [Craft Scheduler Thread - 27 - EzHomes/INFO]: [EzHomes] Looking for any empty homes files to clean up...
[06:55:20] [Craft Scheduler Thread - 27 - EzHomes/INFO]: [EzHomes] 0 file(s) were cleaned.
[06:55:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[06:55:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.6.1]
[06:55:20] [Server thread/WARN]: [PlaceholderAPI] Loaded class com.bencodez.votingplugin.VotingPluginMain from VotingPlugin v6.9.5 which is not a depend or softdepend of this plugin.
[06:55:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: votingplugin [1.5]
[06:55:20] [Server thread/INFO]: 3 placeholder hook(s) registered!
[06:55:25] [Craft Scheduler Thread - 32 - NoteBlockAPI/INFO]: [NoteBlockAPI] New update available!
[06:56:16] [Craft Scheduler Thread - 10 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:56:16] [Craft Scheduler Thread - 10 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:56:27] [Profile Lookup Executor #1/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@538dba3f[id=00000000-0000-0000-0009-01f135c9e6f2,name=.Tiko8580,properties={},legacy=false]
java.lang.IllegalArgumentException: Name and ID cannot both be blank
    at com.mojang.authlib.GameProfile.<init>(GameProfile.java:26) ~[authlib-3.11.49.jar:?]
    at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:203) ~[authlib-3.11.49.jar:?]
    at com.destroystokyo.paper.profile.PaperMinecraftSessionService.fillGameProfile(PaperMinecraftSessionService.java:38) ~[paper-1.19.2.jar:git-Paper-300]
    at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillProfileProperties(YggdrasilMinecraftSessionService.java:175) ~[authlib-3.11.49.jar:?]
    at com.destroystokyo.paper.profile.PaperMinecraftSessionService.fillProfileProperties(PaperMinecraftSessionService.java:31) ~[paper-1.19.2.jar:git-Paper-300]
    at net.minecraft.world.level.block.entity.SkullBlockEntity.lambda$updateGameprofile$3(SkullBlockEntity.java:142) ~[?:?]
    at net.minecraft.Util.ifElse(Util.java:467) ~[?:?]
    at net.minecraft.world.level.block.entity.SkullBlockEntity.lambda$updateGameprofile$6(SkullBlockEntity.java:139) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[06:56:35] [Profile Lookup Executor #1/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@6f88b489[id=00000000-0000-0000-0009-01f923d0ee46,name=.MinerMends,properties={},legacy=false]
java.lang.IllegalArgumentException: Name and ID cannot both be blank
    at com.mojang.authlib.GameProfile.<init>(GameProfile.java:26) ~[authlib-3.11.49.jar:?]
    at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:203) ~[authlib-3.11.49.jar:?]
    at com.destroystokyo.paper.profile.PaperMinecraftSessionService.fillGameProfile(PaperMinecraftSessionService.java:38) ~[paper-1.19.2.jar:git-Paper-300]
    at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillProfileProperties(YggdrasilMinecraftSessionService.java:175) ~[authlib-3.11.49.jar:?]
    at com.destroystokyo.paper.profile.PaperMinecraftSessionService.fillProfileProperties(PaperMinecraftSessionService.java:31) ~[paper-1.19.2.jar:git-Paper-300]
    at net.minecraft.world.level.block.entity.SkullBlockEntity.lambda$updateGameprofile$3(SkullBlockEntity.java:142) ~[?:?]
    at net.minecraft.Util.ifElse(Util.java:467) ~[?:?]
    at net.minecraft.world.level.block.entity.SkullBlockEntity.lambda$updateGameprofile$6(SkullBlockEntity.java:139) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[06:56:41] [Profile Lookup Executor #1/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@4500fab3[id=00000000-0000-0000-0009-01f9de5050a8,name=.NotFrosty4660,properties={},legacy=false]
java.lang.IllegalArgumentException: Name and ID cannot both be blank
    at com.mojang.authlib.GameProfile.<init>(GameProfile.java:26) ~[authlib-3.11.49.jar:?]
    at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:203) ~[authlib-3.11.49.jar:?]
    at com.destroystokyo.paper.profile.PaperMinecraftSessionService.fillGameProfile(PaperMinecraftSessionService.java:38) ~[paper-1.19.2.jar:git-Paper-300]
    at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillProfileProperties(YggdrasilMinecraftSessionService.java:175) ~[authlib-3.11.49.jar:?]
    at com.destroystokyo.paper.profile.PaperMinecraftSessionService.fillProfileProperties(PaperMinecraftSessionService.java:31) ~[paper-1.19.2.jar:git-Paper-300]
    at net.minecraft.world.level.block.entity.SkullBlockEntity.lambda$updateGameprofile$3(SkullBlockEntity.java:142) ~[?:?]
    at net.minecraft.Util.ifElse(Util.java:467) ~[?:?]
    at net.minecraft.world.level.block.entity.SkullBlockEntity.lambda$updateGameprofile$6(SkullBlockEntity.java:139) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[06:56:43] [Profile Lookup Executor #1/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@6d349b83[id=00000000-0000-0000-0009-01f52daa5cc7,name=.Nimmby01,properties={},legacy=false]
java.lang.IllegalArgumentException: Name and ID cannot both be blank
    at com.mojang.authlib.GameProfile.<init>(GameProfile.java:26) ~[authlib-3.11.49.jar:?]
    at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:203) ~[authlib-3.11.49.jar:?]
    at com.destroystokyo.paper.profile.PaperMinecraftSessionService.fillGameProfile(PaperMinecraftSessionService.java:38) ~[paper-1.19.2.jar:git-Paper-300]
    at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillProfileProperties(YggdrasilMinecraftSessionService.java:175) ~[authlib-3.11.49.jar:?]
    at com.destroystokyo.paper.profile.PaperMinecraftSessionService.fillProfileProperties(PaperMinecraftSessionService.java:31) ~[paper-1.19.2.jar:git-Paper-300]
    at net.minecraft.world.level.block.entity.SkullBlockEntity.lambda$updateGameprofile$3(SkullBlockEntity.java:142) ~[?:?]
    at net.minecraft.Util.ifElse(Util.java:467) ~[?:?]
    at net.minecraft.world.level.block.entity.SkullBlockEntity.lambda$updateGameprofile$6(SkullBlockEntity.java:139) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[06:57:16] [Craft Scheduler Thread - 24 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:57:16] [Craft Scheduler Thread - 24 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:58:16] [Craft Scheduler Thread - 34 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:58:17] [Craft Scheduler Thread - 34 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:59:17] [Craft Scheduler Thread - 25 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:59:17] [Craft Scheduler Thread - 25 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:00:17] [Craft Scheduler Thread - 29 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:00:17] [Craft Scheduler Thread - 29 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:01:17] [Craft Scheduler Thread - 26 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:01:17] [Craft Scheduler Thread - 26 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:02:17] [Craft Scheduler Thread - 10 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:02:17] [Craft Scheduler Thread - 10 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:03:17] [Craft Scheduler Thread - 10 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:03:18] [Craft Scheduler Thread - 10 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:04:18] [Craft Scheduler Thread - 26 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:04:18] [Craft Scheduler Thread - 26 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:04:37] [Server thread/INFO]: Saving is already turned on
[07:04:37] [Server thread/INFO]: Saving the game (this may take a moment!)
[07:04:37] [Server thread/INFO]: Saved the game
[07:05:18] [Craft Scheduler Thread - 26 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:05:18] [Craft Scheduler Thread - 26 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:06:18] [Craft Scheduler Thread - 42 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:06:18] [Craft Scheduler Thread - 42 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:07:18] [Craft Scheduler Thread - 24 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:07:18] [Craft Scheduler Thread - 24 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:08:18] [Craft Scheduler Thread - 37 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:08:19] [Craft Scheduler Thread - 37 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:09:19] [Craft Scheduler Thread - 29 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:09:19] [Craft Scheduler Thread - 29 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:10:15] [Craft Scheduler Thread - 27 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[07:10:19] [Craft Scheduler Thread - 37 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:10:19] [Craft Scheduler Thread - 37 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:11:19] [Craft Scheduler Thread - 44 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:11:19] [Craft Scheduler Thread - 44 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:12:19] [Craft Scheduler Thread - 43 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:12:19] [Craft Scheduler Thread - 43 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:13:19] [Craft Scheduler Thread - 25 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:13:20] [Craft Scheduler Thread - 25 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:14:19] [Craft Scheduler Thread - 27 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:14:20] [Craft Scheduler Thread - 27 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:14:40] [Server thread/INFO]: Saving is already turned on
[07:14:40] [Server thread/INFO]: Saving the game (this may take a moment!)
[07:14:40] [Server thread/INFO]: Saved the game
[07:15:20] [Craft Scheduler Thread - 40 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:15:20] [Craft Scheduler Thread - 40 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:16:20] [Craft Scheduler Thread - 28 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:16:20] [Craft Scheduler Thread - 28 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:17:20] [Craft Scheduler Thread - 40 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:17:20] [Craft Scheduler Thread - 40 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:18:20] [Craft Scheduler Thread - 46 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:18:20] [Craft Scheduler Thread - 46 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:19:20] [Craft Scheduler Thread - 27 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:19:21] [Craft Scheduler Thread - 27 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:20:21] [Craft Scheduler Thread - 28 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:20:21] [Craft Scheduler Thread - 28 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:21:21] [Craft Scheduler Thread - 50 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:21:21] [Craft Scheduler Thread - 50 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:22:21] [Craft Scheduler Thread - 58 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:22:21] [Craft Scheduler Thread - 58 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:23:21] [Craft Scheduler Thread - 28 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:23:22] [Craft Scheduler Thread - 28 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:24:22] [Craft Scheduler Thread - 46 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:24:22] [Craft Scheduler Thread - 46 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:24:43] [Server thread/INFO]: Saving is already turned on
[07:24:43] [Server thread/INFO]: Saving the game (this may take a moment!)
[07:24:43] [Server thread/INFO]: Saved the game
[07:25:15] [Craft Scheduler Thread - 63 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[07:25:22] [Craft Scheduler Thread - 28 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:25:22] [Craft Scheduler Thread - 28 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:26:22] [Craft Scheduler Thread - 62 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:26:22] [Craft Scheduler Thread - 62 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:27:22] [Craft Scheduler Thread - 25 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:27:22] [Craft Scheduler Thread - 25 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:28:22] [Craft Scheduler Thread - 62 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:28:23] [Craft Scheduler Thread - 62 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:29:23] [Craft Scheduler Thread - 64 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:29:23] [Craft Scheduler Thread - 64 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:30:23] [Craft Scheduler Thread - 64 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:30:23] [Craft Scheduler Thread - 64 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:31:23] [Craft Scheduler Thread - 63 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:31:23] [Craft Scheduler Thread - 63 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:32:23] [Craft Scheduler Thread - 64 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:32:23] [Craft Scheduler Thread - 64 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:33:23] [Craft Scheduler Thread - 58 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:33:24] [Craft Scheduler Thread - 58 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:34:24] [Craft Scheduler Thread - 69 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:34:24] [Craft Scheduler Thread - 69 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:34:46] [Server thread/INFO]: Saving is already turned on
[07:34:46] [Server thread/INFO]: Saving the game (this may take a moment!)
[07:34:46] [Server thread/INFO]: Saved the game
[07:35:24] [Craft Scheduler Thread - 74 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:35:24] [Craft Scheduler Thread - 74 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:35:47] [Network Listener - #2/INFO]: [Geyser-Spigot] /50.86.120.74:16766 tried to connect!
[07:35:48] [Network Listener - #2/INFO]: [Geyser-Spigot] Player connected with username Makii1244
[07:35:48] [defaultEventLoopGroup-6-2/INFO]: [Geyser-Spigot] Makii1244 (logged in as: Makii1244) has connected to the Java server
[07:35:49] [Geyser Spigot connection thread-5-3/INFO]: UUID of player .Makii1244 is 00000000-0000-0000-0009-01f9f429cffe
[07:35:49] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@1b9ce12d[id=00000000-0000-0000-0009-01f9f429cffe,name=.Makii1244,properties={},legacy=false] (/50.86.120.74:0): You are not whitelisted on this server!
[07:35:49] [Geyser Spigot connection thread-5-3/INFO]: [floodgate] Floodgate player logged in as .Makii1244 disconnected
[07:35:49] [defaultEventLoopGroup-6-2/INFO]: [Geyser-Spigot] Makii1244 has disconnected from the Java server because of You are not whitelisted on this server!
[07:35:49] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@1b9ce12d[id=00000000-0000-0000-0009-01f9f429cffe,name=.Makii1244,properties={},legacy=false] (/50.86.120.74:0): You are not whitelisted on this server!
[07:35:49] [Server thread/INFO]: com.mojang.authlib.GameProfile@1b9ce12d[id=00000000-0000-0000-0009-01f9f429cffe,name=.Makii1244,properties={},legacy=false] (/50.86.120.74:0) lost connection: You are not whitelisted on this server!
[07:36:24] [Craft Scheduler Thread - 64 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:36:24] [Craft Scheduler Thread - 64 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:37:24] [Craft Scheduler Thread - 61 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:37:25] [Craft Scheduler Thread - 61 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:38:25] [Craft Scheduler Thread - 67 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:38:25] [Craft Scheduler Thread - 67 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:39:25] [Craft Scheduler Thread - 70 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:39:25] [Craft Scheduler Thread - 70 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:40:15] [Craft Scheduler Thread - 67 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 1 offline users.
[07:40:25] [Craft Scheduler Thread - 81 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:40:25] [Craft Scheduler Thread - 81 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:41:25] [Craft Scheduler Thread - 76 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:41:25] [Craft Scheduler Thread - 76 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:42:25] [Craft Scheduler Thread - 76 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:42:25] [Craft Scheduler Thread - 76 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:43:25] [Craft Scheduler Thread - 82 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:43:26] [Craft Scheduler Thread - 82 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:44:26] [Craft Scheduler Thread - 80 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:44:26] [Craft Scheduler Thread - 80 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:44:49] [Server thread/INFO]: Saving is already turned on
[07:44:49] [Server thread/INFO]: Saving the game (this may take a moment!)
[07:44:49] [Server thread/INFO]: Saved the game
[07:45:26] [Craft Scheduler Thread - 58 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:45:26] [Craft Scheduler Thread - 58 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:46:26] [Craft Scheduler Thread - 67 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:46:26] [Craft Scheduler Thread - 67 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:47:26] [Craft Scheduler Thread - 80 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:47:26] [Craft Scheduler Thread - 80 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:48:26] [Craft Scheduler Thread - 67 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:48:27] [Craft Scheduler Thread - 67 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:49:27] [Craft Scheduler Thread - 84 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:49:27] [Craft Scheduler Thread - 84 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:50:27] [Craft Scheduler Thread - 70 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:50:27] [Craft Scheduler Thread - 70 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:51:27] [Craft Scheduler Thread - 69 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:51:27] [Craft Scheduler Thread - 69 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:52:27] [Craft Scheduler Thread - 67 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:52:28] [Craft Scheduler Thread - 67 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:53:28] [Craft Scheduler Thread - 83 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:53:28] [Craft Scheduler Thread - 83 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:54:28] [Craft Scheduler Thread - 76 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:54:28] [Craft Scheduler Thread - 76 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:54:52] [Server thread/INFO]: Saving is already turned on
[07:54:52] [Server thread/INFO]: Saving the game (this may take a moment!)
[07:54:52] [Server thread/INFO]: Saved the game
[07:55:15] [Craft Scheduler Thread - 81 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[07:55:15] [Craft Scheduler Thread - 92 - Factions/WARN]: [Factions] Update available: 0.6.20
[07:55:28] [Craft Scheduler Thread - 89 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:55:28] [Craft Scheduler Thread - 89 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:56:28] [Craft Scheduler Thread - 70 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:56:28] [Craft Scheduler Thread - 70 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:57:28] [Craft Scheduler Thread - 83 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:57:29] [Craft Scheduler Thread - 83 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:58:29] [Craft Scheduler Thread - 76 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:58:29] [Craft Scheduler Thread - 76 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:59:29] [Craft Scheduler Thread - 83 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:59:29] [Craft Scheduler Thread - 83 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:00:29] [Craft Scheduler Thread - 95 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:00:29] [Craft Scheduler Thread - 95 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:01:29] [Craft Scheduler Thread - 103 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:01:29] [Craft Scheduler Thread - 103 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:02:29] [Craft Scheduler Thread - 89 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:02:30] [Craft Scheduler Thread - 89 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:03:30] [Craft Scheduler Thread - 100 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:03:30] [Craft Scheduler Thread - 100 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:04:30] [Craft Scheduler Thread - 76 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:04:30] [Craft Scheduler Thread - 76 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:04:55] [Server thread/INFO]: Saving is already turned on
[08:04:55] [Server thread/INFO]: Saving the game (this may take a moment!)
[08:04:55] [Server thread/INFO]: Saved the game
[08:05:30] [Craft Scheduler Thread - 107 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:05:30] [Craft Scheduler Thread - 107 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:06:30] [Craft Scheduler Thread - 99 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:06:31] [Craft Scheduler Thread - 99 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:07:31] [Craft Scheduler Thread - 101 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:07:31] [Craft Scheduler Thread - 101 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:08:31] [Craft Scheduler Thread - 95 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:08:31] [Craft Scheduler Thread - 95 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:09:31] [Craft Scheduler Thread - 89 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:09:31] [Craft Scheduler Thread - 89 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:10:15] [Craft Scheduler Thread - 108 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[08:10:31] [Craft Scheduler Thread - 103 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:10:32] [Craft Scheduler Thread - 103 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:11:32] [Craft Scheduler Thread - 95 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:11:32] [Craft Scheduler Thread - 95 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:12:32] [Craft Scheduler Thread - 108 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:12:32] [Craft Scheduler Thread - 108 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:13:32] [Craft Scheduler Thread - 115 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:13:32] [Craft Scheduler Thread - 115 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:14:32] [Craft Scheduler Thread - 114 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:14:33] [Craft Scheduler Thread - 114 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:14:59] [Server thread/INFO]: Saving is already turned on
[08:14:59] [Server thread/INFO]: Saving the game (this may take a moment!)
[08:14:59] [Server thread/INFO]: Saved the game
[08:15:33] [Craft Scheduler Thread - 116 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:15:33] [Craft Scheduler Thread - 116 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:16:33] [Craft Scheduler Thread - 117 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:16:33] [Craft Scheduler Thread - 117 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:17:33] [Craft Scheduler Thread - 118 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:17:33] [Craft Scheduler Thread - 118 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:18:33] [Craft Scheduler Thread - 120 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:18:33] [Craft Scheduler Thread - 120 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:19:33] [Craft Scheduler Thread - 116 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:19:34] [Craft Scheduler Thread - 116 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:20:34] [Craft Scheduler Thread - 126 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:20:34] [Craft Scheduler Thread - 126 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:21:34] [Craft Scheduler Thread - 107 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:21:34] [Craft Scheduler Thread - 107 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:22:34] [Craft Scheduler Thread - 126 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:22:34] [Craft Scheduler Thread - 126 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:23:34] [Craft Scheduler Thread - 111 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:23:34] [Craft Scheduler Thread - 111 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:24:34] [Craft Scheduler Thread - 128 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:24:35] [Craft Scheduler Thread - 128 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:25:02] [Server thread/INFO]: Saving is already turned on
[08:25:02] [Server thread/INFO]: Saving the game (this may take a moment!)
[08:25:02] [Server thread/INFO]: Saved the game
[08:25:15] [Craft Scheduler Thread - 128 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[08:25:35] [Craft Scheduler Thread - 117 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:25:35] [Craft Scheduler Thread - 117 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:26:35] [Craft Scheduler Thread - 112 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:26:35] [Craft Scheduler Thread - 112 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:27:35] [Craft Scheduler Thread - 124 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:27:35] [Craft Scheduler Thread - 124 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:28:35] [Craft Scheduler Thread - 127 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:28:35] [Craft Scheduler Thread - 127 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:29:35] [Craft Scheduler Thread - 136 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:29:35] [Craft Scheduler Thread - 136 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:30:35] [Craft Scheduler Thread - 116 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:30:36] [Craft Scheduler Thread - 116 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:31:36] [Craft Scheduler Thread - 133 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:31:36] [Craft Scheduler Thread - 133 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:32:36] [Craft Scheduler Thread - 133 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:32:36] [Craft Scheduler Thread - 133 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:33:36] [Craft Scheduler Thread - 137 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:33:36] [Craft Scheduler Thread - 137 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:34:36] [Craft Scheduler Thread - 127 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:34:36] [Craft Scheduler Thread - 127 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:35:05] [Server thread/INFO]: Saving is already turned on
[08:35:05] [Server thread/INFO]: Saving the game (this may take a moment!)
[08:35:05] [Server thread/INFO]: Saved the game
[08:35:36] [Craft Scheduler Thread - 133 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:35:37] [Craft Scheduler Thread - 133 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:36:37] [Craft Scheduler Thread - 132 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:36:37] [Craft Scheduler Thread - 132 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:37:37] [Craft Scheduler Thread - 143 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:37:37] [Craft Scheduler Thread - 143 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:38:37] [Craft Scheduler Thread - 117 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:38:37] [Craft Scheduler Thread - 117 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:39:37] [Craft Scheduler Thread - 127 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:39:37] [Craft Scheduler Thread - 127 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:40:15] [Craft Scheduler Thread - 142 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[08:40:37] [Craft Scheduler Thread - 137 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:40:37] [Craft Scheduler Thread - 137 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:41:37] [Craft Scheduler Thread - 137 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:41:38] [Craft Scheduler Thread - 137 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:42:38] [Craft Scheduler Thread - 144 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:42:38] [Craft Scheduler Thread - 144 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:43:38] [Craft Scheduler Thread - 146 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:43:38] [Craft Scheduler Thread - 146 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:44:38] [Craft Scheduler Thread - 144 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:44:38] [Craft Scheduler Thread - 144 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:45:08] [Server thread/INFO]: Saving is already turned on
[08:45:08] [Server thread/INFO]: Saving the game (this may take a moment!)
[08:45:08] [Server thread/INFO]: Saved the game
[08:45:38] [Craft Scheduler Thread - 147 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:45:39] [Craft Scheduler Thread - 147 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:46:39] [Craft Scheduler Thread - 150 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:46:39] [Craft Scheduler Thread - 150 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:47:39] [Craft Scheduler Thread - 134 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:47:39] [Craft Scheduler Thread - 134 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:48:39] [Craft Scheduler Thread - 144 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:48:39] [Craft Scheduler Thread - 144 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:49:39] [Craft Scheduler Thread - 148 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:49:39] [Craft Scheduler Thread - 148 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:50:39] [Craft Scheduler Thread - 141 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:50:40] [Craft Scheduler Thread - 141 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:51:40] [Craft Scheduler Thread - 134 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:51:40] [Craft Scheduler Thread - 134 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:52:40] [Craft Scheduler Thread - 141 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:52:40] [Craft Scheduler Thread - 141 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:53:40] [Craft Scheduler Thread - 134 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:53:40] [Craft Scheduler Thread - 134 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:54:40] [Craft Scheduler Thread - 159 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:54:41] [Craft Scheduler Thread - 159 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:55:11] [Server thread/INFO]: Saving is already turned on
[08:55:11] [Server thread/INFO]: Saving the game (this may take a moment!)
[08:55:11] [Server thread/INFO]: Saved the game
[08:55:15] [Craft Scheduler Thread - 147 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[08:55:15] [Craft Scheduler Thread - 150 - Factions/WARN]: [Factions] Update available: 0.6.20
[08:55:41] [Craft Scheduler Thread - 156 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:55:41] [Craft Scheduler Thread - 156 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:56:41] [Craft Scheduler Thread - 150 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:56:41] [Craft Scheduler Thread - 150 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:57:41] [Craft Scheduler Thread - 159 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:57:42] [Craft Scheduler Thread - 159 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:58:41] [Craft Scheduler Thread - 156 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:58:42] [Craft Scheduler Thread - 156 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:59:42] [Craft Scheduler Thread - 163 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:59:42] [Craft Scheduler Thread - 163 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:00:42] [Craft Scheduler Thread - 164 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:00:42] [Craft Scheduler Thread - 164 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:01:42] [Craft Scheduler Thread - 163 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:01:42] [Craft Scheduler Thread - 163 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:02:42] [Craft Scheduler Thread - 166 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:02:42] [Craft Scheduler Thread - 166 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:03:42] [Craft Scheduler Thread - 170 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:03:43] [Craft Scheduler Thread - 170 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:04:43] [Craft Scheduler Thread - 148 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:04:43] [Craft Scheduler Thread - 148 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:05:14] [Server thread/INFO]: Saving is already turned on
[09:05:14] [Server thread/INFO]: Saving the game (this may take a moment!)
[09:05:14] [Server thread/INFO]: Saved the game
[09:05:43] [Craft Scheduler Thread - 165 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:05:43] [Craft Scheduler Thread - 165 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:06:43] [Craft Scheduler Thread - 169 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:06:43] [Craft Scheduler Thread - 169 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:07:43] [Craft Scheduler Thread - 174 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:07:44] [Craft Scheduler Thread - 174 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:08:44] [Craft Scheduler Thread - 166 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:08:44] [Craft Scheduler Thread - 166 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:09:44] [Craft Scheduler Thread - 172 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:09:44] [Craft Scheduler Thread - 172 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:10:15] [Craft Scheduler Thread - 176 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[09:10:44] [Craft Scheduler Thread - 166 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:10:44] [Craft Scheduler Thread - 166 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:11:44] [Craft Scheduler Thread - 175 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:11:44] [Craft Scheduler Thread - 175 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:12:44] [Craft Scheduler Thread - 178 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:12:44] [Craft Scheduler Thread - 178 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:13:44] [Craft Scheduler Thread - 175 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:13:45] [Craft Scheduler Thread - 175 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:14:45] [Craft Scheduler Thread - 183 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:14:45] [Craft Scheduler Thread - 183 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:15:17] [Server thread/INFO]: Saving is already turned on
[09:15:17] [Server thread/INFO]: Saving the game (this may take a moment!)
[09:15:17] [Server thread/INFO]: Saved the game
[09:15:45] [Craft Scheduler Thread - 184 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:15:45] [Craft Scheduler Thread - 184 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:16:45] [Craft Scheduler Thread - 172 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:16:46] [Craft Scheduler Thread - 172 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:17:46] [Craft Scheduler Thread - 163 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:17:46] [Craft Scheduler Thread - 163 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:18:46] [Craft Scheduler Thread - 186 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:18:46] [Craft Scheduler Thread - 186 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:19:46] [Craft Scheduler Thread - 163 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:19:46] [Craft Scheduler Thread - 163 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:20:46] [Craft Scheduler Thread - 186 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:20:47] [Craft Scheduler Thread - 186 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:21:46] [Craft Scheduler Thread - 189 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:21:47] [Craft Scheduler Thread - 189 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:22:47] [Craft Scheduler Thread - 175 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:22:47] [Craft Scheduler Thread - 175 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:23:47] [Craft Scheduler Thread - 190 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:23:47] [Craft Scheduler Thread - 190 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:24:47] [Craft Scheduler Thread - 190 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:24:47] [Craft Scheduler Thread - 190 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:25:15] [Craft Scheduler Thread - 189 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[09:25:20] [Server thread/INFO]: Saving is already turned on
[09:25:20] [Server thread/INFO]: Saving the game (this may take a moment!)
[09:25:20] [Server thread/INFO]: Saved the game
[09:25:47] [Craft Scheduler Thread - 184 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:25:47] [Craft Scheduler Thread - 184 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:26:47] [Craft Scheduler Thread - 185 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:26:48] [Craft Scheduler Thread - 185 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:27:48] [Craft Scheduler Thread - 186 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:27:48] [Craft Scheduler Thread - 186 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:28:48] [Craft Scheduler Thread - 185 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:28:48] [Craft Scheduler Thread - 185 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:29:48] [Craft Scheduler Thread - 180 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:29:48] [Craft Scheduler Thread - 180 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:30:48] [Craft Scheduler Thread - 185 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:30:48] [Craft Scheduler Thread - 185 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:31:48] [Craft Scheduler Thread - 194 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:31:49] [Craft Scheduler Thread - 194 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:32:49] [Craft Scheduler Thread - 185 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:32:49] [Craft Scheduler Thread - 185 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:33:49] [Craft Scheduler Thread - 186 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:33:49] [Craft Scheduler Thread - 186 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:34:49] [Craft Scheduler Thread - 180 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:34:49] [Craft Scheduler Thread - 180 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:35:23] [Server thread/INFO]: Saving is already turned on
[09:35:23] [Server thread/INFO]: Saving the game (this may take a moment!)
[09:35:23] [Server thread/INFO]: Saved the game
[09:35:49] [Craft Scheduler Thread - 191 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:35:49] [Craft Scheduler Thread - 191 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:36:49] [Craft Scheduler Thread - 194 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:36:50] [Craft Scheduler Thread - 194 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:37:50] [Craft Scheduler Thread - 205 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:37:50] [Craft Scheduler Thread - 205 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:38:50] [Craft Scheduler Thread - 192 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:38:50] [Craft Scheduler Thread - 192 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:39:50] [Craft Scheduler Thread - 203 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:39:50] [Craft Scheduler Thread - 203 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:40:15] [Craft Scheduler Thread - 194 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[09:40:50] [Craft Scheduler Thread - 186 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:40:50] [Craft Scheduler Thread - 186 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:41:50] [Craft Scheduler Thread - 210 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:41:50] [Craft Scheduler Thread - 210 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:42:50] [Craft Scheduler Thread - 186 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:42:51] [Craft Scheduler Thread - 186 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:43:51] [Craft Scheduler Thread - 207 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:43:51] [Craft Scheduler Thread - 207 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:44:51] [Craft Scheduler Thread - 186 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:44:51] [Craft Scheduler Thread - 186 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:45:26] [Server thread/INFO]: Saving is already turned on
[09:45:26] [Server thread/INFO]: Saving the game (this may take a moment!)
[09:45:26] [Server thread/INFO]: Saved the game
[09:45:51] [Craft Scheduler Thread - 208 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:45:51] [Craft Scheduler Thread - 208 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:46:51] [Craft Scheduler Thread - 208 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:46:51] [Craft Scheduler Thread - 208 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:47:51] [Craft Scheduler Thread - 214 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:47:52] [Craft Scheduler Thread - 214 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:48:52] [Craft Scheduler Thread - 220 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:48:52] [Craft Scheduler Thread - 220 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:49:52] [Craft Scheduler Thread - 222 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:49:52] [Craft Scheduler Thread - 222 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:50:52] [Craft Scheduler Thread - 219 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:50:52] [Craft Scheduler Thread - 219 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:51:52] [Craft Scheduler Thread - 202 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:51:52] [Craft Scheduler Thread - 202 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:52:52] [Craft Scheduler Thread - 186 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:52:53] [Craft Scheduler Thread - 186 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:53:53] [Craft Scheduler Thread - 223 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:53:53] [Craft Scheduler Thread - 223 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:54:53] [Craft Scheduler Thread - 221 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:54:53] [Craft Scheduler Thread - 221 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:55:15] [Craft Scheduler Thread - 224 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[09:55:15] [Craft Scheduler Thread - 225 - Factions/WARN]: [Factions] Update available: 0.6.20
[09:55:29] [Server thread/INFO]: Saving is already turned on
[09:55:29] [Server thread/INFO]: Saving the game (this may take a moment!)
[09:55:29] [Server thread/INFO]: Saved the game
[09:55:53] [Craft Scheduler Thread - 221 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:55:53] [Craft Scheduler Thread - 221 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:56:53] [Craft Scheduler Thread - 206 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:56:53] [Craft Scheduler Thread - 206 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:57:53] [Craft Scheduler Thread - 233 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:57:54] [Craft Scheduler Thread - 233 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:58:01] [Network Listener - #0/INFO]: [Geyser-Spigot] /174.235.209.12:6628 tried to connect!
[09:58:02] [Network Listener - #3/INFO]: [Geyser-Spigot] Player connected with username BHTVLive
[09:58:02] [defaultEventLoopGroup-6-3/INFO]: [Geyser-Spigot] BHTVLive (logged in as: BHTVLive) has connected to the Java server
[09:58:03] [Geyser Spigot connection thread-5-4/INFO]: UUID of player .BHTVLive is 00000000-0000-0000-0009-00000af27d82
[09:58:03] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@55159632[id=00000000-0000-0000-0009-00000af27d82,name=.BHTVLive,properties={},legacy=false] (/174.235.209.12:0): You are not whitelisted on this server!
[09:58:03] [Geyser Spigot connection thread-5-4/INFO]: [floodgate] Floodgate player logged in as .BHTVLive disconnected
[09:58:03] [defaultEventLoopGroup-6-3/INFO]: [Geyser-Spigot] BHTVLive has disconnected from the Java server because of You are not whitelisted on this server!
[09:58:03] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@55159632[id=00000000-0000-0000-0009-00000af27d82,name=.BHTVLive,properties={},legacy=false] (/174.235.209.12:0): You are not whitelisted on this server!
[09:58:03] [Server thread/INFO]: com.mojang.authlib.GameProfile@55159632[id=00000000-0000-0000-0009-00000af27d82,name=.BHTVLive,properties={},legacy=false] (/174.235.209.12:0) lost connection: You are not whitelisted on this server!
[09:58:54] [Craft Scheduler Thread - 229 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:58:54] [Craft Scheduler Thread - 229 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:59:54] [Craft Scheduler Thread - 234 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:59:54] [Craft Scheduler Thread - 234 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:00:54] [Craft Scheduler Thread - 233 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:00:54] [Craft Scheduler Thread - 233 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:01:54] [Craft Scheduler Thread - 224 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:01:54] [Craft Scheduler Thread - 224 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:02:54] [Craft Scheduler Thread - 229 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:02:55] [Craft Scheduler Thread - 229 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:03:55] [Craft Scheduler Thread - 246 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:03:55] [Craft Scheduler Thread - 246 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:04:55] [Craft Scheduler Thread - 243 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:04:55] [Craft Scheduler Thread - 243 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:05:32] [Server thread/INFO]: Saving is already turned on
[10:05:32] [Server thread/INFO]: Saving the game (this may take a moment!)
[10:05:32] [Server thread/INFO]: Saved the game
[10:05:55] [Craft Scheduler Thread - 212 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:05:55] [Craft Scheduler Thread - 212 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:06:55] [Craft Scheduler Thread - 229 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:06:55] [Craft Scheduler Thread - 229 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:07:55] [Craft Scheduler Thread - 236 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:07:56] [Craft Scheduler Thread - 236 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:08:56] [Craft Scheduler Thread - 249 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:08:56] [Craft Scheduler Thread - 249 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:09:56] [Craft Scheduler Thread - 250 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:09:56] [Craft Scheduler Thread - 250 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:10:15] [Craft Scheduler Thread - 250 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[10:10:56] [Craft Scheduler Thread - 246 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:10:56] [Craft Scheduler Thread - 246 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:11:56] [Craft Scheduler Thread - 224 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:11:56] [Craft Scheduler Thread - 224 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:12:56] [Craft Scheduler Thread - 250 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:12:57] [Craft Scheduler Thread - 250 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:13:57] [Craft Scheduler Thread - 236 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:13:57] [Craft Scheduler Thread - 236 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:14:57] [Craft Scheduler Thread - 224 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:14:57] [Craft Scheduler Thread - 224 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:15:36] [Server thread/INFO]: Saving is already turned on
[10:15:36] [Server thread/INFO]: Saving the game (this may take a moment!)
[10:15:36] [Server thread/INFO]: Saved the game
[10:15:57] [Craft Scheduler Thread - 236 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:15:57] [Craft Scheduler Thread - 236 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:16:57] [Craft Scheduler Thread - 251 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:16:58] [Craft Scheduler Thread - 251 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:17:58] [Craft Scheduler Thread - 236 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:17:58] [Craft Scheduler Thread - 236 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:18:58] [Craft Scheduler Thread - 253 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:18:58] [Craft Scheduler Thread - 253 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:19:58] [Craft Scheduler Thread - 263 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:19:58] [Craft Scheduler Thread - 263 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:20:58] [Craft Scheduler Thread - 236 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:20:58] [Craft Scheduler Thread - 236 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:21:58] [Craft Scheduler Thread - 263 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:21:59] [Craft Scheduler Thread - 263 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:22:59] [Craft Scheduler Thread - 224 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:22:59] [Craft Scheduler Thread - 224 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:23:59] [Craft Scheduler Thread - 224 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:23:59] [Craft Scheduler Thread - 224 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:24:59] [Craft Scheduler Thread - 249 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:24:59] [Craft Scheduler Thread - 249 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:25:15] [Craft Scheduler Thread - 249 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[10:25:39] [Server thread/INFO]: Saving is already turned on
[10:25:39] [Server thread/INFO]: Saving the game (this may take a moment!)
[10:25:39] [Server thread/INFO]: Saved the game
[10:25:59] [Craft Scheduler Thread - 266 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:25:59] [Craft Scheduler Thread - 266 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:26:59] [Craft Scheduler Thread - 258 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:26:59] [Craft Scheduler Thread - 258 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:27:59] [Craft Scheduler Thread - 249 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:28:00] [Craft Scheduler Thread - 249 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:29:00] [Craft Scheduler Thread - 269 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:29:00] [Craft Scheduler Thread - 269 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:29:28] [Votifier epoll worker/ERROR]: [Votifier] Unable to process vote from /167.94.138.119:36624
com.vexsoftware.votifier.io.netty.channel.unix.Errors$NativeIoException: readAddress(..) failed: Connection reset by peer
[10:30:00] [Craft Scheduler Thread - 224 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:30:00] [Craft Scheduler Thread - 224 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:31:00] [Craft Scheduler Thread - 265 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:31:00] [Craft Scheduler Thread - 265 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:32:00] [Craft Scheduler Thread - 262 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:32:00] [Craft Scheduler Thread - 262 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:33:00] [Craft Scheduler Thread - 274 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:33:00] [Craft Scheduler Thread - 274 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:34:00] [Craft Scheduler Thread - 249 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:34:01] [Craft Scheduler Thread - 249 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:35:01] [Craft Scheduler Thread - 273 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:35:01] [Craft Scheduler Thread - 273 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:35:42] [Server thread/INFO]: Saving is already turned on
[10:35:42] [Server thread/INFO]: Saving the game (this may take a moment!)
[10:35:42] [Server thread/INFO]: Saved the game
[10:36:01] [Craft Scheduler Thread - 224 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:36:01] [Craft Scheduler Thread - 224 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:37:01] [Craft Scheduler Thread - 279 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:37:01] [Craft Scheduler Thread - 279 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:38:01] [Craft Scheduler Thread - 278 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:38:02] [Craft Scheduler Thread - 278 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:39:02] [Craft Scheduler Thread - 224 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:39:02] [Craft Scheduler Thread - 224 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:40:02] [Craft Scheduler Thread - 262 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:40:02] [Craft Scheduler Thread - 262 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:40:15] [Craft Scheduler Thread - 273 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[10:41:02] [Craft Scheduler Thread - 276 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:41:02] [Craft Scheduler Thread - 276 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:42:02] [Craft Scheduler Thread - 283 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:42:03] [Craft Scheduler Thread - 283 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:43:03] [Craft Scheduler Thread - 282 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:43:03] [Craft Scheduler Thread - 282 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:44:03] [Craft Scheduler Thread - 280 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:44:03] [Craft Scheduler Thread - 280 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:45:03] [Craft Scheduler Thread - 288 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:45:03] [Craft Scheduler Thread - 288 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:45:45] [Server thread/INFO]: Saving is already turned on
[10:45:45] [Server thread/INFO]: Saving the game (this may take a moment!)
[10:45:45] [Server thread/INFO]: Saved the game
[10:46:03] [Craft Scheduler Thread - 276 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:46:03] [Craft Scheduler Thread - 276 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:47:03] [Craft Scheduler Thread - 276 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:47:04] [Craft Scheduler Thread - 276 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:48:04] [Craft Scheduler Thread - 292 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:48:04] [Craft Scheduler Thread - 292 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:49:04] [Craft Scheduler Thread - 291 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:49:04] [Craft Scheduler Thread - 291 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:50:04] [Craft Scheduler Thread - 283 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:50:04] [Craft Scheduler Thread - 283 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:51:04] [Craft Scheduler Thread - 274 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:51:05] [Craft Scheduler Thread - 274 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:52:05] [Craft Scheduler Thread - 287 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:52:05] [Craft Scheduler Thread - 287 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:53:05] [Craft Scheduler Thread - 292 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:53:05] [Craft Scheduler Thread - 292 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:54:05] [Craft Scheduler Thread - 294 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:54:05] [Craft Scheduler Thread - 294 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:55:05] [Craft Scheduler Thread - 287 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:55:06] [Craft Scheduler Thread - 287 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:55:15] [Craft Scheduler Thread - 292 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[10:55:15] [Craft Scheduler Thread - 288 - Factions/WARN]: [Factions] Update available: 0.6.20
[10:55:48] [Server thread/INFO]: Saving is already turned on
[10:55:48] [Server thread/INFO]: Saving the game (this may take a moment!)
[10:55:48] [Server thread/INFO]: Saved the game
[10:56:06] [Craft Scheduler Thread - 292 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:56:06] [Craft Scheduler Thread - 292 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:57:06] [Craft Scheduler Thread - 274 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:57:06] [Craft Scheduler Thread - 274 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:58:06] [Craft Scheduler Thread - 292 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:58:06] [Craft Scheduler Thread - 292 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:59:06] [Craft Scheduler Thread - 288 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:59:06] [Craft Scheduler Thread - 288 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:00:06] [Craft Scheduler Thread - 287 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:00:07] [Craft Scheduler Thread - 287 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:01:07] [Craft Scheduler Thread - 302 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:01:07] [Craft Scheduler Thread - 302 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:02:07] [Craft Scheduler Thread - 304 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:02:07] [Craft Scheduler Thread - 304 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:03:07] [Craft Scheduler Thread - 287 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:03:07] [Craft Scheduler Thread - 287 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:04:07] [Craft Scheduler Thread - 298 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:04:07] [Craft Scheduler Thread - 298 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:05:07] [Craft Scheduler Thread - 309 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:05:08] [Craft Scheduler Thread - 309 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:05:51] [Server thread/INFO]: Saving is already turned on
[11:05:51] [Server thread/INFO]: Saving the game (this may take a moment!)
[11:05:51] [Server thread/INFO]: Saved the game
[11:06:08] [Craft Scheduler Thread - 309 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:06:08] [Craft Scheduler Thread - 309 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:07:08] [Craft Scheduler Thread - 287 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:07:08] [Craft Scheduler Thread - 287 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:08:08] [Craft Scheduler Thread - 313 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:08:08] [Craft Scheduler Thread - 313 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:09:08] [Craft Scheduler Thread - 304 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:09:08] [Craft Scheduler Thread - 304 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:10:08] [Craft Scheduler Thread - 316 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:10:08] [Craft Scheduler Thread - 316 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:10:15] [Craft Scheduler Thread - 298 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[11:11:08] [Craft Scheduler Thread - 310 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:11:09] [Craft Scheduler Thread - 310 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:12:09] [Craft Scheduler Thread - 320 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:12:09] [Craft Scheduler Thread - 320 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:13:09] [Craft Scheduler Thread - 302 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:13:09] [Craft Scheduler Thread - 302 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:14:09] [Craft Scheduler Thread - 317 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:14:09] [Craft Scheduler Thread - 317 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:15:09] [Craft Scheduler Thread - 298 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:15:10] [Craft Scheduler Thread - 298 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:15:54] [Server thread/INFO]: Saving is already turned on
[11:15:54] [Server thread/INFO]: Saving the game (this may take a moment!)
[11:15:54] [Server thread/INFO]: Saved the game
[11:16:10] [Craft Scheduler Thread - 287 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:16:10] [Craft Scheduler Thread - 287 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:17:10] [Craft Scheduler Thread - 298 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:17:10] [Craft Scheduler Thread - 298 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:18:10] [Craft Scheduler Thread - 322 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:18:10] [Craft Scheduler Thread - 322 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:19:10] [Craft Scheduler Thread - 317 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:19:10] [Craft Scheduler Thread - 317 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:20:10] [Craft Scheduler Thread - 317 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:20:10] [Craft Scheduler Thread - 317 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:20:53] [User Authenticator #0/INFO]: UUID of player SkyWorker25 is ad2b25a3-55dd-401c-8854-2525b2dac4d0
[11:20:54] [Server thread/INFO]: UserHidden[/Redacted:Redacted] logged in with entity id 255 at ([world]1.2128800004572537, 106.0, -3.30121440357681)
[11:20:56] [Server thread/INFO]: UserHidden issued server command: /pv
[11:20:58] [Server thread/INFO]: UserHidden issued server command: /pv 1
[11:21:08] [Server thread/ERROR]: Could not pass event NPCRightClickEvent to Citizens v2.0.30-SNAPSHOT (build 2665)
java.lang.NullPointerException: name cannot be null
    at com.google.common.base.Preconditions.checkNotNull(Preconditions.java:907) ~[guava-31.0.1-jre.jar:?]
    at net.citizensnpcs.npc.ai.speech.CitizensSpeechFactory.getVocalChord(CitizensSpeechFactory.java:34) ~[Citizens-2.0.30-b2665.jar:?]
    at net.citizensnpcs.api.ai.speech.SimpleSpeechController.speak(SimpleSpeechController.java:33) ~[Citizens-2.0.30-b2665.jar:?]
    at net.citizensnpcs.api.ai.speech.SimpleSpeechController.speak(SimpleSpeechController.java:23) ~[Citizens-2.0.30-b2665.jar:?]
    at net.citizensnpcs.trait.text.Text.sendText(Text.java:273) ~[Citizens-2.0.30-b2665.jar:?]
    at net.citizensnpcs.trait.text.Text.onRightClick(Text.java:174) ~[Citizens-2.0.30-b2665.jar:?]
    at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:40) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:git-Paper-300]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:670) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at net.citizensnpcs.EventListen.onPlayerInteractEntity(EventListen.java:508) ~[Citizens-2.0.30-b2665.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor589.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:git-Paper-300]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:670) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl$5.performInteraction(ServerGamePacketListenerImpl.java:2914) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl$5.a(ServerGamePacketListenerImpl.java:2970) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundInteractPacket$InteractionAction.dispatch(ServerboundInteractPacket.java:131) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundInteractPacket.dispatch(ServerboundInteractPacket.java:80) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleInteract(ServerGamePacketListenerImpl.java:2906) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundInteractPacket.handle(ServerboundInteractPacket.java:67) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundInteractPacket.handle(ServerboundInteractPacket.java:12) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$1(PacketUtils.java:51) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.19.2.jar:git-Paper-300]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1341) ~[paper-1.19.2.jar:git-Paper-300]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:185) ~[paper-1.19.2.jar:git-Paper-300]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1318) ~[paper-1.19.2.jar:git-Paper-300]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1311) ~[paper-1.19.2.jar:git-Paper-300]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1289) ~[paper-1.19.2.jar:git-Paper-300]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1177) ~[paper-1.19.2.jar:git-Paper-300]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-300]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[11:21:09] [Server thread/INFO]: UserHidden issued server command: /mv tp wild
[11:21:10] [Craft Scheduler Thread - 315 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:21:11] [Craft Scheduler Thread - 315 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:21:15] [Craft Scheduler Thread - 304 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[11:22:11] [Craft Scheduler Thread - 327 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:22:11] [Craft Scheduler Thread - 327 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:23:11] [Craft Scheduler Thread - 327 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:23:11] [Craft Scheduler Thread - 327 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:24:11] [Craft Scheduler Thread - 334 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:24:11] [Craft Scheduler Thread - 334 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:25:11] [Server thread/INFO]: Saving the game (this may take a moment!)
[11:25:11] [Server thread/INFO]: Saved the game
[11:25:11] [Server thread/INFO]: Stopping the server
[11:25:11] [Server thread/INFO]: Stopping server
[11:25:11] [Server thread/INFO]: [ShopGUIPlus] Disabling ShopGUIPlus v1.77.4
[11:25:11] [Server thread/INFO]: [VotingPlugin] Disabling VotingPlugin v6.9.5
[11:25:11] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion votingplugin
[11:25:11] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin VotingPlugin was disabled.
[11:25:11] [Server thread/INFO]: [CustomJoinMessages] Disabling CustomJoinMessages v17.0.0
[11:25:11] [Server thread/INFO]: [SimpleScore] Disabling SimpleScore v3.12.2
[11:25:12] [Server thread/INFO]: [CitizensGUI] Disabling CitizensGUI v1.11
[11:25:12] [Server thread/INFO]: [TabList] Disabling TabList v5.6.3
[11:25:12] [Server thread/INFO]: [StackMob] Disabling StackMob v5.8.4
[11:25:12] [Server thread/INFO]: [SuperVanish] Disabling SuperVanish v6.2.12
[11:25:12] [Server thread/INFO]: [mcMMO] Disabling mcMMO v2.1.218-SNAPSHOT
[11:25:12] [Server thread/INFO]: [mcMMO] Server shutdown has been executed, saving and cleaning up data...
[11:25:12] [Server thread/INFO]: [mcMMO] Saving mcMMOPlayers... (1)
[11:25:12] [Server thread/INFO]: [mcMMO] Saving data for player: SkyWorker25
[11:25:12] [Server thread/INFO]: [mcMMO] Finished save operation for 1 players!
[11:25:12] [Server thread/INFO]: [ExcellentCrates] Disabling ExcellentCrates v4.0.5
[11:25:12] [Server thread/INFO]: [ExcellentCrates] [Citizens Hook] Unregistered listeners
[11:25:12] [Server thread/INFO]: [ExcellentCrates] Auto-save: Saved 1 online users | 0 offline users.
[11:25:12] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.30-SNAPSHOT (build 2665)
[11:25:12] [Server thread/INFO]: [BetterRTP] Disabling BetterRTP v3.6.1
[11:25:12] [Server thread/INFO]: [Negativity] Disabling Negativity v1.12.3
[11:25:12] [Server thread/INFO]: [DeathMessages] Disabling DeathMessages v1.4.15
[11:25:12] [Server thread/INFO]: [Images] Disabling Images v2.2.7
[11:25:12] [Server thread/INFO]: [Factions] Disabling Factions v1.6.9.5-U0.6.19-b304
[11:25:12] [Server thread/INFO]: [Factions] Disabled
[11:25:12] [Server thread/INFO]: [SmashHit] Disabling SmashHit v1.0-RC2
[11:25:12] [Server thread/INFO]: [WorldGuard] Disabling WorldGuard v7.0.7+216b061
[11:25:12] [Server thread/INFO]: [WorldGuard] Shutting down executor and cancelling any pending tasks...
[11:25:12] [Server thread/INFO]: [NFCNotes] Disabling NFCNotes v2.3.0
[11:25:12] [Server thread/INFO]: [EssentialsChat] Disabling EssentialsChat vTeamCity
[11:25:12] [Server thread/INFO]: [ajLeaderboards] Disabling ajLeaderboards v2.6.2
[11:25:12] [pool-81-thread-1/INFO]: [ajLeaderboards] Shutting down cache method..
[11:25:12] [pool-81-thread-1/INFO]: [ajLeaderboards] Cache method shut down
[11:25:12] [Server thread/INFO]: [ajLeaderboards] Killing remaining workers
[11:25:12] [Server thread/INFO]: [ajLeaderboards] Remaining workers killed
[11:25:12] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.6.2 disabled.
[11:25:12] [Server thread/INFO]: [TradeSystem] Disabling TradeSystem v2.1.3
[11:25:13] [Server thread/INFO]:  
[11:25:13] [Server thread/INFO]: __________________________________________________________
[11:25:13] [Server thread/INFO]:  
[11:25:13] [Server thread/INFO]:                        TradeSystem [2.1.3]
[11:25:13] [Server thread/INFO]:  
[11:25:13] [Server thread/INFO]: Status:
[11:25:13] [Server thread/INFO]:  
[11:25:13] [Server thread/INFO]: MC-Version: 1.19.2 (R0.1-SNAPSHOT, Paper)
[11:25:13] [Server thread/INFO]:  
[11:25:13] [Server thread/INFO]:   > Cancelling all active trades
[11:25:13] [Server thread/INFO]:  
[11:25:13] [Server thread/INFO]: Finished (0ms)
[11:25:13] [Server thread/INFO]:  
[11:25:13] [Server thread/INFO]: __________________________________________________________
[11:25:13] [Server thread/INFO]:  
[11:25:13] [Server thread/INFO]: [Multiverse-Core] Disabling Multiverse-Core v4.3.1-b861
[11:25:13] [Server thread/INFO]: [SilkSpawners] Disabling SilkSpawners v2.1.8
[11:25:13] [Server thread/INFO]: [SilkSpawners] [INFO]: Stopping version checker
[11:25:13] [Server thread/INFO]: [AdvancedBan] Disabling AdvancedBan v2.3.0
[11:25:13] [Server thread/INFO]: [hsqldb.db.HSQLDB849F209E8D.ENGINE] Database closed
[11:25:13] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Shutdown initiated...
[11:25:13] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Shutdown completed.
[11:25:13] [Server thread/INFO]: 
 
[]=====[Disabling AdvancedBan]=====[]
| Information:
|   Name: AdvancedBan
|   Developer: Leoko
|   Version: 2.3.0
|   Storage: HSQLDB (local)
| Support:
|   Github: https://github.com/DevLeoko/AdvancedBan/issues
|   Discord: https://discord.gg/ycDG6rS
| Twitter: @LeokoGar
[]================================[]
 
[11:25:13] [Server thread/INFO]: [Essentials] Disabling Essentials v2.19.7
[11:25:13] [Server thread/INFO]: [Vault] [Economy] Essentials Economy unhooked.
[11:25:13] [Server thread/INFO]: [DecentHolograms] Disabling DecentHolograms v2.7.5
[11:25:13] [Server thread/INFO]: [PlayerKits] Disabling PlayerKits v2.24.2
[11:25:13] [Server thread/INFO]: [PlayerKits] Has been disabled! Version: 2.24.2
[11:25:13] [Server thread/INFO]: [WorldEdit] Disabling WorldEdit v7.2.12+6240-87f4ae1
[11:25:13] [Server thread/INFO]: Unregistering com.sk89q.worldedit.bukkit.BukkitServerInterface from WorldEdit
[11:25:13] [Server thread/INFO]: [NexEngine] Disabling NexEngine v2.2.0 build-18/06/2022
[11:25:13] [Server thread/INFO]: [Geyser-Spigot] Disabling Geyser-Spigot v2.1.0-SNAPSHOT
[11:25:13] [Server thread/INFO]: [Geyser-Spigot] Shutting down Geyser.
[11:25:13] [Server thread/INFO]: [Geyser-Spigot] Geyser shutdown successfully.
[11:25:13] [Server thread/INFO]: [PlayerVaults] Disabling PlayerVaults v4.2.9
[11:25:13] [Server thread/INFO]: [Orebfuscator] Disabling Orebfuscator v5.3.1
[11:25:13] [Server thread/INFO]: [ChatItem] Disabling ChatItem v2.4.5
[11:25:13] [Server thread/INFO]: [AuctionHouse] Disabling AuctionHouse v3.3.1
[11:25:13] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion auctionhouse
[11:25:13] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin AuctionHouse was disabled.
[11:25:13] [Server thread/INFO]: [AuctionHouse] Saving auctions data
[11:25:13] [Server thread/INFO]: [CommandDoesNotExist] Disabling CommandDoesNotExist v4.2.1
[11:25:13] [Server thread/INFO]: [CDNE] [CDNE] CommandDoesNotExist version 4.2.1 is Disabled
[11:25:13] [Server thread/INFO]: [AntiCooldown] Disabling AntiCooldown v4.0.3
[11:25:13] [Server thread/INFO]: [AntiCooldownLogger] The Plugin will be deactivated ...
[11:25:13] [Server thread/INFO]: [AntiCooldownLogger] The plugin was successfully deactivated!
[11:25:13] [Server thread/INFO]: [EasyClearChat] Disabling EasyClearChat v3.7.0
[11:25:13] [Server thread/INFO]: [EasyClearChat] Plugin disabled. Plugin created by xtomyserrax
[11:25:13] [Server thread/INFO]: [floodgate] Disabling floodgate v2.2.0-SNAPSHOT (b70-6e2c19f)
[11:25:13] [Server thread/INFO]: [LiteEco] Disabling LiteEco v1.1.5-SNAPSHOT
[11:25:13] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion liteeco
[11:25:13] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin LiteEco was disabled.
[11:25:13] [Server thread/INFO]: [LiteEco] Plugin is disabled
[11:25:13] [Server thread/INFO]: [Vault] Disabling Vault v1.7.3-b131
[11:25:13] [Server thread/INFO]: [Enterprise] Disabling Enterprise v1.7
[11:25:13] [Server thread/INFO]: [EzHomes] Disabling EzHomes v1.7.2
[11:25:13] [Server thread/INFO]: [LegacyKB] Disabling LegacyKB v2.0.2
[11:25:13] [Server thread/INFO]: [PermissionsEx] Disabling PermissionsEx v1.23.4
[11:25:13] [Server thread/INFO]: [ObsidianBreaker] Disabling ObsidianBreaker v2.1
[11:25:13] [Server thread/INFO]: [ServerListMotdSpigot] Disabling ServerListMotdSpigot v1.2.5
[11:25:13] [Server thread/INFO]: [SimpleTpa] Disabling SimpleTpa v6.1
[11:25:13] [Server thread/INFO]: [SimpleTpa] If you need support contact me at https://discord.gg/SZUkza9
[11:25:13] [Server thread/INFO]: [SimpleTpa] Simple Tpa has been disabled on version 6.1
[11:25:13] [Server thread/INFO]: [VoidSpawn] Disabling VoidSpawn v1.20.0
[11:25:13] [Server thread/INFO]: [VoidSpawn] v1.20.0 saving config
[11:25:13] [Server thread/INFO]: [VoidSpawn] v1.20.0 disabled
[11:25:13] [Server thread/INFO]: [ProtocolLib] Disabling ProtocolLib v5.0.0-SNAPSHOT-b569
[11:25:13] [Server thread/INFO]: [LaggRemover] Disabling LaggRemover v2.0.6
[11:25:13] [Server thread/INFO]: [LaggRemover] LaggRemover has been disabled!
[11:25:13] [Server thread/INFO]: [GroundItems] Disabling GroundItems v1.0
[11:25:13] [Server thread/INFO]: [Votifier] Disabling Votifier v2.7.3
[11:25:13] [WebSocketConnectReadThread-203/INFO]: [Geyser-Spigot] The skin uploader has been closed
[11:25:13] [WebSocketConnectReadThread-513/WARN]: Exception in thread "WebSocketConnectReadThread-513" java.lang.IllegalStateException: zip file closed
[11:25:13] [WebSocketConnectReadThread-513/WARN]:     at java.base/java.util.zip.ZipFile.ensureOpen(ZipFile.java:831)
[11:25:13] [WebSocketConnectReadThread-513/WARN]:     at java.base/java.util.zip.ZipFile.getEntry(ZipFile.java:330)
[11:25:13] [WebSocketConnectReadThread-513/WARN]:     at java.base/java.util.jar.JarFile.getEntry(JarFile.java:518)
[11:25:13] [WebSocketConnectReadThread-513/WARN]:     at java.base/java.util.jar.JarFile.getJarEntry(JarFile.java:473)
[11:25:13] [WebSocketConnectReadThread-513/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:189)
[11:25:13] [WebSocketConnectReadThread-513/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:587)
[11:25:13] [WebSocketConnectReadThread-513/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:129)
[11:25:13] [WebSocketConnectReadThread-513/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:124)
[11:25:13] [WebSocketConnectReadThread-513/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:520)
[11:25:13] [WebSocketConnectReadThread-513/WARN]:     at floodgate-spigot.jar//org.geysermc.floodgate.logger.JavaUtilFloodgateLogger.error(JavaUtilFloodgateLogger.java:49)
[11:25:13] [WebSocketConnectReadThread-513/WARN]:     at floodgate-spigot.jar//org.geysermc.floodgate.skin.SkinUploadSocket.onError(SkinUploadSocket.java:179)
[11:25:13] [WebSocketConnectReadThread-513/WARN]:     at floodgate-spigot.jar//org.java_websocket.client.WebSocketClient.run(WebSocketClient.java:523)
[11:25:13] [WebSocketConnectReadThread-513/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[11:25:15] [Server thread/INFO]: [Votifier] Votifier disabled.
[11:25:15] [Server thread/INFO]: [BuycraftX] Disabling BuycraftX v12.0.8
[11:25:15] [Server thread/INFO]: [SetSpawn] Disabling SetSpawn v4.0
[11:25:15] [Server thread/INFO]: [SetSpawn] Disabled!
[11:25:15] [Server thread/INFO]: [Broadcast] Disabling Broadcast v1.7
[11:25:15] [Server thread/INFO]: [AutoSmelt] Disabling AutoSmelt v1.9.1
[11:25:15] [Server thread/INFO]: [AutoSmelt] [STDOUT] [AutoSmelt Log] Disabling AutoSmelt
[11:25:15] [Server thread/WARN]: Nag author(s): '[tweedjt]' of 'AutoSmelt' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[11:25:15] [Server thread/INFO]: [PVPControl] Disabling PVPControl v1.4.2
[11:25:15] [Server thread/INFO]: [Vadelia] Combat logged disabled!
[11:25:15] [Server thread/INFO]: [VoidGen] Disabling VoidGen v2.2.1
[11:25:15] [Server thread/INFO]: [BisectHosting] Disabling BisectHosting v1.0.4
[11:25:15] [Server thread/INFO]: [SimpleTrash] Disabling SimpleTrash v1.0
[11:25:15] [Server thread/INFO]: [NoEncryption] Disabling NoEncryption v4.3
[11:25:15] [Server thread/INFO]: [NoteBlockAPI] Disabling NoteBlockAPI v1.6.1-SNAPSHOT
[11:25:15] [Server thread/INFO]: [NametagEdit] Disabling NametagEdit v4.5.11
[11:25:15] [Server thread/INFO]: [SimpleGeyserVL] Disabling SimpleGeyserVL v1.1b
[11:25:15] [Server thread/INFO]: [PlaceholderAPI] Disabling PlaceholderAPI v2.11.2
[11:25:15] [Server thread/INFO]: [TubeTils] Disabling TubeTils v1.0.5
[11:25:15] [Server thread/INFO]: [TubeTils] The Plugin will be deactivated ...
[11:25:15] [Server thread/INFO]: [TubeTils] The plugin was successfully deactivated!
[11:25:15] [Server thread/INFO]: Saving players
[11:25:15] [Server thread/INFO]: SkyWorker25 lost connection: Server closed
[11:25:15] [Server thread/INFO]: SkyWorker25 left the game
[11:25:15] [Server thread/INFO]: Saving worlds
[11:25:15] [Server thread/INFO]: Saving chunks for level 'ServerLevel[lobby]'/minecraft:overworld
[11:25:15] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'lobby'
[11:25:15] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'lobby'
[11:25:15] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'lobby'
[11:25:15] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 4 entity chunks, 0 poi chunks in world 'lobby' in 0.00s
[11:25:15] [Server thread/INFO]: ThreadedAnvilChunkStorage (lobby): All chunks are saved
[11:25:15] [Server thread/INFO]: Saving chunks for level 'ServerLevel[lobby_nether]'/minecraft:the_nether
[11:25:15] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'lobby_nether'
[11:25:15] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'lobby_nether'
[11:25:15] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'lobby_nether'
[11:25:15] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 24 entity chunks, 0 poi chunks in world 'lobby_nether' in 0.00s
[11:25:15] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[11:25:15] [Server thread/INFO]: Saving chunks for level 'ServerLevel[1]'/minecraft:1
[11:25:15] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world '1'
[11:25:15] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world '1'
[11:25:15] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world '1'
[11:25:15] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 0 entity chunks, 0 poi chunks in world '1' in 0.00s
[11:25:15] [Server thread/INFO]: ThreadedAnvilChunkStorage (1): All chunks are saved
[11:25:15] [Server thread/INFO]: Saving chunks for level 'ServerLevel[2]'/minecraft:2
[11:25:15] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world '2'
[11:25:15] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world '2'
[11:25:15] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world '2'
[11:25:15] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 0 entity chunks, 0 poi chunks in world '2' in 0.00s
[11:25:15] [Server thread/INFO]: ThreadedAnvilChunkStorage (2): All chunks are saved
[11:25:15] [Server thread/INFO]: Saving chunks for level 'ServerLevel[3]'/minecraft:3
[11:25:15] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world '3'
[11:25:15] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world '3'
[11:25:15] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world '3'
[11:25:15] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 0 entity chunks, 0 poi chunks in world '3' in 0.00s
[11:25:15] [Server thread/INFO]: ThreadedAnvilChunkStorage (3): All chunks are saved
[11:25:15] [Server thread/INFO]: Saving chunks for level 'ServerLevel[wild]'/minecraft:wild
[11:25:15] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'wild'
[11:25:15] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'wild'
[11:25:15] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'wild'
[11:25:15] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 0 entity chunks, 0 poi chunks in world 'wild' in 0.00s
[11:25:15] [Server thread/INFO]: ThreadedAnvilChunkStorage (wild): All chunks are saved
[11:25:15] [Server thread/INFO]: ThreadedAnvilChunkStorage: All dimensions are saved
[11:25:15] [Server thread/INFO]: Saving usercache.json
[11:25:15] [Server thread/INFO]: Flushing Chunk IO
[11:25:15] [Server thread/INFO]: Closing Thread Pool
[11:25:15] [Server thread/INFO]: Closing Server