Paste #103395: Unnamed Server Log Paste

Date: 2022/11/23 18:43:50 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
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221


[02:10:01] [ServerMain/INFO]: Building unoptimized datafixer
[02:10:02] [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'
[02:10:03] [ServerMain/INFO]: Loaded 7 recipes
[02:10:04] [Server thread/INFO]: Starting minecraft server version 1.19.2
[02:10:04] [Server thread/INFO]: Loading properties
[02:10:04] [Server thread/INFO]: This server is running Paper version git-Paper-282 (MC: 1.19.2) (Implementing API version 1.19.2-R0.1-SNAPSHOT) (Git: e6e37ba)
[02:10:05] [Server thread/INFO]: Server Ping Player Sample Count: 12
[02:10:05] [Server thread/INFO]: Using 4 threads for Netty based IO
[02:10:05] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 2 worker threads, and gen parallelism of 2 threads
[02:10:05] [Server thread/INFO]: Default game type: SURVIVAL
[02:10:05] [Server thread/INFO]: Generating keypair
[02:10:05] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25578
[02:10:05] [Server thread/INFO]: Using epoll channel type
[02:10:05] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[02:10:05] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[02:10:06] [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!
[02:10:09] [Server thread/WARN]: Legacy plugin IPWhitelist v1.7 does not specify an api-version.
[02:10:09] [Server thread/WARN]: Legacy plugin CrackShotShop v0.4 does not specify an api-version.
[02:10:09] [Server thread/WARN]: Legacy plugin AdvancedReplay v1.8.2 does not specify an api-version.
[02:10:10] [Server thread/INFO]: [CrazyCrates] Loading 1 libraries... please wait
[02:10:10] [Server thread/INFO]: [CrazyCrates] Loaded library /home/minecraft/multicraft/servers/server570109/libraries/org/jetbrains/kotlin/kotlin-stdlib/1.7.10/kotlin-stdlib-1.7.10.jar
[02:10:10] [Server thread/INFO]: [CrazyCrates] Loaded library /home/minecraft/multicraft/servers/server570109/libraries/org/jetbrains/kotlin/kotlin-stdlib-common/1.7.10/kotlin-stdlib-common-1.7.10.jar
[02:10:10] [Server thread/INFO]: [CrazyCrates] Loaded library /home/minecraft/multicraft/servers/server570109/libraries/org/jetbrains/annotations/13.0/annotations-13.0.jar
[02:10:10] [Server thread/INFO]: [VulcanCrackshot] Loading VulcanCrackshot v1.0-SNAPSHOT
[02:10:10] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.11.2
[02:10:10] [Server thread/INFO]: [OldCombatMechanics] Loading OldCombatMechanics v1.11.0
[02:10:10] [Server thread/INFO]: [ViaVersion] Loading ViaVersion v4.4.2
[02:10:10] [Server thread/INFO]: [ViaVersion] ViaVersion 4.4.2 is now loaded, injecting!
[02:10:10] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading 1.12 -> 1.13 mappings...
[02:10:10] [Via-Mappingloader-1/INFO]: [ViaVersion] Loading 1.13 -> 1.13.2 mappings...
[02:10:10] [Via-Mappingloader-2/INFO]: [ViaVersion] Loading 1.13.2 -> 1.14 mappings...
[02:10:10] [Via-Mappingloader-3/INFO]: [ViaVersion] Loading 1.14 -> 1.15 mappings...
[02:10:10] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[02:10:10] [Via-Mappingloader-4/INFO]: [ViaVersion] Loading 1.15 -> 1.16 mappings...
[02:10:10] [Via-Mappingloader-2/INFO]: [ViaVersion] Loading 1.16 -> 1.16.2 mappings...
[02:10:10] [Via-Mappingloader-3/INFO]: [ViaVersion] Loading 1.16.2 -> 1.17 mappings...
[02:10:10] [Via-Mappingloader-1/INFO]: [ViaVersion] Loading 1.17 -> 1.18 mappings...
[02:10:10] [Via-Mappingloader-3/INFO]: [ViaVersion] Loading 1.18 -> 1.19 mappings...
[02:10:10] [Server thread/INFO]: [ViaBackwards] Loading ViaBackwards v4.4.2
[02:10:10] [Server thread/INFO]: [ViaBackwards] Loading translations...
[02:10:10] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.10 -> 1.9.4 mappings...
[02:10:10] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.11 -> 1.10 mappings...
[02:10:11] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.12 -> 1.11 mappings...
[02:10:11] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.13 -> 1.12 mappings...
[02:10:11] [Via-Mappingloader-3/INFO]: [ViaBackwards] Loading 1.13.2 -> 1.13 mappings...
[02:10:11] [Via-Mappingloader-3/INFO]: [ViaBackwards] Loading 1.14 -> 1.13.2 mappings...
[02:10:11] [Via-Mappingloader-3/INFO]: [ViaBackwards] Loading 1.15 -> 1.14 mappings...
[02:10:11] [Via-Mappingloader-3/INFO]: [ViaBackwards] Loading 1.16 -> 1.15 mappings...
[02:10:11] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.16.2 -> 1.16 mappings...
[02:10:11] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.17 -> 1.16.2 mappings...
[02:10:11] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.18 -> 1.17 mappings...
[02:10:11] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.19 -> 1.18 mappings...
[02:10:11] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.4.52
[02:10:11] [Server thread/INFO]: [ClearLag] Loading ClearLag v3.2.2
[02:10:11] [Server thread/INFO]: [CrackShot] Loading CrackShot v0.98.11
[02:10:11] [Server thread/INFO]: [BuycraftX] Loading BuycraftX v12.0.8
[02:10:11] [Server thread/INFO]: [MessageAnnouncer] Loading MessageAnnouncer v1.12.3
[02:10:11] [Server thread/INFO]: [StaffSpectate] Loading StaffSpectate v2.0
[02:10:11] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v5.0.0-SNAPSHOT-b577
[02:10:11] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.19.2) has not yet been tested! Proceed with caution.
[02:10:12] [Server thread/INFO]: [IPWhitelist] Loading IPWhitelist v1.7
[02:10:12] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[02:10:12] [Server thread/INFO]: [NametagEdit] Loading NametagEdit v4.5.11
[02:10:12] [Server thread/INFO]: [Vulcan] Loading Vulcan v2.7.0
[02:10:12] [Server thread/INFO]: [BungeeGuard] Loading BungeeGuard v1.3-SNAPSHOT
[02:10:12] [Server thread/INFO]: [Pl-Hide-Pro] Loading Pl-Hide-Pro v2.6.3
[02:10:12] [Server thread/INFO]: [PlayerVaults] Loading PlayerVaults v4.2.12
[02:10:12] [Server thread/INFO]: [MyCommand] Loading MyCommand v5.7.3
[02:10:12] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.2.12+6240-87f4ae1
[02:10:13] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@6c5f8e8a]
[02:10:13] [Server thread/INFO]: [VulcanTopGUI] Loading VulcanTopGUI v1.0.2
[02:10:13] [Server thread/INFO]: [CrackShotShop] Loading CrackShotShop v0.4
[02:10:13] [Server thread/INFO]: [DecentHolograms] Loading DecentHolograms v2.7.6
[02:10:13] [Server thread/INFO]: [Essentials] Loading Essentials v2.19.7
[02:10:13] [Server thread/INFO]: [AdvancedReplay] Loading AdvancedReplay v1.8.2
[02:10:13] [Server thread/INFO]: [CommandPanels] Loading CommandPanels v3.18.2.0
[02:10:13] [Server thread/INFO]: [LiteBans] Loading LiteBans v2.10.4
[02:10:13] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.3.1-b861
[02:10:13] [Server thread/INFO]: [PlayerVaultsGUI] Loading PlayerVaultsGUI v0.1.15
[02:10:13] [Server thread/INFO]: [Vouchers] Loading Vouchers v3.3.0
[02:10:13] [Server thread/INFO]: [ajLeaderboards] Loading ajLeaderboards v2.6.1
[02:10:13] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[gson]
[02:10:13] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, gson]
[02:10:13] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[jar-relocator]
[02:10:13] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, jar-relocator]
[02:10:13] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[asm]
[02:10:13] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, asm]
[02:10:13] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[asm-commons]
[02:10:13] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, asm-commons]
[02:10:13] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[gson]
[02:10:13] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, gson]
[02:10:13] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[HikariCP]
[02:10:13] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, HikariCP]
[02:10:13] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[slf4j-api]
[02:10:13] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, slf4j-api]
[02:10:13] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[h2]
[02:10:13] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, h2]
[02:10:13] [Server thread/INFO]: [EssentialsChat] Loading EssentialsChat v2.19.7
[02:10:13] [Server thread/INFO]: [MineResetLite] Loading MineResetLite v4.17.0
[02:10:13] [Server thread/INFO]: [AntiCheatReplay] Loading AntiCheatReplay v2.7.5
[02:10:13] [Server thread/INFO]: [CrazyCrates] Loading CrazyCrates v1.11.6-SNAPSHOT
[02:10:13] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.7+216b061
[02:10:13] [Server thread/INFO]: [EssentialsSpawn] Loading EssentialsSpawn v2.19.7
[02:10:13] [Server thread/INFO]: [CoreProtect] Loading CoreProtect v21.2
[02:10:13] [Server thread/INFO]: [SimpleScore] Loading SimpleScore v3.12.2
[02:10:13] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.30-SNAPSHOT (build 2767)
[02:10:13] [Server thread/INFO]: [OpenAudioMc] Loading OpenAudioMc v6.7.6
[02:10:13] [Server thread/INFO]: [Factions] Loading Factions v1.6.9.5-U0.5.18-b${build.number}
[02:10:13] [Server thread/INFO]: [SirBlobman Core] Loading SirBlobmanCore v2.4.1-Dev
[02:10:13] [Server thread/INFO]: [SilkSpawners] Loading SilkSpawners v7.3.1-SNAPSHOT-b${BUILD_NUMBER}
[02:10:13] [Server thread/INFO]: [dtlTraders] Loading dtlTraders v6.4.16
[02:10:13] [Server thread/INFO]: [CombatLogX] Loading CombatLogX v11.0.0.0-Beta-831
[02:10:13] [Server thread/INFO]: [CombatLogX] Configuration version is recent, no major changes necessary.
[02:10:13] [Server thread/INFO]: [CombatLogX] Loading expansions...
[02:10:13] [Server thread/INFO]: [CombatLogX] Loading expansion 'Damage Tagger v16.3'...
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/VanishNoPacket Compatibility.jar' because a plugin dependency was not loaded: VanishNoPacket
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/INFO]: [CombatLogX] Loading expansion 'Loot Protection v16.2'...
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/KingdomsX Compatibility.jar' because a plugin dependency was not loaded: Kingdoms
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/INFO]: [CombatLogX] Loading expansion 'Rewards v16.1'...
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/UltimateClaims Compatibility.jar' because a plugin dependency was not loaded: UltimateClaims
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/Lands Compatibility.jar' because a plugin dependency was not loaded: Lands
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/HuskSync Compatibility.jar' because a plugin dependency was not loaded: HuskSync
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/FeatherBoard Compatibility.jar' because a plugin dependency was not loaded: FeatherBoard
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/iDisguise Compatibility.jar' because a plugin dependency was not loaded: iDisguise
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/INFO]: [CombatLogX] Loading expansion 'Death Effects v16.0'...
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/Towny Compatibility.jar' because a plugin dependency was not loaded: Towny
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/INFO]: [CombatLogX] Loading expansion 'Action Bar v16.3'...
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/ProtectionStones Compatibility.jar' because a plugin dependency was not loaded: ProtectionStones
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/IridiumSkyblock Compatibility.jar' because a plugin dependency was not loaded: IridiumSkyblock
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/CMI Compatibility.jar' because a plugin dependency was not loaded: CMI
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/Residence Compatibility.jar' because a plugin dependency was not loaded: Residence
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/MythicMobs Compatibility.jar' because a plugin dependency was not loaded: MythicMobs
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/INFO]: [CombatLogX] Loading expansion 'SuperVanish/PremiumVanish Compatibility v16.0'...
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/INFO]: [CombatLogX] Loading expansion 'Force Field v16.6'...
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/INFO]: [CombatLogX] Loading expansion 'Logger v16.0'...
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/INFO]: [CombatLogX] Loading expansion 'Mob Tagger v16.4'...
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/RedProtect Compatibility.jar' because a plugin dependency was not loaded: RedProtect
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/HuskTowns Compatibility.jar' because a plugin dependency was not loaded: HuskTowns
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/INFO]: [CombatLogX] Loading expansion 'Cheat Prevention v16.11'...
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/INFO]: [CombatLogX] Loading expansion 'Newbie Helper v16.5'...
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/MVdWPlaceholderAPI Compatibility.jar' because a plugin dependency was not loaded: MVdWPlaceholderAPI
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/GriefPrevention Compatibility.jar' because a plugin dependency was not loaded: GriefPrevention
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/SuperiorSkyblock Compatibility.jar' because a plugin dependency was not loaded: SuperiorSkyblock
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/GriefDefender Compatibility.jar' because a plugin dependency was not loaded: GriefDefender
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/ASkyBlock Compatibility.jar' because a plugin dependency was not loaded: ASkyBlock
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/INFO]: [CombatLogX] Loading expansion 'EssentialsX Compatibility v16.0'...
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/LibsDisguises Compatibility.jar' because a plugin dependency was not loaded: LibsDisguises
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/MarriageMaster Compatibility.jar' because a plugin dependency was not loaded: MarriageMaster
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/Konquest Compatibility.jar' because a plugin dependency was not loaded: Konquest
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/uSkyBlock Compatibility.jar' because a plugin dependency was not loaded: uSkyBlock
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/AngelChest Compatibility.jar' because a plugin dependency was not loaded: AngelChest
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/BSkyBlock Compatibility.jar' because a plugin dependency was not loaded: BentoBox
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/INFO]: [CombatLogX] Loading expansion 'WorldGuard Compatibility v16.2'...
[02:10:13] [Server thread/INFO]: [CombatLogX] [WorldGuard Compatibility] Successfully found a dependency: WorldGuard v7.0.7+216b061
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/PreciousStones Compatibility.jar' because a plugin dependency was not loaded: PreciousStones
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/INFO]: [CombatLogX] Loading expansion 'Factions Compatibility v16.1'...
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/INFO]: [CombatLogX] Loading expansion 'PlaceholderAPI Compatibility v16.4'...
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/FabledSkyBlock Compatibility.jar' because a plugin dependency was not loaded: FabledSkyBlock
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/INFO]: [CombatLogX] Loading expansion 'CrackShot Compatibility v16.0'...
[02:10:13] [Server thread/INFO]: [CombatLogX]  
[02:10:13] [Server thread/INFO]: [CombatLogX] Successfully loaded 16 expansions.
[02:10:13] [Server thread/INFO]: [ShopGUIPlus] Loading ShopGUIPlus v1.80.1
[02:10:13] [Server thread/INFO]: [ShopGUIPlusSilkSpawnersBridge] Loading ShopGUIPlusSilkSpawnersBridge v1.4.0
[02:10:13] [Server thread/INFO]: [FactionsKore] Loading FactionsKore v1.0
[02:10:13] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[02:10:13] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.52
[02:10:14] [Server thread/INFO]:         __    
[02:10:14] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.52
[02:10:14] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[02:10:14] [Server thread/INFO]: 
[02:10:14] [Server thread/INFO]: [LuckPerms] Loading configuration...
[02:10:15] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MYSQL]
[02:10:15] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[02:10:15] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[02:10:16] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[02:10:16] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[02:10:16] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[02:10:17] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 3072ms)
[02:10:17] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0-SNAPSHOT-b577
[02:10:17] [Server thread/INFO]: [ProtocolLib] Started structure compiler thread.
[02:10:17] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[02:10:17] [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.
[02:10:17] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[02:10:17] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[02:10:17] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[02:10:17] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[02:10:17] [Server thread/INFO]: [BungeeGuard] Enabling BungeeGuard v1.3-SNAPSHOT
[02:10:17] [Server thread/INFO]: [BungeeGuard] Using Paper's PlayerHandshakeEvent to listen for connections.
[02:10:17] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.12+6240-87f4ae1
[02:10:17] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[02:10:17] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[02:10:17] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_19_R1.PaperweightAdapter as the Bukkit adapter
[02:10:18] [Server thread/INFO]: [SirBlobman Core] Enabling SirBlobmanCore v2.4.1-Dev
[02:10:18] [Server thread/INFO]: [SirBlobman Core] Successfully loaded 1 language(s).
[02:10:18] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[02:10:18] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[02:10:18] [Server thread/WARN]: Whilst this makes it possible to use BungeeCord, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[02:10:18] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[02:10:18] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[02:10:18] [Server thread/INFO]: Preparing level "Guns"
[02:10:18] [Server thread/INFO]: -------- World Settings For [Guns] --------
[02:10:18] [Server thread/INFO]: Item Merge Radius: 2.5
[02:10:18] [Server thread/INFO]: Item Despawn Rate: 6000
[02:10:18] [Server thread/INFO]: View Distance: 10
[02:10:18] [Server thread/INFO]: Simulation Distance: 10
[02:10:18] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[02:10:18] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[02:10:18] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[02:10:18] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[02:10:18] [Server thread/INFO]: Mob Spawn Range: 6
[02:10:18] [Server thread/INFO]: Experience Merge Radius: 3.0
[02:10:18] [Server thread/INFO]: Cactus Growth Modifier: 100%
[02:10:18] [Server thread/INFO]: Cane Growth Modifier: 100%
[02:10:18] [Server thread/INFO]: Melon Growth Modifier: 100%
[02:10:18] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[02:10:18] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[02:10:18] [Server thread/INFO]: Sapling Growth Modifier: 100%
[02:10:18] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[02:10:18] [Server thread/INFO]: Carrot Growth Modifier: 100%
[02:10:18] [Server thread/INFO]: Potato Growth Modifier: 100%
[02:10:18] [Server thread/INFO]: Wheat Growth Modifier: 100%
[02:10:18] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[02:10:18] [Server thread/INFO]: Vine Growth Modifier: 100%
[02:10:18] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[02:10:18] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[02:10:18] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[02:10:18] [Server thread/INFO]: Kelp Growth Modifier: 100%
[02:10:18] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[02:10:18] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[02:10:18] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[02:10:18] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[02:10:18] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[02:10:18] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[02:10:18] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[02:10:18] [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
[02:10:18] [Server thread/INFO]: Max TNT Explosions: 100
[02:10:18] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[02:10:19] [Server thread/INFO]: -------- World Settings For [Guns_nether] --------
[02:10:19] [Server thread/INFO]: Item Merge Radius: 2.5
[02:10:19] [Server thread/INFO]: Item Despawn Rate: 6000
[02:10:19] [Server thread/INFO]: View Distance: 10
[02:10:19] [Server thread/INFO]: Simulation Distance: 10
[02:10:19] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[02:10:19] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[02:10:19] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[02:10:19] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[02:10:19] [Server thread/INFO]: Mob Spawn Range: 6
[02:10:19] [Server thread/INFO]: Experience Merge Radius: 3.0
[02:10:19] [Server thread/INFO]: Cactus Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: Cane Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: Melon Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: Sapling Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: Carrot Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: Potato Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: Wheat Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: Vine Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: Kelp Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[02:10:19] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[02:10:19] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[02:10:19] [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
[02:10:19] [Server thread/INFO]: Max TNT Explosions: 100
[02:10:19] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[02:10:19] [Server thread/INFO]: -------- World Settings For [Guns_the_end] --------
[02:10:19] [Server thread/INFO]: Item Merge Radius: 2.5
[02:10:19] [Server thread/INFO]: Item Despawn Rate: 6000
[02:10:19] [Server thread/INFO]: View Distance: 10
[02:10:19] [Server thread/INFO]: Simulation Distance: 10
[02:10:19] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[02:10:19] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[02:10:19] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[02:10:19] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[02:10:19] [Server thread/INFO]: Mob Spawn Range: 6
[02:10:19] [Server thread/INFO]: Experience Merge Radius: 3.0
[02:10:19] [Server thread/INFO]: Cactus Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: Cane Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: Melon Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: Sapling Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: Carrot Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: Potato Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: Wheat Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: Vine Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: Kelp Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[02:10:19] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[02:10:19] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[02:10:19] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[02:10:19] [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
[02:10:19] [Server thread/INFO]: Max TNT Explosions: 100
[02:10:19] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[02:10:19] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[02:10:19] [Server thread/INFO]: Time elapsed: 197 ms
[02:10:19] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[02:10:19] [Server thread/INFO]: Time elapsed: 60 ms
[02:10:19] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[02:10:19] [Server thread/INFO]: Time elapsed: 49 ms
[02:10:19] [Server thread/INFO]: [VulcanCrackshot] Enabling VulcanCrackshot v1.0-SNAPSHOT
[02:10:19] [Server thread/WARN]: [VulcanCrackshot] Loaded class me.frep.vulcan.api.event.VulcanFlagEvent from Vulcan v2.7.0 which is not a depend or softdepend of this plugin.
[02:10:19] [Server thread/WARN]: [VulcanCrackshot] Loaded class com.shampaggon.crackshot.events.WeaponDamageEntityEvent from CrackShot v0.98.11 which is not a depend or softdepend of this plugin.
[02:10:19] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.2
[02:10:19] [Server thread/WARN]: [PlaceholderAPI] Loaded class com.viaversion.viaversion.api.type.Type from ViaVersion v4.4.2 which is not a depend or softdepend of this plugin.
[02:10:20] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[02:10:20] [Server thread/INFO]: [OldCombatMechanics] Enabling OldCombatMechanics v1.11.0
[02:10:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ocm [1.11.0]
[02:10:20] [Server thread/INFO]: [OldCombatMechanics] OldCombatMechanics v1.11.0 has been enabled
[02:10:20] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.4.2
[02:10:20] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.4.2
[02:10:20] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
[02:10:20] [Server thread/INFO]: [ClearLag] Using version-adapter: LatestVersionAdapter
[02:10:20] [Server thread/INFO]: [ClearLag] Loading modules...
[02:10:20] [Server thread/WARN]: [ClearLag] Clearlag failed to use the internal TPS tracker during initialization. Reverted to estimation... (net.minecraft.server.v1_19_R1.MinecraftServer)
[02:10:20] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[02:10:20] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[02:10:20] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[02:10:20] [Server thread/INFO]: [CrackShot] Enabling CrackShot v0.98.11
[02:10:20] [Thread-10/INFO]: [ClearLag] Checking for updates compatible with your bukkit version [1.19]...
[02:10:20] [Server thread/INFO]: [CrackShot] [STDOUT] [CrackShot] Gun-mode activated. Boop!
[02:10:20] [Server thread/WARN]: Nag author(s): '[Shampaggon]' of 'CrackShot' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[02:10:20] [Server thread/INFO]: [BuycraftX] Enabling BuycraftX v12.0.8
[02:10:20] [Server thread/INFO]: [BuycraftX] Validating your server key...
[02:10:20] [Thread-10/INFO]: [ClearLag] No updates found!
[02:10:21] [Server thread/WARN]: [BuycraftX] Your server and webstore online mode settings are mismatched. Unless you are using a proxy and server combination (such as BungeeCord/Spigot or LilyPad/Connect) that corrects UUIDs, then you may experience issues with packages not applying.
[02:10:21] [Server thread/WARN]: [BuycraftX] If you have verified that your set up is correct, you can suppress this message by setting is-bungeecord=true in your BuycraftX config.properties.
[02:10:21] [Server thread/INFO]: [BuycraftX] Fetching all server packages...
[02:10:21] [Server thread/INFO]: [MessageAnnouncer] Enabling MessageAnnouncer v1.12.3
[02:10:21] [Server thread/INFO]: [MessageAnnouncer] PlaceholderAPI integration was successful!
[02:10:21] [Server thread/INFO]: [StaffSpectate] Enabling StaffSpectate v2.0
[02:10:21] [Server thread/INFO]: [StaffSpectate] [Staff-Spectate] Plugin Version: 2.0 has been enabled!
[02:10:21] [Server thread/INFO]: [IPWhitelist] Enabling IPWhitelist v1.7*
[02:10:21] [Server thread/INFO]: [NametagEdit] Enabling NametagEdit v4.5.11
[02:10:21] [Server thread/INFO]: [NametagEdit] Found LuckPerms! Hooking in.
[02:10:21] [Server thread/INFO]: [Vulcan] Enabling Vulcan v2.7.0
[02:10:22] [Server thread/INFO]: [Vulcan] Server Version: 1.19.2 detected!
[02:10:22] [Server thread/INFO]: [Vulcan] BStats enabled!
[02:10:22] [Server thread/INFO]: [Vulcan] Registered CrackShot listener!
[02:10:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: Vulcan [2.7.0]
[02:10:22] [Server thread/INFO]: [Vulcan] PlaceholderAPI found. Enabling hook!
[02:10:22] [Server thread/INFO]: [Pl-Hide-Pro] Enabling Pl-Hide-Pro v2.6.3
[02:10:22] [Server thread/INFO]: [PlayerVaults] Enabling PlayerVaults v4.2.12
[02:10:22] [Server thread/INFO]: [PlayerVaults] Added PUMPKIN to list of blocked materials.
[02:10:22] [Server thread/INFO]: [PlayerVaults] Added DIAMOND_BLOCK to list of blocked materials.
[02:10:22] [Server thread/INFO]: [PlayerVaults] Loaded! Took 232ms
[02:10:22] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.7.3
[02:10:22] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.3*-=-=-=-=-=-=-=-=-=-*
[02:10:22] [Server thread/INFO]: | Hooked on Vault 1.7.3-b131
[02:10:22] [Server thread/INFO]: | Command file(s) found : 1
[02:10:22] [Server thread/INFO]: | Config : Ready.
[02:10:22] [Server thread/INFO]: | ProtocolLib found, features availables (SignMenu)
[02:10:22] [Server thread/INFO]: | 2 extra listeners activated
[02:10:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mycommand [1.0.0]
[02:10:22] [Server thread/INFO]: | Placeholder_API : Hooked, Ok.
[02:10:22] [Server thread/INFO]: | Custom commands loaded : 52
[02:10:22] [Server thread/INFO]: | You're running the latest version of MyCommand.
[02:10:22] [Server thread/WARN]: [MyCommand] Loaded class com.comphenix.protocol.events.PacketListener from ProtocolLib v5.0.0-SNAPSHOT-b577 which is not a depend or softdepend of this plugin.
[02:10:22] [Server thread/INFO]: |          by emmerrei a.k.a. ivanfromitaly.           
[02:10:22] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*   Done!   *-=-=-=-=-=-=-=-=-=-=-*
[02:10:22] [Server thread/INFO]: [VulcanTopGUI] Enabling VulcanTopGUI v1.0.2
[02:10:23] [Server thread/INFO]: [VulcanTopGUI] VulcanTopGUI v1.0.2 by ajgeiss0702 enabled!
[02:10:23] [Server thread/INFO]: [CrackShotShop] Enabling CrackShotShop v0.4*
[02:10:23] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.7.6
[02:10:23] [Server thread/INFO]: [DecentHolograms] Using ProtocolLib for packet listening.
[02:10:23] [Server thread/INFO]: [Essentials] Enabling Essentials v2.19.7
[02:10:23] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[02:10:23] [Server thread/INFO]: [Essentials] No kits found to migrate.
[02:10:23] [Server thread/INFO]: [Essentials] Loaded 36926 items from items.json.
[02:10:23] [Server thread/INFO]: [Essentials] Using locale en_US
[02:10:23] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[02:10:23] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[02:10:23] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[02:10:23] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[02:10:23] [Server thread/INFO]: [AdvancedReplay] Enabling AdvancedReplay v1.8.2*
[02:10:23] [Server thread/INFO]: [AdvancedReplay] Loading Replay v1.8.2 by Jumper251
[02:10:23] [Server thread/INFO]: [AdvancedReplay] Finished (59ms)
[02:10:23] [Server thread/INFO]: [CommandPanels] Enabling CommandPanels v3.18.2.0
[02:10:23] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.18.2.0 Plugin Loading...
[02:10:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: commandpanels [1.0.0]
[02:10:23] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.18.2.0 Plugin Loaded!
[02:10:23] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.10.4
[02:10:24] [Server thread/INFO]: [LiteBans] Loaded 4 templates from templates.yml!
[02:10:24] [Server thread/INFO]: [LiteBans] Loading SQL driver: mysql 8.0.29 (com.mysql.cj.jdbc.Driver)
[02:10:24] [Server thread/INFO]: [LiteBans] Connecting to database...
[02:10:24] [Server thread/INFO]: [LiteBans] litebans-pool - Starting...
[02:10:24] [Server thread/INFO]: [LiteBans] litebans-pool - Start completed.
[02:10:24] [Server thread/INFO]: [LiteBans] Connected to MySQL database successfully (137 ms).
[02:10:24] [Server thread/INFO]: [LiteBans] [Sync] Server name: litebans
[02:10:24] [Server thread/INFO]: [LiteBans] [Sync] Server UUID: 6cad1d67b92449e5b7090040ff8a3904 <6>
[02:10:24] [Server thread/INFO]: [LiteBans] Database connection fully initialized (226.2 ms).
[02:10:24] [Server thread/INFO]: [LiteBans] v2.10.4 enabled. Startup took 350 ms.
[02:10:24] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[02:10:24] [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--].
[02:10:24] [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.
[02:10:24] [Server thread/INFO]: -------- World Settings For [Koth] --------
[02:10:24] [Server thread/INFO]: Item Merge Radius: 2.5
[02:10:24] [Server thread/INFO]: Item Despawn Rate: 6000
[02:10:24] [Server thread/INFO]: View Distance: 10
[02:10:24] [Server thread/INFO]: Simulation Distance: 10
[02:10:24] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[02:10:24] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[02:10:24] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[02:10:24] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[02:10:24] [Server thread/INFO]: Mob Spawn Range: 6
[02:10:24] [Server thread/INFO]: Experience Merge Radius: 3.0
[02:10:24] [Server thread/INFO]: Cactus Growth Modifier: 100%
[02:10:24] [Server thread/INFO]: Cane Growth Modifier: 100%
[02:10:24] [Server thread/INFO]: Melon Growth Modifier: 100%
[02:10:24] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[02:10:24] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[02:10:24] [Server thread/INFO]: Sapling Growth Modifier: 100%
[02:10:24] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[02:10:24] [Server thread/INFO]: Carrot Growth Modifier: 100%
[02:10:24] [Server thread/INFO]: Potato Growth Modifier: 100%
[02:10:24] [Server thread/INFO]: Wheat Growth Modifier: 100%
[02:10:24] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[02:10:24] [Server thread/INFO]: Vine Growth Modifier: 100%
[02:10:24] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[02:10:24] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[02:10:24] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[02:10:24] [Server thread/INFO]: Kelp Growth Modifier: 100%
[02:10:24] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[02:10:24] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[02:10:24] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[02:10:24] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[02:10:24] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[02:10:24] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[02:10:24] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[02:10:24] [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
[02:10:24] [Server thread/INFO]: Max TNT Explosions: 100
[02:10:24] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[02:10:24] [Server thread/INFO]: Preparing start region for dimension minecraft:koth
[02:10:24] [Server thread/INFO]: Time elapsed: 402 ms
[02:10:24] [Server thread/INFO]: [Multiverse-Core] 4 - World(s) loaded.
[02:10:24] [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.
[02:10:24] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[02:10:25] [Server thread/INFO]: [PlayerVaultsGUI] Enabling PlayerVaultsGUI v0.1.15
[02:10:25] [Server thread/INFO]: [Vouchers] Enabling Vouchers v3.3.0
[02:10:25] [Server thread/INFO]:  
[02:10:25] [Server thread/INFO]: =============================
[02:10:25] [Server thread/INFO]: Vouchers v3.3.0 by Tweetzy
[02:10:25] [Server thread/INFO]: Developer: Kiran Hart
[02:10:25] [Server thread/INFO]: [FeatherCore] Hooked into Vouchers
[02:10:25] [Server thread/INFO]: =============================
[02:10:25] [Server thread/INFO]:  
[02:10:25] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.6.1
[02:10:25] [Server thread/WARN]: [ajLeaderboards] Unable to find 1.19 nms class: us.ajg0702.leaderboards.nms.nms19.HeadUtils19
[02:10:25] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[02:10:26] [Server thread/INFO]: [ajLeaderboards] The columns already exist for kore_stats_time. Canceling updater and bumping DB version.
[02:10:26] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_mine_block. Canceling updater and bumping DB version.
[02:10:26] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_player_kills. Canceling updater and bumping DB version.
[02:10:26] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_time_played. Canceling updater and bumping DB version.
[02:10:26] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_time_played:days. Canceling updater and bumping DB version.
[02:10:26] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_time_played:hours. Canceling updater and bumping DB version.
[02:10:26] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_time_played:minutes. Canceling updater and bumping DB version.
[02:10:26] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_time_played:seconds. Canceling updater and bumping DB version.
[02:10:26] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_time_since_death. Canceling updater and bumping DB version.
[02:10:26] [Server thread/INFO]: [ajLeaderboards] The columns already exist for vault_eco_balance. Canceling updater and bumping DB version.
[02:10:26] [Server thread/INFO]: [ajLeaderboards] Loaded 10 boards
[02:10:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ajlb [2.6.1]
[02:10:26] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[02:10:26] [Server thread/INFO]: [ajLeaderboards] LuckPerms position context calculator registered!
[02:10:26] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.6.1 by ajgeiss0702 enabled!
[02:10:26] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.19.7
[02:10:26] [Server thread/INFO]: [EssentialsChat] Secure signed chat and previews are enabled.
[02:10:26] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[02:10:26] [Server thread/INFO]: [MineResetLite] Enabling MineResetLite v4.17.0
[02:10:26] [Server thread/INFO]: [MineResetLite] Loading mine from file 'GoldMine.mine.yml'...
[02:10:26] [Server thread/INFO]: [MineResetLite] Loading mine from file 'DonatorMine.mine.yml'...
[02:10:26] [Server thread/INFO]: [MineResetLite] Registering BlockEventListener
[02:10:26] [Server thread/INFO]: [MineResetLite] TokenEnchant was not found... skipping.
[02:10:26] [Server thread/INFO]: [MineResetLite] Registering PlayerEventListener
[02:10:26] [Server thread/INFO]: [MineResetLite] MineResetLite version 4.17.0 enabled!
[02:10:26] [Server thread/INFO]: [AntiCheatReplay] Enabling AntiCheatReplay v2.7.5
[02:10:26] [Server thread/INFO]: [CrazyCrates] Enabling CrazyCrates v1.11.6-SNAPSHOT
[02:10:26] [Server thread/INFO]: [CrazyCrates] Loading the config.yml
[02:10:26] [Server thread/INFO]: [CrazyCrates] Successfully loaded config.yml
[02:10:26] [Server thread/INFO]: [CrazyCrates] Loading the messages.yml
[02:10:26] [Server thread/INFO]: [CrazyCrates] Successfully loaded messages.yml
[02:10:26] [Server thread/INFO]: [CrazyCrates] Loading the locations.yml
[02:10:26] [Server thread/INFO]: [CrazyCrates] Successfully loaded locations.yml
[02:10:26] [Server thread/INFO]: [CrazyCrates] Loading the data.yml
[02:10:26] [Server thread/INFO]: [CrazyCrates] Successfully loaded data.yml
[02:10:26] [Server thread/INFO]: [CrazyCrates] Loading custom files.
[02:10:26] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/EpicCrate.yml.
[02:10:26] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/VoteCrate.yml.
[02:10:26] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/CommonCrate.yml.
[02:10:26] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/GODCrate.yml.
[02:10:26] [Server thread/INFO]: [CrazyCrates] Finished loading custom files.
[02:10:26] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[02:10:26] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R1! Trying to find NMS support
[02:10:26] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R1' loaded!
[02:10:26] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[02:10:26] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[02:10:26] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[02:10:26] [Thread-14/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[02:10:26] [Server thread/INFO]: [CrazyCrates] Loaded 4 physical crate locations.
[02:10:26] [Server thread/INFO]: [CrazyCrates] Failed to load 8 physical crate locations.
[02:10:26] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[02:10:26] [Server thread/INFO]: [CrazyCrates] nether.nbt was successfully found and loaded.
[02:10:26] [Server thread/INFO]: [CrazyCrates] wooden.nbt was successfully found and loaded.
[02:10:26] [Server thread/INFO]: [CrazyCrates] sea.nbt was successfully found and loaded.
[02:10:26] [Server thread/INFO]: [CrazyCrates] soul.nbt was successfully found and loaded.
[02:10:26] [Server thread/INFO]: [CrazyCrates] classic.nbt was successfully found and loaded.
[02:10:26] [Server thread/INFO]: [CrazyCrates] outdoors.nbt was successfully found and loaded.
[02:10:26] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[02:10:26] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[02:10:26] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[02:10:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: CrazyCrates [1.11.6-SNAPSHOT]
[02:10:26] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.7+216b061
[02:10:26] [Server thread/INFO]: [WorldGuard] (Guns) TNT ignition is PERMITTED.
[02:10:26] [Server thread/INFO]: [WorldGuard] (Guns) Lighters are PERMITTED.
[02:10:26] [Server thread/INFO]: [WorldGuard] (Guns) Lava fire is PERMITTED.
[02:10:26] [Server thread/INFO]: [WorldGuard] (Guns) Fire spread is UNRESTRICTED.
[02:10:26] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Guns'
[02:10:26] [Server thread/INFO]: [WorldGuard] (Guns_nether) TNT ignition is PERMITTED.
[02:10:26] [Server thread/INFO]: [WorldGuard] (Guns_nether) Lighters are PERMITTED.
[02:10:26] [Server thread/INFO]: [WorldGuard] (Guns_nether) Lava fire is PERMITTED.
[02:10:26] [Server thread/INFO]: [WorldGuard] (Guns_nether) Fire spread is UNRESTRICTED.
[02:10:26] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Guns_nether'
[02:10:26] [Server thread/INFO]: [WorldGuard] (Guns_the_end) TNT ignition is PERMITTED.
[02:10:26] [Server thread/INFO]: [WorldGuard] (Guns_the_end) Lighters are PERMITTED.
[02:10:26] [Server thread/INFO]: [WorldGuard] (Guns_the_end) Lava fire is PERMITTED.
[02:10:26] [Server thread/INFO]: [WorldGuard] (Guns_the_end) Fire spread is UNRESTRICTED.
[02:10:26] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Guns_the_end'
[02:10:26] [Server thread/INFO]: [WorldGuard] (Koth) TNT ignition is PERMITTED.
[02:10:26] [Server thread/INFO]: [WorldGuard] (Koth) Lighters are PERMITTED.
[02:10:26] [Server thread/INFO]: [WorldGuard] (Koth) Lava fire is PERMITTED.
[02:10:26] [Server thread/INFO]: [WorldGuard] (Koth) Fire spread is UNRESTRICTED.
[02:10:26] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Koth'
[02:10:26] [Server thread/INFO]: [WorldGuard] Loading region data...
[02:10:27] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.19.7
[02:10:27] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[02:10:27] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v21.2
[02:10:27] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[02:10:27] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[02:10:27] [Server thread/INFO]: --------------------
[02:10:27] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[02:10:27] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[02:10:27] [Server thread/INFO]: --------------------
[02:10:27] [Server thread/INFO]: [SimpleScore] Enabling SimpleScore v3.12.2
[02:10:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: SimpleScore [3.12.2]
[02:10:27] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.30-SNAPSHOT (build 2767)
[02:10:27] [Server thread/INFO]: [Citizens] Loading external libraries
[02:10:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[02:10:27] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[02:10:27] [Server thread/INFO]: [OpenAudioMc] Enabling OpenAudioMc v6.7.6
[02:10:27] [Server thread/INFO]: [OpenAudioMc] Initializing build 582 by Mats
[02:10:27] [Server thread/INFO]: [OpenAudioMc] Using the main config file..
[02:10:27] [Server thread/INFO]: [OpenAudioMc] Starting configuration module
[02:10:27] [Server thread/INFO]: [OpenAudioMc] Using the main config file..
[02:10:27] [Server thread/INFO]: [OpenAudioMc] Starting configuration module
[02:10:27] [Server thread/INFO]: [OpenAudioMc] Skipped 27/27 migrations.
[02:10:27] [Server thread/INFO]: [OpenAudioMc] ModuleLoaderService: Loading modules from /home/minecraft/multicraft/servers/server570109/plugins/OpenAudioMc/modules
[02:10:27] [Server thread/INFO]: [OpenAudioMc] Initializing socket connector
[02:10:27] [Server thread/INFO]: [OpenAudioMc] Starting authentication module
[02:10:27] [Server thread/INFO]: [OpenAudioMc] Creating account...
[02:10:27] [Server thread/INFO]: [OpenAudioMc] Skipping account setup since this isn't a master server, moving on with fake api keys.
[02:10:27] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Adding spigot tables
[02:10:27] [Server thread/INFO]: [OpenAudioMc] Registering storage table for Alias
[02:10:27] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (alias<->Alias.java)
[02:10:27] [Server thread/INFO]: [OpenAudioMc] Registering storage table for ClientDataStore
[02:10:27] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (client_data_store<->ClientDataStore.java)
[02:10:27] [Server thread/INFO]: [OpenAudioMc] Registering storage table for MojangProfile
[02:10:27] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (mojang_profile<->MojangProfile.java)
[02:10:27] [Server thread/INFO]: [OpenAudioMc] Registering storage table for RegionProperties
[02:10:27] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (region_properties<->RegionProperties.java)
[02:10:27] [Server thread/INFO]: [OpenAudioMc] Registering storage table for Speaker
[02:10:27] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (speaker<->Speaker.java)
[02:10:27] [Server thread/INFO]: [OpenAudioMc] Registering storage table for StoredWorldChunk
[02:10:27] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (stored_world_chunk<->StoredWorldChunk.java)
[02:10:27] [Server thread/INFO]: [OpenAudioMc] Registering storage table for TimedRegionProperties
[02:10:27] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (timed_region_properties<->TimedRegionProperties.java)
[02:10:27] [Server thread/INFO]: [OpenAudioMc] Registering storage table for MediaRule
[02:10:27] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (media_rule<->MediaRule.java)
[02:10:28] [Server thread/INFO]: [OpenAudioMc] Initializing account details
[02:10:28] [Server thread/INFO]: [OpenAudioMc] Loading aliases...
[02:10:28] [Server thread/INFO]: [OpenAudioMc] Loaded 0 aliases
[02:10:28] [Server thread/INFO]: [OpenAudioMc] Detected version type: MODERN
[02:10:28] [Server thread/INFO]: [OpenAudioMc] Enabling the 1.13 speaker system
[02:10:28] [Server thread/INFO]: [OpenAudioMc] Turns out you have WorldGuard installed! enabling regions and the region tasks..
[02:10:28] [Server thread/INFO]: [OpenAudioMc] Enabling the newer 1.13 regions
[02:10:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: oa [1.0.0]
[02:10:28] [Server thread/INFO]: [OpenAudioMc] Starting and loading took 17866MS
[02:10:28] [Server thread/INFO]: [Factions] Enabling Factions v1.6.9.5-U0.5.18-b${build.number}
[02:10:28] [Server thread/INFO]: [Factions] === Starting up! ===
[02:10:28] [Server thread/INFO]: [Factions] 
[02:10:28] [Server thread/INFO]: [Factions] Factions UUID!
[02:10:28] [Server thread/INFO]: [Factions] Version 1.6.9.5-U0.5.18-b${build.number}
[02:10:28] [Server thread/INFO]: [Factions] 
[02:10:28] [Server thread/INFO]: [Factions] Need support? https://factions.support/help/
[02:10:28] [Server thread/INFO]: [Factions] 
[02:10:28] [Server thread/INFO]: [Factions] Detected Minecraft 1.19.2
[02:10:28] [Server thread/INFO]: [Factions] 
[02:10:28] [Server thread/INFO]: [Factions] Server UUID 41204d69-6e65-4fac-afac-00103ade68b1
[02:10:28] [Server thread/INFO]: [Factions] Loaded 148 material mappings.
[02:10:28] [Server thread/INFO]: [Factions] Loaded 2 players in 4 factions with 9801 claims
[02:10:28] [Server thread/INFO]: [Factions] Using POWER for land/raid control. Enabling power commands.
[02:10:28] [Server thread/INFO]: [Factions] Enabling TNT bank management
[02:10:28] [Server thread/INFO]: [Factions] Enabling /f fly command
[02:10:28] [Server thread/INFO]: [Factions] Using BUKKIT as a particle provider
[02:10:28] [Server thread/INFO]: [Factions] Using REDSTONE as the ParticleEffect for /f sc
[02:10:28] [Server thread/ERROR]: [Factions] - Not able to register spawner boost listener as you are not using taco spigot!
[02:10:28] [Server thread/INFO]: [Factions] Found API support for sending player titles :D
[02:10:28] [Server thread/INFO]: [Factions] Found and connected to Essentials
[02:10:28] [Server thread/INFO]: [Factions] Based on main.conf will delete Essentials player homes in their old faction when they leave
[02:10:28] [Server thread/INFO]: [Factions] Using Essentials for teleportation
[02:10:28] [Server thread/INFO]: [Factions] Successfully hooked into LuckPerms for permission contexts!
[02:10:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: factionsuuid [1.6.9.5-U0.5.18-b${build.number}]
[02:10:28] [Server thread/INFO]: [Factions] Successfully registered placeholders with PlaceholderAPI.
[02:10:28] [Server thread/INFO]: [Factions] === Ready to go after 508ms! ===
[02:10:28] [Server thread/INFO]: [SilkSpawners] Enabling SilkSpawners v7.3.1-SNAPSHOT-b${BUILD_NUMBER}
[02:10:28] [Server thread/INFO]: [SilkSpawners] WorldGuard was found and support is enabled
[02:10:28] [Server thread/WARN]: [SilkSpawners] Warning! "nerf-spawner-mobs" is set to true in the spigot.yml! Spawned mobs WON'T HAVE ANY AI!
[02:10:28] [Server thread/INFO]: [SilkSpawners] Loading support for v1_19_R1
[02:10:28] [Server thread/INFO]: [SilkSpawners] AutoUpdater is disabled because you are running a dev build!
[02:10:28] [Server thread/INFO]: [SilkSpawners] BarAPI is disabled due to config setting.
[02:10:28] [Server thread/INFO]: [dtlTraders] Enabling dtlTraders v6.4.16
[02:10:28] [Server thread/INFO]: dtlTraders> Welcome to dtlTraders v6.4.16!
[02:10:28] [Server thread/INFO]: dtlTraders> Trying to hook into any Vault supported plugin...
[02:10:28] [Server thread/INFO]: dtlTraders> Vault found! Trying to hook...
[02:10:28] [Server thread/INFO]: dtlTraders> Found economy plugin: EssentialsX Economy
[02:10:28] [Server thread/INFO]: dtlTraders> Loaded 6 guis from the guis config!
[02:10:28] [Server thread/INFO]: dtlTraders> Hooking into Citizens!
[02:10:28] [Server thread/INFO]: dtlTraders> Hooking into PlaceholderAPI
[02:10:28] [Server thread/INFO]: dtlTraders> dtlTraders is managed by Degitise. www.degitise.com
[02:10:28] [Server thread/INFO]: dtlTraders> Unlock premium features with dtlTradersPlus!
[02:10:28] [Server thread/INFO]: dtlTraders> Buy your copy at: https://www.spigotmc.org/resources/dtltradersplus.63690/
[02:10:28] [Server thread/INFO]: [CombatLogX] Enabling CombatLogX v11.0.0.0-Beta-831
[02:10:28] [Server thread/INFO]: [CombatLogX] Successfully loaded 20 language(s).
[02:10:28] [Server thread/INFO]: [CombatLogX] Enabling expansions...
[02:10:28] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Action Bar v16.3'...
[02:10:28] [Server thread/INFO]: [CombatLogX]  
[02:10:28] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Cheat Prevention v16.11'...
[02:10:29] [Server thread/INFO]: [CombatLogX]  
[02:10:29] [Server thread/INFO]: [CombatLogX] Enabling expansion 'CrackShot Compatibility v16.0'...
[02:10:29] [Server thread/INFO]: [CombatLogX] [CrackShot Compatibility] Successfully found a dependency: CrackShot v0.98.11
[02:10:29] [Server thread/INFO]: [CombatLogX]  
[02:10:29] [Server thread/INFO]: [CombatLogX] Enabling expansion 'EssentialsX Compatibility v16.0'...
[02:10:29] [Server thread/INFO]: [CombatLogX] [EssentialsX Compatibility] Successfully found a dependency: Essentials v2.19.7
[02:10:29] [Server thread/INFO]: [CombatLogX]  
[02:10:29] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Factions Compatibility v16.1'...
[02:10:29] [Server thread/WARN]: [CombatLogX] Failed to find any of the following plugins:
[02:10:29] [Server thread/WARN]: [CombatLogX] [Factions, FactionsX, LegacyFactions]
[02:10:29] [Server thread/WARN]: [CombatLogX] Please contact SirBlobman if you believe this is mistake.
[02:10:29] [Server thread/WARN]: [CombatLogX] https://github.com/SirBlobman/SirBlobmanAPI/issues/new/choose
[02:10:29] [Server thread/INFO]: [CombatLogX] [Factions Compatibility] Some dependencies for this expansion are missing!
[02:10:29] [Server thread/INFO]: [CombatLogX] Disabling expansion 'Factions Compatibility v16.1'...
[02:10:29] [Server thread/INFO]: [CombatLogX]  
[02:10:29] [Server thread/INFO]: [CombatLogX] Enabling expansion 'PlaceholderAPI Compatibility v16.4'...
[02:10:29] [Server thread/INFO]: [CombatLogX] [PlaceholderAPI Compatibility] Successfully found a dependency: PlaceholderAPI v2.11.2
[02:10:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: combatlogx [16.4]
[02:10:29] [Server thread/INFO]: [CombatLogX]  
[02:10:29] [Server thread/INFO]: [CombatLogX] Enabling expansion 'SuperVanish/PremiumVanish Compatibility v16.0'...
[02:10:29] [Server thread/WARN]: [CombatLogX] [SuperVanish/PremiumVanish Compatibility] A dependency is not installed on the server: SuperVanish
[02:10:29] [Server thread/WARN]: [CombatLogX] [SuperVanish/PremiumVanish Compatibility] A dependency is not installed on the server: PremiumVanish
[02:10:29] [Server thread/INFO]: [CombatLogX] Disabling expansion 'SuperVanish/PremiumVanish Compatibility v16.0'...
[02:10:29] [Server thread/INFO]: [CombatLogX]  
[02:10:29] [Server thread/INFO]: [CombatLogX] Enabling expansion 'WorldGuard Compatibility v16.2'...
[02:10:29] [Server thread/INFO]: [CombatLogX] [WorldGuard Compatibility] Successfully found a dependency: WorldGuard v7.0.7+216b061
[02:10:29] [Server thread/INFO]: [CombatLogX]  
[02:10:29] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Damage Tagger v16.3'...
[02:10:29] [Server thread/INFO]: [CombatLogX]  
[02:10:29] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Death Effects v16.0'...
[02:10:29] [Server thread/INFO]: [CombatLogX]  
[02:10:29] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Force Field v16.6'...
[02:10:29] [Server thread/INFO]: [CombatLogX] [Force Field] Successfully found a dependency: ProtocolLib v5.0.0-SNAPSHOT-b577
[02:10:29] [Server thread/INFO]: [CombatLogX]  
[02:10:29] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Logger v16.0'...
[02:10:29] [Server thread/INFO]: [CombatLogX]  
[02:10:29] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Loot Protection v16.2'...
[02:10:29] [Server thread/INFO]: [CombatLogX]  
[02:10:29] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Mob Tagger v16.4'...
[02:10:29] [Server thread/INFO]: [CombatLogX]  
[02:10:29] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Newbie Helper v16.5'...
[02:10:29] [Server thread/INFO]: [CombatLogX]  
[02:10:29] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Rewards v16.1'...
[02:10:29] [Server thread/INFO]: [CombatLogX] [Rewards] Successfully found a dependency: Vault v1.7.3-b131
[02:10:29] [Server thread/INFO]: [CombatLogX] [Rewards] Successfully hooked into economy handler 'EssentialsX Economy' from plugin 'Essentials v2.19.7'.
[02:10:29] [Server thread/INFO]: [CombatLogX] [Rewards] Successfully loaded 2 rewards.
[02:10:29] [Server thread/INFO]: [CombatLogX]  
[02:10:29] [Server thread/INFO]: [CombatLogX] Successfully enabled 14 expansions.
[02:10:29] [Server thread/INFO]: [ShopGUIPlus] Enabling ShopGUIPlus v1.80.1
[02:10:29] [Server thread/INFO]: [ShopGUIPlusSilkSpawnersBridge] Enabling ShopGUIPlusSilkSpawnersBridge v1.4.0
[02:10:29] [Server thread/INFO]: [SilkSpawners] WorldGuard was found and support is enabled
[02:10:29] [Server thread/WARN]: [SilkSpawners] Warning! "nerf-spawner-mobs" is set to true in the spigot.yml! Spawned mobs WON'T HAVE ANY AI!
[02:10:29] [Server thread/INFO]: [SilkSpawners] Loading support for v1_19_R1
[02:10:29] [Server thread/INFO]: [ShopGUIPlus] Registered spawners support for SilkSpawners.
[02:10:29] [Server thread/INFO]: [FactionsKore] Enabling FactionsKore v1.0
[02:10:29] [Server thread/INFO]: [FactionsKore] - Successfully verified license!
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully hooked into FactionsUUID!
[02:10:29] [Server thread/INFO]: FactionsKore - Couldn't find a vanish plugin!
[02:10:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: kore [v0.4]
[02:10:29] [Server thread/INFO]: FactionsKore - Found 1 expansions, loading them now.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded FKore_Stacker expansion
[02:10:29] [Server thread/INFO]: FactionsKore - Missing CombatTagPlus soft-dependency!
[02:10:29] [Server thread/INFO]: FactionsKore - Missing mcMMO soft-dependency!
[02:10:29] [Server thread/INFO]: FactionsKore - Missing DeluxeCombat soft-dependency!
[02:10:29] [Server thread/INFO]: FactionsKore - Enabled CombatLogX soft-dependency!
[02:10:29] [Server thread/INFO]: FactionsKore - Enabled ViaVersion soft-dependency!
[02:10:29] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R1! Trying to find NMS support
[02:10:29] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R1' loaded!
[02:10:29] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded anti-bug feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded anti-enderman-teleport feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded anti-item-craft feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded anti-pearl-glitch feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded anti-system-faction-exploit-liquid-flow feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded bans feature.
[02:10:29] [Thread-20/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded booster feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded bosses feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully disabled bosses feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded bottlerecycle feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded bundle feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded button-cooldown feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully disabled button-cooldown feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded cannon-speed-limiter feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully disabled cannon-speed-limiter feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded cannonutils feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully disabled cannonutils feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded chestlogs feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded chunkbuster feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded classes feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded command-cooldown feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded consume-cooldown feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded corners feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded customenchants feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded damage-control feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully disabled damage-control feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded drain feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded explosive-rod feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded fast-drain feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded genblock feature.
[02:10:29] [Server thread/INFO]: FactionsKore - (genblock) Ignored "deny-use-in-combat" because you were missing: [CombatTagPlus]!
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded grace feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded harvesterhoe feature.
[02:10:29] [Server thread/INFO]: FactionsKore - (harvesterhoe) Ignored "give-mcmmo-xp" because you were missing: [mcMMO]!
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded jellylegs feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully disabled jellylegs feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded koth feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded loot-protection feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded messages feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded meteor feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully disabled meteor feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded mobcoins feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded nightvision feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded obbyfill feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded outpost feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Outpost Feature detected null worlds for the castle outpost!
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded pin feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully disabled pin feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded player-log-in-out feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded points feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded potfill feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded printer feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded raid-claim feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded raiding-outpost feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully disabled raiding-outpost feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded reclaim feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded roam feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded roster feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded sandbot feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded shield feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded spawnerlog feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully disabled spawnerlog feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded spectate feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded sponge feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded staff feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully disabled staff feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded stats feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded throwableceggs feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded tntfill feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded trenches feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded wands feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded wild feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded withdraw feature.
[02:10:29] [Server thread/INFO]: FactionsKore - Successfully loaded xpwithdraw feature.
[02:10:30] [Server thread/INFO]: FactionsKore - FKore_Stacker registered feature mob-stacking.
[02:10:30] [Server thread/INFO]: FactionsKore - Successfully loaded mob-stacking feature.
[02:10:30] [Server thread/INFO]: FactionsKore - FKore_Stacker registered feature collectors.
[02:10:30] [Server thread/INFO]: FactionsKore - Successfully loaded collectors feature.
[02:10:30] [Server thread/INFO]: FactionsKore - Successfully disabled collectors feature.
[02:10:30] [Server thread/INFO]: FactionsKore - FKore_Stacker registered feature spawner-stacking.
[02:10:30] [Server thread/INFO]: FactionsKore - Successfully loaded spawner-stacking feature.
[02:10:30] [Server thread/INFO]: [SilkSpawners] WorldGuard was found and support is enabled
[02:10:30] [Server thread/WARN]: [SilkSpawners] Warning! "nerf-spawner-mobs" is set to true in the spigot.yml! Spawned mobs WON'T HAVE ANY AI!
[02:10:30] [Server thread/INFO]: [SilkSpawners] Loading support for v1_19_R1
[02:10:30] [Server thread/INFO]: FactionsKore - FKore_Stacker registered command collectors.
[02:10:30] [Server thread/INFO]: FactionsKore - FKore_Stacker registered command mob-stacking.
[02:10:30] [Server thread/WARN]: Could not register alias sell because it contains commands that do not exist: economyshopgui:sellall $1-
[02:10:30] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[02:10:30] [Server thread/INFO]: Running delayed init tasks
[02:10:30] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.19.1/2 (760)
[02:10:30] [Craft Scheduler Thread - 0 - StaffSpectate/INFO]: [StaffSpectate] Plugin version is the latest
[02:10:30] [Craft Scheduler Thread - 4 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[02:10:30] [Craft Scheduler Thread - 5 - Essentials/INFO]: [Essentials] Fetching version information...
[02:10:30] [Craft Scheduler Thread - 4 - DecentHolograms/INFO]: [DecentHolograms] Loaded 23 holograms!
[02:10:30] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[02:10:30] [Craft Scheduler Thread - 8 - Vault/INFO]: [Vault] Checking for Updates ... 
[02:10:30] [Craft Scheduler Thread - 0 - SirBlobmanCore/INFO]: [SirBlobman Core]  
[02:10:30] [Craft Scheduler Thread - 0 - SirBlobmanCore/INFO]: [SirBlobman Core] [Update Checker] A possible update was found for plugin 'CombatLogX'.
[02:10:30] [Craft Scheduler Thread - 0 - SirBlobmanCore/INFO]: [SirBlobman Core] [Update Checker] Current Version: 11.0.0.0-Beta-831
[02:10:30] [Craft Scheduler Thread - 0 - SirBlobmanCore/INFO]: [SirBlobman Core] [Update Checker] New Version: 11.1.0.7.1025
[02:10:30] [Craft Scheduler Thread - 0 - SirBlobmanCore/INFO]: [SirBlobman Core] [Update Checker] Download Link: https://www.spigotmc.org/resources/31689/
[02:10:30] [Craft Scheduler Thread - 0 - SirBlobmanCore/INFO]: [SirBlobman Core]  
[02:10:30] [Craft Scheduler Thread - 0 - SirBlobmanCore/INFO]: [SirBlobman Core] [Update Checker] A possible update was found for plugin 'SirBlobmanCore'.
[02:10:30] [Craft Scheduler Thread - 0 - SirBlobmanCore/INFO]: [SirBlobman Core] [Update Checker] Current Version: 2.4.1-Dev
[02:10:30] [Craft Scheduler Thread - 0 - SirBlobmanCore/INFO]: [SirBlobman Core] [Update Checker] New Version: 2.6.0.18
[02:10:30] [Craft Scheduler Thread - 0 - SirBlobmanCore/INFO]: [SirBlobman Core] [Update Checker] Download Link: https://www.spigotmc.org/resources/83189/
[02:10:30] [Craft Scheduler Thread - 8 - Vault/INFO]: [Vault] No new version available
[02:10:30] [ForkJoinPool.commonPool-worker-1/WARN]: [PlaceholderAPI] Loaded class net.milkbowl.vault.permission.Permission from Vault v1.7.3-b131 which is not a depend or softdepend of this plugin.
[02:10:30] [Server thread/INFO]: [AntiCheatReplay] Vulcan detected, enabling support..
[02:10:30] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[02:10:30] [Server thread/INFO]: [Factions] Found economy plugin through Vault: EssentialsX Economy
[02:10:30] [Server thread/INFO]: [Factions] NOTE: Economy is disabled. You can enable it in config/main.conf
[02:10:30] [Server thread/INFO]: [Factions] Using Vault with permissions plugin LuckPerms
[02:10:30] [Server thread/INFO]: [FactionsKore] - Found ShopGUIPlus, hooking into it!
[02:10:30] [Server thread/INFO]: All stacked entities will be removed in 5m 0s!
[02:10:31] [Server thread/INFO]: [Citizens] Loaded 9 NPCs.
[02:10:31] [Server thread/INFO]: [CombatLogX] Successfully enabled 0 late-load expansions.
[02:10:31] [Server thread/INFO]: [ShopGUIPlus] ================================[ ShopGUI+ 1.80.1 ]================================
[02:10:31] [Server thread/INFO]: [ShopGUIPlus]  
[02:10:31] [Server thread/INFO]: [ShopGUIPlus] Vault economy registered.
[02:10:31] [Server thread/INFO]: [ShopGUIPlus] Vault economy enabled.
[02:10:31] [Server thread/INFO]: [ShopGUIPlus] Using Vault as default economy provider.
[02:10:31] [Server thread/INFO]: [ShopGUIPlus] Permissions support enabled.
[02:10:31] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for CrackShot.
[02:10:31] [Server thread/INFO]: [ShopGUIPlus] Using SilkSpawners for spawners support.
[02:10:31] [Server thread/INFO]: [ShopGUIPlus] Loaded 10 main menu items.
[02:10:31] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'miscellaneous' with 9 items.
[02:10:31] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'farming' with 19 items.
[02:10:31] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'armor' with 24 items.
[02:10:31] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'ores' with 15 items.
[02:10:31] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocks' with 42 items.
[02:10:31] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'drops' with 18 items.
[02:10:31] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'Spawners' with 24 items.
[02:10:31] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'tools' with 15 items.
[02:10:31] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'food' with 26 items.
[02:10:31] [Server thread/INFO]: [ShopGUIPlus] Loaded 9 shops with total of 192 items.
[02:10:31] [Server thread/INFO]: [ShopGUIPlus] Loaded 0 permission-based price modifiers.
[02:10:31] [Server thread/INFO]: [ShopGUIPlus]  
[02:10:31] [Server thread/INFO]: [ShopGUIPlus] ====================================================================================
[02:10:31] [Server thread/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[02:10:31] [Server thread/INFO]: New version of Factions available: 1.6.9.5-U0.6.20-b306
[02:10:31] [Server thread/INFO]: Done (26.536s)! For help, type "help"
[02:10:31] [Server thread/INFO]: Timings Reset
[02:10:31] [Craft Scheduler Thread - 12 - AntiCheatReplay/INFO]: [AntiCheatReplay] Checking if Vulcan API is enabled
[02:10:31] [Craft Scheduler Thread - 12 - AntiCheatReplay/INFO]: [AntiCheatReplay] Vulcan API is enabled
[02:10:31] [Craft Scheduler Thread - 5 - AntiCheatReplay/INFO]: [AntiCheatReplay] You are up to date!
[02:10:33] [Craft Scheduler Thread - 5 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:10:33] [Craft Scheduler Thread - 5 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:10:33] [Server thread/INFO]: [OpenAudioMc] New Identity = dRZm5ojnnFYvqKq1ZHgnMRroF
[02:10:35] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.luckperms.api.LuckPerms from LuckPerms v5.4.52 which is not a depend or softdepend of this plugin.
[02:10:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: luckperms [5.1-R2]
[02:10:35] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion killstats due to a missing plugin: killStats
[02:10:35] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.buycraft.plugin.bukkit.BuycraftPlugin from BuycraftX v12.0.8 which is not a depend or softdepend of this plugin.
[02:10:35] [Server thread/INFO]: [BuycraftAPI] Successfully connected to bstats
[02:10:35] [Server thread/INFO]: [BuycraftAPI] Successfully hooked into Vault for BuyCraftAPI v4.1
[02:10:35] [Server thread/INFO]: [BuycraftAPI] Loading API Tasks...
[02:10:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: buycraftAPI [4.1]
[02:10:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.3]
[02:10:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.6.1]
[02:10:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[02:10:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bungee [1.0.1]
[02:10:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.7.1]
[02:10:35] [Server thread/INFO]: 7 placeholder hook(s) registered! 1 placeholder hook(s) have an update available.
[02:10:35] [ForkJoinPool.commonPool-worker-1/INFO]: [BuycraftAPI] Successfully loaded payments
[02:10:48] [User Authenticator #0/INFO]: UUID of player xanthacreator is 0cc73688-4ae0-42b2-b283-e9f78a588f5a
[02:10:49] [Server thread/INFO]: xanthacreator[/73.188.177.51:53823] logged in with entity id 954 at ([Guns]-200.63542343335786, 72.0, -881.8969590099364)
[02:11:14] [Server thread/INFO]: xanthacreator issued server command: /rg flags
[02:11:16] [Server thread/INFO]: xanthacreator issued server command: /rg flags -w "Guns" spawn
[02:11:18] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:11:18] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:11:18] [Server thread/WARN]: [Essentials] Permissions lag notice with (LuckPermsHandler). Response took 55.160949ms. Summary: Getting group for xanthacreator
[02:11:18] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:11:20] [Server thread/INFO]: xanthacreator issued server command: /rg flags -w "Guns" warzone
[02:11:30] [Craft Scheduler Thread - 4 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[02:11:30] [Server thread/INFO]: [MRL] GoldMine has been reset automatically!
[02:11:31] [Craft Scheduler Thread - 15 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:11:31] [Craft Scheduler Thread - 15 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:12:05] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:12:05] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:12:05] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:12:31] [Craft Scheduler Thread - 2 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:12:31] [Craft Scheduler Thread - 2 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:12:53] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:12:53] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:12:53] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:13:31] [Craft Scheduler Thread - 0 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:13:31] [Craft Scheduler Thread - 0 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:13:40] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:13:40] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:13:40] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:14:27] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:14:27] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:14:27] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:14:30] [Server thread/INFO]: All stacked entities will be removed in 1m 0s!
[02:14:31] [Craft Scheduler Thread - 12 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:14:31] [Craft Scheduler Thread - 12 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:15:14] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:15:14] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:15:14] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:15:30] [Server thread/INFO]: 0 stacked entities were just removed!
[02:15:31] [Craft Scheduler Thread - 4 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:15:31] [Craft Scheduler Thread - 4 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:16:02] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:16:02] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:16:02] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:16:31] [Craft Scheduler Thread - 6 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:16:31] [Craft Scheduler Thread - 6 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:16:49] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:16:49] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:16:49] [Server thread/INFO]: Admins: [AFK]OWNER xanthacreator
[02:17:31] [Craft Scheduler Thread - 8 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:17:32] [Craft Scheduler Thread - 8 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:17:36] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:17:36] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:17:36] [Server thread/INFO]: Admins: [AFK]OWNER xanthacreator
[02:18:23] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:18:23] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:18:23] [Server thread/INFO]: Admins: [AFK]OWNER xanthacreator
[02:18:32] [Craft Scheduler Thread - 8 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:18:32] [Craft Scheduler Thread - 8 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:19:11] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:19:11] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:19:11] [Server thread/INFO]: Admins: [AFK]OWNER xanthacreator
[02:19:29] [Server thread/INFO]: xanthacreator issued server command: /koth
[02:19:30] [Server thread/INFO]: All stacked entities will be removed in 1m 0s!
[02:19:32] [Craft Scheduler Thread - 19 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:19:32] [Craft Scheduler Thread - 19 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:19:32] [Server thread/INFO]: xanthacreator issued server command: /koth gui
[02:19:37] [Server thread/INFO]: xanthacreator issued server command: /warp koth
[02:19:38] [Server thread/INFO]: xanthacreator issued server command: /warp town
[02:19:58] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:19:58] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:19:58] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:19:59] [Server thread/INFO]: Saving is already turned on
[02:19:59] [Server thread/INFO]: Saving the game (this may take a moment!)
[02:19:59] [Server thread/INFO]: Saved the game
[02:20:05] [Server thread/INFO]: xanthacreator issued server command: /spawn
[02:20:11] [Server thread/INFO]: xanthacreator issued server command: /f fly
[02:20:15] [Server thread/INFO]: xanthacreator issued server command: /f fly
[02:20:23] [Server thread/INFO]: xanthacreator issued server command: /rg flags
[02:20:25] [Server thread/INFO]: xanthacreator issued server command: /rg flags -w "Guns" -p 2 warzone
[02:20:26] [Server thread/INFO]: xanthacreator issued server command: /rg flags -w "Guns" -p 3 warzone
[02:20:27] [Server thread/INFO]: xanthacreator issued server command: /rg flags -w "Guns" -p 4 warzone
[02:20:29] [Server thread/INFO]: xanthacreator issued server command: /rg flags -w "Guns" -p 5 warzone
[02:20:30] [Server thread/INFO]: xanthacreator issued server command: /rg flags -w "Guns" -p 6 warzone
[02:20:30] [Server thread/INFO]: 0 stacked entities were just removed!
[02:20:31] [Server thread/INFO]: xanthacreator issued server command: /rg flags -w "Guns" -p 7 warzone
[02:20:32] [Craft Scheduler Thread - 17 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:20:32] [Craft Scheduler Thread - 17 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:20:35] [ForkJoinPool.commonPool-worker-7/INFO]: [BuycraftAPI] Successfully loaded payments
[02:20:45] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:20:45] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:20:45] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:20:49] [Server thread/INFO]: xanthacreator issued server command: /shot get krissvector
[02:21:32] [Craft Scheduler Thread - 12 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:21:32] [Craft Scheduler Thread - 12 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:21:32] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:21:32] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:21:32] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:22:20] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:22:20] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:22:20] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:22:32] [Craft Scheduler Thread - 19 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:22:32] [Craft Scheduler Thread - 19 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:23:07] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:23:07] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:23:07] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:23:17] [Server thread/INFO]: xanthacreator issued server command: /vouchers
[02:23:32] [Craft Scheduler Thread - 29 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:23:32] [Craft Scheduler Thread - 29 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:23:54] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:23:54] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:23:54] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:24:30] [Server thread/INFO]: All stacked entities will be removed in 1m 0s!
[02:24:32] [Craft Scheduler Thread - 19 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:24:32] [Craft Scheduler Thread - 19 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:24:41] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:24:41] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:24:41] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:25:29] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:25:29] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:25:29] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:25:30] [Server thread/INFO]: 0 stacked entities were just removed!
[02:25:32] [Craft Scheduler Thread - 18 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:25:32] [Craft Scheduler Thread - 18 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:26:14] [Server thread/INFO]: xanthacreator issued server command: /shop
[02:26:16] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:26:16] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:26:16] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:26:17] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R1! Trying to find NMS support
[02:26:17] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R1' loaded!
[02:26:17] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[02:26:17] [Thread-71/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[02:26:21] [Server thread/INFO]: [ShopGUIPlus] xanthacreator bought 5 x Pig Spawner for $75,000 from Spawners shop
[02:26:25] [Server thread/INFO]: [ShopGUIPlus] xanthacreator bought 5 x Cow Spawner for $150,000 from Spawners shop
[02:26:29] [Server thread/INFO]: [ShopGUIPlus] xanthacreator bought 5 x Chicken Spawner for $225,000 from Spawners shop
[02:26:30] [Server thread/INFO]: [MRL] GoldMine has been reset automatically!
[02:26:32] [Craft Scheduler Thread - 35 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:26:32] [Craft Scheduler Thread - 35 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:26:32] [Server thread/INFO]: [ShopGUIPlus] xanthacreator bought 5 x Sheep Spawner for $300,000 from Spawners shop
[02:26:41] [Server thread/INFO]: [ShopGUIPlus] xanthacreator bought 3 x Horse Spawner for $450,000 from Spawners shop
[02:27:03] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:27:03] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:27:03] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:27:12] [Server thread/INFO]: xanthacreator issued server command: /vouchers
[02:27:32] [Craft Scheduler Thread - 34 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:27:32] [Craft Scheduler Thread - 34 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:27:50] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:27:50] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:27:50] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:28:12] [Server thread/INFO]: xanthacreator issued server command: /vouchers
[02:28:32] [Craft Scheduler Thread - 18 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:28:32] [Craft Scheduler Thread - 18 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:28:33] [Server thread/INFO]: xanthacreator issued server command: /cc additem CommonCrate AnimalSpawnerVoucher
[02:28:33] [Server thread/INFO]: [CrazyCrates] Successfully saved the CommonCrate.yml.
[02:28:33] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[02:28:33] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[02:28:33] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[02:28:33] [Server thread/INFO]: [CrazyCrates] Loaded 4 physical crate locations.
[02:28:33] [Server thread/INFO]: [CrazyCrates] Failed to load 8 physical crate locations.
[02:28:33] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[02:28:33] [Server thread/INFO]: [CrazyCrates] nether.nbt was successfully found and loaded.
[02:28:33] [Server thread/INFO]: [CrazyCrates] wooden.nbt was successfully found and loaded.
[02:28:33] [Server thread/INFO]: [CrazyCrates] sea.nbt was successfully found and loaded.
[02:28:33] [Server thread/INFO]: [CrazyCrates] soul.nbt was successfully found and loaded.
[02:28:33] [Server thread/INFO]: [CrazyCrates] classic.nbt was successfully found and loaded.
[02:28:33] [Server thread/INFO]: [CrazyCrates] outdoors.nbt was successfully found and loaded.
[02:28:33] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[02:28:33] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[02:28:33] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[02:28:38] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:28:38] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:28:38] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:28:46] [Server thread/INFO]: xanthacreator issued server command: /cc admin
[02:29:00] [Server thread/INFO]: xanthacreator issued server command: /cc additem CommonCrate GodCrateKeys
[02:29:00] [Server thread/INFO]: [CrazyCrates] Successfully saved the CommonCrate.yml.
[02:29:00] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[02:29:00] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[02:29:00] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[02:29:00] [Server thread/INFO]: [CrazyCrates] Loaded 4 physical crate locations.
[02:29:00] [Server thread/INFO]: [CrazyCrates] Failed to load 8 physical crate locations.
[02:29:00] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[02:29:00] [Server thread/INFO]: [CrazyCrates] nether.nbt was successfully found and loaded.
[02:29:00] [Server thread/INFO]: [CrazyCrates] wooden.nbt was successfully found and loaded.
[02:29:00] [Server thread/INFO]: [CrazyCrates] sea.nbt was successfully found and loaded.
[02:29:00] [Server thread/INFO]: [CrazyCrates] soul.nbt was successfully found and loaded.
[02:29:00] [Server thread/INFO]: [CrazyCrates] classic.nbt was successfully found and loaded.
[02:29:00] [Server thread/INFO]: [CrazyCrates] outdoors.nbt was successfully found and loaded.
[02:29:00] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[02:29:00] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[02:29:00] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[02:29:16] [Server thread/INFO]: xanthacreator issued server command: /cc additem CommonCrate CommonCrateKeys
[02:29:16] [Server thread/INFO]: [CrazyCrates] Successfully saved the CommonCrate.yml.
[02:29:16] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[02:29:16] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[02:29:16] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[02:29:16] [Server thread/INFO]: [CrazyCrates] Loaded 4 physical crate locations.
[02:29:16] [Server thread/INFO]: [CrazyCrates] Failed to load 8 physical crate locations.
[02:29:16] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[02:29:16] [Server thread/INFO]: [CrazyCrates] nether.nbt was successfully found and loaded.
[02:29:16] [Server thread/INFO]: [CrazyCrates] wooden.nbt was successfully found and loaded.
[02:29:16] [Server thread/INFO]: [CrazyCrates] sea.nbt was successfully found and loaded.
[02:29:16] [Server thread/INFO]: [CrazyCrates] soul.nbt was successfully found and loaded.
[02:29:16] [Server thread/INFO]: [CrazyCrates] classic.nbt was successfully found and loaded.
[02:29:16] [Server thread/INFO]: [CrazyCrates] outdoors.nbt was successfully found and loaded.
[02:29:16] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[02:29:16] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[02:29:16] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[02:29:25] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:29:25] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:29:25] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:29:30] [Server thread/INFO]: All stacked entities will be removed in 1m 0s!
[02:29:32] [Craft Scheduler Thread - 32 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:29:32] [Craft Scheduler Thread - 32 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:29:42] [Server thread/INFO]: xanthacreator issued server command: /harvesterhoe
[02:29:54] [Server thread/INFO]: xanthacreator issued server command: /harvesterhoe give xanthacreator harvest 1
[02:30:01] [Server thread/INFO]: Saving is already turned on
[02:30:01] [Server thread/INFO]: Saving the game (this may take a moment!)
[02:30:01] [Server thread/INFO]: Saved the game
[02:30:11] [Server thread/INFO]: xanthacreator issued server command: /cc additem CommonCrate HarvestorHoe
[02:30:11] [Server thread/INFO]: [CrazyCrates] Successfully saved the CommonCrate.yml.
[02:30:11] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[02:30:11] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[02:30:11] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[02:30:11] [Server thread/INFO]: [CrazyCrates] Loaded 4 physical crate locations.
[02:30:11] [Server thread/INFO]: [CrazyCrates] Failed to load 8 physical crate locations.
[02:30:11] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[02:30:11] [Server thread/INFO]: [CrazyCrates] nether.nbt was successfully found and loaded.
[02:30:11] [Server thread/INFO]: [CrazyCrates] wooden.nbt was successfully found and loaded.
[02:30:11] [Server thread/INFO]: [CrazyCrates] sea.nbt was successfully found and loaded.
[02:30:11] [Server thread/INFO]: [CrazyCrates] soul.nbt was successfully found and loaded.
[02:30:11] [Server thread/INFO]: [CrazyCrates] classic.nbt was successfully found and loaded.
[02:30:11] [Server thread/INFO]: [CrazyCrates] outdoors.nbt was successfully found and loaded.
[02:30:11] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[02:30:11] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[02:30:11] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[02:30:12] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:30:12] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:30:12] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:30:27] [Server thread/INFO]: xanthacreator issued server command: /chunkbuster
[02:30:30] [Server thread/INFO]: 0 stacked entities were just removed!
[02:30:32] [Craft Scheduler Thread - 18 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:30:32] [Craft Scheduler Thread - 18 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:30:35] [ForkJoinPool.commonPool-worker-10/INFO]: [BuycraftAPI] Successfully loaded payments
[02:30:39] [Server thread/INFO]: xanthacreator issued server command: /chunkbuster give xanthacreator 1 1
[02:30:56] [Server thread/INFO]: xanthacreator issued server command: /cc additem CommonCrate ChunkBuster
[02:30:56] [Server thread/INFO]: [CrazyCrates] Successfully saved the CommonCrate.yml.
[02:30:56] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[02:30:56] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[02:30:56] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[02:30:56] [Server thread/INFO]: [CrazyCrates] Loaded 4 physical crate locations.
[02:30:56] [Server thread/INFO]: [CrazyCrates] Failed to load 8 physical crate locations.
[02:30:56] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[02:30:56] [Server thread/INFO]: [CrazyCrates] nether.nbt was successfully found and loaded.
[02:30:56] [Server thread/INFO]: [CrazyCrates] wooden.nbt was successfully found and loaded.
[02:30:56] [Server thread/INFO]: [CrazyCrates] sea.nbt was successfully found and loaded.
[02:30:56] [Server thread/INFO]: [CrazyCrates] soul.nbt was successfully found and loaded.
[02:30:56] [Server thread/INFO]: [CrazyCrates] classic.nbt was successfully found and loaded.
[02:30:56] [Server thread/INFO]: [CrazyCrates] outdoors.nbt was successfully found and loaded.
[02:30:56] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[02:30:56] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[02:30:56] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[02:30:59] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:30:59] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:30:59] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:31:04] [Server thread/INFO]: xanthacreator issued server command: /sellwand
[02:31:08] [Server thread/INFO]: xanthacreator issued server command: /selwand
[02:31:14] [Server thread/INFO]: xanthacreator issued server command: /gm c
[02:31:14] [Server thread/INFO]: xanthacreator issued mycmd (gamemode_alias) command /gm c
[02:31:14] [Server thread/INFO]: xanthacreator issued server command: /gamemode c
[02:31:23] [Server thread/INFO]: xanthacreator issued server command: /tool selwand
[02:31:32] [Craft Scheduler Thread - 19 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:31:33] [Craft Scheduler Thread - 19 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:31:39] [Server thread/INFO]: xanthacreator issued server command: /sell
[02:31:45] [Server thread/INFO]: xanthacreator issued server command: /sell blocks
[02:31:47] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:31:47] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:31:47] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:32:33] [Craft Scheduler Thread - 41 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:32:33] [Craft Scheduler Thread - 41 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:32:34] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:32:34] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:32:34] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:32:54] [Server thread/INFO]: xanthacreator issued server command: /throwableceggs
[02:33:03] [Server thread/INFO]: xanthacreator issued server command: /throwableceggs give xanthacreator 40
[02:33:13] [Server thread/INFO]: xanthacreator issued server command: /home home
[02:33:19] [Server thread/ERROR]: Could not pass event PreSpawnSpawnerEvent to FactionsKore v1.0
java.lang.NoSuchMethodError: 'double net.minecraft.world.entity.EntityInsentient.dg()'
    at com.golfing8.v1_19.access.MagicEntitiesV1_19.canEntitySpawn(MagicEntitiesV1_19.java:219) ~[FactionsKore-1.3.jar:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.findEntitySpawnLocation(MobStackingFeature.java:758) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:707) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:699) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.spawnerPreSpawn(MobStackingFeature.java:513) ~[?:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor969.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 com.golfing8.v1_19.event.PreSpawnSpawnerAdapter.onSpawn(PreSpawnSpawnerAdapter.java:15) ~[FactionsKore-1.3.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor751.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 org.bukkit.event.Event.callEvent(Event.java:45) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.world.level.BaseSpawner.serverTick(BaseSpawner.java:140) ~[?:?]
    at net.minecraft.world.level.block.entity.SpawnerBlockEntity.serverTick(SpawnerBlockEntity.java:53) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$BoundTickingBlockEntity.tick(LevelChunk.java:1306) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$RebindableTickingBlockEntityWrapper.tick(LevelChunk.java:1258) ~[?:?]
    at net.minecraft.world.level.Level.tickBlockEntities(Level.java:878) ~[?:?]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:739) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1535) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-282]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[02:33:19] [Server thread/ERROR]: Could not pass event PreSpawnSpawnerEvent to FactionsKore v1.0
java.lang.NoSuchMethodError: 'double net.minecraft.world.entity.EntityInsentient.dg()'
    at com.golfing8.v1_19.access.MagicEntitiesV1_19.canEntitySpawn(MagicEntitiesV1_19.java:219) ~[FactionsKore-1.3.jar:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.findEntitySpawnLocation(MobStackingFeature.java:758) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:707) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:699) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.spawnerPreSpawn(MobStackingFeature.java:513) ~[?:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor969.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 com.golfing8.v1_19.event.PreSpawnSpawnerAdapter.onSpawn(PreSpawnSpawnerAdapter.java:15) ~[FactionsKore-1.3.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor751.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 org.bukkit.event.Event.callEvent(Event.java:45) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.world.level.BaseSpawner.serverTick(BaseSpawner.java:140) ~[?:?]
    at net.minecraft.world.level.block.entity.SpawnerBlockEntity.serverTick(SpawnerBlockEntity.java:53) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$BoundTickingBlockEntity.tick(LevelChunk.java:1306) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$RebindableTickingBlockEntityWrapper.tick(LevelChunk.java:1258) ~[?:?]
    at net.minecraft.world.level.Level.tickBlockEntities(Level.java:878) ~[?:?]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:739) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1535) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-282]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[02:33:21] [Server thread/ERROR]: Could not pass event PreSpawnSpawnerEvent to FactionsKore v1.0
java.lang.NoSuchMethodError: 'double net.minecraft.world.entity.EntityInsentient.dg()'
    at com.golfing8.v1_19.access.MagicEntitiesV1_19.canEntitySpawn(MagicEntitiesV1_19.java:219) ~[FactionsKore-1.3.jar:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.findEntitySpawnLocation(MobStackingFeature.java:758) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:707) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:699) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.spawnerPreSpawn(MobStackingFeature.java:513) ~[?:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor969.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 com.golfing8.v1_19.event.PreSpawnSpawnerAdapter.onSpawn(PreSpawnSpawnerAdapter.java:15) ~[FactionsKore-1.3.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor751.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 org.bukkit.event.Event.callEvent(Event.java:45) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.world.level.BaseSpawner.serverTick(BaseSpawner.java:140) ~[?:?]
    at net.minecraft.world.level.block.entity.SpawnerBlockEntity.serverTick(SpawnerBlockEntity.java:53) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$BoundTickingBlockEntity.tick(LevelChunk.java:1306) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$RebindableTickingBlockEntityWrapper.tick(LevelChunk.java:1258) ~[?:?]
    at net.minecraft.world.level.Level.tickBlockEntities(Level.java:878) ~[?:?]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:739) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1535) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-282]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[02:33:21] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:33:21] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:33:21] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:33:21] [Server thread/ERROR]: Could not pass event PreSpawnSpawnerEvent to FactionsKore v1.0
java.lang.NoSuchMethodError: 'double net.minecraft.world.entity.EntityInsentient.dg()'
    at com.golfing8.v1_19.access.MagicEntitiesV1_19.canEntitySpawn(MagicEntitiesV1_19.java:219) ~[FactionsKore-1.3.jar:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.findEntitySpawnLocation(MobStackingFeature.java:758) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:707) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:699) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.spawnerPreSpawn(MobStackingFeature.java:513) ~[?:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor969.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 com.golfing8.v1_19.event.PreSpawnSpawnerAdapter.onSpawn(PreSpawnSpawnerAdapter.java:15) ~[FactionsKore-1.3.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor751.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 org.bukkit.event.Event.callEvent(Event.java:45) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.world.level.BaseSpawner.serverTick(BaseSpawner.java:140) ~[?:?]
    at net.minecraft.world.level.block.entity.SpawnerBlockEntity.serverTick(SpawnerBlockEntity.java:53) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$BoundTickingBlockEntity.tick(LevelChunk.java:1306) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$RebindableTickingBlockEntityWrapper.tick(LevelChunk.java:1258) ~[?:?]
    at net.minecraft.world.level.Level.tickBlockEntities(Level.java:878) ~[?:?]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:739) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1535) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-282]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[02:33:21] [Server thread/ERROR]: Could not pass event PreSpawnSpawnerEvent to FactionsKore v1.0
java.lang.NoSuchMethodError: 'double net.minecraft.world.entity.EntityInsentient.dg()'
    at com.golfing8.v1_19.access.MagicEntitiesV1_19.canEntitySpawn(MagicEntitiesV1_19.java:219) ~[FactionsKore-1.3.jar:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.findEntitySpawnLocation(MobStackingFeature.java:758) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:707) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:699) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.spawnerPreSpawn(MobStackingFeature.java:513) ~[?:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor969.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 com.golfing8.v1_19.event.PreSpawnSpawnerAdapter.onSpawn(PreSpawnSpawnerAdapter.java:15) ~[FactionsKore-1.3.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor751.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 org.bukkit.event.Event.callEvent(Event.java:45) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.world.level.BaseSpawner.serverTick(BaseSpawner.java:140) ~[?:?]
    at net.minecraft.world.level.block.entity.SpawnerBlockEntity.serverTick(SpawnerBlockEntity.java:53) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$BoundTickingBlockEntity.tick(LevelChunk.java:1306) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$RebindableTickingBlockEntityWrapper.tick(LevelChunk.java:1258) ~[?:?]
    at net.minecraft.world.level.Level.tickBlockEntities(Level.java:878) ~[?:?]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:739) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1535) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-282]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[02:33:21] [Server thread/ERROR]: Could not pass event PreSpawnSpawnerEvent to FactionsKore v1.0
java.lang.NoSuchMethodError: 'double net.minecraft.world.entity.EntityInsentient.dg()'
    at com.golfing8.v1_19.access.MagicEntitiesV1_19.canEntitySpawn(MagicEntitiesV1_19.java:219) ~[FactionsKore-1.3.jar:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.findEntitySpawnLocation(MobStackingFeature.java:758) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:707) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:699) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.spawnerPreSpawn(MobStackingFeature.java:513) ~[?:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor969.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 com.golfing8.v1_19.event.PreSpawnSpawnerAdapter.onSpawn(PreSpawnSpawnerAdapter.java:15) ~[FactionsKore-1.3.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor751.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 org.bukkit.event.Event.callEvent(Event.java:45) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.world.level.BaseSpawner.serverTick(BaseSpawner.java:140) ~[?:?]
    at net.minecraft.world.level.block.entity.SpawnerBlockEntity.serverTick(SpawnerBlockEntity.java:53) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$BoundTickingBlockEntity.tick(LevelChunk.java:1306) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$RebindableTickingBlockEntityWrapper.tick(LevelChunk.java:1258) ~[?:?]
    at net.minecraft.world.level.Level.tickBlockEntities(Level.java:878) ~[?:?]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:739) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1535) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-282]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[02:33:21] [Server thread/ERROR]: Could not pass event PreSpawnSpawnerEvent to FactionsKore v1.0
java.lang.NoSuchMethodError: 'double net.minecraft.world.entity.EntityInsentient.dg()'
    at com.golfing8.v1_19.access.MagicEntitiesV1_19.canEntitySpawn(MagicEntitiesV1_19.java:219) ~[FactionsKore-1.3.jar:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.findEntitySpawnLocation(MobStackingFeature.java:758) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:707) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:699) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.spawnerPreSpawn(MobStackingFeature.java:513) ~[?:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor969.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 com.golfing8.v1_19.event.PreSpawnSpawnerAdapter.onSpawn(PreSpawnSpawnerAdapter.java:15) ~[FactionsKore-1.3.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor751.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 org.bukkit.event.Event.callEvent(Event.java:45) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.world.level.BaseSpawner.serverTick(BaseSpawner.java:140) ~[?:?]
    at net.minecraft.world.level.block.entity.SpawnerBlockEntity.serverTick(SpawnerBlockEntity.java:53) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$BoundTickingBlockEntity.tick(LevelChunk.java:1306) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$RebindableTickingBlockEntityWrapper.tick(LevelChunk.java:1258) ~[?:?]
    at net.minecraft.world.level.Level.tickBlockEntities(Level.java:878) ~[?:?]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:739) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1535) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-282]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[02:33:23] [Server thread/ERROR]: Could not pass event PreSpawnSpawnerEvent to FactionsKore v1.0
java.lang.NoSuchMethodError: 'double net.minecraft.world.entity.EntityInsentient.dg()'
    at com.golfing8.v1_19.access.MagicEntitiesV1_19.canEntitySpawn(MagicEntitiesV1_19.java:219) ~[FactionsKore-1.3.jar:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.findEntitySpawnLocation(MobStackingFeature.java:758) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:707) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:699) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.spawnerPreSpawn(MobStackingFeature.java:513) ~[?:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor969.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 com.golfing8.v1_19.event.PreSpawnSpawnerAdapter.onSpawn(PreSpawnSpawnerAdapter.java:15) ~[FactionsKore-1.3.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor751.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 org.bukkit.event.Event.callEvent(Event.java:45) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.world.level.BaseSpawner.serverTick(BaseSpawner.java:140) ~[?:?]
    at net.minecraft.world.level.block.entity.SpawnerBlockEntity.serverTick(SpawnerBlockEntity.java:53) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$BoundTickingBlockEntity.tick(LevelChunk.java:1306) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$RebindableTickingBlockEntityWrapper.tick(LevelChunk.java:1258) ~[?:?]
    at net.minecraft.world.level.Level.tickBlockEntities(Level.java:878) ~[?:?]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:739) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1535) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-282]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[02:33:25] [Server thread/ERROR]: Could not pass event PreSpawnSpawnerEvent to FactionsKore v1.0
java.lang.NoSuchMethodError: 'double net.minecraft.world.entity.EntityInsentient.dg()'
    at com.golfing8.v1_19.access.MagicEntitiesV1_19.canEntitySpawn(MagicEntitiesV1_19.java:219) ~[FactionsKore-1.3.jar:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.findEntitySpawnLocation(MobStackingFeature.java:758) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:707) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:699) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.spawnerPreSpawn(MobStackingFeature.java:513) ~[?:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor969.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 com.golfing8.v1_19.event.PreSpawnSpawnerAdapter.onSpawn(PreSpawnSpawnerAdapter.java:15) ~[FactionsKore-1.3.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor751.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 org.bukkit.event.Event.callEvent(Event.java:45) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.world.level.BaseSpawner.serverTick(BaseSpawner.java:140) ~[?:?]
    at net.minecraft.world.level.block.entity.SpawnerBlockEntity.serverTick(SpawnerBlockEntity.java:53) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$BoundTickingBlockEntity.tick(LevelChunk.java:1306) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$RebindableTickingBlockEntityWrapper.tick(LevelChunk.java:1258) ~[?:?]
    at net.minecraft.world.level.Level.tickBlockEntities(Level.java:878) ~[?:?]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:739) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1535) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-282]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[02:33:25] [Server thread/ERROR]: Could not pass event PreSpawnSpawnerEvent to FactionsKore v1.0
java.lang.NoSuchMethodError: 'double net.minecraft.world.entity.EntityInsentient.dg()'
    at com.golfing8.v1_19.access.MagicEntitiesV1_19.canEntitySpawn(MagicEntitiesV1_19.java:219) ~[FactionsKore-1.3.jar:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.findEntitySpawnLocation(MobStackingFeature.java:758) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:707) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:699) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.spawnerPreSpawn(MobStackingFeature.java:513) ~[?:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor969.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 com.golfing8.v1_19.event.PreSpawnSpawnerAdapter.onSpawn(PreSpawnSpawnerAdapter.java:15) ~[FactionsKore-1.3.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor751.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 org.bukkit.event.Event.callEvent(Event.java:45) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.world.level.BaseSpawner.serverTick(BaseSpawner.java:140) ~[?:?]
    at net.minecraft.world.level.block.entity.SpawnerBlockEntity.serverTick(SpawnerBlockEntity.java:53) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$BoundTickingBlockEntity.tick(LevelChunk.java:1306) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$RebindableTickingBlockEntityWrapper.tick(LevelChunk.java:1258) ~[?:?]
    at net.minecraft.world.level.Level.tickBlockEntities(Level.java:878) ~[?:?]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:739) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1535) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-282]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[02:33:25] [Server thread/ERROR]: Could not pass event PreSpawnSpawnerEvent to FactionsKore v1.0
java.lang.NoSuchMethodError: 'double net.minecraft.world.entity.EntityInsentient.dg()'
    at com.golfing8.v1_19.access.MagicEntitiesV1_19.canEntitySpawn(MagicEntitiesV1_19.java:219) ~[FactionsKore-1.3.jar:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.findEntitySpawnLocation(MobStackingFeature.java:758) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:707) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:699) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.spawnerPreSpawn(MobStackingFeature.java:513) ~[?:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor969.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 com.golfing8.v1_19.event.PreSpawnSpawnerAdapter.onSpawn(PreSpawnSpawnerAdapter.java:15) ~[FactionsKore-1.3.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor751.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 org.bukkit.event.Event.callEvent(Event.java:45) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.world.level.BaseSpawner.serverTick(BaseSpawner.java:140) ~[?:?]
    at net.minecraft.world.level.block.entity.SpawnerBlockEntity.serverTick(SpawnerBlockEntity.java:53) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$BoundTickingBlockEntity.tick(LevelChunk.java:1306) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$RebindableTickingBlockEntityWrapper.tick(LevelChunk.java:1258) ~[?:?]
    at net.minecraft.world.level.Level.tickBlockEntities(Level.java:878) ~[?:?]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:739) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1535) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-282]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[02:33:25] [Server thread/ERROR]: Could not pass event PreSpawnSpawnerEvent to FactionsKore v1.0
java.lang.NoSuchMethodError: 'double net.minecraft.world.entity.EntityInsentient.dg()'
    at com.golfing8.v1_19.access.MagicEntitiesV1_19.canEntitySpawn(MagicEntitiesV1_19.java:219) ~[FactionsKore-1.3.jar:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.findEntitySpawnLocation(MobStackingFeature.java:758) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:707) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:699) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.spawnerPreSpawn(MobStackingFeature.java:513) ~[?:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor969.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 com.golfing8.v1_19.event.PreSpawnSpawnerAdapter.onSpawn(PreSpawnSpawnerAdapter.java:15) ~[FactionsKore-1.3.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor751.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 org.bukkit.event.Event.callEvent(Event.java:45) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.world.level.BaseSpawner.serverTick(BaseSpawner.java:140) ~[?:?]
    at net.minecraft.world.level.block.entity.SpawnerBlockEntity.serverTick(SpawnerBlockEntity.java:53) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$BoundTickingBlockEntity.tick(LevelChunk.java:1306) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$RebindableTickingBlockEntityWrapper.tick(LevelChunk.java:1258) ~[?:?]
    at net.minecraft.world.level.Level.tickBlockEntities(Level.java:878) ~[?:?]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:739) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1535) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-282]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[02:33:26] [Server thread/ERROR]: Could not pass event PreSpawnSpawnerEvent to FactionsKore v1.0
java.lang.NoSuchMethodError: 'double net.minecraft.world.entity.EntityInsentient.dg()'
    at com.golfing8.v1_19.access.MagicEntitiesV1_19.canEntitySpawn(MagicEntitiesV1_19.java:219) ~[FactionsKore-1.3.jar:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.findEntitySpawnLocation(MobStackingFeature.java:758) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:707) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:699) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.spawnerPreSpawn(MobStackingFeature.java:513) ~[?:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor969.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 com.golfing8.v1_19.event.PreSpawnSpawnerAdapter.onSpawn(PreSpawnSpawnerAdapter.java:15) ~[FactionsKore-1.3.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor751.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 org.bukkit.event.Event.callEvent(Event.java:45) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.world.level.BaseSpawner.serverTick(BaseSpawner.java:140) ~[?:?]
    at net.minecraft.world.level.block.entity.SpawnerBlockEntity.serverTick(SpawnerBlockEntity.java:53) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$BoundTickingBlockEntity.tick(LevelChunk.java:1306) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$RebindableTickingBlockEntityWrapper.tick(LevelChunk.java:1258) ~[?:?]
    at net.minecraft.world.level.Level.tickBlockEntities(Level.java:878) ~[?:?]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:739) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1535) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-282]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[02:33:33] [Craft Scheduler Thread - 45 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:33:33] [Craft Scheduler Thread - 45 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:33:52] [Server thread/INFO]: xanthacreator issued server command: /br apply cyl set red_sand
[02:34:08] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:34:08] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:34:08] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:34:19] [Server thread/ERROR]: Could not pass event PreSpawnSpawnerEvent to FactionsKore v1.0
java.lang.NoSuchMethodError: 'double net.minecraft.world.entity.EntityInsentient.dg()'
    at com.golfing8.v1_19.access.MagicEntitiesV1_19.canEntitySpawn(MagicEntitiesV1_19.java:219) ~[FactionsKore-1.3.jar:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.findEntitySpawnLocation(MobStackingFeature.java:758) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:707) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:699) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.spawnerPreSpawn(MobStackingFeature.java:513) ~[?:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor969.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 com.golfing8.v1_19.event.PreSpawnSpawnerAdapter.onSpawn(PreSpawnSpawnerAdapter.java:15) ~[FactionsKore-1.3.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor751.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 org.bukkit.event.Event.callEvent(Event.java:45) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.world.level.BaseSpawner.serverTick(BaseSpawner.java:140) ~[?:?]
    at net.minecraft.world.level.block.entity.SpawnerBlockEntity.serverTick(SpawnerBlockEntity.java:53) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$BoundTickingBlockEntity.tick(LevelChunk.java:1306) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$RebindableTickingBlockEntityWrapper.tick(LevelChunk.java:1258) ~[?:?]
    at net.minecraft.world.level.Level.tickBlockEntities(Level.java:878) ~[?:?]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:739) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1535) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-282]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[02:34:19] [Server thread/ERROR]: Could not pass event PreSpawnSpawnerEvent to FactionsKore v1.0
java.lang.NoSuchMethodError: 'double net.minecraft.world.entity.EntityInsentient.dg()'
    at com.golfing8.v1_19.access.MagicEntitiesV1_19.canEntitySpawn(MagicEntitiesV1_19.java:219) ~[FactionsKore-1.3.jar:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.findEntitySpawnLocation(MobStackingFeature.java:758) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:707) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:699) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.spawnerPreSpawn(MobStackingFeature.java:513) ~[?:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor969.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 com.golfing8.v1_19.event.PreSpawnSpawnerAdapter.onSpawn(PreSpawnSpawnerAdapter.java:15) ~[FactionsKore-1.3.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor751.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 org.bukkit.event.Event.callEvent(Event.java:45) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.world.level.BaseSpawner.serverTick(BaseSpawner.java:140) ~[?:?]
    at net.minecraft.world.level.block.entity.SpawnerBlockEntity.serverTick(SpawnerBlockEntity.java:53) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$BoundTickingBlockEntity.tick(LevelChunk.java:1306) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$RebindableTickingBlockEntityWrapper.tick(LevelChunk.java:1258) ~[?:?]
    at net.minecraft.world.level.Level.tickBlockEntities(Level.java:878) ~[?:?]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:739) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1535) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-282]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[02:34:20] [Server thread/ERROR]: Could not pass event PreSpawnSpawnerEvent to FactionsKore v1.0
java.lang.NoSuchMethodError: 'double net.minecraft.world.entity.EntityInsentient.dg()'
    at com.golfing8.v1_19.access.MagicEntitiesV1_19.canEntitySpawn(MagicEntitiesV1_19.java:219) ~[FactionsKore-1.3.jar:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.findEntitySpawnLocation(MobStackingFeature.java:758) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:707) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:699) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.spawnerPreSpawn(MobStackingFeature.java:513) ~[?:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor969.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 com.golfing8.v1_19.event.PreSpawnSpawnerAdapter.onSpawn(PreSpawnSpawnerAdapter.java:15) ~[FactionsKore-1.3.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor751.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 org.bukkit.event.Event.callEvent(Event.java:45) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.world.level.BaseSpawner.serverTick(BaseSpawner.java:140) ~[?:?]
    at net.minecraft.world.level.block.entity.SpawnerBlockEntity.serverTick(SpawnerBlockEntity.java:53) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$BoundTickingBlockEntity.tick(LevelChunk.java:1306) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$RebindableTickingBlockEntityWrapper.tick(LevelChunk.java:1258) ~[?:?]
    at net.minecraft.world.level.Level.tickBlockEntities(Level.java:878) ~[?:?]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:739) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1535) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-282]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[02:34:20] [Server thread/ERROR]: Could not pass event PreSpawnSpawnerEvent to FactionsKore v1.0
java.lang.NoSuchMethodError: 'double net.minecraft.world.entity.EntityInsentient.dg()'
    at com.golfing8.v1_19.access.MagicEntitiesV1_19.canEntitySpawn(MagicEntitiesV1_19.java:219) ~[FactionsKore-1.3.jar:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.findEntitySpawnLocation(MobStackingFeature.java:758) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:707) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:699) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.spawnerPreSpawn(MobStackingFeature.java:513) ~[?:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor969.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 com.golfing8.v1_19.event.PreSpawnSpawnerAdapter.onSpawn(PreSpawnSpawnerAdapter.java:15) ~[FactionsKore-1.3.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor751.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 org.bukkit.event.Event.callEvent(Event.java:45) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.world.level.BaseSpawner.serverTick(BaseSpawner.java:140) ~[?:?]
    at net.minecraft.world.level.block.entity.SpawnerBlockEntity.serverTick(SpawnerBlockEntity.java:53) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$BoundTickingBlockEntity.tick(LevelChunk.java:1306) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$RebindableTickingBlockEntityWrapper.tick(LevelChunk.java:1258) ~[?:?]
    at net.minecraft.world.level.Level.tickBlockEntities(Level.java:878) ~[?:?]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:739) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1535) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-282]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[02:34:20] [Server thread/ERROR]: Could not pass event PreSpawnSpawnerEvent to FactionsKore v1.0
java.lang.NoSuchMethodError: 'double net.minecraft.world.entity.EntityInsentient.dg()'
    at com.golfing8.v1_19.access.MagicEntitiesV1_19.canEntitySpawn(MagicEntitiesV1_19.java:219) ~[FactionsKore-1.3.jar:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.findEntitySpawnLocation(MobStackingFeature.java:758) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:707) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:699) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.spawnerPreSpawn(MobStackingFeature.java:513) ~[?:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor969.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 com.golfing8.v1_19.event.PreSpawnSpawnerAdapter.onSpawn(PreSpawnSpawnerAdapter.java:15) ~[FactionsKore-1.3.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor751.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 org.bukkit.event.Event.callEvent(Event.java:45) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.world.level.BaseSpawner.serverTick(BaseSpawner.java:140) ~[?:?]
    at net.minecraft.world.level.block.entity.SpawnerBlockEntity.serverTick(SpawnerBlockEntity.java:53) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$BoundTickingBlockEntity.tick(LevelChunk.java:1306) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$RebindableTickingBlockEntityWrapper.tick(LevelChunk.java:1258) ~[?:?]
    at net.minecraft.world.level.Level.tickBlockEntities(Level.java:878) ~[?:?]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:739) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1535) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-282]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[02:34:20] [Server thread/ERROR]: Could not pass event PreSpawnSpawnerEvent to FactionsKore v1.0
java.lang.NoSuchMethodError: 'double net.minecraft.world.entity.EntityInsentient.dg()'
    at com.golfing8.v1_19.access.MagicEntitiesV1_19.canEntitySpawn(MagicEntitiesV1_19.java:219) ~[FactionsKore-1.3.jar:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.findEntitySpawnLocation(MobStackingFeature.java:758) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:707) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:699) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.spawnerPreSpawn(MobStackingFeature.java:513) ~[?:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor969.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 com.golfing8.v1_19.event.PreSpawnSpawnerAdapter.onSpawn(PreSpawnSpawnerAdapter.java:15) ~[FactionsKore-1.3.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor751.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 org.bukkit.event.Event.callEvent(Event.java:45) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.world.level.BaseSpawner.serverTick(BaseSpawner.java:140) ~[?:?]
    at net.minecraft.world.level.block.entity.SpawnerBlockEntity.serverTick(SpawnerBlockEntity.java:53) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$BoundTickingBlockEntity.tick(LevelChunk.java:1306) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$RebindableTickingBlockEntityWrapper.tick(LevelChunk.java:1258) ~[?:?]
    at net.minecraft.world.level.Level.tickBlockEntities(Level.java:878) ~[?:?]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:739) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1535) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-282]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[02:34:20] [Server thread/ERROR]: Could not pass event PreSpawnSpawnerEvent to FactionsKore v1.0
java.lang.NoSuchMethodError: 'double net.minecraft.world.entity.EntityInsentient.dg()'
    at com.golfing8.v1_19.access.MagicEntitiesV1_19.canEntitySpawn(MagicEntitiesV1_19.java:219) ~[FactionsKore-1.3.jar:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.findEntitySpawnLocation(MobStackingFeature.java:758) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:707) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:699) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.spawnerPreSpawn(MobStackingFeature.java:513) ~[?:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor969.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 com.golfing8.v1_19.event.PreSpawnSpawnerAdapter.onSpawn(PreSpawnSpawnerAdapter.java:15) ~[FactionsKore-1.3.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor751.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 org.bukkit.event.Event.callEvent(Event.java:45) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.world.level.BaseSpawner.serverTick(BaseSpawner.java:140) ~[?:?]
    at net.minecraft.world.level.block.entity.SpawnerBlockEntity.serverTick(SpawnerBlockEntity.java:53) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$BoundTickingBlockEntity.tick(LevelChunk.java:1306) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$RebindableTickingBlockEntityWrapper.tick(LevelChunk.java:1258) ~[?:?]
    at net.minecraft.world.level.Level.tickBlockEntities(Level.java:878) ~[?:?]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:739) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1535) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-282]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[02:34:23] [Server thread/ERROR]: Could not pass event PreSpawnSpawnerEvent to FactionsKore v1.0
java.lang.NoSuchMethodError: 'double net.minecraft.world.entity.EntityInsentient.dg()'
    at com.golfing8.v1_19.access.MagicEntitiesV1_19.canEntitySpawn(MagicEntitiesV1_19.java:219) ~[FactionsKore-1.3.jar:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.findEntitySpawnLocation(MobStackingFeature.java:758) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:707) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:699) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.spawnerPreSpawn(MobStackingFeature.java:513) ~[?:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor969.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 com.golfing8.v1_19.event.PreSpawnSpawnerAdapter.onSpawn(PreSpawnSpawnerAdapter.java:15) ~[FactionsKore-1.3.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor751.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 org.bukkit.event.Event.callEvent(Event.java:45) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.world.level.BaseSpawner.serverTick(BaseSpawner.java:140) ~[?:?]
    at net.minecraft.world.level.block.entity.SpawnerBlockEntity.serverTick(SpawnerBlockEntity.java:53) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$BoundTickingBlockEntity.tick(LevelChunk.java:1306) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$RebindableTickingBlockEntityWrapper.tick(LevelChunk.java:1258) ~[?:?]
    at net.minecraft.world.level.Level.tickBlockEntities(Level.java:878) ~[?:?]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:739) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1535) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-282]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[02:34:24] [Server thread/ERROR]: Could not pass event PreSpawnSpawnerEvent to FactionsKore v1.0
java.lang.NoSuchMethodError: 'double net.minecraft.world.entity.EntityInsentient.dg()'
    at com.golfing8.v1_19.access.MagicEntitiesV1_19.canEntitySpawn(MagicEntitiesV1_19.java:219) ~[FactionsKore-1.3.jar:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.findEntitySpawnLocation(MobStackingFeature.java:758) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:707) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.createStackedEntity(MobStackingFeature.java:699) ~[?:?]
    at com.golfing8.kore.expansionstacker.features.MobStackingFeature.spawnerPreSpawn(MobStackingFeature.java:513) ~[?:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor969.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 com.golfing8.v1_19.event.PreSpawnSpawnerAdapter.onSpawn(PreSpawnSpawnerAdapter.java:15) ~[FactionsKore-1.3.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor751.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[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-282]
    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 org.bukkit.event.Event.callEvent(Event.java:45) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.world.level.BaseSpawner.serverTick(BaseSpawner.java:140) ~[?:?]
    at net.minecraft.world.level.block.entity.SpawnerBlockEntity.serverTick(SpawnerBlockEntity.java:53) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$BoundTickingBlockEntity.tick(LevelChunk.java:1306) ~[?:?]
    at net.minecraft.world.level.chunk.LevelChunk$RebindableTickingBlockEntityWrapper.tick(LevelChunk.java:1258) ~[?:?]
    at net.minecraft.world.level.Level.tickBlockEntities(Level.java:878) ~[?:?]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:739) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1535) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-282]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-282]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[02:34:27] [Server thread/INFO]: xanthacreator issued server command: /warp crates
[02:34:30] [Server thread/INFO]: All stacked entities will be removed in 1m 0s!
[02:34:33] [Craft Scheduler Thread - 43 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:34:33] [Craft Scheduler Thread - 43 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:34:40] [Server thread/INFO]: xanthacreator issued server command: /cc additem CommonCrate Ceggs
[02:34:40] [Server thread/INFO]: [CrazyCrates] Successfully saved the CommonCrate.yml.
[02:34:40] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[02:34:40] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[02:34:40] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[02:34:40] [Server thread/INFO]: [CrazyCrates] Loaded 4 physical crate locations.
[02:34:40] [Server thread/INFO]: [CrazyCrates] Failed to load 8 physical crate locations.
[02:34:40] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[02:34:40] [Server thread/INFO]: [CrazyCrates] nether.nbt was successfully found and loaded.
[02:34:40] [Server thread/INFO]: [CrazyCrates] wooden.nbt was successfully found and loaded.
[02:34:40] [Server thread/INFO]: [CrazyCrates] sea.nbt was successfully found and loaded.
[02:34:40] [Server thread/INFO]: [CrazyCrates] soul.nbt was successfully found and loaded.
[02:34:40] [Server thread/INFO]: [CrazyCrates] classic.nbt was successfully found and loaded.
[02:34:40] [Server thread/INFO]: [CrazyCrates] outdoors.nbt was successfully found and loaded.
[02:34:40] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[02:34:40] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[02:34:40] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[02:34:56] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:34:56] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:34:56] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:35:24] [Server thread/INFO]: xanthacreator issued server command: /cc additem EpicCrate Ceggs
[02:35:24] [Server thread/INFO]: [CrazyCrates] Successfully saved the EpicCrate.yml.
[02:35:24] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[02:35:24] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[02:35:24] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[02:35:24] [Server thread/INFO]: [CrazyCrates] Loaded 4 physical crate locations.
[02:35:24] [Server thread/INFO]: [CrazyCrates] Failed to load 8 physical crate locations.
[02:35:24] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[02:35:24] [Server thread/INFO]: [CrazyCrates] nether.nbt was successfully found and loaded.
[02:35:24] [Server thread/INFO]: [CrazyCrates] wooden.nbt was successfully found and loaded.
[02:35:24] [Server thread/INFO]: [CrazyCrates] sea.nbt was successfully found and loaded.
[02:35:24] [Server thread/INFO]: [CrazyCrates] soul.nbt was successfully found and loaded.
[02:35:24] [Server thread/INFO]: [CrazyCrates] classic.nbt was successfully found and loaded.
[02:35:24] [Server thread/INFO]: [CrazyCrates] outdoors.nbt was successfully found and loaded.
[02:35:24] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[02:35:24] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[02:35:24] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[02:35:30] [Server thread/INFO]: 0 stacked entities were just removed!
[02:35:33] [Craft Scheduler Thread - 41 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:35:33] [Craft Scheduler Thread - 41 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:35:34] [Server thread/INFO]: xanthacreator issued server command: /cc additem EpicCrate KRISSVECTOR
[02:35:34] [Server thread/INFO]: [CrazyCrates] Successfully saved the EpicCrate.yml.
[02:35:34] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[02:35:34] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[02:35:34] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[02:35:34] [Server thread/INFO]: [CrazyCrates] Loaded 4 physical crate locations.
[02:35:34] [Server thread/INFO]: [CrazyCrates] Failed to load 8 physical crate locations.
[02:35:34] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[02:35:34] [Server thread/INFO]: [CrazyCrates] nether.nbt was successfully found and loaded.
[02:35:34] [Server thread/INFO]: [CrazyCrates] wooden.nbt was successfully found and loaded.
[02:35:34] [Server thread/INFO]: [CrazyCrates] sea.nbt was successfully found and loaded.
[02:35:34] [Server thread/INFO]: [CrazyCrates] soul.nbt was successfully found and loaded.
[02:35:34] [Server thread/INFO]: [CrazyCrates] classic.nbt was successfully found and loaded.
[02:35:34] [Server thread/INFO]: [CrazyCrates] outdoors.nbt was successfully found and loaded.
[02:35:34] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[02:35:34] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[02:35:34] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[02:35:43] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:35:43] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:35:43] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:35:51] [Server thread/INFO]: xanthacreator issued server command: /cc additem EpicCrate ChuckBuster
[02:35:51] [Server thread/INFO]: [CrazyCrates] Successfully saved the EpicCrate.yml.
[02:35:51] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[02:35:51] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[02:35:51] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[02:35:51] [Server thread/INFO]: [CrazyCrates] Loaded 4 physical crate locations.
[02:35:51] [Server thread/INFO]: [CrazyCrates] Failed to load 8 physical crate locations.
[02:35:51] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[02:35:51] [Server thread/INFO]: [CrazyCrates] nether.nbt was successfully found and loaded.
[02:35:51] [Server thread/INFO]: [CrazyCrates] wooden.nbt was successfully found and loaded.
[02:35:51] [Server thread/INFO]: [CrazyCrates] sea.nbt was successfully found and loaded.
[02:35:51] [Server thread/INFO]: [CrazyCrates] soul.nbt was successfully found and loaded.
[02:35:51] [Server thread/INFO]: [CrazyCrates] classic.nbt was successfully found and loaded.
[02:35:51] [Server thread/INFO]: [CrazyCrates] outdoors.nbt was successfully found and loaded.
[02:35:51] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[02:35:51] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[02:35:51] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[02:36:01] [Server thread/INFO]: xanthacreator issued server command: /cc additem EpicCrate harvestorhoe
[02:36:01] [Server thread/INFO]: [CrazyCrates] Successfully saved the EpicCrate.yml.
[02:36:01] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[02:36:01] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[02:36:01] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[02:36:01] [Server thread/INFO]: [CrazyCrates] Loaded 4 physical crate locations.
[02:36:01] [Server thread/INFO]: [CrazyCrates] Failed to load 8 physical crate locations.
[02:36:01] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[02:36:01] [Server thread/INFO]: [CrazyCrates] nether.nbt was successfully found and loaded.
[02:36:01] [Server thread/INFO]: [CrazyCrates] wooden.nbt was successfully found and loaded.
[02:36:01] [Server thread/INFO]: [CrazyCrates] sea.nbt was successfully found and loaded.
[02:36:01] [Server thread/INFO]: [CrazyCrates] soul.nbt was successfully found and loaded.
[02:36:01] [Server thread/INFO]: [CrazyCrates] classic.nbt was successfully found and loaded.
[02:36:01] [Server thread/INFO]: [CrazyCrates] outdoors.nbt was successfully found and loaded.
[02:36:01] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[02:36:01] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[02:36:01] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[02:36:15] [Server thread/INFO]: xanthacreator issued server command: /cc additem EpicCrate CommonCrateKeys1
[02:36:15] [Server thread/INFO]: [CrazyCrates] Successfully saved the EpicCrate.yml.
[02:36:15] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[02:36:15] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[02:36:15] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[02:36:15] [Server thread/INFO]: [CrazyCrates] Loaded 4 physical crate locations.
[02:36:15] [Server thread/INFO]: [CrazyCrates] Failed to load 8 physical crate locations.
[02:36:15] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[02:36:15] [Server thread/INFO]: [CrazyCrates] nether.nbt was successfully found and loaded.
[02:36:15] [Server thread/INFO]: [CrazyCrates] wooden.nbt was successfully found and loaded.
[02:36:15] [Server thread/INFO]: [CrazyCrates] sea.nbt was successfully found and loaded.
[02:36:15] [Server thread/INFO]: [CrazyCrates] soul.nbt was successfully found and loaded.
[02:36:15] [Server thread/INFO]: [CrazyCrates] classic.nbt was successfully found and loaded.
[02:36:15] [Server thread/INFO]: [CrazyCrates] outdoors.nbt was successfully found and loaded.
[02:36:15] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[02:36:15] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[02:36:15] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[02:36:30] [Server thread/INFO]: [MRL] DonatorMine has been reset automatically!
[02:36:30] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:36:30] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:36:30] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:36:33] [Craft Scheduler Thread - 42 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:36:33] [Craft Scheduler Thread - 42 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:36:55] [Server thread/INFO]: xanthacreator issued server command: /pv
[02:37:17] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:37:17] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:37:17] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:37:33] [Craft Scheduler Thread - 43 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:37:33] [Craft Scheduler Thread - 43 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:37:36] [Server thread/INFO]: xanthacreator issued server command: /cc additem EpicCrate MobSpawnerBooster
[02:37:36] [Server thread/INFO]: [CrazyCrates] Successfully saved the EpicCrate.yml.
[02:37:36] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[02:37:36] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[02:37:36] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[02:37:36] [Server thread/INFO]: [CrazyCrates] Loaded 4 physical crate locations.
[02:37:36] [Server thread/INFO]: [CrazyCrates] Failed to load 8 physical crate locations.
[02:37:36] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[02:37:36] [Server thread/INFO]: [CrazyCrates] nether.nbt was successfully found and loaded.
[02:37:36] [Server thread/INFO]: [CrazyCrates] wooden.nbt was successfully found and loaded.
[02:37:36] [Server thread/INFO]: [CrazyCrates] sea.nbt was successfully found and loaded.
[02:37:36] [Server thread/INFO]: [CrazyCrates] soul.nbt was successfully found and loaded.
[02:37:36] [Server thread/INFO]: [CrazyCrates] classic.nbt was successfully found and loaded.
[02:37:36] [Server thread/INFO]: [CrazyCrates] outdoors.nbt was successfully found and loaded.
[02:37:36] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[02:37:36] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[02:37:36] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[02:37:49] [Server thread/INFO]: xanthacreator issued server command: /cc additem EpicCrate EXPBOOSTER
[02:37:49] [Server thread/INFO]: [CrazyCrates] Successfully saved the EpicCrate.yml.
[02:37:49] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[02:37:49] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[02:37:49] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[02:37:49] [Server thread/INFO]: [CrazyCrates] Loaded 4 physical crate locations.
[02:37:49] [Server thread/INFO]: [CrazyCrates] Failed to load 8 physical crate locations.
[02:37:49] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[02:37:49] [Server thread/INFO]: [CrazyCrates] nether.nbt was successfully found and loaded.
[02:37:49] [Server thread/INFO]: [CrazyCrates] wooden.nbt was successfully found and loaded.
[02:37:49] [Server thread/INFO]: [CrazyCrates] sea.nbt was successfully found and loaded.
[02:37:49] [Server thread/INFO]: [CrazyCrates] soul.nbt was successfully found and loaded.
[02:37:49] [Server thread/INFO]: [CrazyCrates] classic.nbt was successfully found and loaded.
[02:37:49] [Server thread/INFO]: [CrazyCrates] outdoors.nbt was successfully found and loaded.
[02:37:49] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[02:37:49] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[02:37:49] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[02:37:58] [Server thread/INFO]: xanthacreator issued server command: /cc additem EpicCrate mobbooster
[02:37:58] [Server thread/INFO]: [CrazyCrates] Successfully saved the EpicCrate.yml.
[02:37:58] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[02:37:58] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[02:37:58] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[02:37:58] [Server thread/INFO]: [CrazyCrates] Loaded 4 physical crate locations.
[02:37:58] [Server thread/INFO]: [CrazyCrates] Failed to load 8 physical crate locations.
[02:37:58] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[02:37:58] [Server thread/INFO]: [CrazyCrates] nether.nbt was successfully found and loaded.
[02:37:58] [Server thread/INFO]: [CrazyCrates] wooden.nbt was successfully found and loaded.
[02:37:58] [Server thread/INFO]: [CrazyCrates] sea.nbt was successfully found and loaded.
[02:37:58] [Server thread/INFO]: [CrazyCrates] soul.nbt was successfully found and loaded.
[02:37:58] [Server thread/INFO]: [CrazyCrates] classic.nbt was successfully found and loaded.
[02:37:58] [Server thread/INFO]: [CrazyCrates] outdoors.nbt was successfully found and loaded.
[02:37:58] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[02:37:58] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[02:37:58] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[02:38:05] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:38:05] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:38:05] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:38:31] [Server thread/INFO]: xanthacreator issued server command: /cc additem GODCrate MobBooster
[02:38:31] [Server thread/INFO]: [CrazyCrates] Successfully saved the GODCrate.yml.
[02:38:31] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[02:38:31] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[02:38:31] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[02:38:31] [Server thread/INFO]: [CrazyCrates] Loaded 4 physical crate locations.
[02:38:31] [Server thread/INFO]: [CrazyCrates] Failed to load 8 physical crate locations.
[02:38:31] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[02:38:31] [Server thread/INFO]: [CrazyCrates] nether.nbt was successfully found and loaded.
[02:38:31] [Server thread/INFO]: [CrazyCrates] wooden.nbt was successfully found and loaded.
[02:38:31] [Server thread/INFO]: [CrazyCrates] sea.nbt was successfully found and loaded.
[02:38:31] [Server thread/INFO]: [CrazyCrates] soul.nbt was successfully found and loaded.
[02:38:31] [Server thread/INFO]: [CrazyCrates] classic.nbt was successfully found and loaded.
[02:38:31] [Server thread/INFO]: [CrazyCrates] outdoors.nbt was successfully found and loaded.
[02:38:31] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[02:38:31] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[02:38:31] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[02:38:33] [Craft Scheduler Thread - 38 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:38:33] [Craft Scheduler Thread - 38 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:38:42] [Server thread/INFO]: xanthacreator issued server command: /cc additem GODCrate expbooster
[02:38:42] [Server thread/INFO]: [CrazyCrates] Successfully saved the GODCrate.yml.
[02:38:42] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[02:38:42] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[02:38:42] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[02:38:42] [Server thread/INFO]: [CrazyCrates] Loaded 4 physical crate locations.
[02:38:42] [Server thread/INFO]: [CrazyCrates] Failed to load 8 physical crate locations.
[02:38:42] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[02:38:42] [Server thread/INFO]: [CrazyCrates] nether.nbt was successfully found and loaded.
[02:38:42] [Server thread/INFO]: [CrazyCrates] wooden.nbt was successfully found and loaded.
[02:38:42] [Server thread/INFO]: [CrazyCrates] sea.nbt was successfully found and loaded.
[02:38:42] [Server thread/INFO]: [CrazyCrates] soul.nbt was successfully found and loaded.
[02:38:42] [Server thread/INFO]: [CrazyCrates] classic.nbt was successfully found and loaded.
[02:38:42] [Server thread/INFO]: [CrazyCrates] outdoors.nbt was successfully found and loaded.
[02:38:42] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[02:38:42] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[02:38:42] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[02:38:51] [Server thread/INFO]: xanthacreator issued server command: /cc additem GODCrate expbooster
[02:38:51] [Server thread/INFO]: [CrazyCrates] Successfully saved the GODCrate.yml.
[02:38:51] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[02:38:51] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[02:38:51] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[02:38:51] [Server thread/INFO]: [CrazyCrates] Loaded 4 physical crate locations.
[02:38:51] [Server thread/INFO]: [CrazyCrates] Failed to load 8 physical crate locations.
[02:38:51] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[02:38:51] [Server thread/INFO]: [CrazyCrates] nether.nbt was successfully found and loaded.
[02:38:51] [Server thread/INFO]: [CrazyCrates] wooden.nbt was successfully found and loaded.
[02:38:51] [Server thread/INFO]: [CrazyCrates] sea.nbt was successfully found and loaded.
[02:38:51] [Server thread/INFO]: [CrazyCrates] soul.nbt was successfully found and loaded.
[02:38:51] [Server thread/INFO]: [CrazyCrates] classic.nbt was successfully found and loaded.
[02:38:51] [Server thread/INFO]: [CrazyCrates] outdoors.nbt was successfully found and loaded.
[02:38:51] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[02:38:51] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[02:38:51] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[02:38:52] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:38:52] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:38:52] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:39:30] [Server thread/INFO]: All stacked entities will be removed in 1m 0s!
[02:39:33] [Craft Scheduler Thread - 43 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:39:33] [Craft Scheduler Thread - 43 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:39:39] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:39:39] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:39:39] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:40:04] [Server thread/INFO]: Saving is already turned on
[02:40:04] [Server thread/INFO]: Saving the game (this may take a moment!)
[02:40:04] [Server thread/INFO]: Saved the game
[02:40:14] [Server thread/INFO]: xanthacreator issued server command: /cc additem GODCrate mobspawnerbooster
[02:40:14] [Server thread/INFO]: [CrazyCrates] Successfully saved the GODCrate.yml.
[02:40:14] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[02:40:14] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[02:40:14] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[02:40:14] [Server thread/INFO]: [CrazyCrates] Loaded 4 physical crate locations.
[02:40:14] [Server thread/INFO]: [CrazyCrates] Failed to load 8 physical crate locations.
[02:40:14] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[02:40:14] [Server thread/INFO]: [CrazyCrates] nether.nbt was successfully found and loaded.
[02:40:14] [Server thread/INFO]: [CrazyCrates] wooden.nbt was successfully found and loaded.
[02:40:14] [Server thread/INFO]: [CrazyCrates] sea.nbt was successfully found and loaded.
[02:40:14] [Server thread/INFO]: [CrazyCrates] soul.nbt was successfully found and loaded.
[02:40:14] [Server thread/INFO]: [CrazyCrates] classic.nbt was successfully found and loaded.
[02:40:14] [Server thread/INFO]: [CrazyCrates] outdoors.nbt was successfully found and loaded.
[02:40:14] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[02:40:14] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[02:40:14] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[02:40:23] [Server thread/INFO]: xanthacreator issued server command: /cc additem GODCrate KRISSVECTOR
[02:40:23] [Server thread/INFO]: [CrazyCrates] Successfully saved the GODCrate.yml.
[02:40:23] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[02:40:23] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[02:40:23] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[02:40:23] [Server thread/INFO]: [CrazyCrates] Loaded 4 physical crate locations.
[02:40:23] [Server thread/INFO]: [CrazyCrates] Failed to load 8 physical crate locations.
[02:40:23] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[02:40:23] [Server thread/INFO]: [CrazyCrates] nether.nbt was successfully found and loaded.
[02:40:23] [Server thread/INFO]: [CrazyCrates] wooden.nbt was successfully found and loaded.
[02:40:23] [Server thread/INFO]: [CrazyCrates] sea.nbt was successfully found and loaded.
[02:40:23] [Server thread/INFO]: [CrazyCrates] soul.nbt was successfully found and loaded.
[02:40:23] [Server thread/INFO]: [CrazyCrates] classic.nbt was successfully found and loaded.
[02:40:23] [Server thread/INFO]: [CrazyCrates] outdoors.nbt was successfully found and loaded.
[02:40:23] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[02:40:23] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[02:40:23] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[02:40:26] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:40:26] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:40:26] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:40:30] [Server thread/INFO]: 0 stacked entities were just removed!
[02:40:33] [Craft Scheduler Thread - 56 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:40:33] [Craft Scheduler Thread - 56 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:40:34] [Server thread/INFO]: xanthacreator issued server command: /cc additem GODCrate chunkbuster
[02:40:34] [Server thread/INFO]: [CrazyCrates] Successfully saved the GODCrate.yml.
[02:40:34] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[02:40:34] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[02:40:34] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[02:40:34] [Server thread/INFO]: [CrazyCrates] Loaded 4 physical crate locations.
[02:40:34] [Server thread/INFO]: [CrazyCrates] Failed to load 8 physical crate locations.
[02:40:34] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[02:40:34] [Server thread/INFO]: [CrazyCrates] nether.nbt was successfully found and loaded.
[02:40:34] [Server thread/INFO]: [CrazyCrates] wooden.nbt was successfully found and loaded.
[02:40:34] [Server thread/INFO]: [CrazyCrates] sea.nbt was successfully found and loaded.
[02:40:34] [Server thread/INFO]: [CrazyCrates] soul.nbt was successfully found and loaded.
[02:40:34] [Server thread/INFO]: [CrazyCrates] classic.nbt was successfully found and loaded.
[02:40:34] [Server thread/INFO]: [CrazyCrates] outdoors.nbt was successfully found and loaded.
[02:40:34] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[02:40:34] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[02:40:34] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[02:40:35] [ForkJoinPool.commonPool-worker-13/INFO]: [BuycraftAPI] Successfully loaded payments
[02:41:14] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:41:14] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:41:14] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:41:30] [Server thread/INFO]: [MRL] GoldMine has been reset automatically!
[02:41:33] [Craft Scheduler Thread - 48 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:41:33] [Craft Scheduler Thread - 48 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:42:01] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:42:01] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:42:01] [Server thread/INFO]: Admins: OWNER xanthacreator
[02:42:33] [Craft Scheduler Thread - 58 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:42:34] [Craft Scheduler Thread - 58 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:42:48] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[02:42:48] [Server thread/INFO]: There are 1 out of maximum 16 players online.
[02:42:48] [Server thread/INFO]: Admins: OWNER xanthacreator