Paste #107882: Unnamed Server Log Paste

Date: 2023/03/26 03:16:56 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[12:06:05] [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'
[12:06:13] [ServerMain/INFO]: Loaded 7 recipes
[12:06:14] [Server thread/INFO]: Starting minecraft server version 1.19.4
[12:06:14] [Server thread/INFO]: Loading properties
[12:06:14] [Server thread/INFO]: This server is running Paper version git-Paper-471 (MC: 1.19.4) (Implementing API version 1.19.4-R0.1-SNAPSHOT) (Git: d5abb94)
[12:06:14] [Server thread/INFO]: Server Ping Player Sample Count: 12
[12:06:14] [Server thread/INFO]: Using 4 threads for Netty based IO
[12:06:14] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and gen parallelism of 1 threads
[12:06:15] [Server thread/INFO]: Default game type: SURVIVAL
[12:06:15] [Server thread/INFO]: Generating keypair
[12:06:15] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25596
[12:06:15] [Server thread/INFO]: Using epoll channel type
[12:06:15] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[12:06:15] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[12:06:18] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loading 2 libraries... please wait
[12:06:19] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[12:06:19] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[12:06:19] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.11/fastutil-8.5.11.jar
[12:06:20] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loading 1 libraries... please wait
[12:06:20] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[12:06:20] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[12:06:20] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[12:06:20] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[12:06:20] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[12:06:20] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[12:06:20] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_19_R3.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[12:06:23] [Server thread/WARN]: Legacy plugin PlayTime v3.3 does not specify an api-version.
[12:06:23] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v4.6.2
[12:06:23] [Server thread/INFO]: [ViaVersion] ViaVersion 4.6.2 is now loaded. Registering protocol transformers and injecting...
[12:06:24] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[12:06:24] [Server thread/INFO]: [ViaBackwards] Loading translations...
[12:06:24] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[12:06:24] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[12:06:24] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.46
[12:06:24] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[12:06:24] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.6.0-SNAPSHOT-392;d82bf05
[12:06:26] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@7232a71a]
[12:06:26] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.7+216b061
[12:06:26] [Server thread/INFO]: [floodgate] Loading server plugin floodgate v2.2.0-SNAPSHOT (b66-5d5713e)
[12:06:26] [Server thread/INFO]: [floodgate] Took 251ms to boot Floodgate
[12:06:26] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.3
[12:06:26] [Server thread/INFO]: [UltraSetHome] Loading server plugin UltraSetHome v1.7.5
[12:06:26] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.0.0-SNAPSHOT-b621
[12:06:27] [Server thread/INFO]: [HeadDatabase] Loading server plugin HeadDatabase v4.17.0
[12:06:27] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[12:06:27] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.20.0-dev+45-bf14b88
[12:06:27] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.31-SNAPSHOT (build 2994)
[12:06:27] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.1
[12:06:27] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v21.2
[12:06:27] [Server thread/INFO]: [dynmap] Loading server plugin dynmap v3.5-beta-3-866
[12:06:27] [Server thread/INFO]: [dynmap] version=git-Paper-471 (MC: 1.19.4)
[12:06:27] [Server thread/INFO]: [dynmap] Mod Support API available
[12:06:27] [Server thread/INFO]: [Towny] Loading server plugin Towny v0.98.4.0
[12:06:27] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.11.2
[12:06:27] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R3! Trying to find NMS support
[12:06:27] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R3' loaded!
[12:06:27] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[12:06:27] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'ViaVersion' to create a bStats instance!
[12:06:27] [Server thread/INFO]: [SCore] Loading server plugin SCore v3.9.51
[12:06:27] [Server thread/INFO]: [SuperVanish] Loading server plugin SuperVanish v6.2.15
[12:06:27] [Server thread/INFO]: [mcMMO] Loading server plugin mcMMO v2.1.209
[12:06:27] [Server thread/INFO]: [mcMMO] Registered WG flags successfully!
[12:06:27] [Server thread/INFO]: [VentureChat] Loading server plugin VentureChat v3.5.0
[12:06:27] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.21
[12:06:27] [Server thread/INFO]: [ExecutableItems] Loading server plugin ExecutableItems v5.9.51
[12:06:27] [Server thread/INFO]: [NexEngine] Loading server plugin NexEngine v2.2.9 build-16/03/2023
[12:06:27] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.26.2
[12:06:27] [Server thread/INFO]: [ItemsAdder] Loading server plugin ItemsAdder v3.4.1-r2
[12:06:27] [Server thread/INFO]: [GamePoints] Loading server plugin GamePoints v1.3.5
[12:06:27] [Server thread/INFO]: [VotingPlugin] Loading server plugin VotingPlugin v6.9.2
[12:06:27] [Server thread/INFO]: [ShopGUIPlus] Loading server plugin ShopGUIPlus v1.78.0
[12:06:27] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.2.5.2
[12:06:27] [Server thread/INFO]: [Multiverse-CommandDestination] Loading server plugin Multiverse-CommandDestination v1.2.2
[12:06:27] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v4.6.1
[12:06:27] [Server thread/INFO]: [InvSee++] Loading server plugin InvSeePlusPlus v0.19.6-SNAPSHOT
[12:06:27] [Server thread/INFO]: [InteractiveChat] Loading server plugin InteractiveChat v4.2.6.0
[12:06:27] [Server thread/INFO]: [LiteBans] Loading server plugin LiteBans v2.8.13
[12:06:27] [Server thread/INFO]: [Quests] Loading server plugin Quests v3.13.3-5a28efa
[12:06:27] [Server thread/INFO]: [Jobs] Loading server plugin Jobs v5.1.2.2
[12:06:27] [Server thread/INFO]: [WorldBorder] Loading server plugin WorldBorder v1.19
[12:06:27] [Server thread/INFO]: [Multiverse-Portals] Loading server plugin Multiverse-Portals v4.2.1-b834
[12:06:27] [Server thread/INFO]: [DreamyMcAddon] Loading server plugin DreamyMcAddon v1.0
[12:06:27] [Server thread/INFO]: [DragonEggDrop] Loading server plugin DragonEggDrop v1.9.2
[12:06:27] [Server thread/INFO]: [MineableSpawners] Loading server plugin MineableSpawners v3.1.4
[12:06:27] [Server thread/INFO]: [CommandCooldown] Loading server plugin CommandCooldown v2.4.4 beta
[12:06:27] [Server thread/INFO]: [PlayerVaults] Loading server plugin PlayerVaults v4.2.5
[12:06:27] [Server thread/INFO]: [ProCosmetics] Loading server plugin ProCosmetics v13.5
[12:06:27] [Server thread/INFO]: [Vehicles] Loading server plugin Vehicles v13.8
[12:06:28] [Thread-13/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[12:06:30] [Server thread/INFO]: [PlayTime] Loading server plugin PlayTime v3.3
[12:06:30] [Server thread/INFO]: [CrazyAuctions] Loading server plugin CrazyAuctions v1.2.16-RELEASE
[12:06:30] [Server thread/INFO]: [ChatColor2] Loading server plugin ChatColor2 v1.12.3
[12:06:30] [Server thread/INFO]: [PvPManager] Loading server plugin PvPManager v3.10.9
[12:06:30] [Server thread/INFO]: [BungeeTabListPlus] Loading server plugin BungeeTabListPlus v3.4.4
[12:06:30] [Server thread/INFO]: [ConsoleSpamFix] Loading server plugin ConsoleSpamFix v1.9.0
[12:06:30] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.6.0
[12:06:30] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[gson]
[12:06:30] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, gson]
[12:06:30] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[jar-relocator]
[12:06:30] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, jar-relocator]
[12:06:30] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[asm]
[12:06:30] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, asm]
[12:06:30] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[asm-commons]
[12:06:30] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, asm-commons]
[12:06:30] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[gson]
[12:06:30] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, gson]
[12:06:30] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[HikariCP]
[12:06:30] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, HikariCP]
[12:06:30] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[slf4j-api]
[12:06:30] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, slf4j-api]
[12:06:30] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[h2]
[12:06:30] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, h2]
[12:06:30] [Server thread/INFO]: [InventoryRollbackPlus] Loading server plugin InventoryRollbackPlus v1.6.8
[12:06:30] [Server thread/INFO]: [SpecializedCrates] Loading server plugin SpecializedCrates v3.0.0-Pre4.7
[12:06:30] [Server thread/INFO]: [EvenMoreFish] Loading server plugin EvenMoreFish v1.6.10
[12:06:30] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.2
[12:06:30] [Server thread/INFO]: [Dynmap-Towny] Loading server plugin Dynmap-Towny v0.90
[12:06:30] [Server thread/INFO]: [PinataParty] Loading server plugin PinataParty v2.59.4
[12:06:30] [Server thread/INFO]: [BungeeGuard] Loading server plugin BungeeGuard v1.3-SNAPSHOT
[12:06:30] [Server thread/INFO]: [MyCommand] Loading server plugin MyCommand v5.7.2
[12:06:30] [Server thread/INFO]: [spark] Loading server plugin spark v1.9.23
[12:06:30] [Server thread/INFO]: [AlonsoTags] Loading server plugin AlonsoTags v2.0.7-BETA-PRO
[12:06:30] [Server thread/INFO]: [InvisibleItemFrames] Loading server plugin InvisibleItemFrames v2.6.0
[12:06:30] [Server thread/INFO]: [TAB] Loading server plugin TAB v3.3.1
[12:06:30] [Server thread/INFO]: [UltimateAutoRestart] Loading server plugin UltimateAutoRestart vBuild 53
[12:06:30] [Server thread/INFO]: [GSit] Loading server plugin GSit v1.4.1
[12:06:30] [Server thread/INFO]: [InvSee++_Clear] Loading server plugin InvSeePlusPlus_Clear v0.19.6-SNAPSHOT
[12:06:30] [Server thread/INFO]: [PlayerWarps] Loading server plugin PlayerWarps v6.20.0
[12:06:30] [Server thread/INFO]: [InteractiveChatDiscordSRVAddon] Loading server plugin InteractiveChatDiscordSrvAddon v4.2.6.0
[12:06:30] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.DiscordCommandEvents subscribed (1 methods)
[12:06:30] [Server thread/INFO]: [InvSee++_Give] Loading server plugin InvSeePlusPlus_Give v0.19.6-SNAPSHOT
[12:06:30] [Server thread/INFO]: [Plan] Loading server plugin Plan v5.4 build 1722
[12:06:30] [Server thread/INFO]: [ItemEdit] Loading server plugin ItemEdit v2.19
[12:06:30] [Server thread/INFO]: [ExecutableEvents] Loading server plugin ExecutableEvents v1.1.51
[12:06:30] [Server thread/INFO]: [PlayerKits] Loading server plugin PlayerKits v2.25.1
[12:06:30] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.2.164
[12:06:30] [Server thread/INFO]: [BuycraftX] Loading server plugin BuycraftX v12.0.8
[12:06:30] [Server thread/INFO]: [GFly] Loading server plugin GFly v[2.3.0.0]
[12:06:30] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.13.4-Release
[12:06:30] [Server thread/INFO]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[12:06:30] [Server thread/INFO]: [Rankup] Loading server plugin Rankup v3.13.2
[12:06:30] [Server thread/INFO]: [Multiverse-NetherPortals] Loading server plugin Multiverse-NetherPortals v4.2.2-b807
[12:06:30] [Server thread/INFO]: [QuickShop] Loading server plugin QuickShop v5.1.0.9
[12:06:30] [Server thread/INFO]: [QuickShop] QuickShop Reremake - Early boot step - Booting up
[12:06:31] [Server thread/INFO]: [QuickShop] [OK] Signature Verify
[12:06:31] [Server thread/INFO]: [QuickShop] [OK] Plugin Manifest Check
[12:06:31] [Server thread/INFO]: [QuickShop] [OK] Potential Infection Characteristics Check
[12:06:31] [Server thread/INFO]: [QuickShop] Reading the configuration...
[12:06:31] [Server thread/INFO]: [QuickShop] Loading messages translation over-the-air (this may need take a while).
[12:06:31] [Server thread/INFO]: [QuickShop] Translation over-the-air platform selected: Crowdin
[12:06:31] [Server thread/INFO]: [QuickShop] Checking for translation updates, this may need a while...
[12:06:33] [Server thread/INFO]: [QuickShop] Loading up integration modules.
[12:06:33] [Server thread/INFO]: [QuickShop] QuickShop Reremake - Early boot step - Complete
[12:06:33] [Server thread/INFO]: [MobFarmManager] Loading server plugin MobFarmManager v2.0.3.1
[12:06:33] [Server thread/INFO]: [StayPut] Loading server plugin StayPut v1.2.1
[12:06:33] [Server thread/INFO]: [LiteBansBridge] Loading server plugin LiteBansBridge v1.5
[12:06:33] [Server thread/INFO]: [OreAnnouncer] Loading server plugin OreAnnouncer v2.8.3
[12:06:33] [Server thread/INFO]: [OreAnnouncer] Loading libraries of OreAnnouncer v2.8.3, this may take a while
[12:06:33] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for jar-relocator
[12:06:33] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for asm
[12:06:33] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for asm-commons
[12:06:33] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for gson
[12:06:33] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for h2
[12:06:33] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for HikariCP
[12:06:33] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for jdbi3-core
[12:06:33] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for antlr4-runtime
[12:06:33] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for geantyref
[12:06:33] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for caffeine
[12:06:33] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for jdbi3-stringtemplate4
[12:06:33] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for ST4
[12:06:33] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for antlr-runtime
[12:06:33] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for jdbi3-sqlobject
[12:06:33] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for slf4j-api
[12:06:33] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for slf4j-simple
[12:06:33] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for mariadb-java-client
[12:06:33] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for mysql-connector-java
[12:06:33] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for postgresql
[12:06:33] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v4.1.6
[12:06:33] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.20.0-dev+45-bf14b88
[12:06:33] [Server thread/INFO]: [AutomaticBroadcast] Loading server plugin AutomaticBroadcast v1.2.5
[12:06:33] [Server thread/INFO]: [PL-Hide] Loading server plugin PL-Hide v1.5.21
[12:06:33] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[12:06:33] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.46
[12:06:34] [Server thread/INFO]:         __    
[12:06:34] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.46
[12:06:34] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[12:06:34] [Server thread/INFO]: 
[12:06:34] [Server thread/INFO]: [LuckPerms] Loading configuration...
[12:06:34] [Server thread/WARN]: [LuckPerms] Unable to parse from: 
java.lang.IllegalArgumentException: null
    at me.lucko.luckperms.common.metastacking.StandardStackElements.lambda$parseList$0(StandardStackElements.java:88) ~[?:?]
    at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?]
    at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1625) ~[?:?]
    at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]
    at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]
    at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:921) ~[?:?]
    at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]
    at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:682) ~[?:?]
    at me.lucko.luckperms.common.metastacking.StandardStackElements.parseList(StandardStackElements.java:93) ~[?:?]
    at me.lucko.luckperms.common.config.ConfigKeys.lambda$static$15(ConfigKeys.java:422) ~[?:?]
    at me.lucko.luckperms.common.config.generic.key.SimpleConfigKey.get(SimpleConfigKey.java:49) ~[?:?]
    at me.lucko.luckperms.common.config.generic.KeyedConfiguration.load(KeyedConfiguration.java:66) ~[?:?]
    at me.lucko.luckperms.common.config.LuckPermsConfiguration.load(LuckPermsConfiguration.java:46) ~[?:?]
    at me.lucko.luckperms.common.config.generic.KeyedConfiguration.init(KeyedConfiguration.java:49) ~[?:?]
    at me.lucko.luckperms.common.config.LuckPermsConfiguration.<init>(LuckPermsConfiguration.java:41) ~[?:?]
    at me.lucko.luckperms.common.plugin.AbstractLuckPermsPlugin.enable(AbstractLuckPermsPlugin.java:142) ~[?:?]
    at me.lucko.luckperms.bukkit.LPBukkitBootstrap.onEnable(LPBukkitBootstrap.java:177) ~[?:?]
    at me.lucko.luckperms.bukkit.loader.BukkitLoaderPlugin.onEnable(BukkitLoaderPlugin.java:51) ~[LuckPerms-Bukkit-5.4.46.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192) ~[paper-1.19.4.jar:git-Paper-471]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.19.4.jar:git-Paper-471]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugin(CraftServer.java:555) ~[paper-1.19.4.jar:git-Paper-471]
    at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugins(CraftServer.java:466) ~[paper-1.19.4.jar:git-Paper-471]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:274) ~[paper-1.19.4.jar:git-Paper-471]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1103) ~[paper-1.19.4.jar:git-Paper-471]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.19.4.jar:git-Paper-471]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[12:06:34] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[12:06:36] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[12:06:36] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[12:06:37] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 3768ms)
[12:06:37] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[12:06:37] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[12:06:37] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[12:06:37] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[12:06:37] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[12:06:37] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.6.0-SNAPSHOT-392;d82bf05
[12:06:37] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[12:06:37] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[12:06:37] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[12:06:37] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[12:06:37] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_19_R3.PaperweightFaweAdapter as the Bukkit adapter
[12:06:38] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0-SNAPSHOT-b621
[12:06:38] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.21
[12:06:38] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.9 build-16/03/2023
[12:06:38] [Server thread/INFO]: [NexEngine] Loaded NMS version: V1_19_R3
[12:06:38] [Server thread/INFO]: [NexEngine] Seems like we have Paper based fork here...
[12:06:38] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[12:06:38] [Server thread/INFO]: [NexEngine] Successfully hooked with EssentialsX Economy economy
[12:06:38] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[12:06:38] [Server thread/INFO]: [NexEngine] Using 'en' language.
[12:06:38] [Server thread/INFO]: [NexEngine] Plugin loaded in 53 ms!
[12:06:38] [Server thread/INFO]: [ConsoleSpamFix] Enabling ConsoleSpamFix v1.9.0
[12:06:38] [Server thread/INFO]: [ConsoleSpamFix] Server version detected: 1.19.4
[12:06:38] [Server thread/INFO]: [ConsoleSpamFix] Loading the config file...
[12:06:38] [Server thread/INFO]: [ConsoleSpamFix] Config file loaded!
[12:06:38] [Server thread/INFO]: [ConsoleSpamFix] ConsoleSpamFix loaded successfully!
[12:06:38] [Server thread/INFO]: [BungeeGuard] Enabling BungeeGuard v1.3-SNAPSHOT
[12:06:38] [Server thread/INFO]: [BungeeGuard] Using Paper's PlayerHandshakeEvent to listen for connections.
[12:06:38] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[12:06:38] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[12:06:38] [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.
[12:06:38] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[12:06:38] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[12:06:38] [Server thread/INFO]: Preparing level "survival"
[12:06:41] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[12:06:42] [Server thread/INFO]: Time elapsed: 1809 ms
[12:06:42] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[12:06:42] [Server thread/INFO]: Time elapsed: 20 ms
[12:06:42] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[12:06:43] [Server thread/INFO]: Time elapsed: 63 ms
[12:06:43] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.6.2
[12:06:43] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.19.4 (762)
[12:06:43] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.7+216b061
[12:06:44] [Server thread/INFO]: [WorldGuard] (survival) TNT ignition is PERMITTED.
[12:06:44] [Server thread/INFO]: [WorldGuard] (survival) Lighters are PERMITTED.
[12:06:44] [Server thread/INFO]: [WorldGuard] (survival) Lava fire is PERMITTED.
[12:06:44] [Server thread/INFO]: [WorldGuard] (survival) Fire spread is UNRESTRICTED.
[12:06:53] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'survival'
[12:06:53] [Server thread/INFO]: [WorldGuard] (survival_nether) TNT ignition is PERMITTED.
[12:06:53] [Server thread/INFO]: [WorldGuard] (survival_nether) Lighters are PERMITTED.
[12:06:53] [Server thread/INFO]: [WorldGuard] (survival_nether) Lava fire is PERMITTED.
[12:06:53] [Server thread/INFO]: [WorldGuard] (survival_nether) Fire spread is UNRESTRICTED.
[12:06:54] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'survival_nether'
[12:06:54] [Server thread/INFO]: [WorldGuard] (survival_the_end) TNT ignition is PERMITTED.
[12:06:54] [Server thread/INFO]: [WorldGuard] (survival_the_end) Lighters are PERMITTED.
[12:06:54] [Server thread/INFO]: [WorldGuard] (survival_the_end) Lava fire is PERMITTED.
[12:06:54] [Server thread/INFO]: [WorldGuard] (survival_the_end) Fire spread is UNRESTRICTED.
[12:06:54] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'survival_the_end'
[12:06:54] [Server thread/INFO]: [WorldGuard] Loading region data...
[12:06:54] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.0-SNAPSHOT (b66-5d5713e)
[12:06:55] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.3
[12:06:55] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[12:06:55] [Server thread/INFO]: [UltraSetHome] Enabling UltraSetHome v1.7.5
[12:06:57] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.17.0
[12:06:57] [Server thread/INFO]: [HeadDatabase] Using default "en_US.lang" created by Arcaniax
[12:06:57] [Server thread/INFO]: [HeadDatabase] Economy successfully setup using CURRENCY!
[12:06:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: hdb [4.17.0]
[12:06:57] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[12:06:57] [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--].
[12:06:57] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[12:07:04] [Server thread/INFO]: Preparing start region for dimension minecraft:world
[12:07:04] [Server thread/INFO]: Time elapsed: 228 ms
[12:07:04] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[12:07:04] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[12:07:04] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[12:07:04] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[12:07:04] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[12:07:04] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: world_the_end
[12:07:04] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[12:07:05] [Server thread/INFO]: Preparing start region for dimension minecraft:test
[12:07:05] [Server thread/INFO]: Time elapsed: 304 ms
[12:07:05] [Server thread/INFO]: [WorldGuard] (Test) TNT ignition is PERMITTED.
[12:07:05] [Server thread/INFO]: [WorldGuard] (Test) Lighters are PERMITTED.
[12:07:05] [Server thread/INFO]: [WorldGuard] (Test) Lava fire is PERMITTED.
[12:07:05] [Server thread/INFO]: [WorldGuard] (Test) Fire spread is UNRESTRICTED.
[12:07:05] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Test'
[12:07:05] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: world_nether
[12:07:05] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[12:07:05] [Server thread/INFO]: Preparing start region for dimension minecraft:resourceworld
[12:07:06] [Server thread/INFO]: Time elapsed: 371 ms
[12:07:06] [Server thread/INFO]: [WorldGuard] (resourceworld) TNT ignition is PERMITTED.
[12:07:06] [Server thread/INFO]: [WorldGuard] (resourceworld) Lighters are PERMITTED.
[12:07:06] [Server thread/INFO]: [WorldGuard] (resourceworld) Lava fire is PERMITTED.
[12:07:06] [Server thread/INFO]: [WorldGuard] (resourceworld) Fire spread is UNRESTRICTED.
[12:07:06] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'resourceworld'
[12:07:06] [Server thread/INFO]: Preparing start region for dimension minecraft:pvp
[12:07:06] [Server thread/INFO]: Time elapsed: 164 ms
[12:07:06] [Server thread/INFO]: [WorldGuard] (Pvp) TNT ignition is PERMITTED.
[12:07:06] [Server thread/INFO]: [WorldGuard] (Pvp) Lighters are PERMITTED.
[12:07:06] [Server thread/INFO]: [WorldGuard] (Pvp) Lava fire is PERMITTED.
[12:07:06] [Server thread/INFO]: [WorldGuard] (Pvp) Fire spread is UNRESTRICTED.
[12:07:06] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Pvp'
[12:07:06] [Server thread/INFO]: Preparing start region for dimension minecraft:events
[12:07:07] [Server thread/INFO]: Time elapsed: 75 ms
[12:07:07] [Server thread/INFO]: [WorldGuard] (events) TNT ignition is PERMITTED.
[12:07:07] [Server thread/INFO]: [WorldGuard] (events) Lighters are PERMITTED.
[12:07:07] [Server thread/INFO]: [WorldGuard] (events) Lava fire is PERMITTED.
[12:07:07] [Server thread/INFO]: [WorldGuard] (events) Fire spread is UNRESTRICTED.
[12:07:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'events'
[12:07:07] [Server thread/INFO]: [Multiverse-Core] 8 - World(s) loaded.
[12:07:07] [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.
[12:07:07] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[12:07:07] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.0-dev+45-bf14b88
[12:07:07] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[12:07:07] [Server thread/INFO]: [Essentials] No kits found to migrate.
[12:07:08] [Server thread/INFO]: [Essentials] Loaded 38132 items from items.json.
[12:07:08] [Server thread/INFO]: [Essentials] Using locale en_US
[12:07:08] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[12:07:08] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[12:07:08] [Server thread/INFO]: [UltraSetHome] Essentials hooked successfully.
[12:07:08] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[12:07:08] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[12:07:08] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.31-SNAPSHOT (build 2994)
[12:07:08] [Server thread/INFO]: [Citizens] Loading external libraries
[12:07:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[12:07:09] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[12:07:09] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.1
[12:07:09] [Server thread/INFO]: [DecentHolograms] Using ProtocolLib for packet listening.
[12:07:09] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v21.2
[12:07:10] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[12:07:10] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[12:07:10] [Server thread/INFO]: --------------------
[12:07:10] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[12:07:10] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[12:07:10] [Server thread/INFO]: --------------------
[12:07:10] [Server thread/INFO]: [dynmap] Enabling dynmap v3.5-beta-3-866
[12:07:10] [Server thread/INFO]: [dynmap] Added 120 custom biome mappings
[12:07:10] [Server thread/INFO]: [dynmap] Using LuckPerms 5.4.46 for access control
[12:07:10] [Server thread/INFO]: [dynmap] Mod Support processing completed
[12:07:15] [Server thread/INFO]: [dynmap] Loaded 27 shaders.
[12:07:15] [Server thread/INFO]: [dynmap] Loaded 83 perspectives.
[12:07:15] [Server thread/INFO]: [dynmap] Loaded 22 lightings.
[12:07:15] [Server thread/INFO]: [dynmap] Starting enter/exit processing
[12:07:15] [Dynmap Render Thread/INFO]: [dynmap] Finish marker initialization
[12:07:15] [Server thread/INFO]: [dynmap] Web server started on address 0.0.0.0:25562
[12:07:15] [Server thread/INFO]: [dynmap] version 3.5-beta-3-866 is enabled - core version 3.5-beta-3-866
[12:07:15] [Server thread/INFO]: [dynmap] For support, visit our Discord at https://discord.gg/s3rd5qn
[12:07:15] [Server thread/INFO]: [dynmap] For news, visit https://reddit.com/r/Dynmap or follow https://universeodon.com/@dynmap
[12:07:15] [Server thread/INFO]: [dynmap] To report or track bugs, visit https://github.com/webbukkit/dynmap/issues
[12:07:15] [Server thread/INFO]: [dynmap] If you'd like to donate, please visit https://www.patreon.com/dynmap or https://ko-fi.com/michaelprimm
[12:07:15] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'survival'.
[12:07:15] [Server thread/INFO]: [dynmap] Loaded 1 maps of world 'survival_nether'.
[12:07:15] [Server thread/INFO]: [dynmap] Loaded 1 maps of world 'survival_the_end'.
[12:07:15] [Server thread/INFO]: [dynmap] Loaded 0 maps of world 'world'.
[12:07:15] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'Test'.
[12:07:15] [Server thread/INFO]: [dynmap] Loaded 1 maps of world 'resourceworld'.
[12:07:15] [Server thread/INFO]: [dynmap] Loaded 0 maps of world 'Pvp'.
[12:07:15] [Server thread/INFO]: [dynmap] Loaded 0 maps of world 'events'.
[12:07:15] [Server thread/INFO]: [dynmap] Enabled
[12:07:15] [Server thread/INFO]: [Towny] Enabling Towny v0.98.4.0
[12:07:15] [Server thread/INFO]: ====================      Towny      ========================
[12:07:17] [Server thread/INFO]: [Towny] Successfully loaded translations for 37 languages.
[12:07:17] [Server thread/INFO]: [Towny] Config: Loaded 9 townblock types: default, bank, shop, wilds, inn, farm, embassy, arena, jail.
[12:07:17] [Server thread/INFO]: [Towny] Database: [Load] flatfile [Save] flatfile
[12:07:17] [Server thread/INFO]: [Towny] Database: Loaded in 180ms.
[12:07:17] [Server thread/INFO]: [Towny] Database: <50% of residents have stored UUIDs.
[12:07:17] [Thread-28/INFO]: [Towny] Cleaning up old backups...
[12:07:17] [Server thread/INFO]: [Towny] Searching for third-party plugins...
[12:07:17] [Thread-28/INFO]: [Towny] Successfully cleaned backups.
[12:07:17] [Thread-29/INFO]: [Towny] Making backup...
[12:07:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: townyadvanced [0.98.4.0]
[12:07:17] [Server thread/INFO]: [Towny] Plugins found: 
[12:07:17] [Server thread/INFO]: [Towny]   Permissions: TownyPerms, LuckPerms v5.4.46 via Vault
[12:07:17] [Server thread/INFO]: [Towny]   Chat: LuckPerms v5.4.46 via Vault
[12:07:17] [Server thread/INFO]: [Towny]   Economy: EssentialsX Economy via Vault
[12:07:17] [Server thread/INFO]: [Towny]   Add-ons: PlaceholderAPI v2.11.3
[12:07:17] [Server thread/INFO]: [Towny] Warning: EssentialsX Economy has been known to reset
                           town and nation bank accounts on rare occasions.
[12:07:18] [Thread-29/INFO]: [Towny] Towny flatfiles and settings successfully backed up.
[12:07:18] [Server thread/INFO]: =============================================================
[12:07:18] [Server thread/INFO]: [Towny] Version: 0.98.4.0 - Plugin Enabled
[12:07:18] [Server thread/INFO]: =============================================================
[12:07:18] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.11.2
[12:07:18] [Server thread/INFO]: [NBTAPI] Adding listeners...
[12:07:18] [Server thread/INFO]: [NBTAPI] Gson:
[12:07:18] [Server thread/INFO]: [NBTAPI] Checking bindings...
[12:07:18] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[12:07:18] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[12:07:18] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[12:07:18] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[12:07:18] [Server thread/INFO]: [SCore] Enabling SCore v3.9.51
[12:07:18] [Server thread/INFO]: ================ SCore ================
[12:07:18] [Server thread/INFO]: SCore Version of the server git-Paper-471 (MC: 1.19.4) !
[12:07:18] [Server thread/INFO]: SCore ExecutableItems hooked !  (5.9.51) Load After
[12:07:18] [Server thread/INFO]: SCore ExecutableEvents hooked !  (1.1.51) Load After
[12:07:18] [Server thread/INFO]: SCore PlaceholderAPI hooked !  (2.11.3)  8aLoad Before
[12:07:18] [Server thread/INFO]: SCore WorldGuard hooked !  (7.0.7+216b061)  8aLoad Before
[12:07:18] [Server thread/INFO]: SCore Vault hooked !  (1.7.3-b131)  8aLoad Before
[12:07:18] [Server thread/INFO]: SCore Multiverse-Core hooked !  (4.3.1-b861)  8aLoad Before
[12:07:18] [Server thread/INFO]: SCore Towny hooked !  (0.98.4.0)  8aLoad Before
[12:07:18] [Server thread/INFO]: SCore CoreProtect hooked !  (21.2)  8aLoad Before
[12:07:18] [Server thread/INFO]: SCore ProtocolLib hooked !
[12:07:18] [Server thread/INFO]: SCore Locale setup: EN
[12:07:18] [Server thread/INFO]: SCore NBTAPI hooked !  (2.11.2)  8aLoad Before
[12:07:18] [Server thread/INFO]: SCore HeadDatabase hooked !  (4.17.0)  8aLoad Before
[12:07:18] [Server thread/INFO]: SCore DecentHolograms hooked !  (2.8.1)  8aLoad Before
[12:07:18] [Server thread/INFO]: SCore ItemsAdder hooked !  (3.4.1-r2) Load After
[12:07:18] [Server thread/INFO]: SCore ShopGUIPlus hooked !  (1.78.0) Load After
[12:07:18] [Server thread/INFO]: SCore TAB hooked !  (3.3.1) Load After
[12:07:18] [Server thread/INFO]: SCore Language of the editor setup on EN
[12:07:18] [Server thread/INFO]: SCore Language for in-game messages setup on EN
[12:07:18] [Server thread/INFO]: SCore onnection to the db...
[12:07:18] [Server thread/INFO]: SCore Creating table SecurityOP if not exists...
[12:07:18] [Server thread/INFO]: SCore Creating table Commands if not exists...
[12:07:18] [Server thread/INFO]: SCore Creating table Cooldowns if not exists...
[12:07:18] [Server thread/INFO]: SCore Creating table Commands Player if not exists...
[12:07:18] [Server thread/INFO]: SCore Creating table Commands Entity if not exists...
[12:07:18] [Server thread/INFO]: SCore Creating table Commands Block if not exists...
[12:07:18] [Server thread/INFO]: SCore Creating table UsePerDay if not exists...
[12:07:18] [Server thread/ERROR]: &cERROR, Couldn't load the Enchantment value of enchantment from config, value: BUNNY_HOP &7&oSProjectile: trident1 &6>> Enchantments available: Look in-game, it's the same name
[12:07:18] [Server thread/ERROR]: &cERROR, Couldn't load the Enchantment value of enchantment from config, value: BUNNY_HOP &7&oSProjectile: tridentCustom1 &6>> Enchantments available: Look in-game, it's the same name
[12:07:19] [Server thread/INFO]: SCore SCore loaded 0 delayed commands saved
[12:07:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: SCore [1.0.0]
[12:07:19] [Server thread/INFO]: ================ SCore ================
[12:07:19] [Server thread/INFO]: [SuperVanish] Enabling SuperVanish v6.2.15
[12:07:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: supervanish [6.2.15]
[12:07:19] [Server thread/INFO]: [SuperVanish] Hooked into PlaceholderAPI
[12:07:19] [Server thread/INFO]: [SuperVanish] Hooked into Essentials
[12:07:19] [Server thread/INFO]: [SuperVanish] Hooked into Citizens
[12:07:19] [Server thread/INFO]: [SuperVanish] Hooked into dynmap
[12:07:19] [Server thread/INFO]: [mcMMO] Enabling mcMMO v2.1.209
[12:07:19] [Server thread/INFO]: [mcMMO] [config] Initializing config: config.yml
[12:07:19] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: config.yml
[12:07:19] [Server thread/INFO]: [mcMMO] [config] Config initialized: config.yml
[12:07:19] [Server thread/INFO]: [mcMMO] [Debug] No errors found in config.yml!
[12:07:20] [Server thread/INFO]: [mcMMO] Loading locale from plugins/mcMMO/locales/locale_override.properties
[12:07:20] [Server thread/INFO]: [mcMMO] [config] Initializing config: advanced.yml
[12:07:20] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: advanced.yml
[12:07:20] [Server thread/INFO]: [mcMMO] [config] Config initialized: advanced.yml
[12:07:20] [Server thread/INFO]: [mcMMO] [Debug] No errors found in advanced.yml!
[12:07:20] [Server thread/INFO]: [mcMMO] Platform String: 1.19.4-R0.1-SNAPSHOT
[12:07:20] [Server thread/INFO]: [mcMMO] Minecraft version determined to be - 1.19.4
[12:07:20] [Server thread/INFO]: [mcMMO] Loading compatibility layers...
[12:07:20] [Server thread/INFO]: [mcMMO] Finished loading compatibility layers.
[12:07:20] [Server thread/INFO]: [mcMMO] [config] Initializing config: upgrades_overhaul.yml
[12:07:20] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: upgrades_overhaul.yml
[12:07:20] [Server thread/INFO]: [mcMMO] [config] Config initialized: upgrades_overhaul.yml
[12:07:20] [Server thread/INFO]: [mcMMO] [config] Initializing config: treasures.yml
[12:07:20] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: treasures.yml
[12:07:20] [Server thread/INFO]: [mcMMO] [config] Config initialized: treasures.yml
[12:07:20] [Server thread/INFO]: [mcMMO] [config] Initializing config: fishing_treasures.yml
[12:07:20] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: fishing_treasures.yml
[12:07:20] [Server thread/INFO]: [mcMMO] [config] Config initialized: fishing_treasures.yml
[12:07:20] [Server thread/INFO]: [mcMMO] Registering enchantments for Fishing Book...
[12:07:20] [Server thread/INFO]: [mcMMO] Loading mcMMO potions.yml File...
[12:07:20] [Server thread/INFO]: [mcMMO] [config] Initializing config: coreskills.yml
[12:07:20] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: coreskills.yml
[12:07:20] [Server thread/INFO]: [mcMMO] [config] Config initialized: coreskills.yml
[12:07:20] [Server thread/INFO]: [mcMMO] [config] Initializing config: sounds.yml
[12:07:20] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: sounds.yml
[12:07:20] [Server thread/INFO]: [mcMMO] [config] Config initialized: sounds.yml
[12:07:20] [Server thread/INFO]: [mcMMO] Loading mcMMO skillranks.yml File...
[12:07:21] [Server thread/INFO]: [mcMMO] [config] Initializing config: child.yml
[12:07:21] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: child.yml
[12:07:21] [Server thread/INFO]: [mcMMO] [config] Config initialized: child.yml
[12:07:21] [Server thread/INFO]: [mcMMO] [config] Initializing config: repair.vanilla.yml
[12:07:21] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: repair.vanilla.yml
[12:07:21] [Server thread/INFO]: [mcMMO] [config] Config initialized: repair.vanilla.yml
[12:07:21] [Server thread/INFO]: [mcMMO] [config] Initializing config: salvage.vanilla.yml
[12:07:21] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: salvage.vanilla.yml
[12:07:21] [Server thread/INFO]: [mcMMO] [config] Config initialized: salvage.vanilla.yml
[12:07:22] [Server thread/INFO]: [mcMMO] (plugins/mcMMO/flatfile/mcmmo.users) Validating database file..
[12:07:22] [Server thread/INFO]: [mcMMO] Enabling Acrobatics Skills
[12:07:22] [Server thread/INFO]: [mcMMO] Registered subskill: Roll
[12:07:22] [Server thread/INFO]: [mcMMO] [config] Initializing config: experience.yml
[12:07:22] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: experience.yml
[12:07:22] [Server thread/INFO]: [mcMMO] [config] Config initialized: experience.yml
[12:07:22] [Server thread/INFO]: [mcMMO] [config] Initializing config: persistent_data.yml
[12:07:22] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: persistent_data.yml
[12:07:22] [Server thread/INFO]: [mcMMO] [config] Config initialized: persistent_data.yml
[12:07:22] [Server thread/INFO]: [mcMMO] 3 entries in mcMMO World Blacklist
[12:07:22] [Server thread/INFO]: [mcMMO] [config] Initializing config: chat.yml
[12:07:22] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: chat.yml
[12:07:22] [Server thread/INFO]: [mcMMO] [config] Config initialized: chat.yml
[12:07:22] [Server thread/INFO]: [VentureChat] Enabling VentureChat v3.5.0
[12:07:22] [Server thread/INFO]: [VentureChat] - Initializing...
[12:07:22] [Server thread/INFO]: [VentureChat] - Config found! Loading file.
[12:07:22] [Server thread/INFO]: [VentureChat] - Checking for Vault...
[12:07:22] [Server thread/INFO]: [VentureChat] - Loading player data
[12:07:30] [Server thread/INFO]: [VentureChat] - Registering Listeners
[12:07:30] [Server thread/INFO]: [VentureChat] - Attaching to Executors
[12:07:30] [Server thread/INFO]: [VentureChat] - Establishing BungeeCord
[12:07:30] [Server thread/INFO]: [VentureChat] - Enabling Towny Formatting
[12:07:30] [Server thread/INFO]: [VentureChat] - Enabling PlaceholderAPI Hook
[12:07:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: venturechat [3.5.0]
[12:07:30] [Server thread/INFO]: [VentureChat] - Enabled Successfully
[12:07:30] [Server thread/INFO]: [ExecutableItems] Enabling ExecutableItems v5.9.51
[12:07:30] [Server thread/INFO]: ========*======== ExecutableItems ========*========
[12:07:30] [Server thread/INFO]: ExecutableItems PlaceholderAPI hooked !
[12:07:30] [Server thread/INFO]: ExecutableItems HeadDatabase hooked !
[12:07:30] [Server thread/INFO]: ExecutableItems NBTAPI hooked !
[12:07:41] [Server thread/ERROR]: [ExecutableItems] INVALID COMMAND  A SCommand contains an invalid boolean: JUMP for command: AROUND {distance} {DisplayMsgIfNoPlayer true or false} {Your commands here} for ID: (Item: BOSS_BLOCK)
[12:07:41] [Server thread/INFO]: ========*======== ExecutableItems ========*========
[12:07:41] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.26.2
[12:07:41] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v3.4.1-r2
[12:07:41] [Server thread/ERROR]: [ItemsAdder] Please update LoneLibs! https://a.devs.beer/ia-install-lonelibs
[12:07:41] [Server thread/INFO]: [ItemsAdder] Disabling ItemsAdder v3.4.1-r2
[12:07:41] [Server thread/ERROR]: Error occurred while enabling ItemsAdder v3.4.1-r2 (Is it up to date?)
java.lang.IllegalStateException: zip file closed
    at java.util.zip.ZipFile.ensureOpen(ZipFile.java:831) ~[?:?]
    at java.util.zip.ZipFile.getEntry(ZipFile.java:330) ~[?:?]
    at java.util.jar.JarFile.getEntry(JarFile.java:518) ~[?:?]
    at java.util.jar.JarFile.getJarEntry(JarFile.java:473) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:195) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:587) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:155) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:150) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?]
    at dev.lone.itemsadder.Main.onEnable(SourceFile:239) ~[ItemsAdder_3.4.1-r2.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192) ~[paper-1.19.4.jar:git-Paper-471]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.19.4.jar:git-Paper-471]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugin(CraftServer.java:555) ~[paper-1.19.4.jar:git-Paper-471]
    at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugins(CraftServer.java:466) ~[paper-1.19.4.jar:git-Paper-471]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:637) ~[paper-1.19.4.jar:git-Paper-471]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:436) ~[paper-1.19.4.jar:git-Paper-471]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.19.4.jar:git-Paper-471]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1103) ~[paper-1.19.4.jar:git-Paper-471]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.19.4.jar:git-Paper-471]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[12:07:41] [Server thread/INFO]: [GamePoints] Enabling GamePoints v1.3.5
[12:07:41] [Server thread/INFO]: [GamePoints] Powered by: NexEngine
[12:07:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gamepoints [1.3.5]
[12:07:41] [Server thread/INFO]: [GamePoints] Using 'en' language.
[12:07:41] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[12:07:41] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@2c500ffc
[12:07:41] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[12:07:41] [Server thread/INFO]: [GamePoints] Stores Loaded: 5
[12:07:41] [Server thread/INFO]: [GamePoints] Plugin loaded in 155 ms!
[12:07:41] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.9.2
[12:07:42] [pool-88-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (767828469573c2f0fa3ed5a44feb0b2f15f2c02d)
[12:07:42] [Server thread/WARN]: [VotingPlugin] 1 possibly not valid in reward AllSites
[12:07:42] [Server thread/WARN]: [VotingPlugin] 1 possibly not valid in reward FirstVote
[12:07:42] [Server thread/WARN]: [VotingPlugin] RequirementInject Validator: Member, Directly Defined: false Path: Permission : Detected permission set but RequirePermission is false
[12:07:42] [Server thread/WARN]: [VotingPlugin] RequirementInject Validator: VoteBoost, Directly Defined: false Path: Permission : Detected permission set but RequirePermission is false
[12:07:42] [Server thread/WARN]: [VotingPlugin] 1 possibly not valid in reward AllSites
[12:07:42] [Server thread/WARN]: [VotingPlugin] 1 possibly not valid in reward FirstVote
[12:07:42] [Server thread/WARN]: [VotingPlugin] RewardInject Validator: VoteStreak_Month_145_Rewards, Directly Defined: true Path: Items : No amount on item: Diamond
[12:07:42] [Server thread/INFO]: [VotingPlugin] Using BungeeMethod: PLUGINMESSAGING
[12:07:42] [Server thread/INFO]: [VotingPlugin] Loaded plugin message channels: vp:vp
[12:07:42] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[12:07:43] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[12:07:43] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Found server G:BoxxyMC(1051904368955363358)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹🔑╻application(1051918483585253548)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹📔╻log(1051941732931096646)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹📯╻announcements(1051932506129182730)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹🎉╻events(1051908536545853464)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹📖╻about(1051948958882205746)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹📕╻rules(1051909988114772079)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹🔗╻voting(1051916519568834700)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹💳╻store(1051940045407387722)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹💎╻boosters(1051916670735765525)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹🏆╻self-roles(1051928937795702824)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹⭐╻starboard(1066570503680163860)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹💻╻linking(1051910415120085034)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹❓╻faq(1051921784544444456)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹❗╻support(1051912528097198191)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹🎫╻open-tickets(1051912146436489427)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹📚╻ticket-logs(1051924768884007022)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹💬╻lounge(1051962444043534451)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹🌻╻irl-chat(1051906144303599706)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹📸╻pictures(1051908683623305287)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹🎨╻media(1051908804150829179)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹🎭╻memes(1051909003011166308)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹👋╻introductions(1051909152773001296)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹❓╻qotd(1051909352346357762)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹❗╻season-5(1084253166901665864)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹🌳╻covfefe-chat(1051910696675315823)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹📚╻sd(1063348625280868413)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹📬╻announcements(1088275527267274792)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹📗╻tasks(1088274182925729854)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹🔐╻special-chat(1088274510391803904)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹🌲╻dreamy-chat(1051912258416029796)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹📬╻announcements(1051937990181662831)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹⭐╻sd-council(1051937436315426877)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹🔥╻ad-council(1051937526933377134)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹🚀╻event-committee(1051948925424250932)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹🔇╻no-mic(1051941113277186110)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹❗╻auto-mod(1051941643969908797)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹🔒╻testing(1051946576530128936)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:╹💬╻lounge(1051904369907482728)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🗑dump🗑(1051930591592980530)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:join-leave(1051966821852512276)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:backup-text(1052037210238627933)
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console channel ID was invalid, not forwarding console output
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling VentureChat hook
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[12:07:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling SuperVanish hook
[12:07:44] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling dynmap hook
[12:07:44] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[12:07:44] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[12:07:44] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.9.2
[12:07:44] [Server thread/INFO]: [ShopGUIPlus] Enabling ShopGUIPlus v1.78.0
[12:07:45] [Server thread/ERROR]: [ShopGUIPlus] Failed to register events for class net.brcdev.shopgui.provider.item.ItemsAdderItemProvider because dev/lone/itemsadder/api/Events/ItemsAdderLoadDataEvent does not exist.
[12:07:45] [Server thread/INFO]: [CMILib] Enabling CMILib v1.2.5.2
[12:07:46] [Server thread/INFO]: Server version: v1_19_R3 - 1.19.4 - paper
[12:07:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmil [1.2.5.2]
[12:07:46] [Server thread/INFO]: PlaceholderAPI hooked.
[12:07:46] [Server thread/INFO]: Updated (EN) language file. Took 23ms
[12:07:46] [Server thread/INFO]: [Multiverse-CommandDestination] Enabling Multiverse-CommandDestination v1.2.2
[12:07:46] [Server thread/INFO]: [Multiverse-CommandDestination] The following message is safe to ignore:
[12:07:46] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.6.1
[12:07:46] [Server thread/INFO]: [InvSee++] Enabling InvSeePlusPlus v0.19.6-SNAPSHOT
[12:07:46] [Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v4.2.6.0
[12:07:47] [Server thread/INFO]: [InteractiveChat] Opened Sqlite database successfully
[12:07:47] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Essentials!
[12:07:47] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into DiscordSRV!
[12:07:47] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechat.hooks.discordsrv.DiscordSRVEvents subscribed (2 methods)
[12:07:47] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ViaVersion!
[12:07:47] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into LuckPerms!
[12:07:47] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Floodgate!
[12:07:47] [Server thread/INFO]: [InteractiveChat] InteractiveChat has injected into VentureChat!
[12:07:47] [Server thread/INFO]: [InteractiveChat] InteractiveChat has injected into Dynmap!
[12:07:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: interactivechat [4.2.6.0]
[12:07:47] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[12:07:47] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.8.13
[12:07:47] [Server thread/INFO]: [LiteBans] Loading SQL driver: mysql 8.0.18 (com.mysql.cj.jdbc.Driver)
[12:07:47] [Server thread/INFO]: [LiteBans] Connecting to database...
[12:07:47] [Server thread/INFO]: [LiteBans] litebans-pool - Starting...
[12:07:47] [Server thread/INFO]: [LiteBans] litebans-pool - Start completed.
[12:07:47] [Server thread/INFO]: [LiteBans] Connected to MySQL database successfully (105.3 ms).
[12:07:47] [Server thread/INFO]: [LiteBans] [Sync] Server name: DreamyMC
[12:07:47] [Server thread/INFO]: [LiteBans] [Sync] Server UUID: f18dd9ee55be453fb0b4d84fe1eec9cb <9>
[12:07:47] [Server thread/INFO]: [LiteBans] Database connection fully initialized (122.5 ms).
[12:07:47] [Server thread/INFO]: [LiteBans] v2.8.13 enabled. Startup took 288 ms.
[12:07:47] [Server thread/INFO]: [Quests] Enabling Quests v3.13.3-5a28efa
[12:07:47] [Server thread/INFO]: [Quests] Initialising storage provider 'yaml'
[12:07:47] [Server thread/INFO]: [Quests] Your server is running version 1.19
[12:07:47] [Server thread/INFO]: [Quests] Metrics started. This can be disabled at /plugins/bStats/config.yml.
[12:07:47] [Server thread/INFO]: [Jobs] Enabling Jobs v5.1.2.2
[12:07:47] [Server thread/INFO]: ------------- Jobs -------------
[12:07:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: jobsr [5.1.2.2]
[12:07:47] [Server thread/INFO]: PlaceholderAPI hooked.
[12:07:47] [Server thread/INFO]: Connected to database (SqLite)
[12:07:48] [Server thread/INFO]: Loaded 9 titles
[12:07:48] [Server thread/INFO]: Loaded 111 protected blocks timers
[12:07:48] [Server thread/INFO]: Loaded 1282 custom item names
[12:07:48] [Server thread/INFO]: Loaded 79 custom entity names
[12:07:48] [Server thread/INFO]: Loaded 2 custom MythicMobs names
[12:07:48] [Server thread/INFO]: Loaded 38 custom enchant names
[12:07:48] [Server thread/INFO]: Loaded 21 custom enchant names
[12:07:48] [Server thread/INFO]: Loaded 16 custom color names
[12:07:48] [Server thread/INFO]: Loaded 45 shop items
[12:07:48] [Server thread/INFO]: Loaded 21 quests for Taster
[12:07:48] [Server thread/INFO]: Loaded 16 quests for Crafter
[12:07:48] [Server thread/INFO]: Loaded 20 quests for Farmer
[12:07:48] [Server thread/INFO]: Loaded 12 quests for Explorer
[12:07:48] [Server thread/INFO]: Loaded 18 quests for Enchanter
[12:07:48] [Server thread/INFO]: Loaded 20 quests for Woodcutter
[12:07:48] [Server thread/INFO]: Loaded 18 quests for Cooker
[12:07:48] [Server thread/INFO]: Loaded 26 quests for Hunter
[12:07:48] [Server thread/INFO]: Loaded 12 quests for Fisherman
[12:07:48] [Server thread/INFO]: Loaded 20 quests for Builder
[12:07:48] [Server thread/INFO]: Loaded 26 quests for Brewer
[12:07:48] [Server thread/INFO]: Loaded 15 quests for Digger
[12:07:48] [Server thread/INFO]: Loaded 10 quests for Baker
[12:07:48] [Server thread/INFO]: Loaded 21 quests for Miner
[12:07:48] [Server thread/INFO]: Loaded 42 quests for Caretaker
[12:07:48] [Server thread/INFO]: Loaded 16 quests for Smelter
[12:07:48] [Server thread/INFO]: Loaded 9 quests for Weaponsmith
[12:07:48] [Server thread/INFO]: Loaded 17 jobs
[12:07:48] [Server thread/INFO]: Loaded 0 boosted items
[12:07:49] [Server thread/INFO]: Loaded 554 furnace for reassigning.
[12:07:49] [Server thread/INFO]: Loaded 45 brewing for reassigning.
[12:07:49] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
[12:07:49] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
[12:07:49] [Server thread/INFO]: Preloaded 2101 players data in 0.03
[12:07:49] [Server thread/INFO]: WorldGuard detected.
[12:07:49] [Server thread/INFO]: mcMMO2.1.209 was found - Enabling capabilities.
[12:07:49] [Server thread/INFO]: Registered McMMO 2.x listener
[12:07:49] [Server thread/INFO]: [Jobs] Loaded 1086 block protection entries. 9ms
[12:07:49] [Server thread/INFO]: Loading explorer data
[12:07:49] [Server thread/INFO]: Loaded explorer data (312587) in 656 ms
[12:07:49] [Server thread/INFO]: Plugin has been enabled successfully.
[12:07:49] [Server thread/INFO]: ------------------------------------
[12:07:49] [Server thread/INFO]: [WorldBorder] Enabling WorldBorder v1.19
[12:07:49] [Server thread/INFO]: [WorldBorder] This is a continuation of the original by Puremin0rez
[12:07:49] [Server thread/INFO]: [WorldBorder] [CONFIG] Using rectangular/square border, knockback of 3.0 blocks, and timer delay of 5.
[12:07:49] [Server thread/INFO]: [WorldBorder] [CONFIG] Border-checking timed task started.
[12:07:49] [Server thread/INFO]: [WorldBorder] [CONFIG] World "survival" has border radius 10000 at X: 0.0 Z: 0.0
[12:07:49] [Server thread/INFO]: [WorldBorder] [CONFIG] World "resource" has border radius 1000 at X: 0.0 Z: 0.0
[12:07:49] [Server thread/INFO]: [WorldBorder] [CONFIG] World "resourceworld" has border radius 2500 at X: 0.5 Z: 0.5
[12:07:49] [Server thread/INFO]: [WorldBorder] [CONFIG] World "Nether" has border radius 1000 at X: 0.0 Z: 0.0
[12:07:49] [Server thread/INFO]: [WorldBorder] [CONFIG] World "surviva_nether" has border radius 1000 at X: 0.0 Z: 0.0
[12:07:49] [Server thread/INFO]: [WorldBorder] [CONFIG] World "survival_nether" has border radius 2500 at X: 0.5 Z: 0.5
[12:07:49] [Server thread/INFO]: [WorldBorder] [CONFIG] Successfully hooked into DynMap for the ability to display borders.
[12:07:49] [Server thread/INFO]: [WorldBorder] For reference, the main world's spawn location is at X: 18.0 Y: 71.0 Z: 64.0
[12:07:49] [Server thread/INFO]: [Multiverse-Portals] Enabling Multiverse-Portals v4.2.1-b834
[12:07:50] [Server thread/INFO]: [Multiverse-Portals] 1 - Portals(s) loaded
[12:07:50] [Server thread/INFO]: [Multiverse-Portals] Found FastAsyncWorldEdit. Using it for selections.
[12:07:50] [Server thread/INFO]: [Multiverse-Portals 4.2.1-b834]  Enabled - By Rigby and fernferret
[12:07:50] [Server thread/INFO]: [DreamyMcAddon] Enabling DreamyMcAddon v1.0
[12:07:50] [Server thread/INFO]: [DreamyMcAddon] [STDOUT] [DreamyMcAddon] Plugin enabled
[12:07:50] [Server thread/WARN]: Nag author(s): '[Vayk]' of 'DreamyMcAddon' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[12:07:50] [Server thread/INFO]: [DragonEggDrop] Enabling DragonEggDrop v1.9.2
[12:07:50] [Server thread/INFO]: [DragonEggDrop] Loading loot tables...
[12:07:50] [Server thread/INFO]: [DragonEggDrop] Done! Successfully loaded 6 loot tables
[12:07:50] [Server thread/INFO]: [DragonEggDrop] Loading particle shape definitions...
[12:07:50] [Server thread/INFO]: [DragonEggDrop] Done! Successfully loaded 3 shape definitions
[12:07:50] [Server thread/INFO]: [DragonEggDrop] Loading dragon templates...
[12:07:50] [Server thread/INFO]: [DragonEggDrop] Done! Successfully loaded 15 dragon templates
[12:07:50] [Server thread/INFO]: [DragonEggDrop] Reading temporary data from previous server session...
[12:07:50] [Server thread/INFO]: [DragonEggDrop] Registering event listeners
[12:07:50] [Server thread/INFO]: [DragonEggDrop] Registering command executors and tab completion
[12:07:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: dragoneggdrop [1.9.2]
[12:07:50] [Server thread/INFO]: [DragonEggDrop] Hooked into PlaceholderAPI - Expansion registered
[12:07:50] [Server thread/INFO]: [DragonEggDrop] Successfully enabled metrics. Thanks for keeping these enabled!
[12:07:50] [Server thread/INFO]: [MineableSpawners] Enabling MineableSpawners v3.1.4
[12:07:50] [Server thread/INFO]: [CommandCooldown] Enabling CommandCooldown v2.4.4 beta
[12:07:50] [Server thread/WARN]: [CommandCooldown] Could not save config.yml to plugins/CommandCooldown/config.yml because config.yml already exists.
[12:07:50] [Server thread/WARN]: [CommandCooldown] Could not save cooldowns.yml to plugins/CommandCooldown/cooldowns.yml because cooldowns.yml already exists.
[12:07:50] [Server thread/WARN]: [CommandCooldown] Could not save messages.yml to plugins/CommandCooldown/messages.yml because messages.yml already exists.
[12:07:50] [Server thread/INFO]: [CommandCooldown] [STDOUT] [CommandCooldown] Update available! Download at https://www.spigotmc.org/resources/73696
[12:07:50] [Server thread/WARN]: Nag author(s): '[]' of 'CommandCooldown' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[12:07:50] [Server thread/INFO]: [PlayerVaults] Enabling PlayerVaults v4.2.5
[12:07:50] [Server thread/INFO]: [PlayerVaults] Added PUMPKIN to list of blocked materials.
[12:07:50] [Server thread/INFO]: [PlayerVaults] Added DIAMOND_BLOCK to list of blocked materials.
[12:07:50] [Server thread/INFO]: [PlayerVaults] Loaded! Took 200ms
[12:07:50] [Server thread/INFO]: [ProCosmetics] Enabling ProCosmetics v13.5
[12:07:51] [Server thread/INFO]: [ProCosmetics] Initializing...
[12:07:51] [Server thread/INFO]: [ProCosmetics] Initializing configs...
[12:07:51] [Server thread/WARN]: [ProCosmetics] Could not detect a proper NMS version. Attempting to use latest version...
[12:07:51] [Server thread/INFO]: [ProCosmetics] Initializing menus...
[12:07:51] [Server thread/INFO]: [ProCosmetics] Initializing cosmetics...
[12:07:51] [Server thread/INFO]: [ProCosmetics] Initializing arrow effects...
[12:07:51] [Server thread/INFO]: [ProCosmetics] Initializing balloons...
[12:07:51] [Server thread/INFO]: [ProCosmetics] Initializing banners...
[12:07:51] [Server thread/INFO]: [ProCosmetics] Initializing death effects...
[12:07:51] [Server thread/INFO]: [ProCosmetics] Initializing emotes...
[12:07:51] [Server thread/INFO]: [ProCosmetics] Initializing gadgets...
[12:07:51] [Server thread/INFO]: [ProCosmetics] Initializing miniatures...
[12:07:51] [Server thread/INFO]: [ProCosmetics] Initializing morphs...
[12:07:51] [Server thread/INFO]: [ProCosmetics] Initializing mounts...
[12:07:51] [Server thread/INFO]: [ProCosmetics] Initializing music...
[12:07:51] [Server thread/INFO]: [ProCosmetics] Initializing particle effects...
[12:07:51] [Server thread/INFO]: [ProCosmetics] Initializing pets...
[12:07:51] [Server thread/INFO]: [ProCosmetics] Initializing statuses...
[12:07:51] [Server thread/INFO]: [ProCosmetics] Initializing treasures...
[12:07:51] [Server thread/INFO]: [ProCosmetics] Hooking into PlaceholderAPI...
[12:07:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: procosmetics [1.0.0]
[12:07:51] [Server thread/INFO]: [ProCosmetics] Connecting to the database...
[12:07:51] [Server thread/INFO]: [ProCosmetics] Successfully connected to the database!
[12:07:51] [Server thread/INFO]: [ProCosmetics] Hooking into Essentials...
[12:07:51] [Server thread/INFO]: [ProCosmetics] Hooking into SuperVanish...
[12:07:51] [Server thread/INFO]: [ProCosmetics] Initialized! Took 707ms.
[12:07:51] [Server thread/INFO]: [Vehicles] Enabling Vehicles v13.8
[12:07:54] [Server thread/WARN]: java.lang.NoSuchFieldException: bo
[12:07:54] [Server thread/WARN]:     at java.base/java.lang.Class.getField(Class.java:2117)
[12:07:54] [Server thread/WARN]:     at Vehicles(13.8).jar//es.pollitoyeye.vehicles.utils.EntityUtils.initReflection(EntityUtils.java:217)
[12:07:54] [Server thread/WARN]:     at Vehicles(13.8).jar//es.pollitoyeye.vehicles.VehiclesMain.onEnable(VehiclesMain.java:171)
[12:07:54] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[12:07:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192)
[12:07:54] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[12:07:54] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[12:07:54] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugin(CraftServer.java:555)
[12:07:54] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugins(CraftServer.java:466)
[12:07:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:637)
[12:07:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:436)
[12:07:54] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:308)
[12:07:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1103)
[12:07:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[12:07:54] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[12:07:54] [Server thread/INFO]: [Vehicles] [STDOUT] Vehicles >> lang.yml loaded.
[12:07:54] [Server thread/WARN]: Nag author(s): '[Pollitoyeye]' of 'Vehicles' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[12:07:54] [Server thread/INFO]: [PlayTime] Enabling PlayTime v3.3*
[12:07:54] [Server thread/INFO]: [PlayTime] PlaceholderAPI was found! Registering Placeholders.
[12:07:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playtime [3.3]
[12:07:54] [Server thread/INFO]: [CrazyAuctions] Enabling CrazyAuctions v1.2.16-RELEASE
[12:07:54] [Server thread/INFO]: [CrazyAuctions] [STDOUT] [CrazyAuctions] Loading the config.yml
[12:07:54] [Server thread/WARN]: Nag author(s): '[BadBones69]' of 'CrazyAuctions' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[12:07:54] [Server thread/INFO]: [CrazyAuctions] [STDOUT] [CrazyAuctions] Successfully loaded config.yml
[12:07:54] [Server thread/INFO]: [CrazyAuctions] [STDOUT] [CrazyAuctions] Loading the Data.yml
[12:07:54] [Server thread/INFO]: [CrazyAuctions] [STDOUT] [CrazyAuctions] Successfully loaded Data.yml
[12:07:54] [Server thread/INFO]: [CrazyAuctions] [STDOUT] [CrazyAuctions] Loading the Messages.yml
[12:07:54] [Server thread/INFO]: [CrazyAuctions] [STDOUT] [CrazyAuctions] Successfully loaded Messages.yml
[12:07:54] [Server thread/INFO]: [CrazyAuctions] [STDOUT] [CrazyAuctions] Loading the Test-File.yml
[12:07:54] [Server thread/INFO]: [CrazyAuctions] [STDOUT] [CrazyAuctions] Successfully loaded Test-File.yml
[12:07:54] [Server thread/INFO]: [ChatColor2] Enabling ChatColor2 v1.12.3
[12:07:54] [Server thread/INFO]: [ChatColor] ChatColor 2 Version 1.12.3 has been enabled.
[12:07:54] [Server thread/INFO]: [ChatColor] Current update: Customisable listener priority!
[12:07:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cc [1.12.3]
[12:07:54] [Server thread/INFO]: [ChatColor] PlaceholderAPI has been hooked.
[12:07:54] [Server thread/INFO]: [ChatColor] Metrics is enabled for this plugin. Stats sent to https://bstats.org/plugin/bukkit/ChatColor2
[12:07:54] [Server thread/INFO]: [PvPManager] Enabling PvPManager v3.10.9
[12:07:54] [Server thread/INFO]: [PvPManager] Loaded 90 players from users file
[12:07:54] [Server thread/INFO]: [PvPManager] WorldGuard Found! Enabling Support For WorldGuard Regions
[12:07:54] [Server thread/INFO]: [PvPManager] Essentials Found! Hooked successfully
[12:07:54] [Server thread/INFO]: [PvPManager] Vault Found! Using it for currency related features
[12:07:54] [Server thread/INFO]: [PvPManager] PlaceholderAPI Found! Hooked successfully
[12:07:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: pvpmanager [3.10.9]
[12:07:54] [Server thread/INFO]: [PvPManager] mcMMO Found! Hooked successfully
[12:07:54] [Server thread/INFO]: [PvPManager] PvPManager Enabled (41 ms)
[12:07:54] [Server thread/INFO]: [BungeeTabListPlus] Enabling BungeeTabListPlus v3.4.4
[12:07:54] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.6.0
[12:07:55] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[12:07:55] [Server thread/INFO]: [ajLeaderboards] The columns already exist for VotingPlugin_Total. Canceling updater and bumping DB version.
[12:07:55] [Server thread/INFO]: [ajLeaderboards] The columns already exist for VotingPlugin_Total_AllTime. Canceling updater and bumping DB version.
[12:07:55] [Server thread/INFO]: [ajLeaderboards] The columns already exist for VotingPlugin_Total_Alltime. Canceling updater and bumping DB version.
[12:07:55] [Server thread/INFO]: [ajLeaderboards] The columns already exist for VotingPlugin_top_all_position. Canceling updater and bumping DB version.
[12:07:55] [Server thread/INFO]: [ajLeaderboards] The columns already exist for griefprevention_remainingclaims. Canceling updater and bumping DB version.
[12:07:55] [Server thread/INFO]: [ajLeaderboards] The columns already exist for jobsr_user_points. Canceling updater and bumping DB version.
[12:07:55] [Server thread/INFO]: [ajLeaderboards] The columns already exist for mcmmo_power_level. Canceling updater and bumping DB version.
[12:07:55] [Server thread/INFO]: [ajLeaderboards] The columns already exist for quests_completed. Canceling updater and bumping DB version.
[12:07:55] [Server thread/INFO]: [ajLeaderboards] The columns already exist for rankup_money. Canceling updater and bumping DB version.
[12:07:55] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_animals_bred. Canceling updater and bumping DB version.
[12:07:55] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_cake_slices_eaten. Canceling updater and bumping DB version.
[12:07:55] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_craft_item:Diamond. Canceling updater and bumping DB version.
[12:07:55] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_craft_item:diamond_boots. Canceling updater and bumping DB version.
[12:07:55] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_fish_caught. Canceling updater and bumping DB version.
[12:07:55] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_hours_played. Canceling updater and bumping DB version.
[12:07:55] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_item_enchanted. Canceling updater and bumping DB version.
[12:07:55] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_kill_entity:Creeper. Canceling updater and bumping DB version.
[12:07:55] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_kill_entity:creeper. Canceling updater and bumping DB version.
[12:07:55] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_time_played. Canceling updater and bumping DB version.
[12:07:55] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_use_item:Bone_Meal. Canceling updater and bumping DB version.
[12:07:55] [Server thread/INFO]: [ajLeaderboards] The columns already exist for vault_eco_balance. Canceling updater and bumping DB version.
[12:07:55] [Server thread/INFO]: [ajLeaderboards] Loaded 21 boards
[12:07:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ajlb [2.6.0]
[12:07:55] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[12:07:55] [Server thread/INFO]: [ajLeaderboards] LuckPerms position context calculator registered!
[12:07:55] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.6.0 by ajgeiss0702 enabled!
[12:07:55] [Server thread/INFO]: [InventoryRollbackPlus] Enabling InventoryRollbackPlus v1.6.8
[12:07:55] [Server thread/WARN]: [InventoryRollbackPlus] null
 ** WARNING... Plugin may not be compatible with this version of Minecraft. **
 ** Please fully test the plugin before using on your server as features may be broken. **
null
[12:07:55] [Server thread/INFO]: [InventoryRollbackPlus] Inventory backup data is set to save to: YAML
[12:07:55] [Server thread/INFO]: [InventoryRollbackPlus] bStats are enabled
[12:07:55] [Server thread/INFO]: [SpecializedCrates] Enabling SpecializedCrates v3.0.0-Pre4.7
[12:07:55] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R3! Trying to find NMS support
[12:07:55] [Server thread/WARN]: [NBTAPI] [NBTAPI] This Server-Version(v1_19_R3) is not supported by this NBT-API Version(2.11.0-SNAPSHOT) located at de.tr7zw.specializedcrates.nbtapi.utils.MinecraftVersion. The NBT-API will try to work as good as it can! Some functions may not work!
[12:07:55] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[12:07:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: specializedcrates [3.0.0-Pre4.7]
[12:07:55] [Thread-55/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package de.tr7zw.specializedcrates.nbtapi' seems to be outdated!
[12:07:55] [Thread-55/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.11.0-SNAPSHOT' Newest Version: 2.11.2'
[12:07:55] [Thread-55/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[12:07:55] [Server thread/INFO]: 
[12:07:55] [Server thread/INFO]: animation_1
[12:07:55] [Server thread/INFO]:   + Success: there were no issues.
[12:07:55] [Server thread/INFO]: 
[12:07:55] [Server thread/INFO]: nightmare_animation
[12:07:55] [Server thread/INFO]:   + Success: there were no issues.
[12:07:55] [Server thread/INFO]: 
[12:07:55] [Server thread/INFO]: roulette
[12:07:55] [Server thread/INFO]:   + Success: there were no issues.
[12:07:55] [Server thread/INFO]: 
[12:07:55] [Server thread/INFO]: portal
[12:07:55] [Server thread/INFO]:   + Success: there were no issues.
[12:07:55] [Server thread/INFO]: 
[12:07:55] [Server thread/INFO]: lootbox_animation_1
[12:07:55] [Server thread/INFO]:   + Success: there were no issues.
[12:07:55] [Server thread/INFO]: 
[12:07:55] [Server thread/INFO]: semicircle
[12:07:55] [Server thread/INFO]:   + Success: there were no issues.
[12:07:55] [Server thread/INFO]: 
[12:07:55] [Server thread/INFO]: animation_3
[12:07:55] [Server thread/INFO]:   + Success: there were no issues.
[12:07:55] [Server thread/INFO]: 
[12:07:55] [Server thread/INFO]: great_box
[12:07:55] [Server thread/INFO]:   + Success: there were no issues.
[12:07:55] [Server thread/INFO]: 
[12:07:55] [Server thread/INFO]: animation_4
[12:07:55] [Server thread/INFO]:   + Success: there were no issues.
[12:07:55] [Server thread/INFO]: 
[12:07:55] [Server thread/INFO]: animation_2
[12:07:55] [Server thread/INFO]:   + Success: there were no issues.
[12:07:56] [Server thread/INFO]: 
[12:07:56] [Server thread/INFO]: animation_9
[12:07:56] [Server thread/INFO]:   + Success: there were no issues.
[12:07:56] [Server thread/INFO]: 
[12:07:56] [Server thread/INFO]: example_animation
[12:07:56] [Server thread/INFO]:   + Success: there were no issues.
[12:07:56] [Server thread/INFO]: 
[12:07:56] [Server thread/INFO]: slots
[12:07:56] [Server thread/INFO]:   + Success: there were no issues.
[12:07:56] [Server thread/INFO]: 
[12:07:56] [Server thread/INFO]: animation_7
[12:07:56] [Server thread/INFO]:   + Success: there were no issues.
[12:07:56] [Server thread/INFO]: 
[12:07:56] [Server thread/INFO]: animation_6
[12:07:56] [Server thread/INFO]:   + Success: there were no issues.
[12:07:56] [Server thread/INFO]: 
[12:07:56] [Server thread/INFO]: animation_8
[12:07:56] [Server thread/INFO]:   + Success: there were no issues.
[12:07:56] [Server thread/INFO]: 
[12:07:56] [Server thread/INFO]: animation_5
[12:07:56] [Server thread/INFO]:   + Success: there were no issues.
[12:07:56] [Server thread/INFO]: 
[12:07:56] [Server thread/INFO]: tnt_animation
[12:07:56] [Server thread/INFO]:   + Success: there were no issues.
[12:07:56] [Server thread/INFO]: [SpecializedCrates] Hologram handler: DecentHolograms
[12:07:56] [Server thread/INFO]: 
[12:07:56] [Server thread/INFO]: 
[12:07:56] [Server thread/INFO]: MiddleCrate
[12:07:56] [Server thread/INFO]:   Rewards
[12:07:56] [Server thread/INFO]:     - The 'rewards' path does not exist in the config
[12:07:56] [Server thread/INFO]: 
[12:07:56] [Server thread/INFO]: PrideCrate
[12:07:56] [Server thread/INFO]:   + Success: there were no issues.
[12:07:56] [Server thread/INFO]: 
[12:07:56] [Server thread/INFO]: SummerCrate
[12:07:56] [Server thread/INFO]:   + Success: there were no issues.
[12:07:56] [Server thread/INFO]: 
[12:07:56] [Server thread/INFO]: BeginnerCrate
[12:07:56] [Server thread/INFO]:   Rewards
[12:07:56] [Server thread/INFO]:     - The 'rewards' path does not exist in the config
[12:07:56] [Server thread/INFO]: 
[12:07:56] [Server thread/INFO]: Nightmare
[12:07:56] [Server thread/INFO]:   Settings
[12:07:56] [Server thread/INFO]:     - Failed to load the 'inventory-name' value.
[12:07:56] [Server thread/INFO]:         CAUSE: The name is longer than 32 characters (Automatically shortening).
[12:07:56] [Server thread/INFO]:     - Failed to load the 'open.crate-animation' value.
[12:07:56] [Server thread/INFO]:         CAUSE:   is not a valid animation.
[12:07:56] [Server thread/INFO]: 
[12:07:56] [Server thread/INFO]: BasicCrate
[12:07:56] [Server thread/INFO]:   Rewards
[12:07:56] [Server thread/INFO]:     - The 'rewards' path does not exist in the config
[12:07:56] [Server thread/INFO]: 
[12:07:56] [Server thread/INFO]: MineChestExample (Disabled)
[12:07:56] [Server thread/INFO]:   Lucky Chest
[12:07:56] [Server thread/INFO]:     - world_nether is not a valid world for the lucky chests to spawn in.
[12:07:56] [Server thread/INFO]:     - world_the_end is not a valid world for the lucky chests to spawn in.
[12:07:56] [Server thread/INFO]:   Rewards
[12:07:56] [Server thread/INFO]:     - The 'rewards' path does not exist in the config
[12:07:56] [Server thread/INFO]: 
[12:07:56] [Server thread/INFO]: VoteCrate
[12:07:56] [Server thread/INFO]:   + Success: there were no issues.
[12:07:56] [Server thread/INFO]: 
[12:07:56] [Server thread/INFO]: 1
[12:07:56] [Server thread/INFO]:   Rewards
[12:07:56] [Server thread/INFO]:     - The 'rewards' path does not exist in the config
[12:07:56] [Server thread/INFO]: 
[12:07:56] [Server thread/INFO]: ExpertCrate
[12:07:56] [Server thread/INFO]:   Rewards
[12:07:56] [Server thread/INFO]:     - The 'rewards' path does not exist in the config
[12:07:56] [Server thread/INFO]: 
[12:07:56] [Server thread/INFO]: FoundationCrate
[12:07:56] [Server thread/INFO]:   + Success: there were no issues.
[12:07:56] [Server thread/INFO]: 
[12:07:56] [Server thread/INFO]: MasterCrate
[12:07:56] [Server thread/INFO]:   Rewards
[12:07:56] [Server thread/INFO]:     - The 'rewards' path does not exist in the config
[12:07:56] [Server thread/INFO]: 
[12:07:56] [Server thread/INFO]: AdventureCrate
[12:07:56] [Server thread/INFO]:   + Success: there were no issues.
[12:07:56] [Server thread/INFO]: 
[12:07:56] [Server thread/INFO]: MagicCrate
[12:07:56] [Server thread/INFO]:   + Success: there were no issues.
[12:07:56] [Server thread/INFO]: 
[12:07:56] [Server thread/INFO]: DreamCrate
[12:07:56] [Server thread/INFO]:   + Success: there were no issues.
[12:07:56] [Server thread/INFO]: 
[12:07:56] [Server thread/INFO]: AllCrates
[12:07:56] [Server thread/INFO]:   + Success: there were no issues.
[12:07:56] [Server thread/INFO]: -----------------------------------
[12:07:56] [Server thread/INFO]: ERROR: Vote_Crate DOES NOT EXIST TO BE USED AT LOCATION: Lobby;77;86;71
[12:07:56] [Server thread/INFO]: -----------------------------------
[12:07:56] [Server thread/INFO]: -----------------------------------
[12:07:56] [Server thread/INFO]: ERROR: Quest_Crate DOES NOT EXIST TO BE USED AT LOCATION: Lobby;77;86;59
[12:07:56] [Server thread/INFO]: -----------------------------------
[12:07:56] [Server thread/INFO]: -----------------------------------
[12:07:56] [Server thread/INFO]: ERROR: MysteryCrate DOES NOT EXIST TO BE USED AT LOCATION: Lobby;75;87;68
[12:07:56] [Server thread/INFO]: -----------------------------------
[12:07:56] [Server thread/INFO]: -----------------------------------
[12:07:56] [Server thread/INFO]: ERROR: Dream DOES NOT EXIST TO BE USED AT LOCATION: Lobby;75;88;65
[12:07:56] [Server thread/INFO]: -----------------------------------
[12:07:56] [Server thread/INFO]: -----------------------------------
[12:07:56] [Server thread/INFO]: ERROR: Fabled_Crate DOES NOT EXIST TO BE USED AT LOCATION: Lobby;75;87;62
[12:07:56] [Server thread/INFO]: -----------------------------------
[12:07:56] [Server thread/INFO]: A crate is trying to be placed in an ungenerated chunk or world. Deleting that placed instance.
[12:07:56] [Server thread/INFO]: location: Spawn;-12;65;11
[12:07:56] [Server thread/INFO]: A crate is trying to be placed in an ungenerated chunk or world. Deleting that placed instance.
[12:07:56] [Server thread/INFO]: location: Spawn;-11;65;7
[12:07:56] [Server thread/INFO]: A crate is trying to be placed in an ungenerated chunk or world. Deleting that placed instance.
[12:07:56] [Server thread/INFO]: location: Spawn;51;62;89
[12:07:56] [Server thread/INFO]: A crate is trying to be placed in an ungenerated chunk or world. Deleting that placed instance.
[12:07:56] [Server thread/INFO]: location: Spawn;-12;66;9
[12:07:56] [Server thread/INFO]: A crate is trying to be placed in an ungenerated chunk or world. Deleting that placed instance.
[12:07:56] [Server thread/INFO]: location: Spawn;83;72;-31
[12:07:56] [Server thread/INFO]: A crate is trying to be placed in an ungenerated chunk or world. Deleting that placed instance.
[12:07:56] [Server thread/INFO]: location: Spawn;85;73;-31
[12:07:56] [Server thread/INFO]: A crate is trying to be placed in an ungenerated chunk or world. Deleting that placed instance.
[12:07:56] [Server thread/INFO]: location: Spawn;87;74;-30
[12:07:56] [Server thread/INFO]: A crate is trying to be placed in an ungenerated chunk or world. Deleting that placed instance.
[12:07:56] [Server thread/INFO]: location: Spawn;88;73;-28
[12:07:56] [Server thread/INFO]: A crate is trying to be placed in an ungenerated chunk or world. Deleting that placed instance.
[12:07:56] [Server thread/INFO]: location: Spawn;-9;64;12
[12:07:56] [Server thread/INFO]: A crate is trying to be placed in an ungenerated chunk or world. Deleting that placed instance.
[12:07:56] [Server thread/INFO]: location: Spawn;88;72;-26
[12:07:56] [Server thread/INFO]: -----------------------------------
[12:07:56] [Server thread/INFO]: ERROR: Test-Starter DOES NOT EXIST TO BE USED AT LOCATION: Test;4;-60;11
[12:07:56] [Server thread/INFO]: -----------------------------------
[12:07:56] [Server thread/INFO]: A crate is trying to be placed in an ungenerated chunk or world. Deleting that placed instance.
[12:07:56] [Server thread/INFO]: location: Spawn;1088;82;974
[12:07:56] [Server thread/INFO]: A crate is trying to be placed in an ungenerated chunk or world. Deleting that placed instance.
[12:07:56] [Server thread/INFO]: location: Spawn;1088;83;972
[12:07:56] [Server thread/INFO]: A crate is trying to be placed in an ungenerated chunk or world. Deleting that placed instance.
[12:07:56] [Server thread/INFO]: location: Spawn;1085;83;969
[12:07:56] [Server thread/INFO]: A crate is trying to be placed in an ungenerated chunk or world. Deleting that placed instance.
[12:07:56] [Server thread/INFO]: location: Spawn;1087;84;970
[12:07:56] [Server thread/INFO]: A crate is trying to be placed in an ungenerated chunk or world. Deleting that placed instance.
[12:07:56] [Server thread/INFO]: location: Spawn;1083;82;969
[12:07:56] [Server thread/INFO]: A crate is trying to be placed in an ungenerated chunk or world. Deleting that placed instance.
[12:07:56] [Server thread/INFO]: location: Spawn;1051;72;1089
[12:07:56] [Server thread/INFO]: A crate is trying to be placed in an ungenerated chunk or world. Deleting that placed instance.
[12:07:56] [Server thread/INFO]: location: Spawn;988;75;1011
[12:07:56] [Server thread/INFO]: A crate is trying to be placed in an ungenerated chunk or world. Deleting that placed instance.
[12:07:56] [Server thread/INFO]: location: Spawn;989;75;1007
[12:07:56] [Server thread/INFO]: A crate is trying to be placed in an ungenerated chunk or world. Deleting that placed instance.
[12:07:56] [Server thread/INFO]: location: Spawn;991;74;1012
[12:07:56] [Server thread/INFO]: A crate is trying to be placed in an ungenerated chunk or world. Deleting that placed instance.
[12:07:56] [Server thread/INFO]: location: Spawn;988;76;1009
[12:07:56] [Server thread/INFO]: A crate is trying to be placed in an ungenerated chunk or world. Deleting that placed instance.
[12:07:56] [Server thread/INFO]: location: Spawn;1083;82;974
[12:07:56] [Server thread/INFO]: 
[12:07:56] [Server thread/INFO]: 
[12:08:03] [Server thread/INFO]: Crate MasterCrate rewards not found.
[12:08:04] [Server thread/INFO]: Crate ExpertCrate rewards not found.
[12:08:04] [Server thread/INFO]: Crate 1 rewards not found.
[12:08:04] [Server thread/INFO]: Crate BasicCrate rewards not found.
[12:08:05] [Server thread/INFO]: Crate MiddleCrate rewards not found.
[12:08:05] [Server thread/INFO]: Crate AllCrates rewards not found.
[12:08:05] [Server thread/INFO]: Crate BeginnerCrate rewards not found.
[12:08:05] [Server thread/INFO]: Crate MineChestExample rewards not found.
[12:08:05] [Server thread/INFO]: WARNING: The value 'spawn-protection' is set to 16 in the server.properties file. This WILL cause issues with SpecializedCrates - any crates near spawn will only be openable for OP players. Please go to your server.properties file in the main directory of your server and change spawn-protection: 0.
[12:08:05] [Server thread/INFO]: [EvenMoreFish] Enabling EvenMoreFish v1.6.10
[12:08:05] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R3! Trying to find NMS support
[12:08:05] [Server thread/WARN]: [NBTAPI] [NBTAPI] This Server-Version(v1_19_R3) is not supported by this NBT-API Version(2.11.1) located at com.oheers.fish.utils.utils.MinecraftVersion. The NBT-API will try to work as good as it can! Some functions may not work!
[12:08:05] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[12:08:05] [Server thread/ERROR]: [EvenMoreFish] Failed to register events for class com.oheers.fish.events.ItemsAdderLoadEvent because dev/lone/itemsadder/api/Events/ItemsAdderLoadDataEvent does not exist.
[12:08:05] [Thread-56/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package com.oheers.fish.utils' seems to be outdated!
[12:08:05] [Thread-56/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.11.1' Newest Version: 2.11.2'
[12:08:05] [Thread-56/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[12:08:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: emf [1.6.10]
[12:08:05] [Server thread/INFO]: [EvenMoreFish] EvenMoreFish by Oheers : Enabled
[12:08:05] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.2
[12:08:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: betterrtp [3.6.2]
[12:08:07] [Server thread/INFO]: [Dynmap-Towny] Enabling Dynmap-Towny v0.90
[12:08:07] [Server thread/INFO]: [Dynmap-Towny] initializing
[12:08:07] [Server thread/INFO]: [Dynmap-Towny] Towny version 0.98.4.0 found.
[12:08:07] [Server thread/INFO]: [Dynmap-Towny] Dynmap does not have player-info-protected enabled - visibility-by-town will have no effect
[12:08:07] [Server thread/INFO]: [Dynmap-Towny] Dynmap does not have player-info-protected enabled - visibility-by-nation will have no effect
[12:08:07] [Server thread/INFO]: [Dynmap-Towny] version 0.90 is activated
[12:08:07] [Server thread/INFO]: [PinataParty] Enabling PinataParty v2.59.4
[12:08:08] [Server thread/INFO]: [PinataParty] Registering hooks...
[12:08:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: pinataparty [2.59.4]
[12:08:08] [Server thread/INFO]: [PinataParty] Hooked into PlaceholderAPI
[12:08:08] [Server thread/INFO]: [PinataParty] Votifier not found! Not enabling the voting system! Download and install it from https://www.spigotmc.org/resources/13449/
[12:08:08] [Server thread/INFO]: [PinataParty] Hooked into Vault
[12:08:08] [Server thread/INFO]: [PinataParty] Registering commands...
[12:08:08] [Server thread/INFO]: [PinataParty] Registering listeners...
[12:08:08] [Server thread/INFO]: [PinataParty] Loading data...
[12:08:08] [Server thread/INFO]: [PinataParty] Starting tasks...
[12:08:08] [Server thread/INFO]: [PinataParty] Starting metrics...
[12:08:08] [Server thread/INFO]: [PinataParty] Plugin registered to 916273 | -1436990851
[12:08:08] [Server thread/INFO]: [PinataParty] Done and enabled in 665.93ms
[12:08:08] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.7.2
[12:08:08] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.2*-=-=-=-=-=-=-=-=-=-*
[12:08:08] [Server thread/INFO]: | Hooked on Vault 1.7.3-b131
[12:08:08] [Server thread/INFO]: | Command file(s) found : 1
[12:08:08] [Server thread/INFO]: | Config : Ready.
[12:08:08] [Server thread/INFO]: | ProtocolLib found, features availables (SignMenu)
[12:08:09] [Server thread/INFO]: | TabSuggestion Blocker Enabled. BLACKLIST MODE - 1 Groups loaded
[12:08:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mycommand [1.0.0]
[12:08:09] [Server thread/INFO]: | Placeholder_API : Hooked, Ok.
[12:08:09] [Server thread/INFO]: | Duplicated command found. help in examples.yml
[12:08:09] [Server thread/INFO]: | Custom commands loaded : 49
[12:08:09] [Server thread/INFO]: | New update available : MyCommand v5.7.3
[12:08:09] [Server thread/INFO]: |          by emmerrei a.k.a. ivanfromitaly.           
[12:08:09] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*   Done!   *-=-=-=-=-=-=-=-=-=-=-*
[12:08:09] [Server thread/INFO]: [spark] Enabling spark v1.9.23
[12:08:10] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[12:08:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: spark [1.9.23]
[12:08:10] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[12:08:10] [Server thread/INFO]: [AlonsoTags] Enabling AlonsoTags v2.0.7-BETA-PRO
[12:08:10] [Server thread/ERROR]: [AlonsoTags] Failed to register events for class com.alonsoaliaga.alonsotags.listeners.ItemsAdderListener because dev/lone/itemsadder/api/Events/ItemsAdderFirstLoadEvent does not exist.
[12:08:10] [Server thread/INFO]: [AlonsoTags] Max health Attribute check found. Using it..
[12:08:10] [Server thread/INFO]: [AlonsoTags] Inventory title with support for more than 32 characters. Skipping..
[12:08:10] [Server thread/INFO]: [AlonsoTags] Hex colors are available! Ready for RGB..
[12:08:10] [Server thread/INFO]: [AlonsoTags] Old constructor for HoverEvent found! Using it..
[12:08:10] [Server thread/INFO]: [AlonsoTags] New sendTitle method found! Using it..
[12:08:10] [Server thread/INFO]: [AlonsoTags] New setUnbreakable method found! Using it..
[12:08:10] [Server thread/INFO]: [AlonsoTags] New isUnbreakable method found! Using it..
[12:08:10] [Server thread/INFO]: Enabling HEX color fix for 1.8 - 1.15 players.. (This is an experimental feature
[12:08:10] [Server thread/INFO]:     _   _                 _____               ___         
[12:08:10] [Server thread/INFO]:    /_\ | |___ _ _  ___ __|_   _|_ _ __ _ ___ | _ \_ _ ___ 
[12:08:10] [Server thread/INFO]:   / _ \| / _ \ ' \(_-</ _ \| |/ _` / _` (_-< |  _/ '_/ _ \
[12:08:10] [Server thread/INFO]:  /_/ \_\_\___/_||_/__/\___/|_|\__,_\__, /__/ |_| |_| \___/
[12:08:10] [Server thread/INFO]:                                    |___/                  
[12:08:10] [Server thread/INFO]:    Running plugin AlonsoTags v2.0.7-BETA-PRO (v1_19)
[12:08:10] [Server thread/INFO]:    Server running Paper version git-Paper-471 (MC: 1.19.4)
[12:08:10] [Server thread/INFO]:    (Implementing API version 1.19.4-R0.1-SNAPSHOT)
[12:08:10] [Server thread/INFO]:    (Developed by AlonsoAliaga - Thanks for using my plugin ❤!)
[12:08:10] [Server thread/INFO]:    Thanks for purchasing my plugin 916273! If you didn't, do it or you won't receive support :D
[12:08:10] [Server thread/INFO]:    Join our official discord server to receive support in alonsoaliaga.com/discord
[12:08:10] [Server thread/INFO]:    If you loved the plugin consider leaving a 5-stars review and mentioning your server IP in it!
[12:08:10] [Server thread/INFO]: 
[12:08:10] [Server thread/INFO]: ==============================================================================================
[12:08:10] [Server thread/INFO]: [AlonsoTags] This is not a error! This is just a warning to keep in mind if you have issues!
[12:08:10] [Server thread/INFO]: [AlonsoTags] You are using a Paper fork (Paper). This plugin was made for Spigot
[12:08:10] [Server thread/INFO]: [AlonsoTags] but was (in most cases) tested with different builds of Paper and Purpur.
[12:08:10] [Server thread/INFO]: [AlonsoTags] Spigot and forks API are really similar and should be compatible, however there are
[12:08:10] [Server thread/INFO]: [AlonsoTags] some cases in which they aren't compatible. If you have issues report them to the
[12:08:10] [Server thread/INFO]: [AlonsoTags] developer instead of reviewing 1 star. Thanks in advanced!
[12:08:10] [Server thread/INFO]: [AlonsoTags] Join us in our official support server on alonsoaliaga.com/discord
[12:08:10] [Server thread/INFO]: ==============================================================================================
[12:08:10] [Server thread/INFO]: 
[12:08:10] [Server thread/INFO]: [AlonsoTags] BungeeCord action bar available. Hooking..
[12:08:10] [Server thread/INFO]: [AlonsoTags] ProtocolLib found! Checking..
[12:08:10] [Server thread/INFO]: [Auto-update] Configuration is up-to-date!
[12:08:11] [Server thread/INFO]: [AlonsoTags] [HikariCP] Using com.mysql.cj.jdbc.MysqlDataSource for source class name..
[12:08:11] [Server thread/INFO]: [AlonsoTags] [SQLite] Attempting to create 'alonsotags' table..
[12:08:11] [Server thread/INFO]: [SQLite] Connecting to database 'database-alonsotags.db'!
[12:08:11] [Server thread/INFO]: [SQLite] Driver available: SQLite JDBC | 3.41.0
[12:08:11] [Server thread/INFO]: [SQLite] Successfully connected to database!
[12:08:11] [Server thread/INFO]: [AlonsoTags] [SQLite] Table 'alonsotags' has been created if didn't exist.
[12:08:11] [Server thread/INFO]: [AlonsoTags] Column called 'purchased_tags' already exists. Skipping..
[12:08:11] [Server thread/INFO]: [AlonsoTags] Column called 'selected_color' already exists. Skipping..
[12:08:11] [Server thread/INFO]: [AlonsoTags] Column called 'selected_filter' already exists. Skipping..
[12:08:11] [Server thread/INFO]: [AlonsoTags] GameProfile field is available for heads. Hooking..
[12:08:11] [Server thread/INFO]: [AlonsoTags] Vault found! Hooking..
[12:08:11] [Server thread/INFO]: [AlonsoTags] Cost type 'VAULT' has been enabled!
[12:08:11] [Server thread/INFO]: [AlonsoTags] Loading 'new-tag' tag..
[12:08:11] [Server thread/INFO]: [AlonsoTags] Loading 'beginner-tag' tag..
[12:08:11] [Server thread/INFO]: [AlonsoTags] Loading 'dash-lover-tag' tag..
[12:08:11] [Server thread/INFO]: [AlonsoTags] Loading 'rekt-tag' tag..
[12:08:11] [Server thread/INFO]: [AlonsoTags] Loading 'knight-tag' tag..
[12:08:11] [Server thread/INFO]: [AlonsoTags] Loading 'magic-tag' tag..
[12:08:11] [Server thread/INFO]: [AlonsoTags] Loading 'kawaii-eyes-tag' tag..
[12:08:11] [Server thread/INFO]: [AlonsoTags] Loading 'kawaii-mouth-tag' tag..
[12:08:11] [Server thread/INFO]: [AlonsoTags] Loading 'kawaii-kiss-tag' tag..
[12:08:11] [Server thread/INFO]: [AlonsoTags] Loading 'king-tag' tag..
[12:08:11] [Server thread/INFO]: [AlonsoTags] Loading 'queen-tag' tag..
[12:08:11] [Server thread/INFO]: [AlonsoTags] Loading 'robot-tag' tag..
[12:08:11] [Server thread/INFO]: [AlonsoTags] Loading 'miner-tag' tag..
[12:08:11] [Server thread/INFO]: [AlonsoTags] Loading 'geek-tag' tag..
[12:08:11] [Server thread/INFO]: [AlonsoTags] Loading 'idk-tag' tag..
[12:08:11] [Server thread/INFO]: [AlonsoTags] Loading 'lenny-tag' tag..
[12:08:11] [Server thread/INFO]: [AlonsoTags] Loading 'rich-tag' tag..
[12:08:11] [Server thread/INFO]: [AlonsoTags] Loading 'rich-rank-tag' tag..
[12:08:11] [Server thread/INFO]: [AlonsoTags] Loading 'dyeable-love-tag' tag..
[12:08:11] [Server thread/INFO]: [AlonsoTags] Loading 'dyeable-crown-tag' tag..
[12:08:11] [Server thread/INFO]: [AlonsoTags] Loading 'dyeable-heart-banner-tag' tag..
[12:08:11] [Server thread/INFO]: [AlonsoTags] Loading 'glasses-items-adder-tag' tag..
[12:08:11] [Server thread/ERROR]: Error occurred while enabling AlonsoTags v2.0.7-BETA-PRO (Is it up to date?)
java.lang.NoClassDefFoundError: dev/lone/itemsadder/api/ItemsAdder
    at com.alonsoaliaga.alonsotags.AlonsoTags.loadTags(AlonsoTags.java:515) ~[AlonsoTagsPro-v2.0.7-BETA-PRO.jar:?]
    at com.alonsoaliaga.alonsotags.AlonsoTags.onEnable(AlonsoTags.java:200) ~[AlonsoTagsPro-v2.0.7-BETA-PRO.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192) ~[paper-1.19.4.jar:git-Paper-471]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.19.4.jar:git-Paper-471]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugin(CraftServer.java:555) ~[paper-1.19.4.jar:git-Paper-471]
    at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugins(CraftServer.java:466) ~[paper-1.19.4.jar:git-Paper-471]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:637) ~[paper-1.19.4.jar:git-Paper-471]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:436) ~[paper-1.19.4.jar:git-Paper-471]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.19.4.jar:git-Paper-471]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1103) ~[paper-1.19.4.jar:git-Paper-471]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.19.4.jar:git-Paper-471]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.ClassNotFoundException: dev.lone.itemsadder.api.ItemsAdder
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:183) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:150) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?]
    ... 14 more
[12:08:11] [Server thread/INFO]: [AlonsoTags] Disabling AlonsoTags v2.0.7-BETA-PRO
[12:08:11] [Server thread/INFO]: [SQLite] Forcing connection close..
[12:08:11] [Server thread/INFO]:  
[12:08:11] [Server thread/INFO]: [AlonsoTags] Plugin has been disabled!
[12:08:11] [Server thread/INFO]: [AlonsoTags] Thank you for using my plugin!
[12:08:11] [Server thread/INFO]:  
[12:08:11] [Server thread/INFO]: [InvisibleItemFrames] Enabling InvisibleItemFrames v2.6.0
[12:08:11] [Server thread/INFO]: [InvisibleItemFrames] Initializing Managers...
[12:08:11] [Server thread/INFO]: [InvisibleItemFrames] MemoryDataManager initialized!
[12:08:11] [Server thread/INFO]: [InvisibleItemFrames] ConfigManager initialized!
[12:08:11] [Server thread/INFO]: [InvisibleItemFrames] Using Paper Implementation!
[12:08:11] [Server thread/INFO]: [InvisibleItemFrames] ImplementationManager initialized!
[12:08:11] [Server thread/INFO]: [InvisibleItemFrames] Registering Config...
[12:08:11] [Server thread/INFO]: [InvisibleItemFrames] Registering Commands...
[12:08:11] [Server thread/INFO]: [InvisibleItemFrames] Registering Listeners...
[12:08:11] [Server thread/INFO]: [InvisibleItemFrames] Done and enabled in 57.47ms
[12:08:11] [Server thread/INFO]: [TAB] Enabling TAB v3.3.1
[12:08:11] [Server thread/INFO]: [TAB] Server version: 1.19.4 (v1_19_R3)
[12:08:11] [Server thread/INFO]: [TAB] Loaded NMS hook in 119ms
[12:08:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tab [3.3.1]
[12:08:14] [Server thread/INFO]: [TAB] Enabled in 2818ms
[12:08:14] [Server thread/INFO]: [UltimateAutoRestart] Enabling UltimateAutoRestart vBuild 53
[12:08:14] [Server thread/INFO]: [UltimateAutoRestart] Build 53, a free resource by Norska - Thanks for downloading!
[12:08:14] [Server thread/INFO]: [UltimateAutoRestart] Attempting hooks...
[12:08:14] [Server thread/INFO]: [GSit] Enabling GSit v1.4.1
[12:08:14] [Server thread/INFO]: [GSit] The Plugin was successfully enabled.
[12:08:14] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
[12:08:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gsit [1.4.1]
[12:08:14] [Server thread/INFO]: [GSit] Link with ViaBackwards successful!
[12:08:14] [Server thread/INFO]: [GSit] Link with WorldGuard successful!
[12:08:14] [Server thread/INFO]: [InvSee++_Clear] Enabling InvSeePlusPlus_Clear v0.19.6-SNAPSHOT
[12:08:14] [Server thread/INFO]: [PlayerWarps] Enabling PlayerWarps v6.20.0
[12:08:14] [Server thread/INFO]: [PlayerWarps] Vault found, now enabling PlayerWarps...
[12:08:15] [Server thread/INFO]: [PlayerWarps] Found 20 config files to load!
[12:08:16] [Server thread/INFO]: [PlayerWarps] Permissions plugin found! (LuckPerms)
[12:08:16] [Server thread/INFO]: [PlayerWarps] Economy plugin found! (EssentialsX Economy)
[12:08:16] [Server thread/INFO]: [PlayerWarps] Chat plugin found! (LuckPerms)
[12:08:16] [Server thread/INFO]: [PlayerWarps] Found PlaceholderAPI integrating support...
[12:08:16] [Thread-59/INFO]: [PlayerWarps] Found Essentials Expansion integrating support...
[12:08:16] [Server thread/INFO]: [PlayerWarps] SQLite database is enabling...
[12:08:16] [Server thread/INFO]: [PlayerWarps] Loading Metrics...
[12:08:16] [Server thread/INFO]: [PlayerWarps] Successfully loaded Metrics!
[12:08:16] [Server thread/INFO]: [InteractiveChatDiscordSRVAddon] Enabling InteractiveChatDiscordSrvAddon v4.2.6.0
[12:08:38] [Server thread/INFO]: [ICDiscordSrvAddon] Downloaded library "eclipse-collections-forkjoin-11.0.0.jar"
[12:08:39] [Server thread/INFO]: [ICDiscordSrvAddon] Downloaded library "icu4j-71.1.jar"
[12:08:39] [Server thread/INFO]: [ICDiscordSrvAddon] Downloaded library "fastutil-8.5.9.jar"
[12:08:39] [Server thread/INFO]: [ICDiscordSrvAddon] Downloaded library "elsa-3.0.0-M5.jar"
[12:08:40] [Server thread/INFO]: [ICDiscordSrvAddon] Downloaded library "eclipse-collections-api-11.0.0.jar"
[12:08:41] [Server thread/INFO]: [ICDiscordSrvAddon] Downloaded library "kotlin-stdlib-1.6.21.jar"
[12:08:41] [Server thread/INFO]: [ICDiscordSrvAddon] Downloaded library "mapdb-3.0.8.jar"
[12:08:42] [Server thread/INFO]: [ICDiscordSrvAddon] Downloaded library "fest-reflect-1.4.1.jar"
[12:08:42] [Server thread/INFO]: [ICDiscordSrvAddon] Downloaded library "lz4-1.3.0.jar"
[12:08:43] [Server thread/INFO]: [ICDiscordSrvAddon] Downloaded library "eclipse-collections-11.0.0.jar"
[12:08:43] [Server thread/INFO]: [ICDiscordSrvAddon] Downloaded library "bungeecord-chat-1.16-R0.4.jar"
[12:08:44] [Server thread/INFO]: [ICDiscordSrvAddon] Remapped library "fest-reflect-1.4.1.jar"
[12:08:45] [Server thread/INFO]: [ICDiscordSrvAddon] Remapped library "eclipse-collections-api-11.0.0.jar"
[12:08:52] [Server thread/INFO]: [ICDiscordSrvAddon] Remapped library "eclipse-collections-11.0.0.jar"
[12:08:52] [Server thread/INFO]: [ICDiscordSrvAddon] Remapped library "elsa-3.0.0-M5.jar"
[12:08:52] [Server thread/INFO]: [ICDiscordSrvAddon] Remapped library "mapdb-3.0.8.jar"
[12:08:52] [Server thread/INFO]: [ICDiscordSrvAddon] Remapped library "lz4-1.3.0.jar"
[12:08:53] [Server thread/INFO]: [ICDiscordSrvAddon] Remapped library "kotlin-stdlib-1.6.21.jar"
[12:08:53] [Server thread/INFO]: [ICDiscordSrvAddon] Remapped library "eclipse-collections-forkjoin-11.0.0.jar"
[12:08:53] [Server thread/INFO]: [ICDiscordSrvAddon] Remapped library "bungeecord-chat-1.16-R0.4.jar"
[12:08:57] [Server thread/INFO]: [ICDiscordSrvAddon] Remapped library "fastutil-8.5.9.jar"
[12:09:00] [Server thread/INFO]: [ICDiscordSrvAddon] Remapped library "icu4j-71.1.jar"
[12:09:01] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-forkjoin-11.0.0-remapped.jar"
[12:09:01] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "kotlin-stdlib-1.6.21-remapped.jar"
[12:09:01] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "fest-reflect-1.4.1-remapped.jar"
[12:09:01] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-11.0.0-remapped.jar"
[12:09:01] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "mapdb-3.0.8-remapped.jar"
[12:09:01] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "icu4j-71.1-remapped.jar"
[12:09:01] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "lz4-1.3.0-remapped.jar"
[12:09:01] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "bungeecord-chat-1.16-R0.4-remapped.jar"
[12:09:01] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "fastutil-8.5.9-remapped.jar"
[12:09:01] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "elsa-3.0.0-M5-remapped.jar"
[12:09:01] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-api-11.0.0-remapped.jar"
[12:09:01] [Server thread/INFO]: [InteractiveChat] Loading languages...
[12:09:01] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.DiscordReadyEvents subscribed (1 methods)
[12:09:01] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.LegacyDiscordCommandEvents subscribed (1 methods)
[12:09:01] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.OutboundToDiscordEvents subscribed (16 methods)
[12:09:01] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.InboundToGameEvents subscribed (8 methods)
[12:09:01] [Server thread/INFO]: [ICDiscordSrvAddon] InteractiveChat DiscordSRV Addon has been Enabled!
[12:09:01] [Server thread/INFO]: [InvSee++_Give] Enabling InvSeePlusPlus_Give v0.19.6-SNAPSHOT
[12:09:01] [Server thread/INFO]: [Plan] Enabling Plan v5.4 build 1722
[12:09:01] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Successfully registered 9 slash commands (0 conflicted) for 1 plugins in 1/1 guilds (0 cancelled)
[12:09:01] [Server thread/INFO]: [Plan] 
[12:09:01] [Server thread/INFO]: [Plan]            ██▌
[12:09:01] [Server thread/INFO]: [Plan]      ██▌   ██▌
[12:09:01] [Server thread/INFO]: [Plan]   ██▌██▌██▌██▌  Player Analytics
[12:09:01] [Server thread/INFO]: [Plan]   ██▌██▌██▌██▌  v5.4 build 1722
[12:09:01] [Server thread/INFO]: [Plan] 
[12:09:01] [Server thread/INFO]: [Plan] Locale: 'English' by AuroraLS3
[12:09:01] [Server thread/INFO]: [Plan] Downloading SQLite Driver, this may take a while...
[12:09:02] [Plan SQLiteDB-transaction-thread-1/INFO]: [Plan] Database: Making sure schema is up to date..
[12:09:02] [Server thread/INFO]: [Plan] SQLite-database connection established.
[12:09:02] [Server thread/INFO]: [Plan] WebServer: Certificate KeyStore File not Found: plugins/Plan/Cert.jks
[12:09:02] [Server thread/INFO]: [Plan] WebServer: No Certificate -> Using HTTP-server for Visualization.
[12:09:02] [Server thread/INFO]: [Plan] WebServer: User Authorization Disabled! (Not secure over HTTP)
[12:09:02] [Server thread/INFO]: [Plan] Webserver running on PORT 25581 ( http://localhost:25581 )
[12:09:02] [Server thread/INFO]: [Plan] IP in server.properties is empty & Alternative_IP is not in use. Incorrect links might be given!
[12:09:02] [Server thread/WARN]: [Plan] 0.0.0.0 is not a valid address, set up Alternative_IP settings. Incorrect links might be given!
[12:09:02] [Server thread/INFO]: [Plan] Loading server identifying information
[12:09:02] [Server thread/INFO]: [Plan] Server identifier loaded: 89aea28b-e0c6-4eb8-9aae-e658620c2118
[12:09:02] [Server thread/INFO]: [Plan] Registered extension: DiscordSRV
[12:09:02] [Server thread/INFO]: [DiscordSRV] API listener com.djrapitops.extension.DiscordSRVListener subscribed (2 methods)
[12:09:02] [Server thread/INFO]: [Plan] Registered extension: Essentials
[12:09:02] [Server thread/INFO]: [Plan] Registered extension: EssentialsEco
[12:09:03] [Plan SQLiteDB-transaction-thread-1/INFO]: [Plan] All database patches applied successfully.
[12:09:03] [Server thread/INFO]: [Plan] Registered extension: Jobs
[12:09:03] [Server thread/INFO]: [Plan] Registered extension: Litebans
[12:09:03] [Server thread/INFO]: [Plan] Registered extension: LuckPerms
[12:09:03] [Server thread/INFO]: [Plan] Registered extension: mcMMO
[12:09:03] [Server thread/INFO]: [Plan] Registered extension: PlaceholderAPI
[12:09:03] [Server thread/INFO]: [Plan] Registered extension: Towny
[12:09:03] [Server thread/INFO]: [Plan] Registered extension: Economy (Vault)
[12:09:03] [Server thread/INFO]: [Plan] Registered extension: Permission Groups (Vault)
[12:09:03] [Server thread/INFO]: [Plan] Registered extension: ViaVersion
[12:09:03] [Server thread/INFO]: [Plan] Player Analytics Enabled.
[12:09:03] [Server thread/INFO]: [ItemEdit] Enabling ItemEdit v2.19
[12:09:03] [Server thread/INFO]: [ItemEdit] Hooking into Vault
[12:09:03] [Server thread/INFO]: [ItemEdit] Hooked into PlaceHolderAPI:
[12:09:03] [Server thread/INFO]: [ItemEdit] placeholders:
[12:09:03] [Server thread/INFO]: [ItemEdit]   %itemedit_amount_<{itemid}>_[{slot}]_[{player}]%
[12:09:03] [Server thread/INFO]: [ItemEdit]     shows how many itemid player has on slot
[12:09:03] [Server thread/INFO]: [ItemEdit]     <{itemid}> for item id on serveritem
[12:09:03] [Server thread/INFO]: [ItemEdit]     [{slot}] for the slot where the item should be counted, by default inventory
[12:09:03] [Server thread/INFO]: [ItemEdit]       Values: inventory, equip, inventoryandequip, hand, offhand, head, chest, legs, feet
[12:09:03] [Server thread/INFO]: [ItemEdit]     [{player}] for the player, by default self
[12:09:03] [Server thread/INFO]: [ItemEdit]     example: %itemedit_amount_{my_item_id}_{hand}%
[12:09:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: itemedit [1.0]
[12:09:03] [Server thread/INFO]: [ShopGUIPlus] Registered item provider 'ServerItem'.
[12:09:03] [Server thread/INFO]: [ExecutableEvents] Enabling ExecutableEvents v1.1.51
[12:09:03] [Server thread/INFO]: ========*======== ExecutableEvents ========*========
[12:09:03] [Server thread/INFO]: ========*======== ExecutableEvents ========*========
[12:09:03] [Server thread/INFO]: [PlayerKits] Enabling PlayerKits v2.25.1
[12:09:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerkits [2.25.1]
[12:09:03] [Server thread/INFO]: [PlayerKits] Has been enabled! Version: 2.25.1
[12:09:03] [Server thread/INFO]: [PlayerKits] Thanks for using my plugin!  ~Ajneb97
[12:09:03] [Server thread/INFO]: [Chunky] Enabling Chunky v1.2.164
[12:09:03] [Server thread/INFO]: [BuycraftX] Enabling BuycraftX v12.0.8
[12:09:03] [Server thread/INFO]: [BuycraftX] Validating your server key...
[12:09:04] [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.
[12:09:04] [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.
[12:09:04] [Server thread/INFO]: [BuycraftX] Fetching all server packages...
[12:09:04] [Server thread/INFO]: [GFly] Enabling GFly v[2.3.0.0]
[12:09:04] [Server thread/INFO]: [GFly] The Plugin was successfully enabled.
[12:09:04] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.4-Release
[12:09:04] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[12:09:04] [Server thread/WARN]: [DeluxeMenus] open_command specified for menu: Kits_Menu already exists for another menu!
[12:09:04] [Server thread/WARN]: [DeluxeMenus] Skipping menu: Kits_Menu
[12:09:04] [Server thread/WARN]: [DeluxeMenus] open_command specified for menu: Kits_Free already exists for another menu!
[12:09:04] [Server thread/WARN]: [DeluxeMenus] Skipping menu: Kits_Free
[12:09:04] [Server thread/WARN]: [DeluxeMenus] open_command specified for menu: Kits_Donator already exists for another menu!
[12:09:04] [Server thread/WARN]: [DeluxeMenus] Skipping menu: Kits_Donator
[12:09:05] [Server thread/INFO]: [DeluxeMenus] 154 GUI menus loaded!
[12:09:05] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[12:09:05] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[12:09:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxemenus [1.13.4-Release]
[12:09:05] [Server thread/INFO]: [Rankup] Enabling Rankup v3.13.2
[12:09:05] [Server thread/ERROR]: [Rankup] You are using an outdated config!
[12:09:05] [Server thread/ERROR]: [Rankup] This means that some things might not work!
[12:09:05] [Server thread/ERROR]: [Rankup] To update, please rename ALL your config files (or the folder they are in),
[12:09:05] [Server thread/ERROR]: [Rankup] and run /pru reload to generate a new config file.
[12:09:05] [Server thread/ERROR]: [Rankup] If that does not work, restart your server.
[12:09:05] [Server thread/ERROR]: [Rankup] You may then copy in your config values manually from the old config.
[12:09:05] [Server thread/ERROR]: [Rankup] Check the changelog on the Rankup spigot page to see the changes.
[12:09:05] [Server thread/ERROR]: [Rankup] https://www.spigotmc.org/resources/rankup.76964/updates
[12:09:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: rankup [3.13.2]
[12:09:05] [Server thread/INFO]: [Multiverse-NetherPortals] Enabling Multiverse-NetherPortals v4.2.2-b807
[12:09:05] [Server thread/INFO]: [Multiverse-NetherPortals 4.2.2-b807]  Enabled - By Rigby and fernferret
[12:09:05] [Server thread/INFO]: [QuickShop] Enabling QuickShop v5.1.0.9
[12:09:05] [Server thread/INFO]: [QuickShop] QuickShop Reremake
[12:09:05] [Server thread/INFO]: [QuickShop] Starting plugin self-test, please wait...
[12:09:05] [Server thread/INFO]: [QuickShop] [OK] Signature Verify
[12:09:05] [Server thread/INFO]: [QuickShop] [OK] Plugin Manifest Check
[12:09:05] [Server thread/INFO]: [QuickShop] [OK] Potential Infection Characteristics Check
[12:09:05] [Server thread/INFO]: [QuickShop] [OK] Java Runtime Environment Version Test
[12:09:05] [Server thread/INFO]: [QuickShop] Running QuickShop-Reremake on NMS version v1_19_R3 For Minecraft version 1.19.4
[12:09:05] [Server thread/INFO]: [QuickShop] [OK] Spigot Based Server Test
[12:09:05] [Server thread/INFO]: [QuickShop] [OK] Old QuickShop Test
[12:09:05] [Server thread/INFO]: [QuickShop] [OK] ModdedServer Based Test
[12:09:05] [Server thread/WARN]: [QuickShop] [WARN] CoreSupport Test: QuickShop may not fully support version v1_19_R3/1.19.4, Some features may not work.
[12:09:05] [Server thread/INFO]: [QuickShop] [OK] Virtual DisplayItem Support Test
[12:09:05] [Server thread/WARN]: [QuickShop] [WARN] GameVersion supporting Test: Your Minecraft server version not tested by developers, QuickShop may ran into issues on this version.
[12:09:05] [Server thread/INFO]: [QuickShop] [OK] PacketListenerAPI Conflict Test
[12:09:05] [Server thread/INFO]: [QuickShop] [OK] Permission Manager Test
[12:09:05] [Server thread/INFO]: [QuickShop] [OK] End of life Test
[12:09:05] [Server thread/INFO]: [QuickShop] Reading the configuration...
[12:09:06] [Server thread/INFO]: [QuickShop] Developers: PotatoCraft Studio, Netherfoam, Timtower, KaiNoMood (KaiKikuchi), jho5245, Ghost_chu, cakoyo, Ectabro, portlek, log4b0at, Andre601, deadman96385, Vlvxingze, DoctaEnkoda, Mgazul, TiaraRinne, sandtechnology, Starmism, Chris6ix, Rean Schwarzer, mart-r, raphtaliapt, Tim269, creatorfromhell, LoneDev6, judgetread, confuxeon, ibmibmibm, yannicklamprecht, PyvesB, PaulBGD, ORelio, JoschuaSchneider, Starmium, harry0198, efekurbann, tdiant
[12:09:06] [Server thread/INFO]: [QuickShop] Original author: Netherfoam, Timtower, KaiNoMood
[12:09:06] [Server thread/INFO]: [QuickShop] Let's start loading the plugin
[12:09:06] [Server thread/INFO]: [QuickShop] Chat processor selected: Hardcoded BungeeChat Lib
[12:09:06] [Server thread/INFO]: [QuickShop] Loading plugin translations files...
[12:09:06] [Server thread/INFO]: [QuickShop] Game assets server selected: Mojang API
[12:09:06] [Server thread/INFO]: [QuickShop] Loading items translations...
[12:09:06] [Server thread/INFO]: [QuickShop] Loading enchantments translations...
[12:09:06] [Server thread/INFO]: [QuickShop] Loading potions translations...
[12:09:06] [Server thread/INFO]: [QuickShop] Successfully loaded PlaceHolderAPI support!
[12:09:06] [Server thread/INFO]: [QuickShop] Successfully loaded WorldEdit support!
[12:09:06] [Server thread/INFO]: [QuickShop] Using Virtual Item display, loading ProtocolLib support...
[12:09:06] [Server thread/INFO]: [QuickShop] Successfully loaded ProtocolLib support!
[12:09:06] [Server thread/INFO]: [QuickShop] Setting up database...
[12:09:06] [Server thread/INFO]: [QuickShop] Checking and updating database columns, it may take a while...
[12:09:06] [Server thread/INFO]: [QuickShop] Finished!
[12:09:06] [Server thread/INFO]: [QuickShop] Selected permission provider: Bukkit
[12:09:06] [Server thread/INFO]: [QuickShop] Registering commands...
[12:09:06] [Server thread/INFO]: [QuickShop] Loaded 1 rules for listener blacklist.
[12:09:06] [Server thread/INFO]: [QuickShop] EventManager selected: QSEventManager
[12:09:06] [Server thread/INFO]: [QuickShop] Fetching shops from the database...If plugin stuck there, check your database connection.
[12:09:06] [Server thread/INFO]: [QuickShop] Loading shops from the database...
[12:09:06] [Server thread/INFO]: [QuickShop] >> Shop Loader Information
[12:09:06] [Server thread/INFO]: [QuickShop] Total           shops: 35
[12:09:06] [Server thread/INFO]: [QuickShop] Valid           shops: 35
[12:09:06] [Server thread/INFO]: [QuickShop] Pending              : 0
[12:09:06] [Server thread/INFO]: [QuickShop] Waiting worlds loaded: 0
[12:09:06] [Server thread/INFO]: [QuickShop] Waiting chunks loaded: 35
[12:09:06] [Server thread/INFO]: [QuickShop] Done! Used 24ms to loaded shops in database.
[12:09:06] [Server thread/INFO]: [QuickShop] Registering listeners...
[12:09:06] [Server thread/INFO]: [QuickShop] Cleaning MsgUtils...
[12:09:06] [Server thread/INFO]: [QuickShop] Cleaning purchase messages from the database that are over a week old...
[12:09:06] [Server thread/INFO]: [QuickShop] Log actions is enabled, actions will log in the qs.log file!
[12:09:06] [Server thread/INFO]: [QuickShop] [Shop Purger] Purge not enabled!
[12:09:06] [Server thread/INFO]: [QuickShop] QuickShop Loaded! 520 ms.
[12:09:06] [Server thread/INFO]: [QuickShop] Using economy system: EssentialsX Economy
[12:09:06] [Server thread/WARN]: [QuickShop] QuickShop detected tax account not exists, we're trying to create one. If you see any errors, please change tax-account in config.yml to server owner in-game username
[12:09:06] [Server thread/INFO]: [Essentials] Created a User for Tax (2c5f00ba-902c-411b-b9b9-9261cf43aee1) for non Bukkit type: com.earth2me.essentials.OfflinePlayer
[12:09:06] [Server thread/INFO]: [QuickShop] Tax account created.
[12:09:06] [Server thread/INFO]: [MobFarmManager] Enabling MobFarmManager v2.0.3.1
[12:09:06] [Server thread/INFO]: MobFarmManager Version 2.0.3.1 has been enabled
[12:09:06] [Server thread/INFO]: [StayPut] Enabling StayPut v1.2.1
[12:09:06] [Server thread/INFO]: [LiteBansBridge] Enabling LiteBansBridge v1.5
[12:09:06] [Server thread/INFO]: >----------[ LiteBansBridge ]--------<
[12:09:06] [Server thread/INFO]: >                                    <
[12:09:06] [Server thread/INFO]: >         LiteBansBridge V1.5        <
[12:09:06] [Server thread/INFO]: >              By Woutzah            <
[12:09:06] [Server thread/INFO]: >                                    <
[12:09:06] [Server thread/INFO]: >              Enabling ...          <
[12:09:06] [Server thread/INFO]: >                                    <
[12:09:06] [Server thread/INFO]: >------------------------------------<
[12:09:06] [Server thread/INFO]: [DiscordSRV] API listener be.woutzah.litebansbridge.listeners.DiscordListener subscribed (1 methods)
[12:09:06] [Server thread/INFO]: [OreAnnouncer] Enabling OreAnnouncer v2.8.3
[12:09:06] [Server thread/INFO]: [OreAnnouncer] Initializing OreAnnouncer v2.8.3
[12:09:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: oreannouncer [2.8.3]
[12:09:08] [Server thread/INFO]: [OreAnnouncer] Hooked into PlaceholderAPI
[12:09:08] [Server thread/INFO]: [OreAnnouncer] OreAnnouncer v2.8.3 enabled
[12:09:08] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v4.1.6
[12:09:08] [Server thread/INFO]: [ExcellentCrates] Powered by: NexEngine
[12:09:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: excellentcrates [4.1.6]
[12:09:08] [Server thread/INFO]: [ExcellentCrates] Using 'en' language.
[12:09:08] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Starting...
[12:09:08] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-2 - Added connection org.sqlite.jdbc4.JDBC4Connection@450f0434
[12:09:08] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Start completed.
[12:09:08] [Server thread/INFO]: [ExcellentCrates] Loaded 4 crate keys.
[12:09:08] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[12:09:08] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 302 ms!
[12:09:08] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.20.0-dev+45-bf14b88
[12:09:08] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[12:09:08] [Server thread/INFO]: [AutomaticBroadcast] Enabling AutomaticBroadcast v1.2.5
[12:09:08] [Server thread/INFO]:    _____  _____
[12:09:08] [Server thread/INFO]:   |  _  || __  |  AutomaticBroadcast
[12:09:08] [Server thread/INFO]:   |     || __ -|    Version 1.2.5
[12:09:08] [Server thread/INFO]:   |__|__||_____|      by Pandaaa
[12:09:08] [Server thread/INFO]: 
[12:09:08] [Server thread/INFO]: [PL-Hide] Enabling PL-Hide v1.5.21
[12:09:09] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[12:09:09] [Server thread/INFO]: Running delayed init tasks
[12:09:09] [Craft Scheduler Thread - 42 - PvPManager/INFO]: [PvPManager] Checking for updates...
[12:09:09] [Craft Scheduler Thread - 52 - PlayerWarps/INFO]: [PlayerWarps] Loading player warps...
[12:09:09] [Craft Scheduler Thread - 30 - InteractiveChat/INFO]: [InteractiveChat] Loading languages...
[12:09:09] [Craft Scheduler Thread - 45 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] Checking for updates...
[12:09:09] [Craft Scheduler Thread - 18 - Towny/INFO]: [Towny] Checking for updates...
[12:09:09] [Craft Scheduler Thread - 11 - Essentials/INFO]: [Essentials] Fetching version information...
[12:09:09] [Craft Scheduler Thread - 4 - GamePoints/INFO]: [GamePoints] Updating balance top...
[12:09:09] [Craft Scheduler Thread - 23 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[12:09:09] [Craft Scheduler Thread - 7 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[12:09:09] [Craft Scheduler Thread - 56 - Vault/INFO]: [Vault] Checking for Updates ... 
[12:09:09] [Craft Scheduler Thread - 12 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[12:09:09] [Craft Scheduler Thread - 57 - GamePoints/INFO]: [GamePoints] Auto-save: Saved 0 online users | 0 offline users.
[12:09:09] [Craft Scheduler Thread - 15 - Towny/INFO]: [Towny] Time until a New Day: 23 hours, 50 minutes, 51 seconds
[12:09:09] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[12:09:09] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[12:09:09] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.TownyFeature] Plugin 'Towny' found. Using it now.
[12:09:09] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'Towny'
[12:09:10] [Craft Scheduler Thread - 12 - DecentHolograms/WARN]: [DecentHolograms] Failed to load hologram from file 'hologram_EventBoard.yml'!
[12:09:10] [Craft Scheduler Thread - 12 - DecentHolograms/WARN]: java.lang.NullPointerException: location is marked non-null but is null
[12:09:10] [Craft Scheduler Thread - 12 - DecentHolograms/WARN]:     at DecentHolograms-2.8.1.jar//eu.decentsoftware.holograms.api.holograms.objects.HologramObject.<init>(HologramObject.java:34)
[12:09:10] [Craft Scheduler Thread - 12 - DecentHolograms/WARN]:     at DecentHolograms-2.8.1.jar//eu.decentsoftware.holograms.api.holograms.objects.UpdatingHologramObject.<init>(UpdatingHologramObject.java:26)
[12:09:10] [Craft Scheduler Thread - 12 - DecentHolograms/WARN]:     at DecentHolograms-2.8.1.jar//eu.decentsoftware.holograms.api.holograms.Hologram.<init>(Hologram.java:286)
[12:09:10] [Craft Scheduler Thread - 12 - DecentHolograms/WARN]:     at DecentHolograms-2.8.1.jar//eu.decentsoftware.holograms.api.holograms.Hologram.fromFile(Hologram.java:120)
[12:09:10] [Craft Scheduler Thread - 12 - DecentHolograms/WARN]:     at DecentHolograms-2.8.1.jar//eu.decentsoftware.holograms.api.holograms.HologramManager.loadHolograms(HologramManager.java:295)
[12:09:10] [Craft Scheduler Thread - 12 - DecentHolograms/WARN]:     at DecentHolograms-2.8.1.jar//eu.decentsoftware.holograms.api.holograms.HologramManager.reload(HologramManager.java:167)
[12:09:10] [Craft Scheduler Thread - 12 - DecentHolograms/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[12:09:10] [Craft Scheduler Thread - 12 - DecentHolograms/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[12:09:10] [Craft Scheduler Thread - 12 - DecentHolograms/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[12:09:10] [Craft Scheduler Thread - 12 - DecentHolograms/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
[12:09:10] [Craft Scheduler Thread - 12 - DecentHolograms/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
[12:09:10] [Craft Scheduler Thread - 12 - DecentHolograms/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[12:09:10] [Craft Scheduler Thread - 4 - GamePoints/INFO]: [GamePoints] Balance top updated in 406 ms!
[12:09:10] [Craft Scheduler Thread - 39 - ProCosmetics/INFO]: [ProCosmetics] There is a newer version available for ProCosmetics! You're at 13.5 and the latest release is 13.9.
[12:09:10] [Craft Scheduler Thread - 41 - PlayTime/INFO]: [PlayTime] Latest version is not installed! - v3.6
[12:09:10] [Thread-86/INFO]: [DragonEggDrop] Your version of DragonEggDrop (1.9.2) is up to date!
[12:09:10] [Craft Scheduler Thread - 49 - ItemEdit/INFO]: [ItemEdit] New Update at https://spigotmc.org/resources/40993
[12:09:10] [Craft Scheduler Thread - 28 - Plan/INFO]: [Plan] ----------------------------------------
[12:09:10] [Craft Scheduler Thread - 28 - Plan/INFO]: [Plan] New Release (5.5.2307) is available https://github.com/plan-player-analytics/Plan/releases
[12:09:10] [Craft Scheduler Thread - 28 - Plan/INFO]: [Plan] ----------------------------------------
[12:09:10] [Craft Scheduler Thread - 56 - Vault/INFO]: [Vault] No new version available
[12:09:10] [Craft Scheduler Thread - 45 - InventoryRollbackPlus/INFO]: 
===============================================================================
A minor update to InventoryRollbackPlus is available!
Download at https://www.spigotmc.org/resources/inventoryrollbackplus-1-8-1-16-x.85811/
(current: 1.6.8, latest: 1.6.9)
===============================================================================

[12:09:10] [Craft Scheduler Thread - 43 - QuickShop/INFO]: [QuickShop] Failed to check for an update on build server! It might be an internet issue or the build server host is down. If you want disable the update checker, you can disable in config.yml, but we still high-recommend check for updates on SpigotMC.org often, Error: Did not get expected response code, got 403 for https://ci.codemc.io/job/PotatoCraft-Studio/job/QuickShop-Reremake/lastSuccessfulBuild/artifact/target/BUILDINFO
[12:09:10] [Craft Scheduler Thread - 42 - PvPManager/INFO]: [PvPManager] No update found
[12:09:10] [Server thread/INFO]: [UltraSetHome] WorldGuard hooked successfully.
[12:09:10] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[12:09:10] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[12:09:10] [Craft Scheduler Thread - 18 - Towny/INFO]: [Towny] New update available: 0.98.6.23 | Current version: 0.98.4.0
[12:09:10] [Craft Scheduler Thread - 18 - Towny/INFO]: [Towny] Download it here: https://github.com/TownyAdvanced/Towny/releases/tag/0.98.6.23
[12:09:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: discordsrv [1.26.2]
[12:09:10] [Craft Scheduler Thread - 12 - DecentHolograms/INFO]: [DecentHolograms] Loaded 58 holograms!
[12:09:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: quests [3.13.3-5a28efa]
[12:09:11] [Server thread/INFO]: [Quests] 37 task types have been registered.
[12:09:11] [Netty Epoll Server IO #2/WARN]: [SuperVanish] Unknown exception occurred!
[12:09:11] [Netty Epoll Server IO #2/WARN]: [SuperVanish] Please report this issue!
[12:09:11] [Netty Epoll Server IO #2/WARN]: [SuperVanish] Message: 
[12:09:11] [Netty Epoll Server IO #2/WARN]: [SuperVanish]   Cannot invoke "com.comphenix.protocol.wrappers.AutoWrapper.wrap(Object)" because "com.comphenix.protocol.wrappers.ping.ServerPingRecord.SAMPLE_WRAPPER" is null
[12:09:11] [Netty Epoll Server IO #2/WARN]: [SuperVanish] General information: 
[12:09:11] [Netty Epoll Server IO #2/WARN]: [SuperVanish]   ServerVersion: git-Paper-471 (MC: 1.19.4)
[12:09:11] [Netty Epoll Server IO #2/WARN]: [SuperVanish]   PluginVersion: 6.2.15
[12:09:11] [Netty Epoll Server IO #2/WARN]: [SuperVanish]   ServerPlugins: ViaVersion v4.6.2, LuckPerms v5.4.46, Vault v1.7.3-b131, FastAsyncWorldEdit v2.6.0-SNAPSHOT-392;d82bf05, WorldGuard v7.0.7+216b061, floodgate v2.2.0-SNAPSHOT (b66-5d5713e), PlaceholderAPI v2.11.3, UltraSetHome v1.7.5, ProtocolLib v5.0.0-SNAPSHOT-b621, HeadDatabase v4.17.0, Multiverse-Core v4.3.1-b861, Essentials v2.20.0-dev+45-bf14b88, Citizens v2.0.31-SNAPSHOT (build 2994), DecentHolograms v2.8.1, CoreProtect v21.2, dynmap v3.5-beta-3-866, Towny v0.98.4.0, NBTAPI v2.11.2, SCore v3.9.51, mcMMO v2.1.209, VentureChat v3.5.0, LoneLibs v1.0.21, ExecutableItems v5.9.51, NexEngine v2.2.9 build-16/03/2023, DiscordSRV v1.26.2, ItemsAdder v3.4.1-r2, GamePoints v1.3.5, VotingPlugin v6.9.2, ShopGUIPlus v1.78.0, CMILib v1.2.5.2, Multiverse-CommandDestination v1.2.2, ViaBackwards v4.6.1, InvSeePlusPlus v0.19.6-SNAPSHOT, InteractiveChat v4.2.6.0, LiteBans v2.8.13, Quests v3.13.3-5a28efa, Jobs v5.1.2.2, WorldBorder v1.19, Multiverse-Portals v4.2.1-b834, DreamyMcAddon v1.0, DragonEggDrop v1.9.2, MineableSpawners v3.1.4, CommandCooldown v2.4.4 beta, PlayerVaults v4.2.5, ProCosmetics v13.5, Vehicles v13.8, PlayTime v3.3, CrazyAuctions v1.2.16-RELEASE, ChatColor2 v1.12.3, PvPManager v3.10.9, BungeeTabListPlus v3.4.4, ConsoleSpamFix v1.9.0, ajLeaderboards v2.6.0, InventoryRollbackPlus v1.6.8, SpecializedCrates v3.0.0-Pre4.7, EvenMoreFish v1.6.10, BetterRTP v3.6.2, Dynmap-Towny v0.90, PinataParty v2.59.4, BungeeGuard v1.3-SNAPSHOT, MyCommand v5.7.2, spark v1.9.23, AlonsoTags v2.0.7-BETA-PRO, InvisibleItemFrames v2.6.0, TAB v3.3.1, UltimateAutoRestart vBuild 53, GSit v1.4.1, InvSeePlusPlus_Clear v0.19.6-SNAPSHOT, PlayerWarps v6.20.0, InteractiveChatDiscordSrvAddon v4.2.6.0, InvSeePlusPlus_Give v0.19.6-SNAPSHOT, Plan v5.4 build 1722, ItemEdit v2.19, ExecutableEvents v1.1.51, PlayerKits v2.25.1, Chunky v1.2.164, BuycraftX v12.0.8, GFly v[2.3.0.0], DeluxeMenus v1.13.4-Release, Rankup v3.13.2, Multiverse-NetherPortals v4.2.2-b807, QuickShop v5.1.0.9, MobFarmManager v2.0.3.1, StayPut v1.2.1, LiteBansBridge v1.5, OreAnnouncer v2.8.3, ExcellentCrates v4.1.6, EssentialsSpawn v2.20.0-dev+45-bf14b88, AutomaticBroadcast v1.2.5, PL-Hide v1.5.21,
[12:09:11] [Netty Epoll Server IO #2/WARN]: [SuperVanish] Settings:
[12:09:11] [Netty Epoll Server IO #2/WARN]: [SuperVanish]   MsgsVersion: 6.2.7
[12:09:11] [Netty Epoll Server IO #2/WARN]: [SuperVanish]   Settings: ||InvisibilityFeatures.NightVisionEffect>true||InvisibilityFeatures.DisableDamage>true||InvisibilityFeatures.DisableHunger>true||InvisibilityFeatures.DisableMobTarget>true||InvisibilityFeatures.OpenChestsSilently>true||InvisibilityFeatures.DisablePressurePlates>true||InvisibilityFeatures.DisablePush>false||InvisibilityFeatures.DefaultPickUpItemsOption>false||InvisibilityFeatures.ModifyTablistPackets>true||InvisibilityFeatures.Fly.Enable>true||InvisibilityFeatures.Fly.DisableOnReappear>true||VanishStateFeatures.AutoVanishOnJoin>false||VanishStateFeatures.ReappearOnWorldChange>false||VanishStateFeatures.ReappearOnQuit>false||VanishStateFeatures.CheckPermissionOnWorldChange>false||VanishStateFeatures.CheckPermissionOnQuit>false||VanishStateFeatures.CheckPermissionOnLogin>false||IndicationFeatures.LayeredPermissions.EnableSeePermission>true||IndicationFeatures.LayeredPermissions.LayeredSeeAndUsePermissions>false||IndicationFeatures.LayeredPermissions.MaxLevel>100||IndicationFeatures.MarkVanishedPlayersAsSpectators>true||MessageOptions.FakeJoinQuitMessages.BroadcastFakeQuitOnVanish>false||MessageOptions.FakeJoinQuitMessages.BroadcastFakeJoinOnReappear>false||MessageOptions.FakeJoinQuitMessages.AnnounceVanishReappearToAdmins>true||MessageOptions.FakeJoinQuitMessages.SendMessageOnlyToAdmins>false||MessageOptions.FakeJoinQuitMessages.SendMessageOnlyToUsers>false||MessageOptions.HideRealJoinQuitMessages>true||MessageOptions.ReappearOnQuitHideLeaveMsg>true||MessageOptions.AnnounceRealJoinQuitToAdmins>true||MessageOptions.AnnounceDeathToAdmins>true||MessageOptions.RemindVanishedOnJoin>true||MessageOptions.DisplayActionBar>true||RestrictiveOptions.PreventBlockBreaking>false||RestrictiveOptions.PreventBlockPlacing>false||RestrictiveOptions.PreventHittingEntities>false||ExternalInvisibility.ServerList.AdjustAmountOfOnlinePlayers>true||ExternalInvisibility.ServerList.AdjustListOfLoggedInPlayers>true||HookOptions.EnableEssentialsHook>true||HookOptions.EnableDynmapHook>true||HookOptions.DynmapSendJoinLeaveMessages>true||HookOptions.EnableTrailGUIHook>true||HookOptions.EnablePlaceholderAPIHook>true||HookOptions.EnableMVdWPlaceholderAPIHook>true||HookOptions.EnableCitizensHook>true||CompatibilityOptions.PlayerJoinEventPriority>HIGH||CompatibilityOptions.PlayerQuitEventPriority>HIGH||MiscellaneousOptions.UpdateChecker.Enable>true||MiscellaneousOptions.UpdateChecker.NotifyAdmins>true||ConfigVersion>6.2.7||
[12:09:11] [Netty Epoll Server IO #2/WARN]: [SuperVanish] StackTrace: 
[12:09:11] [Netty Epoll Server IO #2/WARN]: java.lang.NullPointerException: Cannot invoke "com.comphenix.protocol.wrappers.AutoWrapper.wrap(Object)" because "com.comphenix.protocol.wrappers.ping.ServerPingRecord.SAMPLE_WRAPPER" is null
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.ping.ServerPingRecord.<init>(ServerPingRecord.java:116)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedServerPing.newImpl(WrappedServerPing.java:81)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedServerPing.<init>(WrappedServerPing.java:68)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedServerPing.fromHandle(WrappedServerPing.java:107)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.Converters$3.getSpecific(Converters.java:106)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.Converters$1.getSpecific(Converters.java:53)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.reflect.StructureModifier.readInternal(StructureModifier.java:301)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.reflect.StructureModifier.read(StructureModifier.java:251)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at SuperVanish.jar//de.myzelyam.supervanish.visibility.ServerListPacketListener.onPacketSending(ServerListPacketListener.java:59)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokeSendingListener(SortedPacketListenerList.java:208)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokeUnpackedPacketSending(SortedPacketListenerList.java:193)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokePacketSending(SortedPacketListenerList.java:149)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokePacketSending(SortedPacketListenerList.java:139)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.PacketFilterManager.postPacketToListeners(PacketFilterManager.java:551)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.PacketFilterManager.invokePacketSending(PacketFilterManager.java:525)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.manager.NetworkManagerInjector.onPacketSending(NetworkManagerInjector.java:100)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelInjector.processOutbound(NettyChannelInjector.java:566)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelProxy.processPacketOutbound(NettyChannelProxy.java:266)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelProxy.writeAndFlush(NettyChannelProxy.java:223)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelProxy.writeAndFlush(NettyChannelProxy.java:233)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at net.minecraft.network.NetworkManager.doSendPacket(NetworkManager.java:466)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at net.minecraft.network.NetworkManager.sendPacket(NetworkManager.java:428)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:382)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:368)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at com.destroystokyo.paper.network.StandardPaperServerListPingEventImpl.processRequest(StandardPaperServerListPingEventImpl.java:113)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at net.minecraft.server.network.PacketStatusListener.a(PacketStatusListener.java:156)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at net.minecraft.network.protocol.status.PacketStatusInStart.a(PacketStatusInStart.java:19)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at net.minecraft.network.protocol.status.PacketStatusInStart.a(PacketStatusInStart.java:8)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:314)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:298)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at net.minecraft.network.NetworkManager.channelRead0(NetworkManager.java:53)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:99)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.InboundPacketInterceptor.channelRead(InboundPacketInterceptor.java:28)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:346)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:318)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:346)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:318)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at net.minecraft.server.network.LegacyPingHandler.channelRead(LegacyPingHandler.java:122)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.handler.timeout.IdleStateHandler.channelRead(IdleStateHandler.java:286)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.handler.flush.FlushConsolidationHandler.channelRead(FlushConsolidationHandler.java:152)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1410)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:919)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:800)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:499)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:397)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
[12:09:11] [Netty Epoll Server IO #2/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[12:09:11] [Netty Epoll Server IO #2/WARN]: [SuperVanish] Please include this information
[12:09:11] [Netty Epoll Server IO #2/WARN]: [SuperVanish] if you report the issue.
[12:09:11] [Netty Epoll Server IO #1/WARN]: [SuperVanish] Unknown exception occurred!
[12:09:11] [Netty Epoll Server IO #1/WARN]: [SuperVanish] Please report this issue!
[12:09:11] [Netty Epoll Server IO #1/WARN]: [SuperVanish] Message: 
[12:09:11] [Netty Epoll Server IO #1/WARN]: [SuperVanish]   Cannot invoke "com.comphenix.protocol.wrappers.AutoWrapper.wrap(Object)" because "com.comphenix.protocol.wrappers.ping.ServerPingRecord.SAMPLE_WRAPPER" is null
[12:09:11] [Netty Epoll Server IO #1/WARN]: [SuperVanish] General information: 
[12:09:11] [Netty Epoll Server IO #1/WARN]: [SuperVanish]   ServerVersion: git-Paper-471 (MC: 1.19.4)
[12:09:11] [Netty Epoll Server IO #1/WARN]: [SuperVanish]   PluginVersion: 6.2.15
[12:09:11] [Netty Epoll Server IO #1/WARN]: [SuperVanish]   ServerPlugins: ViaVersion v4.6.2, LuckPerms v5.4.46, Vault v1.7.3-b131, FastAsyncWorldEdit v2.6.0-SNAPSHOT-392;d82bf05, WorldGuard v7.0.7+216b061, floodgate v2.2.0-SNAPSHOT (b66-5d5713e), PlaceholderAPI v2.11.3, UltraSetHome v1.7.5, ProtocolLib v5.0.0-SNAPSHOT-b621, HeadDatabase v4.17.0, Multiverse-Core v4.3.1-b861, Essentials v2.20.0-dev+45-bf14b88, Citizens v2.0.31-SNAPSHOT (build 2994), DecentHolograms v2.8.1, CoreProtect v21.2, dynmap v3.5-beta-3-866, Towny v0.98.4.0, NBTAPI v2.11.2, SCore v3.9.51, mcMMO v2.1.209, VentureChat v3.5.0, LoneLibs v1.0.21, ExecutableItems v5.9.51, NexEngine v2.2.9 build-16/03/2023, DiscordSRV v1.26.2, ItemsAdder v3.4.1-r2, GamePoints v1.3.5, VotingPlugin v6.9.2, ShopGUIPlus v1.78.0, CMILib v1.2.5.2, Multiverse-CommandDestination v1.2.2, ViaBackwards v4.6.1, InvSeePlusPlus v0.19.6-SNAPSHOT, InteractiveChat v4.2.6.0, LiteBans v2.8.13, Quests v3.13.3-5a28efa, Jobs v5.1.2.2, WorldBorder v1.19, Multiverse-Portals v4.2.1-b834, DreamyMcAddon v1.0, DragonEggDrop v1.9.2, MineableSpawners v3.1.4, CommandCooldown v2.4.4 beta, PlayerVaults v4.2.5, ProCosmetics v13.5, Vehicles v13.8, PlayTime v3.3, CrazyAuctions v1.2.16-RELEASE, ChatColor2 v1.12.3, PvPManager v3.10.9, BungeeTabListPlus v3.4.4, ConsoleSpamFix v1.9.0, ajLeaderboards v2.6.0, InventoryRollbackPlus v1.6.8, SpecializedCrates v3.0.0-Pre4.7, EvenMoreFish v1.6.10, BetterRTP v3.6.2, Dynmap-Towny v0.90, PinataParty v2.59.4, BungeeGuard v1.3-SNAPSHOT, MyCommand v5.7.2, spark v1.9.23, AlonsoTags v2.0.7-BETA-PRO, InvisibleItemFrames v2.6.0, TAB v3.3.1, UltimateAutoRestart vBuild 53, GSit v1.4.1, InvSeePlusPlus_Clear v0.19.6-SNAPSHOT, PlayerWarps v6.20.0, InteractiveChatDiscordSrvAddon v4.2.6.0, InvSeePlusPlus_Give v0.19.6-SNAPSHOT, Plan v5.4 build 1722, ItemEdit v2.19, ExecutableEvents v1.1.51, PlayerKits v2.25.1, Chunky v1.2.164, BuycraftX v12.0.8, GFly v[2.3.0.0], DeluxeMenus v1.13.4-Release, Rankup v3.13.2, Multiverse-NetherPortals v4.2.2-b807, QuickShop v5.1.0.9, MobFarmManager v2.0.3.1, StayPut v1.2.1, LiteBansBridge v1.5, OreAnnouncer v2.8.3, ExcellentCrates v4.1.6, EssentialsSpawn v2.20.0-dev+45-bf14b88, AutomaticBroadcast v1.2.5, PL-Hide v1.5.21,
[12:09:11] [Netty Epoll Server IO #1/WARN]: [SuperVanish] Settings:
[12:09:11] [Netty Epoll Server IO #1/WARN]: [SuperVanish]   MsgsVersion: 6.2.7
[12:09:11] [Netty Epoll Server IO #1/WARN]: [SuperVanish]   Settings: ||InvisibilityFeatures.NightVisionEffect>true||InvisibilityFeatures.DisableDamage>true||InvisibilityFeatures.DisableHunger>true||InvisibilityFeatures.DisableMobTarget>true||InvisibilityFeatures.OpenChestsSilently>true||InvisibilityFeatures.DisablePressurePlates>true||InvisibilityFeatures.DisablePush>false||InvisibilityFeatures.DefaultPickUpItemsOption>false||InvisibilityFeatures.ModifyTablistPackets>true||InvisibilityFeatures.Fly.Enable>true||InvisibilityFeatures.Fly.DisableOnReappear>true||VanishStateFeatures.AutoVanishOnJoin>false||VanishStateFeatures.ReappearOnWorldChange>false||VanishStateFeatures.ReappearOnQuit>false||VanishStateFeatures.CheckPermissionOnWorldChange>false||VanishStateFeatures.CheckPermissionOnQuit>false||VanishStateFeatures.CheckPermissionOnLogin>false||IndicationFeatures.LayeredPermissions.EnableSeePermission>true||IndicationFeatures.LayeredPermissions.LayeredSeeAndUsePermissions>false||IndicationFeatures.LayeredPermissions.MaxLevel>100||IndicationFeatures.MarkVanishedPlayersAsSpectators>true||MessageOptions.FakeJoinQuitMessages.BroadcastFakeQuitOnVanish>false||MessageOptions.FakeJoinQuitMessages.BroadcastFakeJoinOnReappear>false||MessageOptions.FakeJoinQuitMessages.AnnounceVanishReappearToAdmins>true||MessageOptions.FakeJoinQuitMessages.SendMessageOnlyToAdmins>false||MessageOptions.FakeJoinQuitMessages.SendMessageOnlyToUsers>false||MessageOptions.HideRealJoinQuitMessages>true||MessageOptions.ReappearOnQuitHideLeaveMsg>true||MessageOptions.AnnounceRealJoinQuitToAdmins>true||MessageOptions.AnnounceDeathToAdmins>true||MessageOptions.RemindVanishedOnJoin>true||MessageOptions.DisplayActionBar>true||RestrictiveOptions.PreventBlockBreaking>false||RestrictiveOptions.PreventBlockPlacing>false||RestrictiveOptions.PreventHittingEntities>false||ExternalInvisibility.ServerList.AdjustAmountOfOnlinePlayers>true||ExternalInvisibility.ServerList.AdjustListOfLoggedInPlayers>true||HookOptions.EnableEssentialsHook>true||HookOptions.EnableDynmapHook>true||HookOptions.DynmapSendJoinLeaveMessages>true||HookOptions.EnableTrailGUIHook>true||HookOptions.EnablePlaceholderAPIHook>true||HookOptions.EnableMVdWPlaceholderAPIHook>true||HookOptions.EnableCitizensHook>true||CompatibilityOptions.PlayerJoinEventPriority>HIGH||CompatibilityOptions.PlayerQuitEventPriority>HIGH||MiscellaneousOptions.UpdateChecker.Enable>true||MiscellaneousOptions.UpdateChecker.NotifyAdmins>true||ConfigVersion>6.2.7||
[12:09:11] [Netty Epoll Server IO #1/WARN]: [SuperVanish] StackTrace: 
[12:09:11] [Netty Epoll Server IO #1/WARN]: java.lang.NullPointerException: Cannot invoke "com.comphenix.protocol.wrappers.AutoWrapper.wrap(Object)" because "com.comphenix.protocol.wrappers.ping.ServerPingRecord.SAMPLE_WRAPPER" is null
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.ping.ServerPingRecord.<init>(ServerPingRecord.java:116)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedServerPing.newImpl(WrappedServerPing.java:81)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedServerPing.<init>(WrappedServerPing.java:68)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedServerPing.fromHandle(WrappedServerPing.java:107)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.Converters$3.getSpecific(Converters.java:106)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.Converters$1.getSpecific(Converters.java:53)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.reflect.StructureModifier.readInternal(StructureModifier.java:301)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.reflect.StructureModifier.read(StructureModifier.java:251)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at SuperVanish.jar//de.myzelyam.supervanish.visibility.ServerListPacketListener.onPacketSending(ServerListPacketListener.java:59)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokeSendingListener(SortedPacketListenerList.java:208)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokeUnpackedPacketSending(SortedPacketListenerList.java:193)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokePacketSending(SortedPacketListenerList.java:149)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokePacketSending(SortedPacketListenerList.java:139)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.PacketFilterManager.postPacketToListeners(PacketFilterManager.java:551)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.PacketFilterManager.invokePacketSending(PacketFilterManager.java:525)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.manager.NetworkManagerInjector.onPacketSending(NetworkManagerInjector.java:100)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelInjector.processOutbound(NettyChannelInjector.java:566)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelProxy.processPacketOutbound(NettyChannelProxy.java:266)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelProxy.writeAndFlush(NettyChannelProxy.java:223)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelProxy.writeAndFlush(NettyChannelProxy.java:233)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.NetworkManager.doSendPacket(NetworkManager.java:466)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.NetworkManager.sendPacket(NetworkManager.java:428)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:382)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:368)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at com.destroystokyo.paper.network.StandardPaperServerListPingEventImpl.processRequest(StandardPaperServerListPingEventImpl.java:113)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.server.network.PacketStatusListener.a(PacketStatusListener.java:156)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.protocol.status.PacketStatusInStart.a(PacketStatusInStart.java:19)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.protocol.status.PacketStatusInStart.a(PacketStatusInStart.java:8)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:314)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:298)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.NetworkManager.channelRead0(NetworkManager.java:53)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:99)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.InboundPacketInterceptor.channelRead(InboundPacketInterceptor.java:28)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:346)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:318)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:346)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:318)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.server.network.LegacyPingHandler.channelRead(LegacyPingHandler.java:122)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.handler.timeout.IdleStateHandler.channelRead(IdleStateHandler.java:286)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.handler.flush.FlushConsolidationHandler.channelRead(FlushConsolidationHandler.java:152)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1410)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:919)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:800)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:499)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:397)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[12:09:11] [Netty Epoll Server IO #1/WARN]: [SuperVanish] Please include this information
[12:09:11] [Netty Epoll Server IO #1/WARN]: [SuperVanish] if you report the issue.
[12:09:11] [Netty Epoll Server IO #3/WARN]: [SuperVanish] Unknown exception occurred!
[12:09:11] [Netty Epoll Server IO #3/WARN]: [SuperVanish] Please report this issue!
[12:09:11] [Netty Epoll Server IO #3/WARN]: [SuperVanish] Message: 
[12:09:11] [Netty Epoll Server IO #3/WARN]: [SuperVanish]   null
[12:09:11] [Netty Epoll Server IO #3/WARN]: [SuperVanish] General information: 
[12:09:11] [Netty Epoll Server IO #3/WARN]: [SuperVanish]   ServerVersion: git-Paper-471 (MC: 1.19.4)
[12:09:11] [Netty Epoll Server IO #3/WARN]: [SuperVanish]   PluginVersion: 6.2.15
[12:09:11] [Netty Epoll Server IO #3/WARN]: [SuperVanish]   ServerPlugins: ViaVersion v4.6.2, LuckPerms v5.4.46, Vault v1.7.3-b131, FastAsyncWorldEdit v2.6.0-SNAPSHOT-392;d82bf05, WorldGuard v7.0.7+216b061, floodgate v2.2.0-SNAPSHOT (b66-5d5713e), PlaceholderAPI v2.11.3, UltraSetHome v1.7.5, ProtocolLib v5.0.0-SNAPSHOT-b621, HeadDatabase v4.17.0, Multiverse-Core v4.3.1-b861, Essentials v2.20.0-dev+45-bf14b88, Citizens v2.0.31-SNAPSHOT (build 2994), DecentHolograms v2.8.1, CoreProtect v21.2, dynmap v3.5-beta-3-866, Towny v0.98.4.0, NBTAPI v2.11.2, SCore v3.9.51, mcMMO v2.1.209, VentureChat v3.5.0, LoneLibs v1.0.21, ExecutableItems v5.9.51, NexEngine v2.2.9 build-16/03/2023, DiscordSRV v1.26.2, ItemsAdder v3.4.1-r2, GamePoints v1.3.5, VotingPlugin v6.9.2, ShopGUIPlus v1.78.0, CMILib v1.2.5.2, Multiverse-CommandDestination v1.2.2, ViaBackwards v4.6.1, InvSeePlusPlus v0.19.6-SNAPSHOT, InteractiveChat v4.2.6.0, LiteBans v2.8.13, Quests v3.13.3-5a28efa, Jobs v5.1.2.2, WorldBorder v1.19, Multiverse-Portals v4.2.1-b834, DreamyMcAddon v1.0, DragonEggDrop v1.9.2, MineableSpawners v3.1.4, CommandCooldown v2.4.4 beta, PlayerVaults v4.2.5, ProCosmetics v13.5, Vehicles v13.8, PlayTime v3.3, CrazyAuctions v1.2.16-RELEASE, ChatColor2 v1.12.3, PvPManager v3.10.9, BungeeTabListPlus v3.4.4, ConsoleSpamFix v1.9.0, ajLeaderboards v2.6.0, InventoryRollbackPlus v1.6.8, SpecializedCrates v3.0.0-Pre4.7, EvenMoreFish v1.6.10, BetterRTP v3.6.2, Dynmap-Towny v0.90, PinataParty v2.59.4, BungeeGuard v1.3-SNAPSHOT, MyCommand v5.7.2, spark v1.9.23, AlonsoTags v2.0.7-BETA-PRO, InvisibleItemFrames v2.6.0, TAB v3.3.1, UltimateAutoRestart vBuild 53, GSit v1.4.1, InvSeePlusPlus_Clear v0.19.6-SNAPSHOT, PlayerWarps v6.20.0, InteractiveChatDiscordSrvAddon v4.2.6.0, InvSeePlusPlus_Give v0.19.6-SNAPSHOT, Plan v5.4 build 1722, ItemEdit v2.19, ExecutableEvents v1.1.51, PlayerKits v2.25.1, Chunky v1.2.164, BuycraftX v12.0.8, GFly v[2.3.0.0], DeluxeMenus v1.13.4-Release, Rankup v3.13.2, Multiverse-NetherPortals v4.2.2-b807, QuickShop v5.1.0.9, MobFarmManager v2.0.3.1, StayPut v1.2.1, LiteBansBridge v1.5, OreAnnouncer v2.8.3, ExcellentCrates v4.1.6, EssentialsSpawn v2.20.0-dev+45-bf14b88, AutomaticBroadcast v1.2.5, PL-Hide v1.5.21,
[12:09:11] [Netty Epoll Server IO #3/WARN]: [SuperVanish] Settings:
[12:09:11] [Netty Epoll Server IO #3/WARN]: [SuperVanish]   MsgsVersion: 6.2.7
[12:09:11] [Netty Epoll Server IO #3/WARN]: [SuperVanish]   Settings: ||InvisibilityFeatures.NightVisionEffect>true||InvisibilityFeatures.DisableDamage>true||InvisibilityFeatures.DisableHunger>true||InvisibilityFeatures.DisableMobTarget>true||InvisibilityFeatures.OpenChestsSilently>true||InvisibilityFeatures.DisablePressurePlates>true||InvisibilityFeatures.DisablePush>false||InvisibilityFeatures.DefaultPickUpItemsOption>false||InvisibilityFeatures.ModifyTablistPackets>true||InvisibilityFeatures.Fly.Enable>true||InvisibilityFeatures.Fly.DisableOnReappear>true||VanishStateFeatures.AutoVanishOnJoin>false||VanishStateFeatures.ReappearOnWorldChange>false||VanishStateFeatures.ReappearOnQuit>false||VanishStateFeatures.CheckPermissionOnWorldChange>false||VanishStateFeatures.CheckPermissionOnQuit>false||VanishStateFeatures.CheckPermissionOnLogin>false||IndicationFeatures.LayeredPermissions.EnableSeePermission>true||IndicationFeatures.LayeredPermissions.LayeredSeeAndUsePermissions>false||IndicationFeatures.LayeredPermissions.MaxLevel>100||IndicationFeatures.MarkVanishedPlayersAsSpectators>true||MessageOptions.FakeJoinQuitMessages.BroadcastFakeQuitOnVanish>false||MessageOptions.FakeJoinQuitMessages.BroadcastFakeJoinOnReappear>false||MessageOptions.FakeJoinQuitMessages.AnnounceVanishReappearToAdmins>true||MessageOptions.FakeJoinQuitMessages.SendMessageOnlyToAdmins>false||MessageOptions.FakeJoinQuitMessages.SendMessageOnlyToUsers>false||MessageOptions.HideRealJoinQuitMessages>true||MessageOptions.ReappearOnQuitHideLeaveMsg>true||MessageOptions.AnnounceRealJoinQuitToAdmins>true||MessageOptions.AnnounceDeathToAdmins>true||MessageOptions.RemindVanishedOnJoin>true||MessageOptions.DisplayActionBar>true||RestrictiveOptions.PreventBlockBreaking>false||RestrictiveOptions.PreventBlockPlacing>false||RestrictiveOptions.PreventHittingEntities>false||ExternalInvisibility.ServerList.AdjustAmountOfOnlinePlayers>true||ExternalInvisibility.ServerList.AdjustListOfLoggedInPlayers>true||HookOptions.EnableEssentialsHook>true||HookOptions.EnableDynmapHook>true||HookOptions.DynmapSendJoinLeaveMessages>true||HookOptions.EnableTrailGUIHook>true||HookOptions.EnablePlaceholderAPIHook>true||HookOptions.EnableMVdWPlaceholderAPIHook>true||HookOptions.EnableCitizensHook>true||CompatibilityOptions.PlayerJoinEventPriority>HIGH||CompatibilityOptions.PlayerQuitEventPriority>HIGH||MiscellaneousOptions.UpdateChecker.Enable>true||MiscellaneousOptions.UpdateChecker.NotifyAdmins>true||ConfigVersion>6.2.7||
[12:09:11] [Netty Epoll Server IO #3/WARN]: [SuperVanish] StackTrace: 
[12:09:11] [Netty Epoll Server IO #3/WARN]: java.lang.NullPointerException
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at com.google.common.base.Preconditions.checkNotNull(Preconditions.java:889)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at com.google.common.collect.ImmutableList.copyOf(ImmutableList.java:236)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedServerPing.getPlayers(WrappedServerPing.java:275)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at SuperVanish.jar//de.myzelyam.supervanish.visibility.ServerListPacketListener.onPacketSending(ServerListPacketListener.java:67)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokeSendingListener(SortedPacketListenerList.java:208)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokeUnpackedPacketSending(SortedPacketListenerList.java:193)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokePacketSending(SortedPacketListenerList.java:149)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokePacketSending(SortedPacketListenerList.java:139)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.PacketFilterManager.postPacketToListeners(PacketFilterManager.java:551)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.PacketFilterManager.invokePacketSending(PacketFilterManager.java:525)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.manager.NetworkManagerInjector.onPacketSending(NetworkManagerInjector.java:100)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelInjector.processOutbound(NettyChannelInjector.java:566)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelProxy.processPacketOutbound(NettyChannelProxy.java:266)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelProxy.writeAndFlush(NettyChannelProxy.java:223)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelProxy.writeAndFlush(NettyChannelProxy.java:233)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at net.minecraft.network.NetworkManager.doSendPacket(NetworkManager.java:466)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at net.minecraft.network.NetworkManager.sendPacket(NetworkManager.java:428)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:382)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:368)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at com.destroystokyo.paper.network.StandardPaperServerListPingEventImpl.processRequest(StandardPaperServerListPingEventImpl.java:113)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at net.minecraft.server.network.PacketStatusListener.a(PacketStatusListener.java:156)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at net.minecraft.network.protocol.status.PacketStatusInStart.a(PacketStatusInStart.java:19)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at net.minecraft.network.protocol.status.PacketStatusInStart.a(PacketStatusInStart.java:8)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:314)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:298)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at net.minecraft.network.NetworkManager.channelRead0(NetworkManager.java:53)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:99)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.InboundPacketInterceptor.channelRead(InboundPacketInterceptor.java:28)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:346)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:318)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:346)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:318)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at net.minecraft.server.network.LegacyPingHandler.channelRead(LegacyPingHandler.java:122)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.handler.timeout.IdleStateHandler.channelRead(IdleStateHandler.java:286)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.handler.flush.FlushConsolidationHandler.channelRead(FlushConsolidationHandler.java:152)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1410)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:919)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:800)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:499)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:397)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
[12:09:11] [Netty Epoll Server IO #3/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[12:09:11] [Netty Epoll Server IO #3/WARN]: [SuperVanish] Please include this information
[12:09:11] [Netty Epoll Server IO #3/WARN]: [SuperVanish] if you report the issue.
[12:09:11] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[12:09:11] [Netty Epoll Server IO #1/WARN]: [SuperVanish] Unknown exception occurred!
[12:09:11] [Netty Epoll Server IO #1/WARN]: [SuperVanish] Please report this issue!
[12:09:11] [Netty Epoll Server IO #1/WARN]: [SuperVanish] Message: 
[12:09:11] [Netty Epoll Server IO #1/WARN]: [SuperVanish]   null
[12:09:11] [Netty Epoll Server IO #1/WARN]: [SuperVanish] General information: 
[12:09:11] [Netty Epoll Server IO #1/WARN]: [SuperVanish]   ServerVersion: git-Paper-471 (MC: 1.19.4)
[12:09:11] [Netty Epoll Server IO #1/WARN]: [SuperVanish]   PluginVersion: 6.2.15
[12:09:11] [Netty Epoll Server IO #1/WARN]: [SuperVanish]   ServerPlugins: ViaVersion v4.6.2, LuckPerms v5.4.46, Vault v1.7.3-b131, FastAsyncWorldEdit v2.6.0-SNAPSHOT-392;d82bf05, WorldGuard v7.0.7+216b061, floodgate v2.2.0-SNAPSHOT (b66-5d5713e), PlaceholderAPI v2.11.3, UltraSetHome v1.7.5, ProtocolLib v5.0.0-SNAPSHOT-b621, HeadDatabase v4.17.0, Multiverse-Core v4.3.1-b861, Essentials v2.20.0-dev+45-bf14b88, Citizens v2.0.31-SNAPSHOT (build 2994), DecentHolograms v2.8.1, CoreProtect v21.2, dynmap v3.5-beta-3-866, Towny v0.98.4.0, NBTAPI v2.11.2, SCore v3.9.51, mcMMO v2.1.209, VentureChat v3.5.0, LoneLibs v1.0.21, ExecutableItems v5.9.51, NexEngine v2.2.9 build-16/03/2023, DiscordSRV v1.26.2, ItemsAdder v3.4.1-r2, GamePoints v1.3.5, VotingPlugin v6.9.2, ShopGUIPlus v1.78.0, CMILib v1.2.5.2, Multiverse-CommandDestination v1.2.2, ViaBackwards v4.6.1, InvSeePlusPlus v0.19.6-SNAPSHOT, InteractiveChat v4.2.6.0, LiteBans v2.8.13, Quests v3.13.3-5a28efa, Jobs v5.1.2.2, WorldBorder v1.19, Multiverse-Portals v4.2.1-b834, DreamyMcAddon v1.0, DragonEggDrop v1.9.2, MineableSpawners v3.1.4, CommandCooldown v2.4.4 beta, PlayerVaults v4.2.5, ProCosmetics v13.5, Vehicles v13.8, PlayTime v3.3, CrazyAuctions v1.2.16-RELEASE, ChatColor2 v1.12.3, PvPManager v3.10.9, BungeeTabListPlus v3.4.4, ConsoleSpamFix v1.9.0, ajLeaderboards v2.6.0, InventoryRollbackPlus v1.6.8, SpecializedCrates v3.0.0-Pre4.7, EvenMoreFish v1.6.10, BetterRTP v3.6.2, Dynmap-Towny v0.90, PinataParty v2.59.4, BungeeGuard v1.3-SNAPSHOT, MyCommand v5.7.2, spark v1.9.23, AlonsoTags v2.0.7-BETA-PRO, InvisibleItemFrames v2.6.0, TAB v3.3.1, UltimateAutoRestart vBuild 53, GSit v1.4.1, InvSeePlusPlus_Clear v0.19.6-SNAPSHOT, PlayerWarps v6.20.0, InteractiveChatDiscordSrvAddon v4.2.6.0, InvSeePlusPlus_Give v0.19.6-SNAPSHOT, Plan v5.4 build 1722, ItemEdit v2.19, ExecutableEvents v1.1.51, PlayerKits v2.25.1, Chunky v1.2.164, BuycraftX v12.0.8, GFly v[2.3.0.0], DeluxeMenus v1.13.4-Release, Rankup v3.13.2, Multiverse-NetherPortals v4.2.2-b807, QuickShop v5.1.0.9, MobFarmManager v2.0.3.1, StayPut v1.2.1, LiteBansBridge v1.5, OreAnnouncer v2.8.3, ExcellentCrates v4.1.6, EssentialsSpawn v2.20.0-dev+45-bf14b88, AutomaticBroadcast v1.2.5, PL-Hide v1.5.21,
[12:09:11] [Netty Epoll Server IO #1/WARN]: [SuperVanish] Settings:
[12:09:11] [Netty Epoll Server IO #1/WARN]: [SuperVanish]   MsgsVersion: 6.2.7
[12:09:11] [Netty Epoll Server IO #1/WARN]: [SuperVanish]   Settings: ||InvisibilityFeatures.NightVisionEffect>true||InvisibilityFeatures.DisableDamage>true||InvisibilityFeatures.DisableHunger>true||InvisibilityFeatures.DisableMobTarget>true||InvisibilityFeatures.OpenChestsSilently>true||InvisibilityFeatures.DisablePressurePlates>true||InvisibilityFeatures.DisablePush>false||InvisibilityFeatures.DefaultPickUpItemsOption>false||InvisibilityFeatures.ModifyTablistPackets>true||InvisibilityFeatures.Fly.Enable>true||InvisibilityFeatures.Fly.DisableOnReappear>true||VanishStateFeatures.AutoVanishOnJoin>false||VanishStateFeatures.ReappearOnWorldChange>false||VanishStateFeatures.ReappearOnQuit>false||VanishStateFeatures.CheckPermissionOnWorldChange>false||VanishStateFeatures.CheckPermissionOnQuit>false||VanishStateFeatures.CheckPermissionOnLogin>false||IndicationFeatures.LayeredPermissions.EnableSeePermission>true||IndicationFeatures.LayeredPermissions.LayeredSeeAndUsePermissions>false||IndicationFeatures.LayeredPermissions.MaxLevel>100||IndicationFeatures.MarkVanishedPlayersAsSpectators>true||MessageOptions.FakeJoinQuitMessages.BroadcastFakeQuitOnVanish>false||MessageOptions.FakeJoinQuitMessages.BroadcastFakeJoinOnReappear>false||MessageOptions.FakeJoinQuitMessages.AnnounceVanishReappearToAdmins>true||MessageOptions.FakeJoinQuitMessages.SendMessageOnlyToAdmins>false||MessageOptions.FakeJoinQuitMessages.SendMessageOnlyToUsers>false||MessageOptions.HideRealJoinQuitMessages>true||MessageOptions.ReappearOnQuitHideLeaveMsg>true||MessageOptions.AnnounceRealJoinQuitToAdmins>true||MessageOptions.AnnounceDeathToAdmins>true||MessageOptions.RemindVanishedOnJoin>true||MessageOptions.DisplayActionBar>true||RestrictiveOptions.PreventBlockBreaking>false||RestrictiveOptions.PreventBlockPlacing>false||RestrictiveOptions.PreventHittingEntities>false||ExternalInvisibility.ServerList.AdjustAmountOfOnlinePlayers>true||ExternalInvisibility.ServerList.AdjustListOfLoggedInPlayers>true||HookOptions.EnableEssentialsHook>true||HookOptions.EnableDynmapHook>true||HookOptions.DynmapSendJoinLeaveMessages>true||HookOptions.EnableTrailGUIHook>true||HookOptions.EnablePlaceholderAPIHook>true||HookOptions.EnableMVdWPlaceholderAPIHook>true||HookOptions.EnableCitizensHook>true||CompatibilityOptions.PlayerJoinEventPriority>HIGH||CompatibilityOptions.PlayerQuitEventPriority>HIGH||MiscellaneousOptions.UpdateChecker.Enable>true||MiscellaneousOptions.UpdateChecker.NotifyAdmins>true||ConfigVersion>6.2.7||
[12:09:11] [Netty Epoll Server IO #1/WARN]: [SuperVanish] StackTrace: 
[12:09:11] [Netty Epoll Server IO #1/WARN]: java.lang.NullPointerException
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at com.google.common.base.Preconditions.checkNotNull(Preconditions.java:889)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at com.google.common.collect.ImmutableList.copyOf(ImmutableList.java:236)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedServerPing.getPlayers(WrappedServerPing.java:275)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at SuperVanish.jar//de.myzelyam.supervanish.visibility.ServerListPacketListener.onPacketSending(ServerListPacketListener.java:67)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokeSendingListener(SortedPacketListenerList.java:208)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokeUnpackedPacketSending(SortedPacketListenerList.java:193)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokePacketSending(SortedPacketListenerList.java:149)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokePacketSending(SortedPacketListenerList.java:139)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.PacketFilterManager.postPacketToListeners(PacketFilterManager.java:551)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.PacketFilterManager.invokePacketSending(PacketFilterManager.java:525)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.manager.NetworkManagerInjector.onPacketSending(NetworkManagerInjector.java:100)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelInjector.processOutbound(NettyChannelInjector.java:566)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelProxy.processPacketOutbound(NettyChannelProxy.java:266)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelProxy.writeAndFlush(NettyChannelProxy.java:223)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelProxy.writeAndFlush(NettyChannelProxy.java:233)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.NetworkManager.doSendPacket(NetworkManager.java:466)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.NetworkManager.sendPacket(NetworkManager.java:428)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:382)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:368)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at com.destroystokyo.paper.network.StandardPaperServerListPingEventImpl.processRequest(StandardPaperServerListPingEventImpl.java:113)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.server.network.PacketStatusListener.a(PacketStatusListener.java:156)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.protocol.status.PacketStatusInStart.a(PacketStatusInStart.java:19)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.protocol.status.PacketStatusInStart.a(PacketStatusInStart.java:8)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:314)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:298)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.NetworkManager.channelRead0(NetworkManager.java:53)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:99)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.InboundPacketInterceptor.channelRead(InboundPacketInterceptor.java:28)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:346)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:318)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:346)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:318)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.server.network.LegacyPingHandler.channelRead(LegacyPingHandler.java:122)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.handler.timeout.IdleStateHandler.channelRead(IdleStateHandler.java:286)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.handler.flush.FlushConsolidationHandler.channelRead(FlushConsolidationHandler.java:152)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1410)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:919)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:800)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:499)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:397)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
[12:09:11] [Netty Epoll Server IO #1/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[12:09:11] [Netty Epoll Server IO #1/WARN]: [SuperVanish] Please include this information
[12:09:11] [Netty Epoll Server IO #1/WARN]: [SuperVanish] if you report the issue.
[12:09:11] [User Authenticator #1/INFO]: UUID of player HiMyNameIsBoxxy is 2968982a-58c3-4950-aed6-8a52410b9b1d
[12:09:11] [User Authenticator #0/INFO]: UUID of player Mysit3 is e94bd109-217d-4444-ad9c-a9a5afa9b0d1
[12:09:11] [Thread-91/INFO]: --------------------
[12:09:11] [Thread-91/INFO]: [CoreProtect] Version 21.3 is now available.
[12:09:11] [Thread-91/INFO]: [CoreProtect] Download: www.coreprotect.net/download/
[12:09:11] [Thread-91/INFO]: --------------------
[12:09:11] [Craft Scheduler Thread - 25 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Checking for server resource pack...
[12:09:11] [Craft Scheduler Thread - 25 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] No server resource pack found
[12:09:11] [Craft Scheduler Thread - 25 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Reloading ResourceManager: Default
[12:09:12] [Craft Scheduler Thread - 25 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Registered ModManager "Optifine" of class "com.loohp.interactivechatdiscordsrvaddon.resources.mods.optifine.OptifineManager"
[12:09:12] [Craft Scheduler Thread - 25 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Registered ModManager "Chime" of class "com.loohp.interactivechatdiscordsrvaddon.resources.mods.chime.ChimeManager"
[12:09:12] [Craft Scheduler Thread - 25 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Loading "Default" resources...
[12:09:13] [Server thread/INFO]: [Quests] 1242 quests have been registered.
[12:09:13] [Server thread/WARN]: [Quests] You have configuration issues preventing some quests from loading.
[12:09:13] [Server thread/WARN]: [Quests] You can view these issues with the command: /q a config.
[12:09:13] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (EssentialsX Economy)
[12:09:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: pw [1.0.0]
[12:09:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: plan [5.4 build 1722]
[12:09:13] [Server thread/INFO]: [QuickShop] Registering bStats metrics...
[12:09:13] [Craft Scheduler Thread - 10 - HeadDatabase/INFO]: [HeadDatabase] Successfully loaded 51779 heads!
[12:09:14] [Craft Scheduler Thread - 10 - HeadDatabase/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[12:09:16] [Server thread/INFO]: [ExcellentCrates] Loaded 8 crates.
[12:09:16] [Server thread/ERROR]: [Citizens] ProtocolLib support not enabled: enable debug to see error
[12:09:18] [Netty Epoll Server IO #3/WARN]: [SuperVanish] Unknown exception occurred!
[12:09:18] [Netty Epoll Server IO #3/WARN]: [SuperVanish] Please report this issue!
[12:09:18] [Netty Epoll Server IO #3/WARN]: [SuperVanish] Message: 
[12:09:18] [Netty Epoll Server IO #3/WARN]: [SuperVanish]   null
[12:09:18] [Netty Epoll Server IO #3/WARN]: [SuperVanish] General information: 
[12:09:18] [Netty Epoll Server IO #3/WARN]: [SuperVanish]   ServerVersion: git-Paper-471 (MC: 1.19.4)
[12:09:18] [Netty Epoll Server IO #3/WARN]: [SuperVanish]   PluginVersion: 6.2.15
[12:09:18] [Netty Epoll Server IO #3/WARN]: [SuperVanish]   ServerPlugins: ViaVersion v4.6.2, LuckPerms v5.4.46, Vault v1.7.3-b131, FastAsyncWorldEdit v2.6.0-SNAPSHOT-392;d82bf05, WorldGuard v7.0.7+216b061, floodgate v2.2.0-SNAPSHOT (b66-5d5713e), PlaceholderAPI v2.11.3, UltraSetHome v1.7.5, ProtocolLib v5.0.0-SNAPSHOT-b621, HeadDatabase v4.17.0, Multiverse-Core v4.3.1-b861, Essentials v2.20.0-dev+45-bf14b88, Citizens v2.0.31-SNAPSHOT (build 2994), DecentHolograms v2.8.1, CoreProtect v21.2, dynmap v3.5-beta-3-866, Towny v0.98.4.0, NBTAPI v2.11.2, SCore v3.9.51, mcMMO v2.1.209, VentureChat v3.5.0, LoneLibs v1.0.21, ExecutableItems v5.9.51, NexEngine v2.2.9 build-16/03/2023, DiscordSRV v1.26.2, ItemsAdder v3.4.1-r2, GamePoints v1.3.5, VotingPlugin v6.9.2, ShopGUIPlus v1.78.0, CMILib v1.2.5.2, Multiverse-CommandDestination v1.2.2, ViaBackwards v4.6.1, InvSeePlusPlus v0.19.6-SNAPSHOT, InteractiveChat v4.2.6.0, LiteBans v2.8.13, Quests v3.13.3-5a28efa, Jobs v5.1.2.2, WorldBorder v1.19, Multiverse-Portals v4.2.1-b834, DreamyMcAddon v1.0, DragonEggDrop v1.9.2, MineableSpawners v3.1.4, CommandCooldown v2.4.4 beta, PlayerVaults v4.2.5, ProCosmetics v13.5, Vehicles v13.8, PlayTime v3.3, CrazyAuctions v1.2.16-RELEASE, ChatColor2 v1.12.3, PvPManager v3.10.9, BungeeTabListPlus v3.4.4, ConsoleSpamFix v1.9.0, ajLeaderboards v2.6.0, InventoryRollbackPlus v1.6.8, SpecializedCrates v3.0.0-Pre4.7, EvenMoreFish v1.6.10, BetterRTP v3.6.2, Dynmap-Towny v0.90, PinataParty v2.59.4, BungeeGuard v1.3-SNAPSHOT, MyCommand v5.7.2, spark v1.9.23, AlonsoTags v2.0.7-BETA-PRO, InvisibleItemFrames v2.6.0, TAB v3.3.1, UltimateAutoRestart vBuild 53, GSit v1.4.1, InvSeePlusPlus_Clear v0.19.6-SNAPSHOT, PlayerWarps v6.20.0, InteractiveChatDiscordSrvAddon v4.2.6.0, InvSeePlusPlus_Give v0.19.6-SNAPSHOT, Plan v5.4 build 1722, ItemEdit v2.19, ExecutableEvents v1.1.51, PlayerKits v2.25.1, Chunky v1.2.164, BuycraftX v12.0.8, GFly v[2.3.0.0], DeluxeMenus v1.13.4-Release, Rankup v3.13.2, Multiverse-NetherPortals v4.2.2-b807, QuickShop v5.1.0.9, MobFarmManager v2.0.3.1, StayPut v1.2.1, LiteBansBridge v1.5, OreAnnouncer v2.8.3, ExcellentCrates v4.1.6, EssentialsSpawn v2.20.0-dev+45-bf14b88, AutomaticBroadcast v1.2.5, PL-Hide v1.5.21,
[12:09:18] [Netty Epoll Server IO #3/WARN]: [SuperVanish] Settings:
[12:09:18] [Netty Epoll Server IO #3/WARN]: [SuperVanish]   MsgsVersion: 6.2.7
[12:09:18] [Netty Epoll Server IO #3/WARN]: [SuperVanish]   Settings: ||InvisibilityFeatures.NightVisionEffect>true||InvisibilityFeatures.DisableDamage>true||InvisibilityFeatures.DisableHunger>true||InvisibilityFeatures.DisableMobTarget>true||InvisibilityFeatures.OpenChestsSilently>true||InvisibilityFeatures.DisablePressurePlates>true||InvisibilityFeatures.DisablePush>false||InvisibilityFeatures.DefaultPickUpItemsOption>false||InvisibilityFeatures.ModifyTablistPackets>true||InvisibilityFeatures.Fly.Enable>true||InvisibilityFeatures.Fly.DisableOnReappear>true||VanishStateFeatures.AutoVanishOnJoin>false||VanishStateFeatures.ReappearOnWorldChange>false||VanishStateFeatures.ReappearOnQuit>false||VanishStateFeatures.CheckPermissionOnWorldChange>false||VanishStateFeatures.CheckPermissionOnQuit>false||VanishStateFeatures.CheckPermissionOnLogin>false||IndicationFeatures.LayeredPermissions.EnableSeePermission>true||IndicationFeatures.LayeredPermissions.LayeredSeeAndUsePermissions>false||IndicationFeatures.LayeredPermissions.MaxLevel>100||IndicationFeatures.MarkVanishedPlayersAsSpectators>true||MessageOptions.FakeJoinQuitMessages.BroadcastFakeQuitOnVanish>false||MessageOptions.FakeJoinQuitMessages.BroadcastFakeJoinOnReappear>false||MessageOptions.FakeJoinQuitMessages.AnnounceVanishReappearToAdmins>true||MessageOptions.FakeJoinQuitMessages.SendMessageOnlyToAdmins>false||MessageOptions.FakeJoinQuitMessages.SendMessageOnlyToUsers>false||MessageOptions.HideRealJoinQuitMessages>true||MessageOptions.ReappearOnQuitHideLeaveMsg>true||MessageOptions.AnnounceRealJoinQuitToAdmins>true||MessageOptions.AnnounceDeathToAdmins>true||MessageOptions.RemindVanishedOnJoin>true||MessageOptions.DisplayActionBar>true||RestrictiveOptions.PreventBlockBreaking>false||RestrictiveOptions.PreventBlockPlacing>false||RestrictiveOptions.PreventHittingEntities>false||ExternalInvisibility.ServerList.AdjustAmountOfOnlinePlayers>true||ExternalInvisibility.ServerList.AdjustListOfLoggedInPlayers>true||HookOptions.EnableEssentialsHook>true||HookOptions.EnableDynmapHook>true||HookOptions.DynmapSendJoinLeaveMessages>true||HookOptions.EnableTrailGUIHook>true||HookOptions.EnablePlaceholderAPIHook>true||HookOptions.EnableMVdWPlaceholderAPIHook>true||HookOptions.EnableCitizensHook>true||CompatibilityOptions.PlayerJoinEventPriority>HIGH||CompatibilityOptions.PlayerQuitEventPriority>HIGH||MiscellaneousOptions.UpdateChecker.Enable>true||MiscellaneousOptions.UpdateChecker.NotifyAdmins>true||ConfigVersion>6.2.7||
[12:09:18] [Netty Epoll Server IO #3/WARN]: [SuperVanish] StackTrace: 
[12:09:18] [Netty Epoll Server IO #3/WARN]: java.lang.NullPointerException
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at com.google.common.base.Preconditions.checkNotNull(Preconditions.java:889)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at com.google.common.collect.ImmutableList.copyOf(ImmutableList.java:236)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedServerPing.getPlayers(WrappedServerPing.java:275)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at SuperVanish.jar//de.myzelyam.supervanish.visibility.ServerListPacketListener.onPacketSending(ServerListPacketListener.java:67)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokeSendingListener(SortedPacketListenerList.java:208)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokeUnpackedPacketSending(SortedPacketListenerList.java:193)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokePacketSending(SortedPacketListenerList.java:149)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokePacketSending(SortedPacketListenerList.java:139)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.PacketFilterManager.postPacketToListeners(PacketFilterManager.java:551)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.PacketFilterManager.invokePacketSending(PacketFilterManager.java:525)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.manager.NetworkManagerInjector.onPacketSending(NetworkManagerInjector.java:100)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelInjector.processOutbound(NettyChannelInjector.java:566)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelProxy.processPacketOutbound(NettyChannelProxy.java:266)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelProxy.writeAndFlush(NettyChannelProxy.java:223)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelProxy.writeAndFlush(NettyChannelProxy.java:233)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at net.minecraft.network.NetworkManager.doSendPacket(NetworkManager.java:466)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at net.minecraft.network.NetworkManager.sendPacket(NetworkManager.java:428)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:382)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:368)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at com.destroystokyo.paper.network.StandardPaperServerListPingEventImpl.processRequest(StandardPaperServerListPingEventImpl.java:113)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at net.minecraft.server.network.PacketStatusListener.a(PacketStatusListener.java:156)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at net.minecraft.network.protocol.status.PacketStatusInStart.a(PacketStatusInStart.java:19)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at net.minecraft.network.protocol.status.PacketStatusInStart.a(PacketStatusInStart.java:8)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:314)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:298)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at net.minecraft.network.NetworkManager.channelRead0(NetworkManager.java:53)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:99)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.InboundPacketInterceptor.channelRead(InboundPacketInterceptor.java:28)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:346)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:318)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:346)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:318)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at net.minecraft.server.network.LegacyPingHandler.channelRead(LegacyPingHandler.java:122)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.handler.timeout.IdleStateHandler.channelRead(IdleStateHandler.java:286)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.handler.flush.FlushConsolidationHandler.channelRead(FlushConsolidationHandler.java:152)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1410)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:919)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:800)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:499)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:397)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
[12:09:18] [Netty Epoll Server IO #3/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[12:09:18] [Netty Epoll Server IO #3/WARN]: [SuperVanish] Please include this information
[12:09:18] [Netty Epoll Server IO #3/WARN]: [SuperVanish] if you report the issue.
[12:09:18] [Server thread/INFO]: [Citizens] Loaded 29 NPCs.
[12:09:18] [Server thread/INFO]: [QuickShop] Using economy system: EssentialsX Economy
[12:09:18] [Server thread/INFO]: [UltraSetHome] You are using the latest version of UltraSetHome.
[12:09:18] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded all resources!
[12:09:18] [Server thread/INFO]: Done (184.196s)! For help, type "help"
[12:09:18] [Server thread/INFO]: Stopping server
[12:09:18] [Server thread/INFO]: [PL-Hide] Disabling PL-Hide v1.5.21
[12:09:18] [Server thread/INFO]: [AutomaticBroadcast] Disabling AutomaticBroadcast v1.2.5
[12:09:18] [Server thread/INFO]: [EssentialsSpawn] Disabling EssentialsSpawn v2.20.0-dev+45-bf14b88
[12:09:18] [Server thread/INFO]: [ExcellentCrates] Disabling ExcellentCrates v4.1.6
[12:09:19] [Craft Scheduler Thread - 40 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[12:09:19] [Server thread/INFO]: [ExcellentCrates] [Citizens Hook] Unregistered listeners
[12:09:19] [Server thread/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[12:09:19] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Shutdown initiated...
[12:09:19] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Shutdown completed.
[12:09:19] [Server thread/INFO]: [OreAnnouncer] Disabling OreAnnouncer v2.8.3
[12:09:19] [Server thread/INFO]: [OreAnnouncer] Disabling OreAnnouncer
[12:09:19] [Server thread/INFO]: [OreAnnouncer] OreAnnouncer disabled
[12:09:19] [Server thread/INFO]: [LiteBansBridge] Disabling LiteBansBridge v1.5
[12:09:19] [Server thread/INFO]: [DiscordSRV] API listener be.woutzah.litebansbridge.listeners.DiscordListener subscribed (1 methods)
[12:09:19] [Server thread/INFO]: [StayPut] Disabling StayPut v1.2.1
[12:09:19] [Server thread/INFO]: [MobFarmManager] Disabling MobFarmManager v2.0.3.1
[12:09:19] [Server thread/INFO]: [QuickShop] Disabling QuickShop v5.1.0.9
[12:09:19] [Server thread/INFO]: [QuickShop] QuickShop is finishing remaining work, this may need a while...
[12:09:19] [Server thread/INFO]: [QuickShop] Please wait for the data to flush its data...
[12:09:19] [Server thread/INFO]: [Multiverse-NetherPortals] Disabling Multiverse-NetherPortals v4.2.2-b807
[12:09:19] [Server thread/INFO]: [Multiverse-NetherPortals] - Disabled
[12:09:19] [Server thread/INFO]: [Rankup] Disabling Rankup v3.13.2
[12:09:19] [Server thread/INFO]: [DeluxeMenus] Disabling DeluxeMenus v1.13.4-Release
[12:09:19] [Server thread/INFO]: [GFly] Disabling GFly v[2.3.0.0]
[12:09:19] [Server thread/INFO]: [GFly] The Plugin was successfully disabled.
[12:09:19] [Server thread/INFO]: [BuycraftX] Disabling BuycraftX v12.0.8
[12:09:19] [Server thread/INFO]: [Chunky] Disabling Chunky v1.2.164
[12:09:19] [Server thread/INFO]: [PlayerKits] Disabling PlayerKits v2.25.1
[12:09:19] [Server thread/INFO]: [PlayerKits] Has been disabled! Version: 2.25.1
[12:09:19] [Server thread/INFO]: [ExecutableEvents] Disabling ExecutableEvents v1.1.51
[12:09:19] [Server thread/INFO]: SCore Save UsagePerDay....
[12:09:19] [Server thread/INFO]: SCore Save UsagePerDay done !
[12:09:19] [Server thread/INFO]: SCore Save Commands...
[12:09:19] [Server thread/INFO]: SCore Save Commands done !
[12:09:19] [Server thread/INFO]: SCore Save Cooldowns...
[12:09:19] [Server thread/INFO]: SCore Save Cooldowns done !
[12:09:19] [Server thread/INFO]: [ItemEdit] Disabling ItemEdit v2.19
[12:09:19] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion itemedit
[12:09:19] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin ItemEdit was disabled.
[12:09:19] [Server thread/INFO]: [Plan] Disabling Plan v5.4 build 1722
[12:09:19] [Server thread/INFO]: [Plan] Processing complete.
[12:09:19] [Server thread/INFO]: [Plan] Waiting for unfinished transactions to avoid data loss..
[12:09:19] [Server thread/INFO]: [Plan] Transaction queue closed.
[12:09:19] [Server thread/INFO]: [Plan] Waiting queries to finish to avoid SQLite crashing JVM..
[12:09:19] [Server thread/INFO]: [Plan] Closed SQLite connection.
[12:09:19] [Server thread/INFO]: [Plan] Webserver has been disabled.
[12:09:19] [Server thread/INFO]: [Plan] Player Analytics Disabled.
[12:09:19] [Server thread/INFO]: [InvSee++_Give] Disabling InvSeePlusPlus_Give v0.19.6-SNAPSHOT
[12:09:19] [Server thread/INFO]: [InteractiveChatDiscordSRVAddon] Disabling InteractiveChatDiscordSrvAddon v4.2.6.0
[12:09:19] [Server thread/INFO]: [ICDiscordSrvAddon] InteractiveChat DiscordSRV Addon has been Disabled!
[12:09:19] [Server thread/INFO]: [PlayerWarps] Disabling PlayerWarps v6.20.0
[12:09:19] [Server thread/INFO]: [InvSee++_Clear] Disabling InvSeePlusPlus_Clear v0.19.6-SNAPSHOT
[12:09:19] [Server thread/INFO]: [GSit] Disabling GSit v1.4.1
[12:09:19] [Server thread/INFO]: [GSit] The Plugin was successfully disabled.
[12:09:19] [Server thread/INFO]: [UltimateAutoRestart] Disabling UltimateAutoRestart vBuild 53
[12:09:19] [Server thread/INFO]: [TAB] Disabling TAB v3.3.1
[12:09:19] [Server thread/INFO]: [TAB] Disabled in 6ms
[12:09:19] [Server thread/INFO]: [InvisibleItemFrames] Disabling InvisibleItemFrames v2.6.0
[12:09:19] [Server thread/INFO]: [InvisibleItemFrames] Done and disabled!
[12:09:19] [Server thread/INFO]: [InvisibleItemFrames] If you liked the plugin, don't forget to give a ★★★★★ rating!
[12:09:19] [Server thread/INFO]: [InvisibleItemFrames] Thank you and have a great day!
[12:09:19] [Server thread/INFO]: [spark] Disabling spark v1.9.23
[12:09:19] [Server thread/INFO]: [MyCommand] Disabling MyCommand v5.7.2
[12:09:19] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.2*-=-=-=-=-=-=-=-=-=-*
[12:09:19] [Server thread/INFO]: | Tasks : Stopped all tasks.
[12:09:19] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*    Bye!   *-=-=-=-=-=-=-=-=-=-=-*
[12:09:19] [Server thread/INFO]: [BungeeGuard] Disabling BungeeGuard v1.3-SNAPSHOT
[12:09:19] [Server thread/INFO]: [PinataParty] Disabling PinataParty v2.59.4
[12:09:19] [Server thread/INFO]: [PinataParty] Removing any current pinatas...
[12:09:19] [Server thread/INFO]: [PinataParty] Unregistering team...
[12:09:19] [Server thread/INFO]: [PinataParty] Saving data...
[12:09:19] [Server thread/INFO]: [PinataParty] Done and disabled in 31.23ms
[12:09:19] [Server thread/INFO]: [PinataParty] If you liked the plugin, don't forget to give a ★★★★★ rating!
[12:09:19] [Server thread/INFO]: [PinataParty] Thank you and have a great day!
[12:09:19] [Server thread/INFO]: [Dynmap-Towny] Disabling Dynmap-Towny v0.90
[12:09:19] [Server thread/INFO]: [BetterRTP] Disabling BetterRTP v3.6.2
[12:09:19] [Server thread/INFO]: [EvenMoreFish] Disabling EvenMoreFish v1.6.10
[12:09:19] [Server thread/INFO]: [EvenMoreFish] EvenMoreFish by Oheers : Disabled
[12:09:19] [Server thread/INFO]: [SpecializedCrates] Disabling SpecializedCrates v3.0.0-Pre4.7
[12:09:19] [Server thread/INFO]: [InventoryRollbackPlus] Disabling InventoryRollbackPlus v1.6.8
[12:09:19] [Server thread/INFO]: [InventoryRollbackPlus] Setting shutdown state
[12:09:19] [Server thread/INFO]: [InventoryRollbackPlus] Saving player inventories...
[12:09:19] [Server thread/INFO]: [InventoryRollbackPlus] Done saving player inventories!
[12:09:19] [Server thread/INFO]: [InventoryRollbackPlus] Plugin is disabled!
[12:09:19] [Server thread/INFO]: [ajLeaderboards] Disabling ajLeaderboards v2.6.0
[12:09:19] [pool-117-thread-1/INFO]: [ajLeaderboards] Shutting down cache method..
[12:09:20] [pool-117-thread-1/INFO]: [ajLeaderboards] Cache method shut down
[12:09:20] [Server thread/INFO]: [ajLeaderboards] Killing remaining workers
[12:09:20] [Server thread/INFO]: [ajLeaderboards] Remaining workers killed
[12:09:20] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.6.0 disabled.
[12:09:20] [Server thread/INFO]: [ConsoleSpamFix] Disabling ConsoleSpamFix v1.9.0
[12:09:20] [Server thread/INFO]: [ConsoleSpamFix] Messages hidden since the server started: 0
[12:09:20] [Server thread/INFO]: [ConsoleSpamFix] ConsoleSpamFix is disabled!
[12:09:20] [Server thread/INFO]: [BungeeTabListPlus] Disabling BungeeTabListPlus v3.4.4
[12:09:20] [Server thread/INFO]: [PvPManager] Disabling PvPManager v3.10.9
[12:09:20] [Server thread/INFO]: [PvPManager] Saving player data to users file
[12:09:20] [Server thread/INFO]: [ChatColor2] Disabling ChatColor2 v1.12.3
[12:09:20] [Server thread/INFO]: [ChatColor] ChatColor 2 Version 1.12.3 has been disabled.
[12:09:20] [Server thread/INFO]: [CrazyAuctions] Disabling CrazyAuctions v1.2.16-RELEASE
[12:09:20] [Server thread/INFO]: [PlayTime] Disabling PlayTime v3.3
[12:09:20] [Server thread/INFO]: [Vehicles] Disabling Vehicles v13.8
[12:09:20] [Server thread/INFO]: [ProCosmetics] Disabling ProCosmetics v13.5
[12:09:20] [Server thread/INFO]: [PlayerVaults] Disabling PlayerVaults v4.2.5
[12:09:20] [Server thread/INFO]: [CommandCooldown] Disabling CommandCooldown v2.4.4 beta
[12:09:20] [Server thread/INFO]: [MineableSpawners] Disabling MineableSpawners v3.1.4
[12:09:20] [Server thread/INFO]: [DragonEggDrop] Disabling DragonEggDrop v1.9.2
[12:09:20] [Server thread/INFO]: [DreamyMcAddon] Disabling DreamyMcAddon v1.0
[12:09:20] [Server thread/INFO]: [DreamyMcAddon] [STDOUT] [DreamyMcAddon] Plugin disabled
[12:09:20] [Server thread/INFO]: [Multiverse-Portals] Disabling Multiverse-Portals v4.2.1-b834
[12:09:20] [Server thread/INFO]: [WorldBorder] Disabling WorldBorder v1.19
[12:09:20] [Server thread/INFO]: [WorldBorder] [CONFIG] Border-checking timed task stopped.
[12:09:20] [Server thread/INFO]: [Jobs] Disabling Jobs v5.1.2.2
[12:09:20] [Server thread/INFO]: ------------- Jobs -------------
[12:09:20] [Jobs-DatabaseSaveTask/INFO]: Database save task shutdown!
[12:09:20] [Jobs-BufferedPaymentThread/INFO]: Buffered payment thread shutdown.
[12:09:20] [Server thread/INFO]: ------------------------------------
[12:09:20] [Server thread/INFO]: [Quests] Disabling Quests v3.13.3-5a28efa
[12:09:20] [Server thread/INFO]: [LiteBans] Disabling LiteBans v2.8.13
[12:09:20] [Server thread/INFO]: [LiteBans] litebans-pool - Shutdown initiated...
[12:09:20] [Server thread/INFO]: [LiteBans] litebans-pool - Shutdown completed.
[12:09:21] [Server thread/INFO]: [LiteBans] v2.8.13 disabled.
[12:09:21] [Server thread/INFO]: [InteractiveChat] Disabling InteractiveChat v4.2.6.0
[12:09:21] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion interactivechat
[12:09:21] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin InteractiveChat was disabled.
[12:09:21] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Disabled!
[12:09:21] [Server thread/INFO]: [InvSee++] Disabling InvSeePlusPlus v0.19.6-SNAPSHOT
[12:09:21] [Server thread/INFO]: [ViaBackwards] Disabling ViaBackwards v4.6.1
[12:09:21] [Server thread/INFO]: [Multiverse-CommandDestination] Disabling Multiverse-CommandDestination v1.2.2
[12:09:21] [Server thread/INFO]: [CMILib] Disabling CMILib v1.2.5.2
[12:09:21] [Server thread/INFO]: [ShopGUIPlus] Disabling ShopGUIPlus v1.78.0
[12:09:21] [Server thread/INFO]: [VotingPlugin] Disabling VotingPlugin v6.9.2
[12:09:21] [Server thread/INFO]: [GamePoints] Disabling GamePoints v1.3.5
[12:09:21] [Server thread/INFO]: [GamePoints] Auto-save: Saved 0 online users | 0 offline users.
[12:09:21] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Shutdown initiated...
[12:09:21] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Shutdown completed.
[12:09:21] [Server thread/INFO]: [DiscordSRV] Disabling DiscordSRV v1.26.2
[12:09:21] [DiscordSRV - Shutdown/INFO]: [DiscordSRV] Saved linked accounts in 4ms
[12:09:22] [DiscordSRV - Shutdown/INFO]: [DiscordSRV] Shutdown completed in 684ms
[12:09:22] [Server thread/INFO]: [NexEngine] Disabling NexEngine v2.2.9 build-16/03/2023
[12:09:22] [Server thread/INFO]: [ExecutableItems] Disabling ExecutableItems v5.9.51
[12:09:22] [Server thread/INFO]: [LoneLibs] Disabling LoneLibs v1.0.21
[12:09:22] [Server thread/INFO]: [VentureChat] Disabling VentureChat v3.5.0
[12:09:22] [Server thread/INFO]: [VentureChat] - Disabling...
[12:09:22] [Server thread/INFO]: [VentureChat] - Disabled Successfully
[12:09:22] [Server thread/INFO]: [mcMMO] Disabling mcMMO v2.1.209
[12:09:22] [Server thread/INFO]: [mcMMO] Server shutdown has been executed, saving and cleaning up data...
[12:09:22] [Server thread/INFO]: [SuperVanish] Disabling SuperVanish v6.2.15
[12:09:22] [Server thread/INFO]: [NBTAPI] Disabling NBTAPI v2.11.2
[12:09:22] [Server thread/INFO]: [Towny] Disabling Towny v0.98.4.0
[12:09:22] [Server thread/INFO]: ==============================================================
[12:09:22] [Server thread/INFO]: [Towny] Finishing File IO Tasks...
[12:09:22] [Server thread/INFO]: [Towny] Version: 0.98.4.0 - Plugin Disabled
[12:09:22] [Server thread/INFO]: =============================================================
[12:09:22] [Server thread/INFO]: [dynmap] Disabling dynmap v3.5-beta-3-866
[12:09:22] [Server thread/INFO]: [dynmap] Unloaded 11 components.
[12:09:22] [Server thread/INFO]: [dynmap] Stopping map renderer...
[12:09:23] [Server thread/INFO]: [dynmap] Disabled
[12:09:23] [Server thread/INFO]: [CoreProtect] Disabling CoreProtect v21.2
[12:09:23] [Server thread/INFO]: [CoreProtect] Finishing up data logging. Please wait...
[12:09:27] [Server thread/INFO]: [CoreProtect] Success! Disabled CoreProtect v21.2
[12:09:27] [Server thread/INFO]: [DecentHolograms] Disabling DecentHolograms v2.8.1
[12:09:27] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.31-SNAPSHOT (build 2994)
[12:09:27] [Server thread/INFO]: [Essentials] Disabling Essentials v2.20.0-dev+45-bf14b88
[12:09:27] [Server thread/INFO]: [Vault] [Economy] Essentials Economy unhooked.
[12:09:27] [Server thread/INFO]: [Multiverse-Core] Disabling Multiverse-Core v4.3.1-b861
[12:09:27] [Server thread/INFO]: [HeadDatabase] Disabling HeadDatabase v4.17.0
[12:09:27] [Server thread/INFO]: [ProtocolLib] Disabling ProtocolLib v5.0.0-SNAPSHOT-b621
[12:09:27] [Server thread/INFO]: [UltraSetHome] Disabling UltraSetHome v1.7.5
[12:09:27] [Server thread/INFO]: [PlaceholderAPI] Disabling PlaceholderAPI v2.11.3
[12:09:27] [Server thread/INFO]: [floodgate] Disabling floodgate v2.2.0-SNAPSHOT (b66-5d5713e)
[12:09:27] [Server thread/INFO]: [WorldGuard] Disabling WorldGuard v7.0.7+216b061
[12:09:27] [Server thread/INFO]: [WorldGuard] Shutting down executor and cancelling any pending tasks...
[12:09:27] [Server thread/INFO]: [FastAsyncWorldEdit] Disabling FastAsyncWorldEdit v2.6.0-SNAPSHOT-392;d82bf05
[12:09:27] [Server thread/INFO]: Unregistering com.sk89q.worldedit.bukkit.BukkitServerInterface from WorldEdit
[12:09:27] [Server thread/INFO]: [Vault] Disabling Vault v1.7.3-b131
[12:09:27] [Server thread/INFO]: [LuckPerms] Disabling LuckPerms v5.4.46
[12:09:27] [Server thread/INFO]: [LuckPerms] Starting shutdown process...
[12:09:27] [Server thread/INFO]: [LuckPerms] Closing storage...
[12:09:27] [Craft Scheduler Thread - 17 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[12:09:27] [Server thread/INFO]: [LuckPerms] Goodbye!
[12:09:27] [Server thread/INFO]: [ViaVersion] Disabling ViaVersion v4.6.2
[12:09:27] [Server thread/INFO]: [ViaVersion] ViaVersion is disabling, if this is a reload and you experience issues consider rebooting.
[12:09:27] [Server thread/INFO]: Saving players
[12:09:27] [Server thread/INFO]: Saving worlds
[12:09:27] [Server thread/INFO]: Saving chunks for level 'ServerLevel[survival]'/minecraft:overworld
[12:09:27] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'survival'
[12:09:27] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'survival'
[12:09:27] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'survival'
[12:09:28] [Server thread/INFO]: [ChunkHolderManager] Saved 207 block chunks, 207 entity chunks, 0 poi chunks in world 'survival' in 0.51s
[12:09:28] [Server thread/INFO]: ThreadedAnvilChunkStorage (survival): All chunks are saved
[12:09:28] [Server thread/INFO]: Saving chunks for level 'ServerLevel[survival_nether]'/minecraft:the_nether
[12:09:28] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'survival_nether'
[12:09:28] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'survival_nether'
[12:09:28] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'survival_nether'
[12:09:28] [Server thread/INFO]: [ChunkHolderManager] Saved 107 block chunks, 107 entity chunks, 0 poi chunks in world 'survival_nether' in 0.22s
[12:09:29] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[12:09:29] [Server thread/INFO]: Saving chunks for level 'ServerLevel[survival_the_end]'/minecraft:the_end
[12:09:29] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'survival_the_end'
[12:09:29] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'survival_the_end'
[12:09:29] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'survival_the_end'
[12:09:29] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'survival_the_end' in 0.18s
[12:09:29] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[12:09:29] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:world
[12:09:29] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world'
[12:09:29] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world'
[12:09:29] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world'
[12:09:29] [Server thread/INFO]: [ChunkHolderManager] Saved 135 block chunks, 135 entity chunks, 0 poi chunks in world 'world' in 0.10s
[12:09:29] [Server thread/INFO]: ThreadedAnvilChunkStorage (world): All chunks are saved
[12:09:29] [Server thread/INFO]: Saving chunks for level 'ServerLevel[Test]'/minecraft:test
[12:09:29] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'Test'
[12:09:29] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'Test'
[12:09:29] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'Test'
[12:09:29] [Server thread/INFO]: [ChunkHolderManager] Saved 83 block chunks, 84 entity chunks, 0 poi chunks in world 'Test' in 0.04s
[12:09:29] [Server thread/INFO]: ThreadedAnvilChunkStorage (Test): All chunks are saved
[12:09:29] [Server thread/INFO]: Saving chunks for level 'ServerLevel[resourceworld]'/minecraft:resourceworld
[12:09:29] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'resourceworld'
[12:09:29] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'resourceworld'
[12:09:29] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'resourceworld'
[12:09:29] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 0 entity chunks, 0 poi chunks in world 'resourceworld' in 0.00s
[12:09:29] [Server thread/INFO]: ThreadedAnvilChunkStorage (resourceworld): All chunks are saved
[12:09:29] [Server thread/INFO]: Saving chunks for level 'ServerLevel[Pvp]'/minecraft:pvp
[12:09:29] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'Pvp'
[12:09:29] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'Pvp'
[12:09:29] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'Pvp'
[12:09:29] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 0 entity chunks, 0 poi chunks in world 'Pvp' in 0.00s
[12:09:29] [Server thread/INFO]: ThreadedAnvilChunkStorage (Pvp): All chunks are saved
[12:09:29] [Server thread/INFO]: Saving chunks for level 'ServerLevel[events]'/minecraft:events
[12:09:29] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'events'
[12:09:29] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'events'
[12:09:29] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'events'
[12:09:29] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 0 entity chunks, 0 poi chunks in world 'events' in 0.00s
[12:09:29] [Server thread/INFO]: ThreadedAnvilChunkStorage (events): All chunks are saved
[12:09:29] [Server thread/INFO]: ThreadedAnvilChunkStorage: All dimensions are saved
[12:09:29] [Server thread/INFO]: Flushing Chunk IO
[12:09:29] [Server thread/INFO]: Closing Thread Pool
[12:09:29] [Server thread/INFO]: Closing Server