Paste #107880: Unnamed Denizen Script Paste

Date: 2023/03/26 02:15:47 UTC-07:00
Type: Denizen Script

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
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267


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

[11:10:34] [Thread-88/INFO]: [DragonEggDrop] Your version of DragonEggDrop (1.9.2) is up to date!
[11:10:34] [Server thread/INFO]: [UltraSetHome] WorldGuard hooked successfully.
[11:10:34] [Craft Scheduler Thread - 6 - GamePoints/INFO]: [GamePoints] Auto-save: Saved 0 online users | 0 offline users.
[11:10:34] [Craft Scheduler Thread - 30 - GamePoints/INFO]: [GamePoints] Updating balance top...
[11:10:34] [Craft Scheduler Thread - 18 - Vault/INFO]: [Vault] Checking for Updates ... 
[11:10:34] [Craft Scheduler Thread - 16 - PlayTime/INFO]: [PlayTime] Latest version is not installed! - v3.6
[11:10:34] [Craft Scheduler Thread - 30 - GamePoints/INFO]: [GamePoints] Balance top updated in 11 ms!
[11:10:34] [Craft Scheduler Thread - 29 - Plan/INFO]: [Plan] ----------------------------------------
[11:10:34] [Craft Scheduler Thread - 29 - Plan/INFO]: [Plan] New Release (5.5.2272) is available https://github.com/plan-player-analytics/Plan/releases
[11:10:34] [Craft Scheduler Thread - 29 - Plan/INFO]: [Plan] ----------------------------------------
[11:10:34] [Craft Scheduler Thread - 19 - ProCosmetics/INFO]: [ProCosmetics] There is a newer version available for ProCosmetics! You're at 13.5 and the latest release is 13.9.
[11:10:34] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[11:10:34] [Craft Scheduler Thread - 11 - PvPManager/INFO]: [PvPManager] No update found
[11:10:34] [Craft Scheduler Thread - 28 - ItemEdit/INFO]: [ItemEdit] New Update at https://spigotmc.org/resources/40993
[11:10:34] [Craft Scheduler Thread - 18 - Vault/INFO]: [Vault] No new version available
[11:10:34] [Craft Scheduler Thread - 17 - DecentHolograms/INFO]: [DecentHolograms] Loaded 58 holograms!
[11:10:34] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[11:10:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: discordsrv [1.26.2]
[11:10:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: quests [3.13.3-5a28efa]
[11:10:34] [Netty Epoll Server IO #1/WARN]: [SuperVanish] Unknown exception occurred!
[11:10:34] [Netty Epoll Server IO #0/WARN]: [SuperVanish] Unknown exception occurred!
[11:10:34] [Netty Epoll Server IO #0/WARN]: [SuperVanish] Please report this issue!
[11:10:34] [Netty Epoll Server IO #1/WARN]: [SuperVanish] Please report this issue!
[11:10:34] [Netty Epoll Server IO #1/WARN]: [SuperVanish] Message: 
[11:10:34] [Netty Epoll Server IO #0/WARN]: [SuperVanish] Message: 
[11:10:34] [Netty Epoll Server IO #1/WARN]: [SuperVanish]   null
[11:10:34] [Netty Epoll Server IO #0/WARN]: [SuperVanish]   null
[11:10:34] [Netty Epoll Server IO #0/WARN]: [SuperVanish] General information: 
[11:10:34] [Netty Epoll Server IO #1/WARN]: [SuperVanish] General information: 
[11:10:34] [Netty Epoll Server IO #0/WARN]: [SuperVanish]   ServerVersion: git-Paper-471 (MC: 1.19.4)
[11:10:34] [Netty Epoll Server IO #0/WARN]: [SuperVanish]   PluginVersion: 6.2.10
[11:10:34] [Netty Epoll Server IO #0/WARN]: [SuperVanish]   ServerPlugins: ViaVersion v4.6.1, 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), UltraSetHome v1.7.5, ProtocolLib v5.0.0-SNAPSHOT-b621, PlaceholderAPI v2.11.3, Multiverse-Core v4.3.1-b861, Essentials v2.20.0-dev+45-bf14b88, Citizens v2.0.31-SNAPSHOT (build 2979), dynmap v3.5-beta-3-866, Towny v0.98.4.0, HeadDatabase v4.17.0, mcMMO v2.1.209, VentureChat v3.5.0, DecentHolograms v2.8.1, CoreProtect v21.2, NexEngine v2.2.9 build-16/03/2023, DiscordSRV v1.26.2, NBTAPI v2.11.2, SCore v3.9.51, GamePoints v1.3.5, VotingPlugin v6.9.2, ExecutableItems v5.9.51, 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, LoneLibs v1.0.21, 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,
[11:10:34] [Netty Epoll Server IO #1/WARN]: [SuperVanish]   ServerVersion: git-Paper-471 (MC: 1.19.4)
[11:10:34] [Netty Epoll Server IO #1/WARN]: [SuperVanish]   PluginVersion: 6.2.10
[11:10:34] [Netty Epoll Server IO #0/WARN]: [SuperVanish] Settings:
[11:10:34] [Netty Epoll Server IO #1/WARN]: [SuperVanish]   ServerPlugins: ViaVersion v4.6.1, 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), UltraSetHome v1.7.5, ProtocolLib v5.0.0-SNAPSHOT-b621, PlaceholderAPI v2.11.3, Multiverse-Core v4.3.1-b861, Essentials v2.20.0-dev+45-bf14b88, Citizens v2.0.31-SNAPSHOT (build 2979), dynmap v3.5-beta-3-866, Towny v0.98.4.0, HeadDatabase v4.17.0, mcMMO v2.1.209, VentureChat v3.5.0, DecentHolograms v2.8.1, CoreProtect v21.2, NexEngine v2.2.9 build-16/03/2023, DiscordSRV v1.26.2, NBTAPI v2.11.2, SCore v3.9.51, GamePoints v1.3.5, VotingPlugin v6.9.2, ExecutableItems v5.9.51, 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, LoneLibs v1.0.21, 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,
[11:10:34] [Netty Epoll Server IO #0/WARN]: [SuperVanish]   MsgsVersion: 6.2.7
[11:10:34] [Netty Epoll Server IO #1/WARN]: [SuperVanish] Settings:
[11:10:34] [Netty Epoll Server IO #1/WARN]: [SuperVanish]   MsgsVersion: 6.2.7
[11:10:34] [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||
[11:10:34] [Netty Epoll Server IO #0/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||
[11:10:34] [Netty Epoll Server IO #0/WARN]: [SuperVanish] StackTrace: 
[11:10:34] [Netty Epoll Server IO #1/WARN]: [SuperVanish] StackTrace: 
[11:10:34] [Netty Epoll Server IO #0/WARN]: java.lang.NullPointerException
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at com.google.common.base.Preconditions.checkNotNull(Preconditions.java:889)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at com.google.common.collect.ImmutableList.copyOf(ImmutableList.java:236)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedServerPing.getPlayers(WrappedServerPing.java:275)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at SuperVanish-6.2.10.jar//de.myzelyam.supervanish.visibility.ServerListPacketListener.onPacketSending(ServerListPacketListener.java:67)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokeSendingListener(SortedPacketListenerList.java:208)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokeUnpackedPacketSending(SortedPacketListenerList.java:193)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokePacketSending(SortedPacketListenerList.java:149)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokePacketSending(SortedPacketListenerList.java:139)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.PacketFilterManager.postPacketToListeners(PacketFilterManager.java:551)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.PacketFilterManager.invokePacketSending(PacketFilterManager.java:525)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.manager.NetworkManagerInjector.onPacketSending(NetworkManagerInjector.java:100)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelInjector.processOutbound(NettyChannelInjector.java:566)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelProxy.processPacketOutbound(NettyChannelProxy.java:266)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelProxy.writeAndFlush(NettyChannelProxy.java:223)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelProxy.writeAndFlush(NettyChannelProxy.java:233)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at net.minecraft.network.NetworkManager.doSendPacket(NetworkManager.java:466)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at net.minecraft.network.NetworkManager.sendPacket(NetworkManager.java:428)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:382)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:368)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at com.destroystokyo.paper.network.StandardPaperServerListPingEventImpl.processRequest(StandardPaperServerListPingEventImpl.java:113)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at net.minecraft.server.network.PacketStatusListener.a(PacketStatusListener.java:156)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at net.minecraft.network.protocol.status.PacketStatusInStart.a(PacketStatusInStart.java:19)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at net.minecraft.network.protocol.status.PacketStatusInStart.a(PacketStatusInStart.java:8)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:314)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:298)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at net.minecraft.network.NetworkManager.channelRead0(NetworkManager.java:53)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:99)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.InboundPacketInterceptor.channelRead(InboundPacketInterceptor.java:28)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:346)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:318)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:346)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:318)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at net.minecraft.server.network.LegacyPingHandler.channelRead(LegacyPingHandler.java:122)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.handler.timeout.IdleStateHandler.channelRead(IdleStateHandler.java:286)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.handler.flush.FlushConsolidationHandler.channelRead(FlushConsolidationHandler.java:152)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1410)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:919)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:800)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:499)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:397)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
[11:10:34] [Netty Epoll Server IO #0/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[11:10:34] [Netty Epoll Server IO #0/WARN]: [SuperVanish] Please include this information
[11:10:34] [Netty Epoll Server IO #0/WARN]: [SuperVanish] if you report the issue.
[11:10:34] [Netty Epoll Server IO #1/WARN]: java.lang.NullPointerException
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at com.google.common.base.Preconditions.checkNotNull(Preconditions.java:889)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at com.google.common.collect.ImmutableList.copyOf(ImmutableList.java:236)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedServerPing.getPlayers(WrappedServerPing.java:275)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at SuperVanish-6.2.10.jar//de.myzelyam.supervanish.visibility.ServerListPacketListener.onPacketSending(ServerListPacketListener.java:67)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokeSendingListener(SortedPacketListenerList.java:208)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokeUnpackedPacketSending(SortedPacketListenerList.java:193)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokePacketSending(SortedPacketListenerList.java:149)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokePacketSending(SortedPacketListenerList.java:139)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.PacketFilterManager.postPacketToListeners(PacketFilterManager.java:551)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.PacketFilterManager.invokePacketSending(PacketFilterManager.java:525)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.manager.NetworkManagerInjector.onPacketSending(NetworkManagerInjector.java:100)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelInjector.processOutbound(NettyChannelInjector.java:566)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelProxy.processPacketOutbound(NettyChannelProxy.java:266)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelProxy.writeAndFlush(NettyChannelProxy.java:223)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelProxy.writeAndFlush(NettyChannelProxy.java:233)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.NetworkManager.doSendPacket(NetworkManager.java:466)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.NetworkManager.sendPacket(NetworkManager.java:428)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:382)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:368)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at com.destroystokyo.paper.network.StandardPaperServerListPingEventImpl.processRequest(StandardPaperServerListPingEventImpl.java:113)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.server.network.PacketStatusListener.a(PacketStatusListener.java:156)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.protocol.status.PacketStatusInStart.a(PacketStatusInStart.java:19)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.protocol.status.PacketStatusInStart.a(PacketStatusInStart.java:8)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:314)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:298)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.NetworkManager.channelRead0(NetworkManager.java:53)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:99)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.InboundPacketInterceptor.channelRead(InboundPacketInterceptor.java:28)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:346)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:318)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:346)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:318)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.server.network.LegacyPingHandler.channelRead(LegacyPingHandler.java:122)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.handler.timeout.IdleStateHandler.channelRead(IdleStateHandler.java:286)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.handler.flush.FlushConsolidationHandler.channelRead(FlushConsolidationHandler.java:152)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1410)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:919)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:800)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:499)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:397)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
[11:10:34] [Netty Epoll Server IO #1/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[11:10:34] [Netty Epoll Server IO #1/WARN]: [SuperVanish] Please include this information
[11:10:34] [Netty Epoll Server IO #1/WARN]: [SuperVanish] if you report the issue.
[11:10:34] [Craft Scheduler Thread - 13 - InteractiveChatDiscordSrvAddon/WARN]: java.lang.RuntimeException: Unable to fetch assets from "api.loohpjames.com". This could be an internet issue or "api.loohpjames.com" is down. If the plugin functions correctly after this, this error can be ignored.
[11:10:34] [Craft Scheduler Thread - 13 - InteractiveChatDiscordSrvAddon/WARN]:     at InteractiveChatDiscordSrvAddon-4.2.6.0.jar//com.loohp.interactivechatdiscordsrvaddon.resources.ResourceDownloadManager.ensureData(ResourceDownloadManager.java:92)
[11:10:34] [Craft Scheduler Thread - 13 - InteractiveChatDiscordSrvAddon/WARN]:     at InteractiveChatDiscordSrvAddon-4.2.6.0.jar//com.loohp.interactivechatdiscordsrvaddon.resources.ResourceDownloadManager.getHash(ResourceDownloadManager.java:100)
[11:10:34] [Craft Scheduler Thread - 13 - InteractiveChatDiscordSrvAddon/WARN]:     at InteractiveChatDiscordSrvAddon-4.2.6.0.jar//com.loohp.interactivechatdiscordsrvaddon.AssetsDownloader.loadAssets(AssetsDownloader.java:95)
[11:10:34] [Craft Scheduler Thread - 13 - InteractiveChatDiscordSrvAddon/WARN]:     at InteractiveChatDiscordSrvAddon-4.2.6.0.jar//com.loohp.interactivechatdiscordsrvaddon.InteractiveChatDiscordSrvAddon.lambda$reloadTextures$17(InteractiveChatDiscordSrvAddon.java:651)
[11:10:34] [Craft Scheduler Thread - 13 - InteractiveChatDiscordSrvAddon/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[11:10:34] [Craft Scheduler Thread - 13 - InteractiveChatDiscordSrvAddon/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[11:10:34] [Craft Scheduler Thread - 13 - InteractiveChatDiscordSrvAddon/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[11:10:34] [Craft Scheduler Thread - 13 - InteractiveChatDiscordSrvAddon/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
[11:10:34] [Craft Scheduler Thread - 13 - InteractiveChatDiscordSrvAddon/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
[11:10:34] [Craft Scheduler Thread - 13 - InteractiveChatDiscordSrvAddon/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[11:10:34] [Craft Scheduler Thread - 13 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Checking for server resource pack...
[11:10:34] [Craft Scheduler Thread - 12 - Towny/INFO]: [Towny] New update available: 0.98.6.23 | Current version: 0.98.4.0
[11:10:34] [Craft Scheduler Thread - 12 - Towny/INFO]: [Towny] Download it here: https://github.com/TownyAdvanced/Towny/releases/tag/0.98.6.23
[11:10:34] [Server thread/INFO]: [Quests] 35 task types have been registered.
[11:10:34] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[11:10:34] [Craft Scheduler Thread - 13 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] No server resource pack found
[11:10:34] [Craft Scheduler Thread - 13 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Reloading ResourceManager: Default
[11:10:34] [User Authenticator #1/INFO]: UUID of player HiMyNameIsBoxxy is 2968982a-58c3-4950-aed6-8a52410b9b1d
[11:10:34] [User Authenticator #0/INFO]: UUID of player Mysit3 is e94bd109-217d-4444-ad9c-a9a5afa9b0d1
[11:10:35] [Thread-91/INFO]: --------------------
[11:10:35] [Thread-91/INFO]: [CoreProtect] Version 21.3 is now available.
[11:10:35] [Thread-91/INFO]: [CoreProtect] Download: www.coreprotect.net/download/
[11:10:35] [Thread-91/INFO]: --------------------
[11:10:36] [Craft Scheduler Thread - 13 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Registered ModManager "Optifine" of class "com.loohp.interactivechatdiscordsrvaddon.resources.mods.optifine.OptifineManager"
[11:10:36] [Craft Scheduler Thread - 13 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Registered ModManager "Chime" of class "com.loohp.interactivechatdiscordsrvaddon.resources.mods.chime.ChimeManager"
[11:10:36] [Craft Scheduler Thread - 13 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Loading "Default" resources...
[11:10:36] [Server thread/INFO]: [Quests] 1242 quests have been registered.
[11:10:36] [Server thread/WARN]: [Quests] You have configuration issues preventing some quests from loading.
[11:10:36] [Server thread/WARN]: [Quests] You can view these issues with the command: /q a config.
[11:10:36] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (EssentialsX Economy)
[11:10:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: pw [1.0.0]
[11:10:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: plan [5.4 build 1722]
[11:10:37] [Server thread/INFO]: [QuickShop] Registering bStats metrics...
[11:10:37] [Server thread/INFO]: [QuickShop] Using economy system: EssentialsX Economy
[11:10:37] [Server thread/INFO]: [UltraSetHome] You are using the latest version of UltraSetHome.
[11:10:37] [Server thread/WARN]: [ViaVersion] There is a newer plugin version available: 4.6.2, you're on: 4.6.1
[11:10:37] [Server thread/INFO]: [SuperVanish] Your current version of SuperVanish is outdated - New version: '6.2.15'; Currently: '6.2.10'
[11:10:37] [Server thread/INFO]: Done (118.874s)! For help, type "help"
[11:10:37] [Server thread/INFO]: Timings Reset
[11:10:37] [Server thread/INFO]: com.mojang.authlib.GameProfile@2dc75fad[id=2968982a-58c3-4950-aed6-8a52410b9b1d,name=HiMyNameIsBoxxy,properties={textures=[com.mojang.authlib.properties.Property@43448b66]},legacy=false] (/24.188.104.82:43606) lost connection: Disconnected
[11:10:37] [Server thread/INFO]: com.mojang.authlib.GameProfile@465926bb[id=e94bd109-217d-4444-ad9c-a9a5afa9b0d1,name=Mysit3,properties={textures=[com.mojang.authlib.properties.Property@4cb3c4a8]},legacy=false] (/78.78.14.204:43642) lost connection: Disconnected
[11:10:37] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[11:10:37] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[11:10:37] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Successfully registered 9 slash commands (0 conflicted) for 1 plugins in 1/1 guilds (0 cancelled)
[11:10:38] [Craft Scheduler Thread - 7 - HeadDatabase/INFO]: [HeadDatabase] Successfully loaded 51779 heads!
[11:10:38] [Craft Scheduler Thread - 12 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin has an update available! Your Version: 6.9.2 New Version: 6.11.3
[11:10:38] [Craft Scheduler Thread - 7 - HeadDatabase/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[11:10:39] [Craft Scheduler Thread - 22 - 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
[11:10:39] [Craft Scheduler Thread - 5 - 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
[11:10:39] [Craft Scheduler Thread - 32 - 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
[11:10:39] [Server thread/INFO]: [ShopGUIPlus] ================================[ ShopGUI+ 1.78.0 ]================================
[11:10:39] [Server thread/INFO]: [ShopGUIPlus]  
[11:10:39] [Server thread/INFO]: [ShopGUIPlus] Vault economy registered.
[11:10:39] [Server thread/INFO]: [ShopGUIPlus] Exp economy registered.
[11:10:39] [Server thread/INFO]: [ShopGUIPlus] Vault economy enabled.
[11:10:39] [Server thread/INFO]: [ShopGUIPlus] Exp economy enabled.
[11:10:39] [Server thread/INFO]: [ShopGUIPlus] Using Vault as default economy provider.
[11:10:39] [Server thread/INFO]: [ShopGUIPlus] Permissions support enabled.
[11:10:39] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for HeadDatabase.
[11:10:39] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for ExecutableItems.
[11:10:39] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for ServerItem.
[11:10:39] [Server thread/WARN]: [ShopGUIPlus] Found MineableSpawners but not hooked into it. You need to download an additional addon: https://brcdev.net/go/mineablespawners-bridge
[11:10:39] [Server thread/INFO]: [ShopGUIPlus] No external spawner plugins registered, using built-in spawners support.
[11:10:39] [Server thread/WARN]: [ShopGUIPlus] Error occurred when loading shopMenuFillItem (config.yml), item not loaded: Invalid or no material name specified
[11:10:39] [Server thread/INFO]: [ShopGUIPlus] Loaded 44 main menu items.
[11:10:39] [Craft Scheduler Thread - 6 - AlonsoTags/INFO]: [AlonsoTags] Checking for updates...
[11:10:39] [Craft Scheduler Thread - 6 - AlonsoTags/INFO]: [AlonsoTags] Plugin up-to-date! You have the latest version!
[11:10:39] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'ores' with 25 items.
[11:10:40] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocks' with 58 items.
[11:10:40] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'enchantbooks' with 60 items.
[11:10:40] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'banners' with 76 items.
[11:10:40] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'brewing' with 21 items.
[11:10:40] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'food' with 19 items.
[11:10:40] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'dyes' with 16 items.
[11:10:41] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R3! Trying to find NMS support
[11:10:41] [Server thread/WARN]: [NBTAPI] [NBTAPI] This Server-Version(v1_19_R3) is not supported by this NBT-API Version(2.10.0) located at shaded.de.tr7zw.changeme.nbtapi.utils.MinecraftVersion. The NBT-API will try to work as good as it can! Some functions may not work!
[11:10:41] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[11:10:41] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'spawners' with 42 items.
[11:10:41] [Thread-97/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package shaded.de.tr7zw.changeme.nbtapi' seems to be outdated!
[11:10:41] [Thread-97/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.10.0' Newest Version: 2.11.2'
[11:10:41] [Thread-97/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)!
[11:10:41] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'armorweapon' with 33 items.
[11:10:41] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'armor' with 24 items.
[11:10:41] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'xp' with 13 items.
[11:10:42] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'redstone' with 21 items.
[11:10:42] [Craft Scheduler Thread - 27 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[11:10:42] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'heads' with 173 items.
[11:10:42] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'slabs' with 35 items.
[11:10:42] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'farmfood' with 79 items.
[11:10:42] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'miscellaneous' with 9 items.
[11:10:42] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'decoration' with 110 items.
[11:10:43] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'stairs' with 31 items.
[11:10:43] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocks12' with 58 items.
[11:10:43] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'mobdrops' with 29 items.
[11:10:43] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocks17' with 31 items.
[11:10:43] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'potions' with 45 items.
[11:10:43] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocks16' with 71 items.
[11:10:43] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'tools' with 25 items.
[11:10:43] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'mobegg' with 42 items.
[11:10:44] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'farming' with 18 items.
[11:10:44] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'drops' with 18 items.
[11:10:44] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'misc' with 25 items.
[11:10:44] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'wood' with 72 items.
[11:10:44] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'abilities' with 5 items.
[11:10:44] [Server thread/INFO]: [ShopGUIPlus] Loaded 30 shops with total of 1284 items.
[11:10:44] [Server thread/INFO]: [ShopGUIPlus] Loaded 0 permission-based price modifiers.
[11:10:44] [Server thread/INFO]: [ShopGUIPlus]  
[11:10:44] [Server thread/INFO]: [ShopGUIPlus] ====================================================================================
[11:10:44] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded all resources!
[11:10:44] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 9640ms or 192 ticks behind
[11:10:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.2]
[11:10:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mcmmo [1.0]
[11:10:44] [Server thread/WARN]: [PlaceholderAPI] Failed to load expansion mcmmo. Identifier is already in use.
[11:10:44] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion mcmmo due to an unknown issue.
[11:10:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mmoplus [1.0.0]
[11:10:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.7.0]
[11:10:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerlist [2.1]
[11:10:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bungee [1.0.1]
[11:10:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: checkitem [2.6.1]
[11:10:44] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion griefprevention due to a missing plugin: GriefPrevention
[11:10:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: changeoutput [1.0.1]
[11:10:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: math [1.4.1]
[11:10:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: multiverse [1.0.1]
[11:10:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: essentials [1.5.1]
[11:10:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mcmmo+ [BETA-1.0]
[11:10:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: luckperms [5.1-R2]
[11:10:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[11:10:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: votingplugin [1.5]
[11:10:44] [Server thread/INFO]: 14 placeholder hook(s) registered! 8 placeholder hook(s) have an update available.
[11:10:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ultimateautorestart [Build 53]
[11:10:50] [Server thread/INFO]: [UltimateAutoRestart] Hooked into PlaceholderAPI!
[11:10:50] [Server thread/INFO]: [UltimateAutoRestart] Successfully performed 1 hooks!
[11:10:52] [Craft Scheduler Thread - 14 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[11:10:53] [Server thread/INFO]: [MyCommand] found an update for MyCommand. Type /mycommand for more infos.
[11:10:58] [Craft Scheduler Thread - 33 - LiteBans/INFO]: [LiteBans] A plugin update is available! Your version: 2.8.13, latest version: 2.11.4
[11:10:58] [Craft Scheduler Thread - 33 - LiteBans/INFO]: [LiteBans] Updates can be downloaded from here:
[11:10:58] [Craft Scheduler Thread - 33 - LiteBans/INFO]: [LiteBans] https://www.spigotmc.org/resources/litebans.3715/
[11:11:18] [Netty Epoll Server IO #1/WARN]: [SuperVanish] Unknown exception occurred!
[11:11:18] [Netty Epoll Server IO #1/WARN]: [SuperVanish] Please report this issue!
[11:11:18] [Netty Epoll Server IO #1/WARN]: [SuperVanish] Message: 
[11:11:18] [Netty Epoll Server IO #1/WARN]: [SuperVanish]   null
[11:11:18] [Netty Epoll Server IO #1/WARN]: [SuperVanish] General information: 
[11:11:18] [Netty Epoll Server IO #1/WARN]: [SuperVanish]   ServerVersion: git-Paper-471 (MC: 1.19.4)
[11:11:18] [Netty Epoll Server IO #1/WARN]: [SuperVanish]   PluginVersion: 6.2.10
[11:11:18] [Netty Epoll Server IO #1/WARN]: [SuperVanish]   ServerPlugins: ViaVersion v4.6.1, 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), UltraSetHome v1.7.5, ProtocolLib v5.0.0-SNAPSHOT-b621, PlaceholderAPI v2.11.3, Multiverse-Core v4.3.1-b861, Essentials v2.20.0-dev+45-bf14b88, Citizens v2.0.31-SNAPSHOT (build 2979), dynmap v3.5-beta-3-866, Towny v0.98.4.0, HeadDatabase v4.17.0, mcMMO v2.1.209, VentureChat v3.5.0, DecentHolograms v2.8.1, CoreProtect v21.2, NexEngine v2.2.9 build-16/03/2023, DiscordSRV v1.26.2, NBTAPI v2.11.2, SCore v3.9.51, GamePoints v1.3.5, VotingPlugin v6.9.2, ExecutableItems v5.9.51, 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, LoneLibs v1.0.21, 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,
[11:11:18] [Netty Epoll Server IO #1/WARN]: [SuperVanish] Settings:
[11:11:18] [Netty Epoll Server IO #1/WARN]: [SuperVanish]   MsgsVersion: 6.2.7
[11:11:18] [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||
[11:11:18] [Netty Epoll Server IO #1/WARN]: [SuperVanish] StackTrace: 
[11:11:18] [Netty Epoll Server IO #1/WARN]: java.lang.NullPointerException
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at com.google.common.base.Preconditions.checkNotNull(Preconditions.java:889)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at com.google.common.collect.ImmutableList.copyOf(ImmutableList.java:236)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedServerPing.getPlayers(WrappedServerPing.java:275)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at SuperVanish-6.2.10.jar//de.myzelyam.supervanish.visibility.ServerListPacketListener.onPacketSending(ServerListPacketListener.java:67)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokeSendingListener(SortedPacketListenerList.java:208)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokeUnpackedPacketSending(SortedPacketListenerList.java:193)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokePacketSending(SortedPacketListenerList.java:149)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokePacketSending(SortedPacketListenerList.java:139)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.PacketFilterManager.postPacketToListeners(PacketFilterManager.java:551)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.PacketFilterManager.invokePacketSending(PacketFilterManager.java:525)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.manager.NetworkManagerInjector.onPacketSending(NetworkManagerInjector.java:100)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelInjector.processOutbound(NettyChannelInjector.java:566)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelProxy.processPacketOutbound(NettyChannelProxy.java:266)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelProxy.writeAndFlush(NettyChannelProxy.java:223)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelProxy.writeAndFlush(NettyChannelProxy.java:233)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.NetworkManager.doSendPacket(NetworkManager.java:466)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.NetworkManager.sendPacket(NetworkManager.java:428)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:382)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:368)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at com.destroystokyo.paper.network.StandardPaperServerListPingEventImpl.processRequest(StandardPaperServerListPingEventImpl.java:113)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.server.network.PacketStatusListener.a(PacketStatusListener.java:156)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.protocol.status.PacketStatusInStart.a(PacketStatusInStart.java:19)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.protocol.status.PacketStatusInStart.a(PacketStatusInStart.java:8)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:314)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:298)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.network.NetworkManager.channelRead0(NetworkManager.java:53)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:99)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.InboundPacketInterceptor.channelRead(InboundPacketInterceptor.java:28)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:346)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:318)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:346)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:318)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at net.minecraft.server.network.LegacyPingHandler.channelRead(LegacyPingHandler.java:122)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.handler.timeout.IdleStateHandler.channelRead(IdleStateHandler.java:286)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.handler.flush.FlushConsolidationHandler.channelRead(FlushConsolidationHandler.java:152)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1410)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:919)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:800)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:499)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:397)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
[11:11:18] [Netty Epoll Server IO #1/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[11:11:18] [Netty Epoll Server IO #1/WARN]: [SuperVanish] Please include this information
[11:11:18] [Netty Epoll Server IO #1/WARN]: [SuperVanish] if you report the issue.
[11:11:26] [User Authenticator #1/INFO]: UUID of player HiMyNameIsBoxxy is 2968982a-58c3-4950-aed6-8a52410b9b1d
[11:11:28] [Server thread/WARN]: [SuperVanish] Unknown exception occurred!
[11:11:28] [Server thread/WARN]: [SuperVanish] Please report this issue!
[11:11:28] [Server thread/WARN]: [SuperVanish] Message: 
[11:11:28] [Server thread/WARN]: [SuperVanish]   at index 0
[11:11:28] [Server thread/WARN]: [SuperVanish] General information: 
[11:11:28] [Server thread/WARN]: [SuperVanish]   ServerVersion: git-Paper-471 (MC: 1.19.4)
[11:11:28] [Server thread/WARN]: [SuperVanish]   PluginVersion: 6.2.10
[11:11:28] [Server thread/WARN]: [SuperVanish]   ServerPlugins: ViaVersion v4.6.1, 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), UltraSetHome v1.7.5, ProtocolLib v5.0.0-SNAPSHOT-b621, PlaceholderAPI v2.11.3, Multiverse-Core v4.3.1-b861, Essentials v2.20.0-dev+45-bf14b88, Citizens v2.0.31-SNAPSHOT (build 2979), dynmap v3.5-beta-3-866, Towny v0.98.4.0, HeadDatabase v4.17.0, mcMMO v2.1.209, VentureChat v3.5.0, DecentHolograms v2.8.1, CoreProtect v21.2, NexEngine v2.2.9 build-16/03/2023, DiscordSRV v1.26.2, NBTAPI v2.11.2, SCore v3.9.51, GamePoints v1.3.5, VotingPlugin v6.9.2, ExecutableItems v5.9.51, 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, LoneLibs v1.0.21, 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,
[11:11:28] [Server thread/WARN]: [SuperVanish] Settings:
[11:11:28] [Server thread/WARN]: [SuperVanish]   MsgsVersion: 6.2.7
[11:11:28] [Server thread/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||
[11:11:28] [Server thread/WARN]: [SuperVanish] StackTrace: 
[11:11:28] [Server thread/WARN]: java.lang.NullPointerException: at index 0
[11:11:28] [Server thread/WARN]:     at com.google.common.collect.ObjectArrays.checkElementNotNull(ObjectArrays.java:229)
[11:11:28] [Server thread/WARN]:     at com.google.common.collect.ObjectArrays.checkElementsNotNull(ObjectArrays.java:219)
[11:11:28] [Server thread/WARN]:     at com.google.common.collect.ObjectArrays.checkElementsNotNull(ObjectArrays.java:213)
[11:11:28] [Server thread/WARN]:     at com.google.common.collect.ImmutableList.construct(ImmutableList.java:353)
[11:11:28] [Server thread/WARN]:     at com.google.common.collect.ImmutableList.copyOf(ImmutableList.java:265)
[11:11:28] [Server thread/WARN]:     at SuperVanish-6.2.10.jar//de.myzelyam.supervanish.features.SilentOpenChestPacketAdapter.onPacketSending(SilentOpenChestPacketAdapter.java:49)
[11:11:28] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokeSendingListener(SortedPacketListenerList.java:208)
[11:11:28] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokeUnpackedPacketSending(SortedPacketListenerList.java:193)
[11:11:28] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokePacketSending(SortedPacketListenerList.java:149)
[11:11:28] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokePacketSending(SortedPacketListenerList.java:139)
[11:11:28] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.PacketFilterManager.postPacketToListeners(PacketFilterManager.java:551)
[11:11:28] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.PacketFilterManager.invokePacketSending(PacketFilterManager.java:525)
[11:11:28] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.manager.NetworkManagerInjector.onPacketSending(NetworkManagerInjector.java:100)
[11:11:28] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelInjector.processOutbound(NettyChannelInjector.java:566)
[11:11:28] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelInjector$2.doProxyRunnable(NettyChannelInjector.java:467)
[11:11:28] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyEventLoopProxy.proxyRunnable(NettyEventLoopProxy.java:43)
[11:11:28] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyEventLoopProxy.execute(NettyEventLoopProxy.java:252)
[11:11:28] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.sendPacket(NetworkManager.java:437)
[11:11:28] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.processQueue(NetworkManager.java:554)
[11:11:28] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.flushQueue(NetworkManager.java:510)
[11:11:28] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:401)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2149)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2135)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.a(PlayerList.java:347)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.a(LoginListener.java:202)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.d(LoginListener.java:183)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.c(LoginListener.java:85)
[11:11:28] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:592)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.network.ServerConnection.c(ServerConnection.java:234)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1575)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1396)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1173)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[11:11:28] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[11:11:28] [Server thread/WARN]: [SuperVanish] Please include this information
[11:11:28] [Server thread/WARN]: [SuperVanish] if you report the issue.
[11:11:28] [Server thread/WARN]: [SuperVanish] IMPORTANT: Please make sure that you are using the latest dev-build of ProtocolLib and that your server is up-to-date! This error likely happened inside of ProtocolLib code which is out of SuperVanish's control. It's part of an optional feature module and can be removed safely by disabling OpenChestsSilently in the config file. Please report this error if you can reproduce it on an up-to-date server with only latest ProtocolLib and latest SV installed.
[11:11:28] [Server thread/WARN]: [SuperVanish] Unknown exception occurred!
[11:11:28] [Server thread/WARN]: [SuperVanish] Please report this issue!
[11:11:28] [Server thread/WARN]: [SuperVanish] Message: 
[11:11:28] [Server thread/WARN]: [SuperVanish]   at index 0
[11:11:28] [Server thread/WARN]: [SuperVanish] General information: 
[11:11:28] [Server thread/WARN]: [SuperVanish]   ServerVersion: git-Paper-471 (MC: 1.19.4)
[11:11:28] [Server thread/WARN]: [SuperVanish]   PluginVersion: 6.2.10
[11:11:28] [Server thread/WARN]: [SuperVanish]   ServerPlugins: ViaVersion v4.6.1, 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), UltraSetHome v1.7.5, ProtocolLib v5.0.0-SNAPSHOT-b621, PlaceholderAPI v2.11.3, Multiverse-Core v4.3.1-b861, Essentials v2.20.0-dev+45-bf14b88, Citizens v2.0.31-SNAPSHOT (build 2979), dynmap v3.5-beta-3-866, Towny v0.98.4.0, HeadDatabase v4.17.0, mcMMO v2.1.209, VentureChat v3.5.0, DecentHolograms v2.8.1, CoreProtect v21.2, NexEngine v2.2.9 build-16/03/2023, DiscordSRV v1.26.2, NBTAPI v2.11.2, SCore v3.9.51, GamePoints v1.3.5, VotingPlugin v6.9.2, ExecutableItems v5.9.51, 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, LoneLibs v1.0.21, 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,
[11:11:28] [Server thread/WARN]: [SuperVanish] Settings:
[11:11:28] [Server thread/WARN]: [SuperVanish]   MsgsVersion: 6.2.7
[11:11:28] [Server thread/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||
[11:11:28] [Server thread/WARN]: [SuperVanish] StackTrace: 
[11:11:28] [Server thread/WARN]: java.lang.NullPointerException: at index 0
[11:11:28] [Server thread/WARN]:     at com.google.common.collect.ObjectArrays.checkElementNotNull(ObjectArrays.java:229)
[11:11:28] [Server thread/WARN]:     at com.google.common.collect.ObjectArrays.checkElementsNotNull(ObjectArrays.java:219)
[11:11:28] [Server thread/WARN]:     at com.google.common.collect.ObjectArrays.checkElementsNotNull(ObjectArrays.java:213)
[11:11:28] [Server thread/WARN]:     at com.google.common.collect.ImmutableList.construct(ImmutableList.java:353)
[11:11:28] [Server thread/WARN]:     at com.google.common.collect.ImmutableList.copyOf(ImmutableList.java:265)
[11:11:28] [Server thread/WARN]:     at SuperVanish-6.2.10.jar//de.myzelyam.supervanish.features.VanishIndication$1.onPacketSending(VanishIndication.java:105)
[11:11:28] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokeSendingListener(SortedPacketListenerList.java:208)
[11:11:28] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokeUnpackedPacketSending(SortedPacketListenerList.java:193)
[11:11:28] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokePacketSending(SortedPacketListenerList.java:149)
[11:11:28] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokePacketSending(SortedPacketListenerList.java:139)
[11:11:28] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.PacketFilterManager.postPacketToListeners(PacketFilterManager.java:551)
[11:11:28] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.PacketFilterManager.invokePacketSending(PacketFilterManager.java:525)
[11:11:28] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.manager.NetworkManagerInjector.onPacketSending(NetworkManagerInjector.java:100)
[11:11:28] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelInjector.processOutbound(NettyChannelInjector.java:566)
[11:11:28] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelInjector$2.doProxyRunnable(NettyChannelInjector.java:467)
[11:11:28] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyEventLoopProxy.proxyRunnable(NettyEventLoopProxy.java:43)
[11:11:28] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyEventLoopProxy.execute(NettyEventLoopProxy.java:252)
[11:11:28] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.sendPacket(NetworkManager.java:437)
[11:11:28] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.processQueue(NetworkManager.java:554)
[11:11:28] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.flushQueue(NetworkManager.java:510)
[11:11:28] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:401)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2149)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2135)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.a(PlayerList.java:347)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.a(LoginListener.java:202)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.d(LoginListener.java:183)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.c(LoginListener.java:85)
[11:11:28] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:592)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.network.ServerConnection.c(ServerConnection.java:234)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1575)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1396)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1173)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[11:11:28] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[11:11:28] [Server thread/WARN]: [SuperVanish] Please include this information
[11:11:28] [Server thread/WARN]: [SuperVanish] if you report the issue.
[11:11:28] [Server thread/WARN]: [SuperVanish] IMPORTANT: Please make sure that you are using the latest dev-build of ProtocolLib and that your server is up-to-date! This error likely happened inside of ProtocolLib code which is out of SuperVanish's control. It's part of an optional feature module and can be removed safely by disabling MarkVanishedPlayersAsSpectators in the config file. Please report this error if you can reproduce it on an up-to-date server with only latest ProtocolLib and latest SV installed.
[11:11:28] [Server thread/WARN]: [SuperVanish] Unknown exception occurred!
[11:11:28] [Server thread/WARN]: [SuperVanish] Please report this issue!
[11:11:28] [Server thread/WARN]: [SuperVanish] Message: 
[11:11:28] [Server thread/WARN]: [SuperVanish]   at index 0
[11:11:28] [Server thread/WARN]: [SuperVanish] General information: 
[11:11:28] [Server thread/WARN]: [SuperVanish]   ServerVersion: git-Paper-471 (MC: 1.19.4)
[11:11:28] [Server thread/WARN]: [SuperVanish]   PluginVersion: 6.2.10
[11:11:28] [Server thread/WARN]: [SuperVanish]   ServerPlugins: ViaVersion v4.6.1, 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), UltraSetHome v1.7.5, ProtocolLib v5.0.0-SNAPSHOT-b621, PlaceholderAPI v2.11.3, Multiverse-Core v4.3.1-b861, Essentials v2.20.0-dev+45-bf14b88, Citizens v2.0.31-SNAPSHOT (build 2979), dynmap v3.5-beta-3-866, Towny v0.98.4.0, HeadDatabase v4.17.0, mcMMO v2.1.209, VentureChat v3.5.0, DecentHolograms v2.8.1, CoreProtect v21.2, NexEngine v2.2.9 build-16/03/2023, DiscordSRV v1.26.2, NBTAPI v2.11.2, SCore v3.9.51, GamePoints v1.3.5, VotingPlugin v6.9.2, ExecutableItems v5.9.51, 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, LoneLibs v1.0.21, 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,
[11:11:28] [Server thread/WARN]: [SuperVanish] Settings:
[11:11:28] [Server thread/WARN]: [SuperVanish]   MsgsVersion: 6.2.7
[11:11:28] [Server thread/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||
[11:11:28] [Server thread/WARN]: [SuperVanish] StackTrace: 
[11:11:28] [Server thread/WARN]: java.lang.NullPointerException: at index 0
[11:11:28] [Server thread/WARN]:     at com.google.common.collect.ObjectArrays.checkElementNotNull(ObjectArrays.java:229)
[11:11:28] [Server thread/WARN]:     at com.google.common.collect.ObjectArrays.checkElementsNotNull(ObjectArrays.java:219)
[11:11:28] [Server thread/WARN]:     at com.google.common.collect.ObjectArrays.checkElementsNotNull(ObjectArrays.java:213)
[11:11:28] [Server thread/WARN]:     at com.google.common.collect.ImmutableList.construct(ImmutableList.java:353)
[11:11:28] [Server thread/WARN]:     at com.google.common.collect.ImmutableList.copyOf(ImmutableList.java:265)
[11:11:28] [Server thread/WARN]:     at SuperVanish-6.2.10.jar//de.myzelyam.supervanish.visibility.hiders.modules.PlayerInfoModule.onPacketSending(PlayerInfoModule.java:50)
[11:11:28] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokeSendingListener(SortedPacketListenerList.java:208)
[11:11:28] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokeUnpackedPacketSending(SortedPacketListenerList.java:193)
[11:11:28] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokePacketSending(SortedPacketListenerList.java:149)
[11:11:28] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokePacketSending(SortedPacketListenerList.java:139)
[11:11:28] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.PacketFilterManager.postPacketToListeners(PacketFilterManager.java:551)
[11:11:28] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.PacketFilterManager.invokePacketSending(PacketFilterManager.java:525)
[11:11:28] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.manager.NetworkManagerInjector.onPacketSending(NetworkManagerInjector.java:100)
[11:11:28] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelInjector.processOutbound(NettyChannelInjector.java:566)
[11:11:28] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelInjector$2.doProxyRunnable(NettyChannelInjector.java:467)
[11:11:28] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyEventLoopProxy.proxyRunnable(NettyEventLoopProxy.java:43)
[11:11:28] [Server thread/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyEventLoopProxy.execute(NettyEventLoopProxy.java:252)
[11:11:28] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.sendPacket(NetworkManager.java:437)
[11:11:28] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.processQueue(NetworkManager.java:554)
[11:11:28] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.flushQueue(NetworkManager.java:510)
[11:11:28] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:401)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2149)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2135)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.a(PlayerList.java:347)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.a(LoginListener.java:202)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.d(LoginListener.java:183)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.network.LoginListener.c(LoginListener.java:85)
[11:11:28] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:592)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.network.ServerConnection.c(ServerConnection.java:234)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1575)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1396)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1173)
[11:11:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[11:11:28] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[11:11:28] [Server thread/WARN]: [SuperVanish] Please include this information
[11:11:28] [Server thread/WARN]: [SuperVanish] if you report the issue.
[11:11:28] [Server thread/WARN]: [SuperVanish] IMPORTANT: Please make sure that you are using the latest dev-build of ProtocolLib and that your server is up-to-date! This error likely happened inside of ProtocolLib code which is out of SuperVanish's control. It's part of an optional invisibility module and can be removed safely by disabling ModifyTablistPackets in the config. Please report this error if you can reproduce it on an up-to-date server with only latest ProtocolLib and latest SV installed.
[11:11:28] [Server thread/INFO]: HiMyNameIsBoxxy[/24.188.104.82:43848] logged in with entity id 1425 at ([world]-61.98902169681308, 75.0, -8.859876505482225)
[11:11:30] [Craft Scheduler Thread - 18 - ProCosmetics/WARN]: [ProCosmetics] Plugin ProCosmetics v13.5 generated an exception while executing task 29355
java.lang.IllegalArgumentException: Can not set io.netty.channel.Channel field net.minecraft.network.NetworkManager.m to net.minecraft.server.level.EntityPlayer
    at jdk.internal.reflect.UnsafeFieldAccessorImpl.throwSetIllegalArgumentException(UnsafeFieldAccessorImpl.java:167) ~[?:?]
    at jdk.internal.reflect.UnsafeFieldAccessorImpl.throwSetIllegalArgumentException(UnsafeFieldAccessorImpl.java:171) ~[?:?]
    at jdk.internal.reflect.UnsafeFieldAccessorImpl.ensureObj(UnsafeFieldAccessorImpl.java:58) ~[?:?]
    at jdk.internal.reflect.UnsafeObjectFieldAccessorImpl.get(UnsafeObjectFieldAccessorImpl.java:36) ~[?:?]
    at java.lang.reflect.Field.get(Field.java:425) ~[?:?]
    at se.file14.procosmetics.cx.a(cx.java) ~[ProCosmetics.jar:?]
    at se.file14.procosmetics.user.UserManager.lambda$createUser$0(UserManager.java) ~[ProCosmetics.jar:?]
    at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.19.4.jar:git-Paper-471]
    at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[paper-1.19.4.jar:git-Paper-471]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[paper-1.19.4.jar:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[11:11:31] [User Authenticator #1/INFO]: UUID of player Mysit3 is e94bd109-217d-4444-ad9c-a9a5afa9b0d1
[11:11:32] [Server thread/INFO]: Mysit3[/78.78.14.204:43864] logged in with entity id 1459 at ([survival]4423.827102526694, 98.68572566276146, -5014.96947037128)
[11:11:32] [Server thread/INFO]: HiMyNameIsBoxxy issued server command: /pl
[11:11:33] [Server thread/WARN]: [SuperVanish] Task #31278 for SuperVanish v6.2.10 generated an exception
com.comphenix.protocol.reflect.FieldAccessException: Field index 0 is out of bounds for length 0
    at com.comphenix.protocol.reflect.FieldAccessException.fromFormat(FieldAccessException.java:49) ~[ProtocolLib.jar:?]
    at com.comphenix.protocol.reflect.StructureModifier.write(StructureModifier.java:316) ~[ProtocolLib.jar:?]
    at de.myzelyam.supervanish.features.VanishIndication.sendPlayerInfoChangeGameModePacket(VanishIndication.java:153) ~[SuperVanish-6.2.10.jar:?]
    at de.myzelyam.supervanish.features.VanishIndication.lambda$onJoin$1(VanishIndication.java:87) ~[SuperVanish-6.2.10.jar:?]
    at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.19.4.jar:git-Paper-471]
    at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483) ~[paper-1.19.4.jar:git-Paper-471]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1482) ~[paper-1.19.4.jar:git-Paper-471]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:447) ~[paper-1.19.4.jar:git-Paper-471]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1396) ~[paper-1.19.4.jar:git-Paper-471]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[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) ~[?:?]
[11:11:33] [Server thread/INFO]: [▲] Mysit3 (Connected)
[11:11:34] [Craft Scheduler Thread - 15 - ProCosmetics/WARN]: [ProCosmetics] Plugin ProCosmetics v13.5 generated an exception while executing task 31284
java.lang.IllegalArgumentException: Can not set io.netty.channel.Channel field net.minecraft.network.NetworkManager.m to net.minecraft.server.level.EntityPlayer
    at jdk.internal.reflect.UnsafeFieldAccessorImpl.throwSetIllegalArgumentException(UnsafeFieldAccessorImpl.java:167) ~[?:?]
    at jdk.internal.reflect.UnsafeFieldAccessorImpl.throwSetIllegalArgumentException(UnsafeFieldAccessorImpl.java:171) ~[?:?]
    at jdk.internal.reflect.UnsafeFieldAccessorImpl.ensureObj(UnsafeFieldAccessorImpl.java:58) ~[?:?]
    at jdk.internal.reflect.UnsafeObjectFieldAccessorImpl.get(UnsafeObjectFieldAccessorImpl.java:36) ~[?:?]
    at java.lang.reflect.Field.get(Field.java:425) ~[?:?]
    at se.file14.procosmetics.cx.a(cx.java) ~[ProCosmetics.jar:?]
    at se.file14.procosmetics.user.UserManager.lambda$createUser$0(UserManager.java) ~[ProCosmetics.jar:?]
    at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.19.4.jar:git-Paper-471]
    at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[paper-1.19.4.jar:git-Paper-471]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[paper-1.19.4.jar:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[11:11:42] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 6772ms or 135 ticks behind
[11:11:44] [Craft Scheduler Thread - 31 - InteractiveChatDiscordSrvAddon/WARN]: [InteractiveChatDiscordSRVAddon] Plugin InteractiveChatDiscordSrvAddon v4.2.6.0 generated an exception while executing task 185
java.lang.RuntimeException: Unable to fetch assets from "api.loohpjames.com". This could be an internet issue or "api.loohpjames.com" is down. If the plugin functions correctly after this, this error can be ignored.
    at com.loohp.interactivechatdiscordsrvaddon.resources.ResourceDownloadManager.ensureData(ResourceDownloadManager.java:92) ~[InteractiveChatDiscordSrvAddon-4.2.6.0.jar:?]
    at com.loohp.interactivechatdiscordsrvaddon.resources.ResourceDownloadManager.downloadExtras(ResourceDownloadManager.java:232) ~[InteractiveChatDiscordSrvAddon-4.2.6.0.jar:?]
    at com.loohp.interactivechatdiscordsrvaddon.AssetsDownloader.loadExtras(AssetsDownloader.java:161) ~[InteractiveChatDiscordSrvAddon-4.2.6.0.jar:?]
    at com.loohp.interactivechatdiscordsrvaddon.InteractiveChatDiscordSrvAddon.lambda$onEnable$3(InteractiveChatDiscordSrvAddon.java:378) ~[InteractiveChatDiscordSrvAddon-4.2.6.0.jar:?]
    at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.19.4.jar:git-Paper-471]
    at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[paper-1.19.4.jar:git-Paper-471]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[paper-1.19.4.jar:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[11:12:06] [Craft Scheduler Thread - 14 - InteractiveChat/INFO]: [InteractiveChat] Failed to check against "api.loohpjames.com" for the latest version.. It could be an internet issue or "api.loohpjames.com" is down. If you want disable the update checker, you can disable in config.yml, but we still highly-recommend you to keep your plugin up to date!
[11:12:18] [Netty Epoll Server IO #0/WARN]: [SuperVanish] Unknown exception occurred!
[11:12:18] [Netty Epoll Server IO #0/WARN]: [SuperVanish] Please report this issue!
[11:12:18] [Netty Epoll Server IO #0/WARN]: [SuperVanish] Message: 
[11:12:18] [Netty Epoll Server IO #0/WARN]: [SuperVanish]   null
[11:12:18] [Netty Epoll Server IO #0/WARN]: [SuperVanish] General information: 
[11:12:18] [Netty Epoll Server IO #0/WARN]: [SuperVanish]   ServerVersion: git-Paper-471 (MC: 1.19.4)
[11:12:18] [Netty Epoll Server IO #0/WARN]: [SuperVanish]   PluginVersion: 6.2.10
[11:12:18] [Netty Epoll Server IO #0/WARN]: [SuperVanish]   ServerPlugins: ViaVersion v4.6.1, 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), UltraSetHome v1.7.5, ProtocolLib v5.0.0-SNAPSHOT-b621, PlaceholderAPI v2.11.3, Multiverse-Core v4.3.1-b861, Essentials v2.20.0-dev+45-bf14b88, Citizens v2.0.31-SNAPSHOT (build 2979), dynmap v3.5-beta-3-866, Towny v0.98.4.0, HeadDatabase v4.17.0, mcMMO v2.1.209, VentureChat v3.5.0, DecentHolograms v2.8.1, CoreProtect v21.2, NexEngine v2.2.9 build-16/03/2023, DiscordSRV v1.26.2, NBTAPI v2.11.2, SCore v3.9.51, GamePoints v1.3.5, VotingPlugin v6.9.2, ExecutableItems v5.9.51, 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, LoneLibs v1.0.21, 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,
[11:12:18] [Netty Epoll Server IO #0/WARN]: [SuperVanish] Settings:
[11:12:18] [Netty Epoll Server IO #0/WARN]: [SuperVanish]   MsgsVersion: 6.2.7
[11:12:18] [Netty Epoll Server IO #0/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||
[11:12:18] [Netty Epoll Server IO #0/WARN]: [SuperVanish] StackTrace: 
[11:12:18] [Netty Epoll Server IO #0/WARN]: java.lang.NullPointerException
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at com.google.common.base.Preconditions.checkNotNull(Preconditions.java:889)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at com.google.common.collect.ImmutableList.copyOf(ImmutableList.java:236)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedServerPing.getPlayers(WrappedServerPing.java:275)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at SuperVanish-6.2.10.jar//de.myzelyam.supervanish.visibility.ServerListPacketListener.onPacketSending(ServerListPacketListener.java:67)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokeSendingListener(SortedPacketListenerList.java:208)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokeUnpackedPacketSending(SortedPacketListenerList.java:193)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokePacketSending(SortedPacketListenerList.java:149)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokePacketSending(SortedPacketListenerList.java:139)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.PacketFilterManager.postPacketToListeners(PacketFilterManager.java:551)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.PacketFilterManager.invokePacketSending(PacketFilterManager.java:525)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.manager.NetworkManagerInjector.onPacketSending(NetworkManagerInjector.java:100)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelInjector.processOutbound(NettyChannelInjector.java:566)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelProxy.processPacketOutbound(NettyChannelProxy.java:266)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelProxy.writeAndFlush(NettyChannelProxy.java:223)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.NettyChannelProxy.writeAndFlush(NettyChannelProxy.java:233)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at net.minecraft.network.NetworkManager.doSendPacket(NetworkManager.java:466)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at net.minecraft.network.NetworkManager.sendPacket(NetworkManager.java:428)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:382)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:368)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at com.destroystokyo.paper.network.StandardPaperServerListPingEventImpl.processRequest(StandardPaperServerListPingEventImpl.java:113)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at net.minecraft.server.network.PacketStatusListener.a(PacketStatusListener.java:156)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at net.minecraft.network.protocol.status.PacketStatusInStart.a(PacketStatusInStart.java:19)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at net.minecraft.network.protocol.status.PacketStatusInStart.a(PacketStatusInStart.java:8)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:314)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:298)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at net.minecraft.network.NetworkManager.channelRead0(NetworkManager.java:53)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:99)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.injector.netty.channel.InboundPacketInterceptor.channelRead(InboundPacketInterceptor.java:28)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:346)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:318)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:346)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:318)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at net.minecraft.server.network.LegacyPingHandler.channelRead(LegacyPingHandler.java:122)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.handler.timeout.IdleStateHandler.channelRead(IdleStateHandler.java:286)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.handler.flush.FlushConsolidationHandler.channelRead(FlushConsolidationHandler.java:152)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1410)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:919)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:800)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:499)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:397)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
[11:12:18] [Netty Epoll Server IO #0/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[11:12:18] [Netty Epoll Server IO #0/WARN]: [SuperVanish] Please include this information
[11:12:18] [Netty Epoll Server IO #0/WARN]: [SuperVanish] if you report the issue.