Paste #118394: (bloody_mind) Error with MC 1.20.4 (Discord)

Date: 2023/12/10 10:11:39 UTC-08:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[17:42:44] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[17:42:45] [ServerMain/INFO]: Loaded 1174 recipes
[17:42:45] [ServerMain/INFO]: Loaded 1271 advancements
[17:42:45] [Server thread/INFO]: Starting minecraft server version 1.20.4
[17:42:45] [Server thread/INFO]: Loading properties
[17:42:45] [Server thread/INFO]: This server is running Paper version git-Paper-320 (MC: 1.20.4) (Implementing API version 1.20.4-R0.1-SNAPSHOT) (Git: bcbe5dc)
[17:42:46] [Server thread/INFO]: Server Ping Player Sample Count: 12
[17:42:46] [Server thread/INFO]: Using 4 threads for Netty based IO
[17:42:46] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
    For more information please visit: https://github.com/PaperMC/Paper/issues/8948
[17:42:46] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 8 worker threads, and gen parallelism of 8 threads
[17:42:46] [Server thread/INFO]: Default game type: SURVIVAL
[17:42:46] [Server thread/INFO]: Generating keypair
[17:42:46] [Server thread/INFO]: Starting Minecraft server on *:25564
[17:42:46] [Server thread/INFO]: Using epoll channel type
[17:42:46] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[17:42:46] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[17:42:46] [Server thread/INFO]: [SpigotLibraryLoader] [RedisChat] Loading 7 libraries... please wait
[17:42:46] [Server thread/INFO]: [SpigotLibraryLoader] [RedisChat] Loaded library /home/testminecraft/servertest/libraries/io/lettuce/lettuce-core/6.2.5.RELEASE/lettuce-core-6.2.5.RELEASE.jar
[17:42:46] [Server thread/INFO]: [SpigotLibraryLoader] [RedisChat] Loaded library /home/testminecraft/servertest/libraries/io/netty/netty-common/4.1.94.Final/netty-common-4.1.94.Final.jar
[17:42:46] [Server thread/INFO]: [SpigotLibraryLoader] [RedisChat] Loaded library /home/testminecraft/servertest/libraries/io/netty/netty-handler/4.1.94.Final/netty-handler-4.1.94.Final.jar
[17:42:46] [Server thread/INFO]: [SpigotLibraryLoader] [RedisChat] Loaded library /home/testminecraft/servertest/libraries/io/netty/netty-resolver/4.1.94.Final/netty-resolver-4.1.94.Final.jar
[17:42:46] [Server thread/INFO]: [SpigotLibraryLoader] [RedisChat] Loaded library /home/testminecraft/servertest/libraries/io/netty/netty-buffer/4.1.94.Final/netty-buffer-4.1.94.Final.jar
[17:42:46] [Server thread/INFO]: [SpigotLibraryLoader] [RedisChat] Loaded library /home/testminecraft/servertest/libraries/io/netty/netty-transport-native-unix-common/4.1.94.Final/netty-transport-native-unix-common-4.1.94.Final.jar
[17:42:46] [Server thread/INFO]: [SpigotLibraryLoader] [RedisChat] Loaded library /home/testminecraft/servertest/libraries/io/netty/netty-codec/4.1.94.Final/netty-codec-4.1.94.Final.jar
[17:42:46] [Server thread/INFO]: [SpigotLibraryLoader] [RedisChat] Loaded library /home/testminecraft/servertest/libraries/io/netty/netty-transport/4.1.94.Final/netty-transport-4.1.94.Final.jar
[17:42:46] [Server thread/INFO]: [SpigotLibraryLoader] [RedisChat] Loaded library /home/testminecraft/servertest/libraries/io/projectreactor/reactor-core/3.4.31/reactor-core-3.4.31.jar
[17:42:46] [Server thread/INFO]: [SpigotLibraryLoader] [RedisChat] Loaded library /home/testminecraft/servertest/libraries/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar
[17:42:46] [Server thread/INFO]: [SpigotLibraryLoader] [RedisChat] Loaded library /home/testminecraft/servertest/libraries/org/yaml/snakeyaml/1.27/snakeyaml-1.27.jar
[17:42:46] [Server thread/INFO]: [SpigotLibraryLoader] [RedisChat] Loaded library /home/testminecraft/servertest/libraries/org/snakeyaml/snakeyaml-engine/2.3/snakeyaml-engine-2.3.jar
[17:42:46] [Server thread/INFO]: [SpigotLibraryLoader] [RedisChat] Loaded library /home/testminecraft/servertest/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[17:42:46] [Server thread/INFO]: [SpigotLibraryLoader] [RedisChat] Loaded library /home/testminecraft/servertest/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[17:42:46] [Server thread/INFO]: [SpigotLibraryLoader] [RedisChat] Loaded library /home/testminecraft/servertest/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[17:42:46] [Server thread/INFO]: [SpigotLibraryLoader] [RedisChat] Loaded library /home/testminecraft/servertest/libraries/com/h2database/h2/2.2.220/h2-2.2.220.jar
[17:42:46] [Server thread/INFO]: [SpigotLibraryLoader] [RedisChat] Loaded library /home/testminecraft/servertest/libraries/org/projectlombok/lombok/1.18.26/lombok-1.18.26.jar
[17:42:46] [Server thread/INFO]: [SpigotLibraryLoader] [BigDoors] Loading 1 libraries... please wait
[17:42:46] [Server thread/INFO]: [SpigotLibraryLoader] [BigDoors] Loaded library /home/testminecraft/servertest/libraries/net/bytebuddy/byte-buddy/1.14.9/byte-buddy-1.14.9.jar
[17:42:46] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_20_R3.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loading 37 libraries... please wait
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/org/apache/commons/commons-compress/1.25.0/commons-compress-1.25.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/org/apache/commons/commons-lang3/3.13.0/commons-lang3-3.13.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/org/apache/commons/commons-text/1.11.0/commons-text-1.11.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/com/rollbar/rollbar-java/1.9.0/rollbar-java-1.9.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/com/rollbar/rollbar-api/1.9.0/rollbar-api-1.9.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/commons-codec/commons-codec/1.15/commons-codec-1.15.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/cc/carm/lib/easysql-hikaricp/0.4.7/easysql-hikaricp-0.4.7.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/cc/carm/lib/easysql-impl/0.4.7/easysql-impl-0.4.7.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/cc/carm/lib/easysql-api/0.4.7/easysql-api-0.4.7.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/com/h2database/h2/2.1.214/h2-2.1.214.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/com/ghostchu/simplereloadlib/1.1.2/simplereloadlib-1.1.2.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/com/konghq/unirest-java/3.14.5/unirest-java-3.14.5.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/org/apache/httpcomponents/httpmime/4.5.13/httpmime-4.5.13.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/org/apache/httpcomponents/httpcore-nio/4.4.13/httpcore-nio-4.4.13.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/org/apache/httpcomponents/httpasyncclient/4.1.5/httpasyncclient-4.1.5.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/com/github/juliomarcopineda/jdbc-stream/0.1.1/jdbc-stream-0.1.1.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/one/util/streamex/0.8.2/streamex-0.8.2.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/commons-lang/commons-lang/2.6/commons-lang-2.6.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/net/sourceforge/csvjdbc/csvjdbc/1.0.41/csvjdbc-1.0.41.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/org/dom4j/dom4j/2.1.4/dom4j-2.1.4.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/org/slf4j/slf4j-jdk14/2.0.9/slf4j-jdk14-2.0.9.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/com/vdurmont/semver4j/3.1.0/semver4j-3.1.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/com/ghostchu/crowdin/crowdinota/1.0.3/crowdinota-1.0.3.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/com/konghq/unirest-java/3.14.1/unirest-java-3.14.1-standalone.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-nbt/4.14.0/adventure-nbt-4.14.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-platform-api/4.3.1/adventure-platform-api-4.3.1.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-platform-bukkit/4.3.1/adventure-platform-bukkit-4.3.1.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-platform-facet/4.3.1/adventure-platform-facet-4.3.1.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-platform-viaversion/4.3.1/adventure-platform-viaversion-4.3.1.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-serializer-configurate4/4.14.0/adventure-serializer-configurate4-4.14.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/org/spongepowered/configurate-core/4.1.2/configurate-core-4.1.2.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/io/leangen/geantyref/geantyref/1.3.11/geantyref-1.3.11.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/com/google/errorprone/error_prone_annotations/2.6.0/error_prone_annotations-2.6.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-text-logger-slf4j/4.14.0/adventure-text-logger-slf4j-4.14.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-text-minimessage/4.14.0/adventure-text-minimessage-4.14.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-text-serializer-ansi/4.14.0/adventure-text-serializer-ansi-4.14.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/net/kyori/ansi/1.0.0/ansi-1.0.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.1/adventure-text-serializer-bungeecord-4.3.1.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.14.0/adventure-text-serializer-gson-legacy-impl-4.14.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-text-serializer-json/4.14.0/adventure-text-serializer-json-4.14.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-text-serializer-json-legacy-impl/4.14.0/adventure-text-serializer-json-legacy-impl-4.14.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-text-serializer-legacy/4.14.0/adventure-text-serializer-legacy-4.14.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-text-serializer-plain/4.14.0/adventure-text-serializer-plain-4.14.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/testminecraft/servertest/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[17:42:48] [Server thread/INFO]: [Minepacks] PCGF-PluginLib not installed. Switching to standalone mode!
[17:42:48] [Server thread/WARN]: Legacy plugin BCommons v0.3.0 does not specify an api-version.
[17:42:48] [Server thread/WARN]: Legacy plugin Stopwatch v1.0 does not specify an api-version.
[17:42:48] [Server thread/WARN]: Legacy plugin EpicSign v2.0.3 does not specify an api-version.
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [MobsToEggs] Loading 1 libraries... please wait
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [MobsToEggs] Loaded library /home/testminecraft/servertest/libraries/org/jetbrains/kotlin/kotlin-stdlib/1.9.10/kotlin-stdlib-1.9.10.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [MobsToEggs] Loaded library /home/testminecraft/servertest/libraries/org/jetbrains/kotlin/kotlin-stdlib-common/1.9.10/kotlin-stdlib-common-1.9.10.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [MobsToEggs] Loaded library /home/testminecraft/servertest/libraries/org/jetbrains/annotations/13.0/annotations-13.0.jar
[17:42:48] [Server thread/INFO]: [MarriageMaster] PCGF-PluginLib not installed. Switching to standalone mode!
[17:42:48] [Server thread/WARN]: Legacy plugin Automessage v1.2 does not specify an api-version.
[17:42:48] [Server thread/WARN]: Legacy plugin UltimateSign v1.5.2 does not specify an api-version.
[17:42:48] [Server thread/WARN]: Legacy plugin DisableChorusFruit v1.5.0 does not specify an api-version.
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [CrazyCrates] Loading 1 libraries... please wait
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [CrazyCrates] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [CrazyCrates] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [CrazyCrates] Loaded library /home/testminecraft/servertest/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [CrazyCrates] Loaded library /home/testminecraft/servertest/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [CrazyCrates] Loaded library /home/testminecraft/servertest/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[17:42:48] [Server thread/INFO]: BetterConcrete is using the latest implementation (last tested for v1_20_R1).
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loading 6 libraries... please wait
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library /home/testminecraft/servertest/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library /home/testminecraft/servertest/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library /home/testminecraft/servertest/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-platform-bukkit/4.3.1/adventure-platform-bukkit-4.3.1.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-platform-api/4.3.1/adventure-platform-api-4.3.1.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.1/adventure-text-serializer-bungeecord-4.3.1.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-platform-facet/4.3.1/adventure-platform-facet-4.3.1.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-platform-viaversion/4.3.1/adventure-platform-viaversion-4.3.1.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-text-minimessage/4.14.0/adventure-text-minimessage-4.14.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-text-serializer-legacy/4.14.0/adventure-text-serializer-legacy-4.14.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-text-serializer-gson/4.14.0/adventure-text-serializer-gson-4.14.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-text-serializer-json/4.14.0/adventure-text-serializer-json-4.14.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library /home/testminecraft/servertest/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[17:42:48] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library /home/testminecraft/servertest/libraries/net/kyori/adventure-text-serializer-plain/4.14.0/adventure-text-serializer-plain-4.14.0.jar
[17:42:48] [Server thread/INFO]: [Core] Loading server plugin Core v0.6.0
[17:42:48] [Server thread/INFO]: [Core] Checking update for Core v0.6.0
[17:42:48] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v4.9.2
[17:42:48] [Server thread/INFO]: [ViaVersion] ViaVersion 4.9.2 is now loaded. Registering protocol transformers and injecting...
[17:42:48] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[17:42:48] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[17:42:48] [Server thread/INFO]: [ViaBackwards] Loading translations...
[17:42:48] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[17:42:49] [Server thread/INFO]: [FancyPerks] Loading server plugin FancyPerks v1.1.0
[17:42:49] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.111
[17:42:49] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-CMI
[17:42:49] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.8.4-SNAPSHOT-624;fe626a9
[17:42:50] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@76d6d355]
[17:42:50] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.9-SNAPSHOT+2241-c0cbe27
[17:42:50] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.5
[17:42:50] [Server thread/INFO]: [mcMMO] Loading server plugin mcMMO v2.1.225
[17:42:50] [Server thread/INFO]: [mcMMO] [D] Registered WG flags successfully!
[17:42:50] [Server thread/INFO]: [RedisChat] Loading server plugin RedisChat v4.2.8
[17:42:50] [Server thread/ERROR]: [RedisChat] Error initializing plugin 'RedisChat-4.2.8.jar' in folder 'plugins' (Is it up to date?)
dev.unnm3d.redischat.libraries.commandapi.exceptions.UnsupportedVersionException: This version of Minecraft is unsupported: 1.20.4
    at dev.unnm3d.redischat.libraries.commandapi.CommandAPIVersionHandler.getPlatform(CommandAPIVersionHandler.java:72) ~[RedisChat-4.2.8.jar:?]
    at dev.unnm3d.redischat.libraries.commandapi.CommandAPI.onLoad(CommandAPI.java:103) ~[RedisChat-4.2.8.jar:?]
    at dev.unnm3d.redischat.RedisChat.onLoad(RedisChat.java:83) ~[RedisChat-4.2.8.jar:?]
    at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:59) ~[paper-1.20.4.jar:git-Paper-320]
    at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:18) ~[paper-1.20.4.jar:git-Paper-320]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:39) ~[paper-1.20.4.jar:git-Paper-320]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:36) ~[paper-1.20.4.jar:git-Paper-320]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.loadPlugins(CraftServer.java:509) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:273) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1132) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[paper-1.20.4.jar:git-Paper-320]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[17:42:50] [Server thread/INFO]: [BigDoors] Loading server plugin BigDoors vAlpha 0.1.8.49
[17:42:50] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.4.4.0
[17:42:50] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.1.1-SNAPSHOT-669
[17:42:50] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.20.4) has not yet been tested! Proceed with caution.
[17:42:51] [Server thread/INFO]: [Votifier] Loading server plugin Votifier v2.7.1
[17:42:51] [Server thread/INFO]: [PlotSquared] Loading server plugin PlotSquared v7.2.1-Premium
[17:42:51] [Server thread/INFO]: [Jobs] Loading server plugin Jobs v5.2.2.1
[17:42:51] [Server thread/INFO]: [CMI] Loading server plugin CMI v9.6.9.1
[17:42:51] [Server thread/INFO]: [AuctionHouse] Loading server plugin AuctionHouse v2.104.0
[17:42:51] [Server thread/INFO]: [CrashAPI] Loading server plugin CrashAPI v1.1.5
[17:42:51] [Server thread/INFO]: [CrashAPI] Checking Bukkit Version: 1.20.4
[17:42:51] [Server thread/INFO]: [CrashAPI] Bukkit Version 1.20.4 is compatible through NMS!
[17:42:51] [Server thread/INFO]: [CrashAPI] Using API version v1_20_R3.
[17:42:51] [Server thread/INFO]: [CrashAPI] Initializing main configuration...
[17:42:51] [Server thread/INFO]: [CrashAPI] Main configuration initialized!
[17:42:51] [Server thread/INFO]: [CrashAPI] Initializing language configuration...
[17:42:51] [Server thread/INFO]: [CrashAPI] Language configuration initialized!
[17:42:51] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.12.2
[17:42:51] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R3! Trying to find NMS support
[17:42:51] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R3' loaded!
[17:42:51] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'NBTAPI' to create a bStats instance!
[17:42:51] [Server thread/INFO]: [HolographicDisplays] Loading server plugin HolographicDisplays v3.0.4-SNAPSHOT-b259
[17:42:51] [Server thread/INFO]: [EnchantmentSolution] Loading server plugin EnchantmentSolution v2.5.7.1
[17:42:51] [Server thread/INFO]: [EnchantmentSolution] Minecraft Version: 1.20.4
[17:42:51] [Server thread/INFO]: [EnchantmentSolution] Minecraft API Version: v1_20_R3
[17:42:51] [Server thread/INFO]: [EnchantmentSolution] EnchantmentSolution Version: 2.5.7.1
[17:42:51] [Server thread/ERROR]: [EnchantmentSolution] Error initializing plugin 'EnchantmentSolution-2.5.7.1.jar' in folder 'plugins' (Is it up to date?)
java.lang.NoSuchMethodError: 'void org.bukkit.enchantments.Enchantment.<init>(org.bukkit.NamespacedKey)'
    at org.ctp.enchantmentsolution.enchantments.CustomEnchantmentWrapper.<init>(CustomEnchantmentWrapper.java:17) ~[EnchantmentSolution-2.5.7.1.jar:?]
    at org.ctp.enchantmentsolution.enchantments.RegisterEnchantments.<clinit>(RegisterEnchantments.java:32) ~[EnchantmentSolution-2.5.7.1.jar:?]
    at org.ctp.enchantmentsolution.EnchantmentSolution.onLoad(EnchantmentSolution.java:103) ~[EnchantmentSolution-2.5.7.1.jar:?]
    at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:59) ~[paper-1.20.4.jar:git-Paper-320]
    at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:18) ~[paper-1.20.4.jar:git-Paper-320]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:39) ~[paper-1.20.4.jar:git-Paper-320]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:36) ~[paper-1.20.4.jar:git-Paper-320]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.loadPlugins(CraftServer.java:509) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:273) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1132) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[paper-1.20.4.jar:git-Paper-320]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[17:42:51] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.9
[17:42:51] [Server thread/INFO]: [TheCore] Loading server plugin TheCore v2.5.0
[17:42:51] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v22.1
[17:42:51] [Server thread/INFO]: [HuskHomes] Loading server plugin HuskHomes v4.5.3
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] Loading server plugin QuickShop-Hikari v5.2.0.6
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] QuickShop-Hikari - Bootloader
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] Bootloader preparing for startup, please stand by...
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] Initializing libraries...
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] Initialing Unirest...
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] Loading the Adventure Chat Processor...
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] Adventure API loaded from: /home/testminecraft/servertest/libraries/net/kyori/adventure-api/4.15.0-SNAPSHOT/adventure-api-4.15.0-SNAPSHOT.jar
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] Adventure Bukkit Platform loaded from: /home/testminecraft/servertest/libraries/net/kyori/adventure-platform-bukkit/4.3.1/adventure-platform-bukkit-4.3.1.jar
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] Adventure Text Serializer (Legacy) loaded from: /home/testminecraft/servertest/libraries/net/kyori/adventure-text-serializer-legacy/4.15.0-SNAPSHOT/adventure-text-serializer-legacy-4.15.0-SNAPSHOT.jar
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] Adventure Text Serializer (Gson) loaded from: /home/testminecraft/servertest/libraries/net/kyori/adventure-text-serializer-gson/4.15.0-SNAPSHOT/adventure-text-serializer-gson-4.15.0-SNAPSHOT.jar
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] Adventure Text Serializer (Json) loaded from: /home/testminecraft/servertest/libraries/net/kyori/adventure-text-serializer-json/4.15.0-SNAPSHOT/adventure-text-serializer-json-4.15.0-SNAPSHOT.jar
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] Adventure Text Serializer (BungeeChat) loaded from: /home/testminecraft/servertest/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.1/adventure-text-serializer-bungeecord-4.3.1.jar
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] Adventure Text Serializer (ViaVersion Facet) loaded from: /home/testminecraft/servertest/libraries/net/kyori/adventure-platform-viaversion/4.3.1/adventure-platform-viaversion-4.3.1.jar
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] Adventure Text Serializer (ANSI) loaded from: /home/testminecraft/servertest/libraries/net/kyori/adventure-text-serializer-ansi/4.15.0-SNAPSHOT/adventure-text-serializer-ansi-4.15.0-SNAPSHOT.jar
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] Adventure Text Serializer (Plain) loaded from: /home/testminecraft/servertest/libraries/net/kyori/adventure-text-serializer-plain/4.15.0-SNAPSHOT/adventure-text-serializer-plain-4.15.0-SNAPSHOT.jar
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] Adventure MiniMessage Lib loaded from: /home/testminecraft/servertest/libraries/net/kyori/adventure-text-minimessage/4.15.0-SNAPSHOT/adventure-text-minimessage-4.15.0-SNAPSHOT.jar
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] Initializing platform...
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] Platform detected: Paper
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] Platform initialized: com.ghostchu.quickshop.platform.paper.PaperPlatform
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] Boot QuickShop instance...
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] Creating QuickShop instance...
[17:42:51] [Thread-15/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] Forwarding onLoad() to QuickShop instance...
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] Registering Bukkit Service: com.ghostchu.quickshop.api.QuickShopProvider
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari - Early boot step - Booting up
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] Self testing...
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] Reading the configuration...
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] [ConfigUpdater] Saving configuration changes...
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] Setting up privacy controller...
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] Setting up metrics manager...
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] Loading player name and unique id mapping...
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] Loading translations (This may take a while)...
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] Please wait us fetch the translation updates from Crowdin OTA service...
[17:42:51] [Server thread/INFO]: [CrowdinOTA] Downloading Crowdin distribution manifest from remote server...
[17:42:51] [Server thread/INFO]: [OTAFileInstance-0] Downloading translations for 0 locales...
[17:42:51] [Server thread/INFO]: [OTAFileInstance-1] Downloading translations for 0 locales...
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] Loading up translations from Crowdin OTA, this may need a while...
[17:42:51] [Server thread/INFO]: [QuickShop-Hikari] Loading up translations from Crowdin OTA, this may need a while...
[17:42:52] [Server thread/INFO]: [QuickShop-Hikari] Register InventoryWrapper...
[17:42:52] [Server thread/INFO]: [QuickShop-Hikari] Initializing NexusManager...
[17:42:52] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari - Early boot step - Complete
[17:42:52] [Server thread/INFO]: [QuickShop-Hikari] Finishing up onLoad() in Bootloader...
[17:42:52] [Server thread/INFO]: [QuickShop-Hikari] QuickShop-Hikari - Booting...
[17:42:52] [Server thread/INFO]: [Ethria-Common] Loading server plugin Ethria-Common v1.0-SNAPSHOT
[17:42:52] [Server thread/INFO]: [Ethria-Common] Locale "en" (plugins/Ethria-Common/material/en.lang) was registered!
[17:42:52] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.33-SNAPSHOT (build 3283)
[17:42:52] [Server thread/INFO]: [HeadDatabase] Loading server plugin HeadDatabase v4.18.3
[17:42:52] [Server thread/INFO]: [Minepacks] Loading server plugin Minepacks v2.4.24-T20231206015532
[17:42:52] [Server thread/INFO]: [NoteBlockAPI] Loading server plugin NoteBlockAPI v1.6.2
[17:42:52] [Server thread/INFO]: [UltimateClans] Loading server plugin UltimateClans v6.15.4
[17:42:52] [Server thread/INFO]: [AdvancedRegionMarket] Loading server plugin AdvancedRegionMarket v3.5.3
[17:42:52] [Server thread/INFO]: [AdventCore] Loading server plugin AdventCore v1.0.0
[17:42:52] [Server thread/INFO]: [AdvancedChests] Loading server plugin AdvancedChests v29.2
[17:42:52] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v4.9.1
[17:42:52] [Server thread/INFO]: [UltimateBackPack] Loading server plugin UltimateBackPack v2.10.0
[17:42:52] [Server thread/INFO]: [RankUpgrade] Loading server plugin RankUpgrade v1.0-SNAPSHOT
[17:42:52] [Server thread/INFO]: [BottledExp] Loading server plugin BottledExp v3.2.2.2
[17:42:52] [Server thread/INFO]: [TreeFeller] Loading server plugin TreeFeller v1.22.2
[17:42:52] [Server thread/INFO]: [Elevator] Loading server plugin Elevator v1.3-SNAPSHOT
[17:42:52] [Server thread/INFO]: [CraftingStore] Loading server plugin CraftingStore v2.9.0
[17:42:52] [Server thread/INFO]: [BCommons] Loading server plugin BCommons v0.3.0
[17:42:52] [Server thread/INFO]: [Werbung] Loading server plugin Werbung v1.0-SNAPSHOT
[17:42:52] [Server thread/INFO]: [HuskHomesGUI] Loading server plugin HuskHomesGUI v2.3
[17:42:52] [Server thread/INFO]: [UltraCosmetics] Loading server plugin UltraCosmetics v3.4.1
[17:42:52] [Server thread/INFO]: [BungeeTokens-Spigot] Loading server plugin BungeeTokens-Spigot v1.1-SNAPSHOT
[17:42:52] [Server thread/INFO]: [PreventMapCloning] Loading server plugin PreventMapCloning v1.0-SNAPSHOT
[17:42:52] [Server thread/INFO]: [DeathCoordinates] Loading server plugin DeathCoordinates v1.12.1
[17:42:52] [Server thread/INFO]: [ImageMaps] Loading server plugin ImageMaps v1.0.11
[17:42:52] [Server thread/INFO]: [PluginManager] Loading server plugin PluginManager v2.8.1
[17:42:52] [Server thread/INFO]: [ChestCommands] Loading server plugin ChestCommands v4.0.4
[17:42:52] [Server thread/INFO]: [Stopwatch] Loading server plugin Stopwatch v1.0
[17:42:52] [Server thread/INFO]: [qsaddon-discount] Loading server plugin qsaddon-discount v5.2.0.6
[17:42:52] [Server thread/INFO]: [Builders-Utilities] Loading server plugin Builders-Utilities v2.1.1-95
[17:42:52] [Server thread/INFO]: [EpicSign] Loading server plugin EpicSign v2.0.3
[17:42:52] [Server thread/INFO]: [MobsToEggs] Loading server plugin MobsToEggs v1.7.7
[17:42:52] [Server thread/INFO]: [Lottery] Loading server plugin Lottery v5.1.0
[17:42:52] [Server thread/INFO]: [RankGift] Loading server plugin RankGift v1.0
[17:42:52] [Server thread/INFO]: [Ethria-Board] Loading server plugin Ethria-Board v1.0-SNAPSHOT
[17:42:52] [Server thread/INFO]: [Ethria-Board] Locale "en" (plugins/Ethria-Board/lang/en.lang) was registered!
[17:42:52] [Server thread/INFO]: [Bank] Loading server plugin Bank v4.6.4-RELEASE
[17:42:52] [Server thread/INFO]: [Core] Checking update for Bank v4.6.4-RELEASE
[17:42:52] [Server thread/INFO]: [Core] Attempting to load default ItemUtils
[17:42:52] [Server thread/INFO]: [Core] Loaded default, enjoy :)
[17:42:52] [Server thread/INFO]: [Bank] Citizens loaded
[17:42:52] [Server thread/INFO]: [Bank] Block loaded
[17:42:52] [Server thread/INFO]: [Bank] Sign loaded
[17:42:52] [Server thread/INFO]: [Bank] Headdb loaded
[17:42:52] [Server thread/INFO]: [Bank] Bank loaded
[17:42:52] [Server thread/INFO]: [MarriageMaster] Loading server plugin MarriageMaster v2.7.2
[17:42:52] [Server thread/INFO]: [NBSPlayer] Loading server plugin NBSPlayer v1.0-SNAPSHOT
[17:42:52] [Server thread/INFO]: [ClipboardConnect] Loading server plugin ClipboardConnect v1.0.0+c6c939b
[17:42:52] [Server thread/INFO]: [EmployMe] Loading server plugin EmployMe v1.2.3
[17:42:52] [Server thread/INFO]: [AntiMapCopy] Loading server plugin AntiMapCopy v2.5
[17:42:52] [Server thread/INFO]: [NotQuests] Loading server plugin NotQuests v5.17.1
[17:42:52] [Server thread/INFO]: [Automessage] Loading server plugin Automessage v1.2
[17:42:52] [Server thread/INFO]: [UltimateAutoRestart] Loading server plugin UltimateAutoRestart vBuild 54a
[17:42:52] [Server thread/INFO]: [Booster] Loading server plugin Booster v9.0
[17:42:52] [Server thread/INFO]: [RedLib] Loading server plugin RedLib v2022-09-25 01:04
[17:42:52] [Server thread/INFO]: [HiddenArmor] Loading server plugin HiddenArmor v1.1.2
[17:42:52] [Server thread/INFO]: [EscoVotifier-Spigot] Loading server plugin EscoVotifier-Spigot v1.0-SNAPSHOT
[17:42:52] [Server thread/INFO]: [antiRedstoneClock] Loading server plugin antiRedstoneClock v1.4.1
[17:42:52] [Server thread/INFO]: [antiRedstoneClock] WorldGuard 7 found
[17:42:52] [Server thread/INFO]: [antiRedstoneClock] Flag antiredstoneclock registered
[17:42:52] [Server thread/INFO]: [qscompat-advancedregionmarket] Loading server plugin qscompat-advancedregionmarket v5.2.0.6
[17:42:52] [Server thread/INFO]: [qscompat-advancedregionmarket] Loading up...
[17:42:52] [Server thread/INFO]: [UltimateSign] Loading server plugin UltimateSign v1.5.2
[17:42:52] [Server thread/INFO]: [DisableRecipe] Loading server plugin DisableRecipe v1.4.4
[17:42:52] [Server thread/INFO]: [qsaddon-list] Loading server plugin qsaddon-list v5.2.0.6
[17:42:52] [Server thread/INFO]: [DisableChorusFruit] Loading server plugin DisableChorusFruit v1.5.0
[17:42:52] [Server thread/INFO]: [ChatFeelings] Loading server plugin ChatFeelings v4.12.1
[17:42:52] [Server thread/INFO]: [ClearLag] Loading server plugin ClearLag v3.2.2
[17:42:52] [Server thread/INFO]: [Signatures] Loading server plugin Signatures v1.0
[17:42:52] [Server thread/INFO]: [CrazyCrates] Loading server plugin CrazyCrates v1.16.3
[17:42:52] [Server thread/INFO]: [qsaddon-displaycontrol] Loading server plugin qsaddon-displaycontrol v5.2.0.6
[17:42:52] [Server thread/INFO]: [qscompat-plotsquared] Loading server plugin qscompat-plotsquared v5.2.0.6
[17:42:52] [Server thread/INFO]: [qscompat-plotsquared] Loading up...
[17:42:52] [Server thread/INFO]: [ArmorStandTools] Loading server plugin ArmorStandTools v4.4.4
[17:42:52] [Server thread/INFO]: [ArmorStandTools] Registered custom WorldGuard flag: ast
[17:42:52] [Server thread/INFO]: [TAB-Bridge] Loading server plugin TAB-Bridge v5.0.0
[17:42:52] [Server thread/INFO]: [ChatFree] Loading server plugin ChatFree v1.2
[17:42:52] [Server thread/INFO]: [PlayerWarps] Loading server plugin PlayerWarps v6.29.0
[17:42:52] [Server thread/INFO]: [AdventCalendar] Loading server plugin AdventCalendar v1.0.3
[17:42:52] [Server thread/INFO]: [ItemSorter] Loading server plugin ItemSorter v1.4.4_DEV
[17:42:52] [Server thread/INFO]: [GPet] Loading server plugin GPet v1.3.0
[17:42:52] [Server thread/INFO]: [AntiSmithingCopy] Loading server plugin AntiSmithingCopy v1.0
[17:42:52] [Server thread/INFO]: [EthriaEvent] Loading server plugin EthriaEvent v1.0-SNAPSHOT
[17:42:52] [Server thread/INFO]: [KixsChatGames] Loading server plugin KixsChatGames v2.1.1
[17:42:52] [Server thread/INFO]: [iShop] Loading server plugin iShop v2.24
[17:42:52] [Server thread/INFO]: [GSit] Loading server plugin GSit v1.6.0
[17:42:52] [Server thread/INFO]: [BetterConcrete] Loading server plugin BetterConcrete v1.9.1
[17:42:52] [Server thread/INFO]: [spark] Loading server plugin spark v1.10.43
[17:42:52] [Server thread/INFO]: [HeadBlocks] Loading server plugin HeadBlocks v2.4.2
[17:42:52] [Server thread/INFO]: [PlotBorders] Loading server plugin PlotBorders v1.12
[17:42:52] [Server thread/INFO]: [Craftmatic] Loading server plugin Craftmatic v3.1.0
[17:42:52] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[17:42:52] [Server thread/INFO]: [Core] Enabling Core v0.6.0
[17:42:52] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.111
[17:42:53] [Server thread/INFO]:         __    
[17:42:53] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.111
[17:42:53] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[17:42:53] [Server thread/INFO]: 
[17:42:53] [Server thread/INFO]: [LuckPerms] Loading configuration...
[17:42:54] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[17:42:54] [Server thread/INFO]: [LuckPerms] Loading messaging service... [PLUGINMSG]
[17:42:55] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[17:42:55] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[17:42:55] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 2819ms)
[17:42:55] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-CMI
[17:42:55] [Server thread/INFO]: [Vault] [Economy] CMI Economy found: Waiting
[17:42:55] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[17:42:55] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-CMI
[17:42:56] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[17:42:56] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.8.4-SNAPSHOT-624;fe626a9
[17:42:56] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[17:42:56] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[17:42:56] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[17:42:56] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[17:42:56] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_20_R3.PaperweightFaweAdapter as the Bukkit adapter
[17:42:56] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.1.1-SNAPSHOT-669
[17:42:56] [Server thread/INFO]: [PlotSquared] Enabling PlotSquared v7.2.1-Premium
[17:42:56] [Server thread/INFO]: [PlotSquared/ClassLoaderCaptionProvider] No resource for locale 'de' found in the plugin file.Please ensure you have placed the latest version of the file messages_de.json in the 'lang' folder.You may be able to find completed translations at https://intellectualsites.crowdin.com/plotsquared
[17:42:56] [Server thread/INFO]: [PlotSquared/PlotSquared] Loaded caption map for namespace 'plotsquared': com.plotsquared.core.configuration.caption.LocalizedCaptionMap
[17:42:57] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared version licensed to Spigot user 1004080
[17:42:57] [Server thread/INFO]: [PlotSquared/BukkitPlatform] https://www.spigotmc.org/resources/77506
[17:42:57] [Server thread/INFO]: [PlotSquared/BukkitPlatform] Download ID: -927715857
[17:42:57] [Server thread/INFO]: [PlotSquared/BukkitPlatform] Thanks for supporting us :)
[17:42:57] [Server thread/INFO]: [PlotSquared/PlotSquared] Connection to database established. Type: SQLite
[17:42:57] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared hooked into WorldEdit
[17:42:57] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) Using LuckPerms as a complementary UUID service
[17:42:57] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) 538 UUIDs will be cached
[17:42:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: plotsquared [3]
[17:42:57] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared hooked into PlaceholderAPI
[17:42:57] [Server thread/INFO]: [TheCore] Enabling TheCore v2.5.0
[17:42:57] [Server thread/INFO]: [TheCore] - - - - - - - - Loading - - - - - - - -
[17:42:57] [Server thread/INFO]: [TheCore] Unsupported Minecraft version.
[17:42:57] [Server thread/INFO]: [TheCore] Disabling TheCore v2.5.0
[17:42:57] [Server thread/INFO]: [TheCore] - - - - - - - - Disabling - - - - - - - -
[17:42:57] [Server thread/INFO]: [TheCore] - - - - - Successfully unloaded - - - - -
[17:42:57] [Server thread/INFO]: [RedLib] Enabling RedLib v2022-09-25 01:04
[17:42:57] [luckperms-worker-11/WARN]: [LuckPerms] Thread luckperms-worker-11 threw an uncaught exception
java.lang.RuntimeException: java.lang.IllegalStateException: zip file closed
    at me.lucko.luckperms.common.event.gen.GeneratedEventClass.lambda$static$0(GeneratedEventClass.java:69) ~[?:?]
    at java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1708) ~[?:?]
    at me.lucko.luckperms.common.cache.LoadingMap.get(LoadingMap.java:67) ~[?:?]
    at me.lucko.luckperms.common.event.gen.GeneratedEventClass.generate(GeneratedEventClass.java:80) ~[?:?]
    at me.lucko.luckperms.common.event.gen.GeneratedEventClass.preGenerate(GeneratedEventClass.java:88) ~[?:?]
    at java.util.concurrent.ForkJoinTask$RunnableExecuteAction.exec(ForkJoinTask.java:1395) ~[?:?]
    at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?]
    at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?]
    at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?]
    at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?]
    at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?]
Caused by: java.lang.IllegalStateException: zip file closed
    at java.util.zip.ZipFile.ensureOpen(ZipFile.java:831) ~[?:?]
    at java.util.zip.ZipFile.getEntry(ZipFile.java:330) ~[?:?]
    at java.util.jar.JarFile.getEntry(JarFile.java:518) ~[?:?]
    at java.util.jar.JarFile.getJarEntry(JarFile.java:473) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:209) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:588) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:169) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:144) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.entrypoint.classloader.group.SpigotPluginClassLoaderGroup.lookupClass(SpigotPluginClassLoaderGroup.java:43) ~[paper-1.20.4.jar:git-Paper-320]
    at io.papermc.paper.plugin.entrypoint.classloader.group.SimpleListPluginClassLoaderGroup.getClassByName(SimpleListPluginClassLoaderGroup.java:37) ~[paper-1.20.4.jar:git-Paper-320]
    at io.papermc.paper.plugin.entrypoint.classloader.group.LockingClassLoaderGroup.getClassByName(LockingClassLoaderGroup.java:34) ~[paper-1.20.4.jar:git-Paper-320]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:187) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:575) ~[?:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:521) ~[?:?]
    at me.lucko.luckperms.lib.bytebuddy.description.type.TypeDescription$Generic$AnnotationReader$Delegator.ofWildcardUpperBoundType(TypeDescription.java:3205) ~[?:?]
    at me.lucko.luckperms.lib.bytebuddy.description.type.TypeDescription$Generic$OfWildcardType$ForLoadedType$WildcardUpperBoundTypeList.get(TypeDescription.java:4855) ~[?:?]
    at me.lucko.luckperms.lib.bytebuddy.description.type.TypeDescription$Generic$OfWildcardType$ForLoadedType$WildcardUpperBoundTypeList.get(TypeDescription.java:4828) ~[?:?]
    at me.lucko.luckperms.lib.bytebuddy.matcher.FilterableList$AbstractBase.getOnly(FilterableList.java:141) ~[?:?]
    at me.lucko.luckperms.lib.bytebuddy.description.type.TypeDescription$Generic$Visitor$ForSignatureVisitor$OfTypeArgument.onWildcard(TypeDescription.java:1795) ~[?:?]
    at me.lucko.luckperms.lib.bytebuddy.description.type.TypeDescription$Generic$Visitor$ForSignatureVisitor$OfTypeArgument.onWildcard(TypeDescription.java:1779) ~[?:?]
    at me.lucko.luckperms.lib.bytebuddy.description.type.TypeDescription$Generic$OfWildcardType.accept(TypeDescription.java:4710) ~[?:?]
    at me.lucko.luckperms.lib.bytebuddy.description.type.TypeDescription$Generic$Visitor$ForSignatureVisitor.onOwnableType(TypeDescription.java:1749) ~[?:?]
    at me.lucko.luckperms.lib.bytebuddy.description.type.TypeDescription$Generic$Visitor$ForSignatureVisitor.onParameterizedType(TypeDescription.java:1730) ~[?:?]
    at me.lucko.luckperms.lib.bytebuddy.description.type.TypeDescription$Generic$Visitor$ForSignatureVisitor.onParameterizedType(TypeDescription.java:1689) ~[?:?]
    at me.lucko.luckperms.lib.bytebuddy.description.type.TypeDescription$Generic$OfParameterizedType.accept(TypeDescription.java:5151) ~[?:?]
    at me.lucko.luckperms.lib.bytebuddy.description.method.MethodDescription$AbstractBase.getGenericSignature(MethodDescription.java:481) ~[?:?]
    at me.lucko.luckperms.lib.bytebuddy.dynamic.scaffold.TypeWriter$MethodPool$Record$ForDefinedMethod.apply(TypeWriter.java:590) ~[?:?]
    at me.lucko.luckperms.lib.bytebuddy.dynamic.scaffold.TypeWriter$Default$ForCreation.create(TypeWriter.java:5751) ~[?:?]
    at me.lucko.luckperms.lib.bytebuddy.dynamic.scaffold.TypeWriter$Default.make(TypeWriter.java:2166) ~[?:?]
    at me.lucko.luckperms.lib.bytebuddy.dynamic.scaffold.subclass.SubclassDynamicTypeBuilder.make(SubclassDynamicTypeBuilder.java:232) ~[?:?]
    at me.lucko.luckperms.lib.bytebuddy.dynamic.scaffold.subclass.SubclassDynamicTypeBuilder.make(SubclassDynamicTypeBuilder.java:204) ~[?:?]
    at me.lucko.luckperms.lib.bytebuddy.dynamic.DynamicType$Builder$AbstractBase.make(DynamicType.java:3659) ~[?:?]
    at me.lucko.luckperms.lib.bytebuddy.dynamic.DynamicType$Builder$AbstractBase$Delegator.make(DynamicType.java:3897) ~[?:?]
    at me.lucko.luckperms.common.event.gen.GeneratedEventClass.<init>(GeneratedEventClass.java:142) ~[?:?]
    at me.lucko.luckperms.common.event.gen.GeneratedEventClass.lambda$static$0(GeneratedEventClass.java:67) ~[?:?]
    ... 10 more
[17:42:57] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[17:42:57] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[17:42: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.
[17:42:57] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[17:42:57] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[17:42:57] [Server thread/INFO]: Preparing level "world"
[17:42:57] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[17:42:57] [Server thread/INFO]: Time elapsed: 141 ms
[17:42:57] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[17:42:57] [Server thread/INFO]: Time elapsed: 67 ms
[17:42:57] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[17:42:58] [Server thread/INFO]: Time elapsed: 325 ms
[17:42:58] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.9.2
[17:42:58] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.20.3 (765)
[17:42:58] [Server thread/INFO]: [FancyPerks] Enabling FancyPerks v1.1.0
[17:42:58] [Server thread/INFO]: [FancyPerks] Found vault economy
[17:42:58] [Server thread/INFO]: [FancyPerks] Found vault permission
[17:42:58] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.9-SNAPSHOT+2241-c0cbe27
[17:42:58] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[17:42:58] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[17:42:58] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[17:42:58] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[17:42:58] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[17:42:58] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[17:42:58] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[17:42:58] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[17:42:58] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[17:42:58] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[17:42:58] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[17:42:58] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[17:42:58] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[17:42:58] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[17:42:58] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[17:42:58] [Server thread/INFO]: [WorldGuard] Loading region data...
[17:42:58] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.5
[17:42:58] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[17:42:58] [Server thread/INFO]: [mcMMO] Enabling mcMMO v2.1.225
[17:42:59] [Server thread/INFO]: [mcMMO] Updating FlatFile Database...
[17:42:59] [Server thread/INFO]: [mcMMO] Detected 20 data entries which need correction.
[17:42:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mcmmo [1.0,0]
[17:42:59] [Server thread/INFO]: [RedisChat] Enabling RedisChat v4.2.8
[17:42:59] [Server thread/ERROR]: Error occurred while enabling RedisChat v4.2.8 (Is it up to date?)
java.lang.IllegalStateException: Tried to access CommandAPIHandler instance, but it was null! Are you using CommandAPI features before calling CommandAPI#onLoad?
    at dev.unnm3d.redischat.libraries.commandapi.CommandAPIHandler.getInstance(CommandAPIHandler.java:169) ~[RedisChat-4.2.8.jar:?]
    at dev.unnm3d.redischat.libraries.commandapi.CommandAPI.onEnable(CommandAPI.java:135) ~[RedisChat-4.2.8.jar:?]
    at dev.unnm3d.redischat.RedisChat.onEnable(RedisChat.java:89) ~[RedisChat-4.2.8.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:190) ~[paper-1.20.4.jar:git-Paper-320]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.4.jar:git-Paper-320]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:641) ~[paper-1.20.4.jar:git-Paper-320]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:552) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:673) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:433) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1132) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[paper-1.20.4.jar:git-Paper-320]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[17:42:59] [Server thread/INFO]: [RedisChat] Disabling RedisChat v4.2.8
[17:42:59] [Server thread/WARN]: [RedisChat] RedisChat is disabling...
[17:42:59] [Server thread/ERROR]: Error occurred (in the plugin loader) while disabling RedisChat v4.2.8 (Is it up to date?)
java.lang.NullPointerException: Cannot invoke "dev.unnm3d.redischat.api.DataManager.clearInvShareCache()" because "this.dataManager" is null
    at dev.unnm3d.redischat.RedisChat.onDisable(RedisChat.java:259) ~[RedisChat-4.2.8.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:283) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:225) ~[paper-1.20.4.jar:git-Paper-320]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.20.4.jar:git-Paper-320]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:537) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:194) ~[paper-1.20.4.jar:git-Paper-320]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.4.jar:git-Paper-320]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:641) ~[paper-1.20.4.jar:git-Paper-320]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:552) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:673) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:433) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1132) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[paper-1.20.4.jar:git-Paper-320]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[17:42:59] [Server thread/INFO]: [BigDoors] Enabling BigDoors vAlpha 0.1.8.49
[17:42:59] [Server thread/WARN]: [BigDoors] Failed to parse material: "BLOCK_OF_COAL"
[17:42:59] [Server thread/WARN]: [BigDoors] Failed to parse material: "BLOCK_OF_RAW_COPPER"
[17:42:59] [Server thread/WARN]: [BigDoors] Failed to parse material: "BLOCK_OF_DIAMOND"
[17:42:59] [Server thread/WARN]: [BigDoors] Failed to parse material: "BLOCK_OF_EMERALD"
[17:42:59] [Server thread/WARN]: [BigDoors] Failed to parse material: "BLOCK_OF_GOLD"
[17:42:59] [Server thread/WARN]: [BigDoors] Failed to parse material: "BLOCK_OF_RAW_GOLD"
[17:42:59] [Server thread/WARN]: [BigDoors] Failed to parse material: "BLOCK_OF_IRON"
[17:42:59] [Server thread/WARN]: [BigDoors] Failed to parse material: "BLOCK_OF_RAW_IRON"
[17:42:59] [Server thread/WARN]: [BigDoors] Failed to parse material: "LAPIS_LAZULI_BLOCK"
[17:42:59] [Server thread/WARN]: [BigDoors] Failed to parse material: "LAPIS_LAZULI_ORE"
[17:42:59] [Server thread/WARN]: [BigDoors] Failed to parse material: "ANCHIENT_DEBRIS"
[17:42:59] [Server thread/WARN]: [BigDoors] Failed to parse material: "BLOCK_OF_NETHERITE"
[17:42:59] [Server thread/WARN]: [BigDoors] Failed to parse material: "BLOCK_OF_QUARTZ"
[17:42:59] [Server thread/WARN]: [BigDoors] Failed to parse material: "BLOCK_OF_REDSTONE"
[17:42:59] [Server thread/WARN]: [BigDoors] Failed to add material: "BRICK". Only solid materials are allowed to be powerblocks!
[17:42:59] [Server thread/WARN]: [BigDoors] Failed to parse material: "EXPOSED_COPPER_BLOCK"
[17:42:59] [Server thread/WARN]: [BigDoors] Failed to parse material: "OXIDIZED_COPPER_BLOCK"
[17:42:59] [Server thread/WARN]: [BigDoors] Failed to parse material: "WAXED_COPPER"
[17:42:59] [Server thread/WARN]: [BigDoors] Failed to parse material: "WEATHERED_COPPER_BLOCK"
[17:42:59] [Server thread/WARN]: [BigDoors] Failed to add material: "NETHER_BRICK". Only solid materials are allowed to be powerblocks!
[17:42:59] [Server thread/INFO]: [BigDoors] Power Block Types:
[17:42:59] [Server thread/INFO]: [BigDoors]  - END_STONE
[17:42:59] [Server thread/INFO]: [BigDoors]  - RED_SANDSTONE
[17:42:59] [Server thread/INFO]: [BigDoors]  - DARK_OAK_LOG
[17:42:59] [Server thread/INFO]: [BigDoors]  - POLISHED_BASALT
[17:42:59] [Server thread/INFO]: [BigDoors]  - STRIPPED_OAK_WOOD
[17:42:59] [Server thread/INFO]: [BigDoors]  - ACACIA_LOG
[17:42:59] [Server thread/INFO]: [BigDoors]  - CRACKED_STONE_BRICKS
[17:42:59] [Server thread/INFO]: [BigDoors]  - ACACIA_WOOD
[17:42:59] [Server thread/INFO]: [BigDoors]  - STRIPPED_BIRCH_WOOD
[17:42:59] [Server thread/INFO]: [BigDoors]  - MOSSY_STONE_BRICKS
[17:42:59] [Server thread/INFO]: [BigDoors]  - CRACKED_DEEPSLATE_BRICKS
[17:42:59] [Server thread/INFO]: [BigDoors]  - WAXED_EXPOSED_CUT_COPPER
[17:42:59] [Server thread/INFO]: [BigDoors]  - DEEPSLATE_IRON_ORE
[17:42:59] [Server thread/INFO]: [BigDoors]  - CRACKED_POLISHED_BLACKSTONE_BRICKS
[17:42:59] [Server thread/INFO]: [BigDoors]  - STRIPPED_CRIMSON_HYPHAE
[17:42:59] [Server thread/INFO]: [BigDoors]  - DEEPSLATE_COPPER_ORE
[17:42:59] [Server thread/INFO]: [BigDoors]  - GRANITE
[17:42:59] [Server thread/INFO]: [BigDoors]  - OAK_PLANKS
[17:42:59] [Server thread/INFO]: [BigDoors]  - SPRUCE_PLANKS
[17:42:59] [Server thread/INFO]: [BigDoors]  - OBSIDIAN
[17:42:59] [Server thread/INFO]: [BigDoors]  - MOSSY_COBBLESTONE
[17:42:59] [Server thread/INFO]: [BigDoors]  - POLISHED_GRANITE
[17:42:59] [Server thread/INFO]: [BigDoors]  - STONE_BRICKS
[17:42:59] [Server thread/INFO]: [BigDoors]  - CRACKED_NETHER_BRICKS
[17:42:59] [Server thread/INFO]: [BigDoors]  - STRIPPED_OAK_LOG
[17:42:59] [Server thread/INFO]: [BigDoors]  - OAK_WOOD
[17:42:59] [Server thread/INFO]: [BigDoors]  - ACACIA_PLANKS
[17:42:59] [Server thread/INFO]: [BigDoors]  - WAXED_CUT_COPPER
[17:42:59] [Server thread/INFO]: [BigDoors]  - CALCITE
[17:42:59] [Server thread/INFO]: [BigDoors]  - DARK_OAK_WOOD
[17:42:59] [Server thread/INFO]: [BigDoors]  - DEEPSLATE_DIAMOND_ORE
[17:42:59] [Server thread/INFO]: [BigDoors]  - TUFF
[17:42:59] [Server thread/INFO]: [BigDoors]  - POLISHED_DIORITE
[17:42:59] [Server thread/INFO]: [BigDoors]  - STRIPPED_SPRUCE_WOOD
[17:42:59] [Server thread/INFO]: [BigDoors]  - JUNGLE_WOOD
[17:42:59] [Server thread/INFO]: [BigDoors]  - GOLD_BLOCK
[17:42:59] [Server thread/INFO]: [BigDoors]  - STRIPPED_ACACIA_WOOD
[17:42:59] [Server thread/INFO]: [BigDoors]  - WAXED_EXPOSED_COPPER
[17:42:59] [Server thread/INFO]: [BigDoors]  - POLISHED_BLACKSTONE
[17:42:59] [Server thread/INFO]: [BigDoors]  - COAL_ORE
[17:42:59] [Server thread/INFO]: [BigDoors]  - OXIDIZED_CUT_COPPER
[17:42:59] [Server thread/INFO]: [BigDoors]  - DARK_PRISMARINE
[17:42:59] [Server thread/INFO]: [BigDoors]  - CUT_SANDSTONE
[17:42:59] [Server thread/INFO]: [BigDoors]  - CRYING_OBSIDIAN
[17:42:59] [Server thread/INFO]: [BigDoors]  - SANDSTONE
[17:42:59] [Server thread/INFO]: [BigDoors]  - DEEPSLATE_EMERALD_ORE
[17:42:59] [Server thread/INFO]: [BigDoors]  - CHISELED_DEEPSLATE
[17:42:59] [Server thread/INFO]: [BigDoors]  - WAXED_WEATHERED_COPPER
[17:42:59] [Server thread/INFO]: [BigDoors]  - DEEPSLATE_BRICKS
[17:42:59] [Server thread/INFO]: [BigDoors]  - DIORITE
[17:42:59] [Server thread/INFO]: [BigDoors]  - JUNGLE_LOG
[17:42:59] [Server thread/INFO]: [BigDoors]  - JUNGLE_PLANKS
[17:42:59] [Server thread/INFO]: [BigDoors]  - DEEPSLATE_LAPIS_ORE
[17:42:59] [Server thread/INFO]: [BigDoors]  - DEEPSLATE_TILES
[17:42:59] [Server thread/INFO]: [BigDoors]  - NETHER_QUARTZ_ORE
[17:42:59] [Server thread/INFO]: [BigDoors]  - CUT_COPPER
[17:42:59] [Server thread/INFO]: [BigDoors]  - EMERALD_ORE
[17:42:59] [Server thread/INFO]: [BigDoors]  - WARPED_PLANKS
[17:42:59] [Server thread/INFO]: [BigDoors]  - BIRCH_LOG
[17:42:59] [Server thread/INFO]: [BigDoors]  - CUT_RED_SANDSTONE
[17:42:59] [Server thread/INFO]: [BigDoors]  - STRIPPED_JUNGLE_LOG
[17:42:59] [Server thread/INFO]: [BigDoors]  - STRIPPED_ACACIA_LOG
[17:42:59] [Server thread/INFO]: [BigDoors]  - COBBLED_DEEPSLATE
[17:42:59] [Server thread/INFO]: [BigDoors]  - BRICKS
[17:42:59] [Server thread/INFO]: [BigDoors]  - COPPER_BLOCK
[17:42:59] [Server thread/INFO]: [BigDoors]  - ANDESITE
[17:42:59] [Server thread/INFO]: [BigDoors]  - IRON_ORE
[17:42:59] [Server thread/INFO]: [BigDoors]  - NETHER_BRICKS
[17:42:59] [Server thread/INFO]: [BigDoors]  - NETHER_GOLD_ORE
[17:42:59] [Server thread/INFO]: [BigDoors]  - QUARTZ_BLOCK
[17:42:59] [Server thread/INFO]: [BigDoors]  - SMOOTH_BASALT
[17:42:59] [Server thread/INFO]: [BigDoors]  - EXPOSED_CUT_COPPER
[17:42:59] [Server thread/INFO]: [BigDoors]  - CRIMSON_PLANKS
[17:42:59] [Server thread/INFO]: [BigDoors]  - GILDED_BLACKSTONE
[17:42:59] [Server thread/INFO]: [BigDoors]  - WAXED_WEATHERED_CUT_COPPER
[17:42:59] [Server thread/INFO]: [BigDoors]  - PRISMARINE_BRICKS
[17:42:59] [Server thread/INFO]: [BigDoors]  - WAXED_OXIDIZED_CUT_COPPER
[17:42:59] [Server thread/INFO]: [BigDoors]  - STRIPPED_DARK_OAK_LOG
[17:42:59] [Server thread/INFO]: [BigDoors]  - POLISHED_DEEPSLATE
[17:42:59] [Server thread/INFO]: [BigDoors]  - STRIPPED_JUNGLE_WOOD
[17:42:59] [Server thread/INFO]: [BigDoors]  - DEEPSLATE_REDSTONE_ORE
[17:42:59] [Server thread/INFO]: [BigDoors]  - SPRUCE_LOG
[17:42:59] [Server thread/INFO]: [BigDoors]  - END_STONE_BRICKS
[17:42:59] [Server thread/INFO]: [BigDoors]  - GOLD_ORE
[17:42:59] [Server thread/INFO]: [BigDoors]  - QUARTZ_BRICKS
[17:42:59] [Server thread/INFO]: [BigDoors]  - OAK_FENCE
[17:42:59] [Server thread/INFO]: [BigDoors]  - STRIPPED_DARK_OAK_WOOD
[17:42:59] [Server thread/INFO]: [BigDoors]  - BASALT
[17:42:59] [Server thread/INFO]: [BigDoors]  - DRIPSTONE_BLOCK
[17:42:59] [Server thread/INFO]: [BigDoors]  - DIAMOND_ORE
[17:42:59] [Server thread/INFO]: [BigDoors]  - SMOOTH_QUARTZ
[17:42:59] [Server thread/INFO]: [BigDoors]  - CHISELED_SANDSTONE
[17:42:59] [Server thread/INFO]: [BigDoors]  - WAXED_OXIDIZED_COPPER
[17:42:59] [Server thread/INFO]: [BigDoors]  - BIRCH_PLANKS
[17:42:59] [Server thread/INFO]: [BigDoors]  - SMOOTH_RED_SANDSTONE
[17:42:59] [Server thread/INFO]: [BigDoors]  - CRACKED_DEEPSLATE_TILES
[17:42:59] [Server thread/INFO]: [BigDoors]  - STONE
[17:42:59] [Server thread/INFO]: [BigDoors]  - PRISMARINE
[17:42:59] [Server thread/INFO]: [BigDoors]  - STRIPPED_CRIMSON_STEM
[17:42:59] [Server thread/INFO]: [BigDoors]  - RED_NETHER_BRICKS
[17:42:59] [Server thread/INFO]: [BigDoors]  - CRIMSON_STEM
[17:42:59] [Server thread/INFO]: [BigDoors]  - QUARTZ_PILLAR
[17:42:59] [Server thread/INFO]: [BigDoors]  - OAK_LOG
[17:42:59] [Server thread/INFO]: [BigDoors]  - CHISELED_QUARTZ_BLOCK
[17:42:59] [Server thread/INFO]: [BigDoors]  - DARK_OAK_PLANKS
[17:42:59] [Server thread/INFO]: [BigDoors]  - SMOOTH_SANDSTONE
[17:42:59] [Server thread/INFO]: [BigDoors]  - PURPUR_PILLAR
[17:42:59] [Server thread/INFO]: [BigDoors]  - POLISHED_BLACKSTONE_BRICKS
[17:42:59] [Server thread/INFO]: [BigDoors]  - BIRCH_WOOD
[17:42:59] [Server thread/INFO]: [BigDoors]  - COPPER_ORE
[17:42:59] [Server thread/INFO]: [BigDoors]  - CHISELED_POLISHED_BLACKSTONE
[17:42:59] [Server thread/INFO]: [BigDoors]  - DEEPSLATE_GOLD_ORE
[17:42:59] [Server thread/INFO]: [BigDoors]  - CHISELED_STONE_BRICKS
[17:42:59] [Server thread/INFO]: [BigDoors]  - NETHERRACK
[17:42:59] [Server thread/INFO]: [BigDoors]  - SPRUCE_WOOD
[17:42:59] [Server thread/INFO]: [BigDoors]  - CHISELED_NETHER_BRICKS
[17:42:59] [Server thread/INFO]: [BigDoors]  - POLISHED_ANDESITE
[17:42:59] [Server thread/INFO]: [BigDoors]  - REDSTONE_ORE
[17:42:59] [Server thread/INFO]: [BigDoors]  - WEATHERED_CUT_COPPER
[17:42:59] [Server thread/INFO]: [BigDoors]  - DEEPSLATE
[17:42:59] [Server thread/INFO]: [BigDoors]  - COBBLESTONE
[17:42:59] [Server thread/INFO]: [BigDoors]  - STRIPPED_SPRUCE_LOG
[17:42:59] [Server thread/INFO]: [BigDoors]  - CHISELED_RED_SANDSTONE
[17:42:59] [Server thread/INFO]: [BigDoors]  - DEEPSLATE_COAL_ORE
[17:42:59] [Server thread/INFO]: [BigDoors]  - PURPUR_BLOCK
[17:42:59] [Server thread/INFO]: [BigDoors]  - SMOOTH_STONE
[17:42:59] [Server thread/INFO]: [BigDoors]  - BLACKSTONE
[17:42:59] [Server thread/INFO]: [BigDoors] Blacklisted materials:
[17:42:59] [Server thread/INFO]: [BigDoors]  - BEDROCK
[17:42:59] [Server thread/INFO]: [BigDoors] No materials Whitelisted!
[17:42:59] [Server thread/INFO]: [BigDoors] Failed to parse material: "GRASS"
[17:42:59] [Server thread/INFO]: [BigDoors] DestroyListed materials:
[17:42:59] [Server thread/INFO]: [BigDoors]  - LAVA
[17:42:59] [Server thread/INFO]: [BigDoors]  - WATER
[17:42:59] [Server thread/INFO]: [BigDoors]  - SNOW
[17:42:59] [Server thread/INFO]: [BigDoors]  - FERN
[17:42:59] [Server thread/INFO]: [BigDoors]  - GRASS
[17:42:59] [Server thread/INFO]: [BigDoors]  - TALL_GRASS
[17:42:59] [Server thread/INFO]: [BigDoors]  - SEAGRASS
[17:42:59] [Server thread/INFO]: [BigDoors]  - TALL_SEAGRASS
[17:42:59] [Server thread/WARN]: [BigDoors] mcMMO detected! All ores are blacklisted to avoid item duplication! This can be overridden in the config.
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: TUFF_SLAB. Reason: Unsupported material with no data value: TUFF_SLAB
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: TUFF_STAIRS. Reason: Unsupported material with no data value: TUFF_STAIRS
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: TUFF_WALL. Reason: Unsupported material with no data value: TUFF_WALL
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: CHISELED_TUFF. Reason: Unsupported material with no data value: CHISELED_TUFF
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: CHISELED_TUFF. Reason: Unsupported material with no data value: CHISELED_TUFF
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: POLISHED_TUFF. Reason: Unsupported material with no data value: POLISHED_TUFF
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: POLISHED_TUFF_SLAB. Reason: Unsupported material with no data value: POLISHED_TUFF_SLAB
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: POLISHED_TUFF_STAIRS. Reason: Unsupported material with no data value: POLISHED_TUFF_STAIRS
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: POLISHED_TUFF_WALL. Reason: Unsupported material with no data value: POLISHED_TUFF_WALL
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: TUFF_BRICKS. Reason: Unsupported material with no data value: TUFF_BRICKS
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: TUFF_BRICK_SLAB. Reason: Unsupported material with no data value: TUFF_BRICK_SLAB
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: TUFF_BRICK_STAIRS. Reason: Unsupported material with no data value: TUFF_BRICK_STAIRS
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: TUFF_BRICK_WALL. Reason: Unsupported material with no data value: TUFF_BRICK_WALL
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: CHISELED_TUFF_BRICKS. Reason: Unsupported material with no data value: CHISELED_TUFF_BRICKS
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: CHISELED_COPPER. Reason: Unsupported material with no data value: CHISELED_COPPER
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: CHISELED_COPPER. Reason: Unsupported material with no data value: CHISELED_COPPER
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: EXPOSED_CHISELED_COPPER. Reason: Unsupported material with no data value: EXPOSED_CHISELED_COPPER
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: EXPOSED_CHISELED_COPPER. Reason: Unsupported material with no data value: EXPOSED_CHISELED_COPPER
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WEATHERED_CHISELED_COPPER. Reason: Unsupported material with no data value: WEATHERED_CHISELED_COPPER
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WEATHERED_CHISELED_COPPER. Reason: Unsupported material with no data value: WEATHERED_CHISELED_COPPER
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: OXIDIZED_CHISELED_COPPER. Reason: Unsupported material with no data value: OXIDIZED_CHISELED_COPPER
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: OXIDIZED_CHISELED_COPPER. Reason: Unsupported material with no data value: OXIDIZED_CHISELED_COPPER
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WAXED_CHISELED_COPPER. Reason: Unsupported material with no data value: WAXED_CHISELED_COPPER
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WAXED_CHISELED_COPPER. Reason: Unsupported material with no data value: WAXED_CHISELED_COPPER
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WAXED_EXPOSED_CHISELED_COPPER. Reason: Unsupported material with no data value: WAXED_EXPOSED_CHISELED_COPPER
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WAXED_EXPOSED_CHISELED_COPPER. Reason: Unsupported material with no data value: WAXED_EXPOSED_CHISELED_COPPER
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WAXED_WEATHERED_CHISELED_COPPER. Reason: Unsupported material with no data value: WAXED_WEATHERED_CHISELED_COPPER
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WAXED_WEATHERED_CHISELED_COPPER. Reason: Unsupported material with no data value: WAXED_WEATHERED_CHISELED_COPPER
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WAXED_OXIDIZED_CHISELED_COPPER. Reason: Unsupported material with no data value: WAXED_OXIDIZED_CHISELED_COPPER
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WAXED_OXIDIZED_CHISELED_COPPER. Reason: Unsupported material with no data value: WAXED_OXIDIZED_CHISELED_COPPER
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: SHORT_GRASS. Reason: Unsupported material with no data value: SHORT_GRASS
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: SHORT_GRASS. Reason: Unsupported material with no data value: SHORT_GRASS
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: COPPER_DOOR. Reason: Unsupported material with no data value: COPPER_DOOR
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: EXPOSED_COPPER_DOOR. Reason: Unsupported material with no data value: EXPOSED_COPPER_DOOR
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WEATHERED_COPPER_DOOR. Reason: Unsupported material with no data value: WEATHERED_COPPER_DOOR
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: OXIDIZED_COPPER_DOOR. Reason: Unsupported material with no data value: OXIDIZED_COPPER_DOOR
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WAXED_COPPER_DOOR. Reason: Unsupported material with no data value: WAXED_COPPER_DOOR
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WAXED_EXPOSED_COPPER_DOOR. Reason: Unsupported material with no data value: WAXED_EXPOSED_COPPER_DOOR
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WAXED_WEATHERED_COPPER_DOOR. Reason: Unsupported material with no data value: WAXED_WEATHERED_COPPER_DOOR
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WAXED_OXIDIZED_COPPER_DOOR. Reason: Unsupported material with no data value: WAXED_OXIDIZED_COPPER_DOOR
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: COPPER_TRAPDOOR. Reason: Unsupported material with no data value: COPPER_TRAPDOOR
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: EXPOSED_COPPER_TRAPDOOR. Reason: Unsupported material with no data value: EXPOSED_COPPER_TRAPDOOR
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WEATHERED_COPPER_TRAPDOOR. Reason: Unsupported material with no data value: WEATHERED_COPPER_TRAPDOOR
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: OXIDIZED_COPPER_TRAPDOOR. Reason: Unsupported material with no data value: OXIDIZED_COPPER_TRAPDOOR
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WAXED_COPPER_TRAPDOOR. Reason: Unsupported material with no data value: WAXED_COPPER_TRAPDOOR
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WAXED_EXPOSED_COPPER_TRAPDOOR. Reason: Unsupported material with no data value: WAXED_EXPOSED_COPPER_TRAPDOOR
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WAXED_WEATHERED_COPPER_TRAPDOOR. Reason: Unsupported material with no data value: WAXED_WEATHERED_COPPER_TRAPDOOR
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WAXED_OXIDIZED_COPPER_TRAPDOOR. Reason: Unsupported material with no data value: WAXED_OXIDIZED_COPPER_TRAPDOOR
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: CRAFTER. Reason: Unsupported material with no data value: CRAFTER
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: CRAFTER. Reason: Unsupported material with no data value: CRAFTER
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: BREEZE_SPAWN_EGG. Reason: Unsupported material with no data value: BREEZE_SPAWN_EGG
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: BREEZE_SPAWN_EGG. Reason: Unsupported material with no data value: BREEZE_SPAWN_EGG
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: COPPER_GRATE. Reason: Unsupported material with no data value: COPPER_GRATE
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: COPPER_GRATE. Reason: Unsupported material with no data value: COPPER_GRATE
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: EXPOSED_COPPER_GRATE. Reason: Unsupported material with no data value: EXPOSED_COPPER_GRATE
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: EXPOSED_COPPER_GRATE. Reason: Unsupported material with no data value: EXPOSED_COPPER_GRATE
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WEATHERED_COPPER_GRATE. Reason: Unsupported material with no data value: WEATHERED_COPPER_GRATE
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WEATHERED_COPPER_GRATE. Reason: Unsupported material with no data value: WEATHERED_COPPER_GRATE
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: OXIDIZED_COPPER_GRATE. Reason: Unsupported material with no data value: OXIDIZED_COPPER_GRATE
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: OXIDIZED_COPPER_GRATE. Reason: Unsupported material with no data value: OXIDIZED_COPPER_GRATE
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WAXED_COPPER_GRATE. Reason: Unsupported material with no data value: WAXED_COPPER_GRATE
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WAXED_COPPER_GRATE. Reason: Unsupported material with no data value: WAXED_COPPER_GRATE
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WAXED_EXPOSED_COPPER_GRATE. Reason: Unsupported material with no data value: WAXED_EXPOSED_COPPER_GRATE
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WAXED_EXPOSED_COPPER_GRATE. Reason: Unsupported material with no data value: WAXED_EXPOSED_COPPER_GRATE
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WAXED_WEATHERED_COPPER_GRATE. Reason: Unsupported material with no data value: WAXED_WEATHERED_COPPER_GRATE
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WAXED_WEATHERED_COPPER_GRATE. Reason: Unsupported material with no data value: WAXED_WEATHERED_COPPER_GRATE
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WAXED_OXIDIZED_COPPER_GRATE. Reason: Unsupported material with no data value: WAXED_OXIDIZED_COPPER_GRATE
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WAXED_OXIDIZED_COPPER_GRATE. Reason: Unsupported material with no data value: WAXED_OXIDIZED_COPPER_GRATE
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: COPPER_BULB. Reason: Unsupported material with no data value: COPPER_BULB
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: COPPER_BULB. Reason: Unsupported material with no data value: COPPER_BULB
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: EXPOSED_COPPER_BULB. Reason: Unsupported material with no data value: EXPOSED_COPPER_BULB
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: EXPOSED_COPPER_BULB. Reason: Unsupported material with no data value: EXPOSED_COPPER_BULB
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WEATHERED_COPPER_BULB. Reason: Unsupported material with no data value: WEATHERED_COPPER_BULB
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WEATHERED_COPPER_BULB. Reason: Unsupported material with no data value: WEATHERED_COPPER_BULB
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: OXIDIZED_COPPER_BULB. Reason: Unsupported material with no data value: OXIDIZED_COPPER_BULB
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: OXIDIZED_COPPER_BULB. Reason: Unsupported material with no data value: OXIDIZED_COPPER_BULB
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WAXED_COPPER_BULB. Reason: Unsupported material with no data value: WAXED_COPPER_BULB
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WAXED_COPPER_BULB. Reason: Unsupported material with no data value: WAXED_COPPER_BULB
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WAXED_EXPOSED_COPPER_BULB. Reason: Unsupported material with no data value: WAXED_EXPOSED_COPPER_BULB
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WAXED_EXPOSED_COPPER_BULB. Reason: Unsupported material with no data value: WAXED_EXPOSED_COPPER_BULB
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WAXED_WEATHERED_COPPER_BULB. Reason: Unsupported material with no data value: WAXED_WEATHERED_COPPER_BULB
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WAXED_WEATHERED_COPPER_BULB. Reason: Unsupported material with no data value: WAXED_WEATHERED_COPPER_BULB
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WAXED_OXIDIZED_COPPER_BULB. Reason: Unsupported material with no data value: WAXED_OXIDIZED_COPPER_BULB
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: WAXED_OXIDIZED_COPPER_BULB. Reason: Unsupported material with no data value: WAXED_OXIDIZED_COPPER_BULB
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: TRIAL_SPAWNER. Reason: Unsupported material with no data value: TRIAL_SPAWNER
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: TRIAL_SPAWNER. Reason: Unsupported material with no data value: TRIAL_SPAWNER
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: TRIAL_KEY. Reason: Unsupported material with no data value: TRIAL_KEY
[17:42:59] [Server thread/WARN]: [BigDoors] Could not determine material of mat: TRIAL_KEY. Reason: Unsupported material with no data value: TRIAL_KEY
[17:42:59] [Server thread/INFO]: [BigDoors] Enabling stats! Thanks, it really helps!
[17:42:59] [Server thread/INFO]: [BigDoors] Successfully hooked into "WorldGuard"!
[17:42:59] [Server thread/INFO]: [BigDoors] Successfully hooked into "PlotSquared"!
[17:42:59] [Server thread/INFO]: [CMILib] Enabling CMILib v1.4.4.0
[17:43:00] [Server thread/INFO]: Server version: v1_20_R3 - 1.20.4 - paper
[17:43:00] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[17:43:00] [Server thread/INFO]: CMI hooked.
[17:43:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.4.4.0]
[17:43:00] [Server thread/INFO]: PlaceholderAPI hooked.
[17:43:00] [Server thread/INFO]: Updated (EN) language file. Took 14ms
[17:43:00] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.1
[17:43:00] [Server thread/INFO]: [Votifier] Loaded token for website: default
[17:43:00] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[17:43:00] [Server thread/INFO]: [Votifier] Receiving votes over PluginMessaging channel 'nuvotifier:votes'.
[17:43:00] [Server thread/INFO]: [Jobs] Enabling Jobs v5.2.2.1
[17:43:00] [Server thread/INFO]: ------------- Jobs -------------
[17:43:00] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /[0:0:0:0:0:0:0:0%0]:8092.
[17:43:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: jobsr [5.2.2.1]
[17:43:00] [Server thread/INFO]: PlaceholderAPI hooked.
[17:43:00] [Server thread/INFO]: Connected to database (SqLite)
[17:43:00] [Server thread/INFO]: Loaded 8 titles
[17:43:00] [Server thread/INFO]: Loaded 74 protected blocks timers
[17:43:00] [Server thread/INFO]: Loaded 1078 custom item names
[17:43:00] [Server thread/INFO]: Loaded 72 custom entity names
[17:43:00] [Server thread/INFO]: Loaded 2 custom MythicMobs names
[17:43:00] [Server thread/INFO]: Loaded 38 custom enchant names
[17:43:00] [Server thread/INFO]: The PotionEffects section not found in TranslatableWords/Words_de.yml file.
[17:43:00] [Server thread/INFO]: Loaded 16 custom color names
[17:43:00] [Server thread/INFO]: Update shops items icon section and use 'ItemStack' instead
[17:43:00] [Server thread/INFO]: Loaded 4 shop items
[17:43:00] [Server thread/INFO]: Update Explorer jobs gui item section to use `ItemStack` instead of `Item` sections format. More information inside _EXAMPLE job file
[17:43:00] [Server thread/INFO]: Loaded 1 quests for Explorer
[17:43:00] [Server thread/INFO]: Loaded 1 quests for Alchemist
[17:43:00] [Server thread/INFO]: Loaded 1 quests for Minenarbeiter
[17:43:00] [Server thread/WARN]: [Jobs] Job Miner has an invalid Break type property: lightgrey_terracotta!
[17:43:00] [Server thread/WARN]: [Jobs] Job Miner has an invalid Break type property: puple_terracotta!
[17:43:00] [Server thread/WARN]: [Jobs] Job Miner has an invalid Break type property: cobble_deepslate!
[17:43:00] [Server thread/WARN]: [Jobs] Job Miner has an invalid Break type property: budding_amethist!
[17:43:00] [Server thread/INFO]: Loaded 2 quests for Jäger
[17:43:00] [Server thread/WARN]: [Jobs] Job Hunter has an invalid Kill type property: hoglins!
[17:43:00] [Server thread/INFO]: Loaded 1 quests for Schmied
[17:43:00] [Server thread/INFO]: Loaded 1 quests for Zauberer
[17:43:00] [Server thread/INFO]: Loaded 1 quests for Handwerker
[17:43:00] [Server thread/WARN]: [Jobs] Job Crafter has an invalid Craft type property: blackstone_brick_stairs!
[17:43:00] [Server thread/INFO]: Loaded 1 quests for Architekt
[17:43:00] [Server thread/WARN]: [Jobs] Job Builder has an invalid Place type property: crimson_fence_fate!
[17:43:00] [Server thread/WARN]: [Jobs] Job Builder has an invalid Place type property: cracked_polished_blackstone_brick!
[17:43:00] [Server thread/WARN]: [Jobs] Job Builder has an invalid Place type property: polisched_deepslate_wall!
[17:43:00] [Server thread/WARN]: [Jobs] Job Builder has an invalid Place type property: coobled_deepslate_slab!
[17:43:00] [Server thread/INFO]: Loaded 1 quests for Fischer/Angler
[17:43:00] [Server thread/INFO]: Loaded 1 quests for Forster
[17:43:00] [Server thread/INFO]: Loaded 1 quests for Gräber
[17:43:00] [Server thread/INFO]: Loaded 1 quests for Landwirt
[17:43:00] [Server thread/INFO]: Loaded 12 jobs
[17:43:00] [Server thread/INFO]: Loaded 0 boosted items
[17:43:00] [Server thread/INFO]: Loaded 24 furnace for reassigning.
[17:43:00] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
[17:43:00] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
[17:43:00] [Server thread/INFO]: Preloaded 2395 players data in 0.04
[17:43:00] [Server thread/INFO]: WorldGuard detected.
[17:43:00] [Server thread/INFO]: mcMMO2.1.225 was found - Enabling capabilities.
[17:43:00] [Server thread/INFO]: Registered McMMO 2.x listener
[17:43:00] [Server thread/INFO]: Plugin has been enabled successfully.
[17:43:00] [Server thread/INFO]: ------------------------------------
[17:43:00] [Server thread/INFO]: [CMI] Enabling CMI v9.6.9.1
[17:43:01] [Server thread/INFO]: ┏━━━┓ ┏━┓┏━┓ ┏━━┓
[17:43:01] [Server thread/INFO]: ┃┏━┓┃ ┃ ┗┛ ┃ ┗┫┣┛
[17:43:01] [Server thread/INFO]: ┃┃ ┗┛ ┃┏┓┏┓┃  ┃┃ 
[17:43:01] [Server thread/INFO]: ┃┃ ┏┓ ┃┃┃┃┃┃  ┃┃ 
[17:43:01] [Server thread/INFO]: ┃┗━┛┃ ┃┃┃┃┃┃ ┏┫┣┓
[17:43:01] [Server thread/INFO]: ┗━━━┛ ┗┛┗┛┗┛ ┗━━┛
[17:43:01] [Server thread/INFO]: _______________________________________________________
[17:43:01] [Server thread/INFO]:   Integrating PaperSpigot async methods
[17:43:01] [Server thread/INFO]:   Vault found. (Loaded: true)
[17:43:01] [Server thread/INFO]:   Citizens found. (Loaded: false)
[17:43:01] [Server thread/INFO]:   57 Enabled and 2 Disabled modules
[17:43:01] [Server thread/INFO]:   Votifier found. (Loaded: true)
[17:43:01] [Server thread/INFO]:   Loaded (1) portals into memory. Took 6ms
[17:43:01] [Server thread/INFO]:   ProtocolLib found. (Loaded: true)
[17:43:01] [Server thread/INFO]:   Permission plugin: LuckPerms5.4.111
[17:43:01] [Server thread/INFO]:   Initialized Cipher256 AES
[17:43:01] [Server thread/INFO]:   Loaded (61) regular alias into memory. Took 19ms
[17:43:01] [Server thread/INFO]:   Loaded (6) custom text's into memory. Took 1ms
[17:43:01] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (freebuild) name
[17:43:01] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (lol) name
[17:43:01] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (Farmwelt3) name
[17:43:01] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (p_test) name
[17:43:01] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (plotwelt) name
[17:43:01] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (test) name
[17:43:01] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (Farmwelt) name
[17:43:01] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (1_20) name
[17:43:01] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (SuperiorWorld) name
[17:43:01] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (bskyblock_world_nether) name
[17:43:01] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (bskyblock_world_the_end) name
[17:43:01] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (bskyblock_world) name
[17:43:01] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (farmwelt20) name
[17:43:01] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (Farm) name
[17:43:01] [Server thread/INFO]:   Detected Java18
[17:43:01] [Server thread/INFO]:   5.5.5-10.5.21-MariaDB-0+deb11u1 data base type detected
[17:43:01] [Server thread/INFO]:   Started MySQL data base. Took 174ms
[17:43:01] [Server thread/INFO]:   Vault was found - Enabling capabilities. Economy: CMIEconomy
[17:43:01] [Server thread/INFO]:   Loaded (5) warning categories into memory. Took 0ms
[17:43:01] [Server thread/INFO]:   Loaded (3) warning commands into memory. Took 0ms
[17:43:01] [Server thread/INFO]:   Loaded (144) custom mob heads into memory. Took 5ms
[17:43:01] [Server thread/INFO]:   Loaded (0) cooldowns into memory. Took 11ms
[17:43:01] [Server thread/INFO]:   Enabling BungeeCord Support
[17:43:01] [Server thread/INFO]:   Initializing BungeeCord
[17:43:01] [Server thread/INFO]:   Loaded (5) kits into memory. Took 6ms
[17:43:01] [Server thread/INFO]:   Loaded (1) ranks into memory. Took 4ms
[17:43:01] [Server thread/INFO]:   Loaded (8) playtime rewards into memory. Took 0ms
[17:43:01] [Server thread/INFO]:   Loaded (340) player data into memory. Took 34ms
[17:43:01] [Server thread/INFO]:   Loaded (0) playtime records into memory. Took 1ms
[17:43:01] [Server thread/INFO]:   Loaded (0) playtime reward records into memory. Took 0ms
[17:43:01] [Server thread/INFO]:   Loaded (13) custom alias into memory. Took 1ms
[17:43:01] [Server thread/INFO]:   Loaded (1) interactive commands into memory. Took 1ms
[17:43:01] [Server thread/INFO]:   Registered events. Took 56ms
[17:43:01] [Server thread/INFO]:   Loaded (0) event action commands into memory. Took 2ms
[17:43:01] [Server thread/INFO]:   Loaded (EN) language file into memory. Took 54ms
[17:43:02] [Server thread/INFO]:   Loaded (DE) language file into memory. Took 44ms
[17:43:02] [Server thread/INFO]:   Loaded (245) worth values into memory. Took 28ms
[17:43:02] [Server thread/INFO]:   Loaded (3) warps into memory. Took 1ms
[17:43:02] [Server thread/INFO]:   VaultPermissions found. (Loaded: true)
[17:43:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmi [9.6.9.1]
[17:43:02] [Server thread/INFO]:   PlaceholderAPI hooked.
[17:43:02] [Server thread/INFO]:   PlaceholderAPI found. (Loaded: true)
[17:43:02] [Server thread/INFO]:   mcMMO found. (Loaded: true)
[17:43:02] [Server thread/INFO]:   Jobs found. (Loaded: true)
[17:43:02] [Server thread/INFO]:   Starting world timer.
[17:43:02] [Server thread/INFO]:   Initializing world manager.
[17:43:02] [Server thread/INFO]:   Loaded (4) schedules into memory. Took 2ms
[17:43:02] [Server thread/INFO]:   Loaded GeoIP
[17:43:02] [Server thread/INFO]:   Loaded (1) holograms into memory. Took 2ms
[17:43:02] [Server thread/INFO]:   Loaded (2) skin cache entries into memory. Took 0ms
[17:43:02] [Server thread/INFO]:   Loaded (1) custom recipes into memory. Took 4ms
[17:43:02] [Server thread/INFO]:   Loaded (1) ArmorStand templates into memory. Took 1ms
[17:43:02] [Server thread/INFO]:   Version 9.6.9.1 has been enabled
[17:43:02] [Server thread/INFO]: ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
[17:43:02] [Server thread/INFO]: [Vault][Economy] CMI Economy hooked.
[17:43:02] [Server thread/INFO]: [AuctionHouse] Enabling AuctionHouse v2.104.0
[17:43:02] [Server thread/INFO]:  
[17:43:02] [Server thread/INFO]: =============================
[17:43:02] [Server thread/INFO]: AuctionHouse 2.104.0 by Kiran Hart
[17:43:02] [Server thread/INFO]: Action: Enabling...
[17:43:02] [Server thread/INFO]: [TweetyCore] Hooked into AuctionHouse.
[17:43:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: auctionhouse [1.0.0]
[17:43:02] [Server thread/INFO]: =============================
[17:43:02] [Server thread/INFO]:  
[17:43:02] [Server thread/INFO]: [CrashAPI] Enabling CrashAPI v1.1.5
[17:43:02] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.12.2
[17:43:02] [Server thread/INFO]: [NBTAPI] Adding listeners...
[17:43:02] [Server thread/INFO]: [NBTAPI] Checking bindings...
[17:43:02] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[17:43:02] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[17:43:02] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[17:43:02] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[17:43:02] [Server thread/INFO]: [HolographicDisplays] Enabling HolographicDisplays v3.0.4-SNAPSHOT-b259
[17:43:02] [Server thread/INFO]: [HolographicDisplays] Fatal error while enabling HolographicDisplays v3.0.4-SNAPSHOT-b259:

Holographic Displays only supports Spigot from 1.8 to 1.20.
The plugin has been disabled.

[17:43:02] [Server thread/INFO]: [EnchantmentSolution] Enabling EnchantmentSolution v2.5.7.1
[17:43:02] [Server thread/ERROR]: Error occurred while enabling EnchantmentSolution v2.5.7.1 (Is it up to date?)
java.lang.NoClassDefFoundError: Could not initialize class org.ctp.enchantmentsolution.enchantments.RegisterEnchantments
    at org.ctp.enchantmentsolution.listeners.enchantments.AttributeListener.<init>(AttributeListener.java:41) ~[EnchantmentSolution-2.5.7.1.jar:?]
    at org.ctp.enchantmentsolution.EnchantmentSolution.onEnable(EnchantmentSolution.java:132) ~[EnchantmentSolution-2.5.7.1.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:190) ~[paper-1.20.4.jar:git-Paper-320]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.4.jar:git-Paper-320]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:641) ~[paper-1.20.4.jar:git-Paper-320]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:552) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:673) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:433) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1132) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[paper-1.20.4.jar:git-Paper-320]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.NoSuchMethodError: 'void org.bukkit.enchantments.Enchantment.<init>(org.bukkit.NamespacedKey)' [in thread "Server thread"]
    at org.ctp.enchantmentsolution.enchantments.CustomEnchantmentWrapper.<init>(CustomEnchantmentWrapper.java:17) ~[EnchantmentSolution-2.5.7.1.jar:?]
    at org.ctp.enchantmentsolution.enchantments.RegisterEnchantments.<clinit>(RegisterEnchantments.java:32) ~[EnchantmentSolution-2.5.7.1.jar:?]
    at org.ctp.enchantmentsolution.EnchantmentSolution.onLoad(EnchantmentSolution.java:103) ~[EnchantmentSolution-2.5.7.1.jar:?]
    at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:59) ~[paper-1.20.4.jar:git-Paper-320]
    at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:18) ~[paper-1.20.4.jar:git-Paper-320]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:39) ~[paper-1.20.4.jar:git-Paper-320]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:36) ~[paper-1.20.4.jar:git-Paper-320]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.loadPlugins(CraftServer.java:509) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:273) ~[paper-1.20.4.jar:git-Paper-320]
    ... 3 more
[17:43:02] [Server thread/INFO]: [EnchantmentSolution] Disabling EnchantmentSolution v2.5.7.1
[17:43:02] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.9
[17:43:02] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.9" 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--].
[17:43:02] [Server thread/INFO]: [Multiverse-Core] ÂWe are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[17:43:02] [Server thread/INFO]: Preparing start region for dimension minecraft:farmwelt
[17:43:03] [Server thread/INFO]: Time elapsed: 240 ms
[17:43:03] [Server thread/INFO]: [WorldGuard] (Farmwelt) TNT ignition is PERMITTED.
[17:43:03] [Server thread/INFO]: [WorldGuard] (Farmwelt) Lighters are PERMITTED.
[17:43:03] [Server thread/INFO]: [WorldGuard] (Farmwelt) Lava fire is PERMITTED.
[17:43:03] [Server thread/INFO]: [WorldGuard] (Farmwelt) Fire spread is UNRESTRICTED.
[17:43:03] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Farmwelt'
[17:43:03] [Server thread/INFO]: Could not set generator for world 'bskyblock_world_nether': Plugin 'BentoBox' does not exist
[17:43:03] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: bskyblock_world_nether
[17:43:03] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[17:43:03] [Server thread/INFO]: Preparing start region for dimension minecraft:farm
[17:43:03] [Server thread/INFO]: Time elapsed: 105 ms
[17:43:03] [Server thread/INFO]: [WorldGuard] (Farm) TNT ignition is PERMITTED.
[17:43:03] [Server thread/INFO]: [WorldGuard] (Farm) Lighters are PERMITTED.
[17:43:03] [Server thread/INFO]: [WorldGuard] (Farm) Lava fire is PERMITTED.
[17:43:03] [Server thread/INFO]: [WorldGuard] (Farm) Fire spread is UNRESTRICTED.
[17:43:03] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Farm'
[17:43:03] [Server thread/INFO]: Could not set generator for world 'bskyblock_world_the_end': Plugin 'BentoBox' does not exist
[17:43:03] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: bskyblock_world_the_end
[17:43:03] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[17:43:03] [Server thread/INFO]: Preparing start region for dimension minecraft:farmwelt20
[17:43:03] [Server thread/INFO]: Time elapsed: 128 ms
[17:43:03] [Server thread/INFO]: [WorldGuard] (farmwelt20) TNT ignition is PERMITTED.
[17:43:03] [Server thread/INFO]: [WorldGuard] (farmwelt20) Lighters are PERMITTED.
[17:43:03] [Server thread/INFO]: [WorldGuard] (farmwelt20) Lava fire is PERMITTED.
[17:43:03] [Server thread/INFO]: [WorldGuard] (farmwelt20) Fire spread is UNRESTRICTED.
[17:43:03] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'farmwelt20'
[17:43:03] [Server thread/INFO]: [PlotSquared/PlotSquared] Detected world load for 'p_test'
[17:43:03] [Server thread/INFO]: [PlotSquared/PlotSquared] - generator: PlotSquared>PlotSquared
[17:43:03] [Server thread/INFO]: [PlotSquared/PlotSquared] - plot world: com.plotsquared.core.generator.HybridPlotWorld
[17:43:03] [Server thread/INFO]: [PlotSquared/PlotSquared] - plot area manager: com.plotsquared.core.generator.HybridPlotManager
[17:43:03] [Server thread/INFO]: [P2] Loading flags for area: p_test
[17:43:03] [Server thread/INFO]: [P2] Bereichs-Flags: [animal-cap;50, pvp;false, pve;false, explosion;false, weather;clear, titles;false, chairs;true, soil-dry;false, misc-cap;100, quickshop-create;false, quickshop-trade;false]
[17:43:03] [Server thread/INFO]: [P2] Flags gelöscht: []
[17:43:03] [Server thread/INFO]: Preparing start region for dimension minecraft:p_test
[17:43:04] [Server thread/INFO]: Time elapsed: 304 ms
[17:43:04] [Server thread/INFO]: [WorldGuard] (p_test) TNT ignition is PERMITTED.
[17:43:04] [Server thread/INFO]: [WorldGuard] (p_test) Lighters are PERMITTED.
[17:43:04] [Server thread/INFO]: [WorldGuard] (p_test) Lava fire is PERMITTED.
[17:43:04] [Server thread/INFO]: [WorldGuard] (p_test) Fire spread is UNRESTRICTED.
[17:43:04] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'p_test'
[17:43:04] [Server thread/INFO]: [PlotSquared/PlotSquared] Detected world load for 'plotwelt'
[17:43:04] [Server thread/INFO]: [PlotSquared/PlotSquared] - generator: PlotSquared>PlotSquared
[17:43:04] [Server thread/INFO]: [PlotSquared/PlotSquared] - plot world: com.plotsquared.core.generator.HybridPlotWorld
[17:43:04] [Server thread/INFO]: [PlotSquared/PlotSquared] - plot area manager: com.plotsquared.core.generator.HybridPlotManager
[17:43:04] [Server thread/INFO]: [P2] Loading flags for area: plotwelt
[17:43:04] [Server thread/INFO]: [P2] Bereichs-Flags: [animal-cap;50, pvp;false, pve;false, explosion;false, weather;clear, titles;false, chairs;true, soil-dry;false, misc-cap;100, quickshop-create;false, quickshop-trade;false]
[17:43:04] [Server thread/INFO]: [P2] Flags gelöscht: []
[17:43:04] [Server thread/INFO]: Preparing start region for dimension minecraft:plotwelt
[17:43:04] [Server thread/INFO]: Time elapsed: 12 ms
[17:43:04] [Server thread/INFO]: [WorldGuard] (plotwelt) TNT ignition is PERMITTED.
[17:43:04] [Server thread/INFO]: [WorldGuard] (plotwelt) Lighters are PERMITTED.
[17:43:04] [Server thread/INFO]: [WorldGuard] (plotwelt) Lava fire is PERMITTED.
[17:43:04] [Server thread/INFO]: [WorldGuard] (plotwelt) Fire spread is UNRESTRICTED.
[17:43:04] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'plotwelt'
[17:43:04] [Server thread/INFO]: [Multiverse-Core] 8 - World(s) loaded.
[17:43:04] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[17:43:04] [Server thread/INFO]: [Multiverse-Core] Version 4.3.9 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[17:43:04] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v22.1
[17:43:04] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[17:43:04] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[17:43:04] [Server thread/INFO]: --------------------
[17:43:04] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[17:43:04] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[17:43:04] [Server thread/INFO]: --------------------
[17:43:04] [Server thread/INFO]: [HuskHomes] Enabling HuskHomes v4.5.3
[17:43:04] [Server thread/INFO]: [HuskHomes] Initializing plugin config & locale files...
[17:43:04] [Server thread/INFO]: [HuskHomes] Successfully initialized plugin config & locale files
[17:43:04] [Server thread/INFO]: [HuskHomes] Initializing MySQL database connection...
[17:43:04] [Server thread/INFO]: [net.william278.huskhomes.libraries.hikari.HikariDataSource] HuskHomesHikariPool - Starting...
[17:43:04] [Server thread/INFO]: [net.william278.huskhomes.libraries.hikari.pool.HikariPool] HuskHomesHikariPool - Added connection com.mysql.cj.jdbc.ConnectionImpl@5ce39005
[17:43:04] [Server thread/INFO]: [net.william278.huskhomes.libraries.hikari.HikariDataSource] HuskHomesHikariPool - Start completed.
[17:43:04] [Server thread/INFO]: [HuskHomes] Successfully initialized MySQL database connection
[17:43:04] [Server thread/INFO]: [HuskHomes] Initializing Plugin Messages message broker...
[17:43:04] [Server thread/INFO]: [HuskHomes] Successfully initialized Plugin Messages message broker
[17:43:04] [Server thread/INFO]: [HuskHomes] Initializing hooks...
[17:43:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: huskhomes [4.5.3]
[17:43:04] [Server thread/INFO]: [HuskHomes] Registered 1 plugin hooks: PlaceholderAPI
[17:43:04] [Server thread/INFO]: [HuskHomes] Successfully initialized hooks
[17:43:04] [Server thread/INFO]: [HuskHomes] Initializing events...
[17:43:04] [Server thread/INFO]: [HuskHomes] Successfully initialized events
[17:43:04] [Server thread/INFO]: [HuskHomes] Initializing commands...
[17:43:04] [Server thread/INFO]: [HuskHomes] Successfully initialized commands
[17:43:04] [Server thread/INFO]: [HuskHomes] Initializing API...
[17:43:04] [Server thread/INFO]: [HuskHomes] Successfully initialized API
[17:43:04] [Server thread/INFO]: [HuskHomes] Initializing metrics...
[17:43:04] [Server thread/INFO]: [HuskHomes] Successfully initialized metrics
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] Enabling QuickShop-Hikari v5.2.0.6
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] Forwarding onEnable() to QuickShop instance...
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] Registering Bukkit Service: com.ghostchu.quickshop.api.QuickShopProvider
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] Starting plugin self-test, please wait...
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] [OK] Spigot Based Server Test
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] [OK] Old QuickShop Test
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] [OK] ModdedServer Based Test
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] [OK] ModdedServer Database Driver Test
[17:43:04] [Server thread/WARN]: [QuickShop-Hikari] [WARN] CoreSupport Test: QuickShop may not fully support version v1_20_R3/1.20.4, Some features may not work.
[17:43:04] [Server thread/WARN]: [QuickShop-Hikari] [WARN] Virtual DisplayItem Support Test: Your server version are not supports Virtual DisplayItem, resetting to RealDisplayItem...
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] [OK] ProtocolLib Incorrect Locate Test
[17:43:04] [Server thread/WARN]: [QuickShop-Hikari] [WARN] GameVersion supporting Test: Your Minecraft server version not tested by developers, QuickShop may ran into issues on this version.
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] [OK] Permission Manager Test
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] [OK] PacketListenerAPI Conflict Test
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] [OK] Reremake Test
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] [OK] End of life Test
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] Reading the configuration...
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] [ConfigUpdater] Saving configuration changes...
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] Developers: Ghost_chu, PotatoCraft Studio, Netherfoam, Timtower, KaiNoMood (KaiKikuchi), sandtechnology, jho5245, cakoyo, Andre601, Ectabro, Chris6ix, portlek, log4b0at, deadman96385, tiararinne, DoctaEnkoda, CarmJos, YuanYuanOwO, Mgazul, mart-r, Tim269, raphtaliapt, creatorfromhell, LoneDev6, Steven-OS, confuxeon, ibmibmibm, judgetread, mfnalex, Warriorrrr, PyvesB, yannicklamprecht, ORelio, RMSCA, Starmism, yiwenwang2090, PaulBGD, Nlkomaru, harry0198, Draesia, Localized community members on Crowdin
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] Original author: Netherfoam, Timtower, KaiNoMood, sandtechnology
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] Let's start loading the plugin
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] Setting up database...
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] Create database backup...
[17:43:04] [Server thread/INFO]: [cc.carm.lib.easysql.hikari.HikariDataSource] HikariPool-1 - Starting...
[17:43:04] [Server thread/INFO]: [cc.carm.lib.easysql.hikari.HikariDataSource] HikariPool-1 - Start completed.
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] Checking and updating database columns, it may take a while...
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] Finished!
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] Selected permission provider: Bukkit
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] Registering commands...
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] Loaded 1 rules for listener blacklist.
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] EventManager selected: QSEventManager
[17:43:04] [Server thread/ERROR]: [QuickShop-Hikari] Shop find distance is too high with chunk loading feature turned on! It may cause lag! Pick a number below 100!
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] Loading shops from database...
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] Used 6ms to fetch 2 shops from database.
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] Loading shops into memory...
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] Used 21ms to load 1 shops into memory (0 shops will be loaded after chunks/world loaded).
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] Registering listeners...
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] BungeeCord messenger listener registered!
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] Registering DisplayCheck task....
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] Cleaning MsgUtils...
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] Cleaning purchase messages from the database that are over a week old...
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] Log actions is enabled. Actions will be logged in the qs.log file!
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] [Shop Purger] Purge not enabled!
[17:43:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: qs [5.2.0.6]
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] Successfully loaded PlaceHolderAPI support!
[17:43:04] [Server thread/WARN]: [QuickShop-Hikari] [WARN] Virtual DisplayItem Support Test: VirtualDisplayItemManager is null, this shouldn't happen, contact with QuickShop-Hikari developer.
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Loaded! 350 ms.
[17:43:04] [Server thread/INFO]: [QuickShop-Hikari] Finishing up onEnable() in Bootloader...
[17:43:04] [Server thread/INFO]: [Ethria-Common] Enabling Ethria-Common v1.0-SNAPSHOT
[17:43:04] [Server thread/INFO]: [Ethria-Common] Economy provider from Vault enabled!
[17:43:04] [Server thread/INFO]: [Ethria-Common] Permission provider from Vault enabled!
[17:43:04] [Server thread/INFO]: [Ethria-Common] Chat provider from Vault enabled!
[17:43:04] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.33-SNAPSHOT (build 3283)
[17:43:04] [Server thread/INFO]: [Citizens] Loading external libraries
[17:43:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[17:43:05] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[17:43:05] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.18.3
[17:43:05] [Server thread/INFO]: [HeadDatabase] ÂVerwende Â"de_DE.lang" Âerstellt von ÂKnatschkopp
[17:43:05] [Server thread/INFO]: [HeadDatabase] Economy successfully setup using CURRENCY!
[17:43:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: hdb [4.18.3]
[17:43:05] [Server thread/INFO]: [Minepacks] Enabling Minepacks v2.4.24-T20231206015532
[17:43:05] [Server thread/INFO]: [Minepacks] Starting Minepacks in standalone mode!
[17:43:05] [Server thread/INFO]: [Minepacks] Config file successfully loaded.
[17:43:05] [Server thread/INFO]: [Minepacks] Language file successfully loaded. Language: german  Author: GeorgH93
[17:43:05] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Starting...
[17:43:05] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Start completed.
[17:43:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: minepacks [2.4.24-T20231206015532]
[17:43:05] [Server thread/INFO]: [Minepacks] PlaceholderAPI hook was successfully registered!
[17:43:05] [Server thread/INFO]: [Minepacks]  Minepacks has been enabled!  :) 
[17:43:05] [Server thread/INFO]: [NoteBlockAPI] Enabling NoteBlockAPI v1.6.2
[17:43:05] [Server thread/INFO]: [UltimateClans] Enabling UltimateClans v6.15.4
[17:43:05] [Server thread/INFO]: [UltimateClans] ========================================
[17:43:05] [Server thread/INFO]: [UltimateClans]  _     _  _        _                              ______  _                     
[17:43:05] [Server thread/INFO]: [UltimateClans] | |   | || | _    (_)               _            / _____)| |                  V6
[17:43:05] [Server thread/INFO]: [UltimateClans] | |   | || || |_   _  ____    ____ | |_    ____ | /      | |  ____  ____    ___ 
[17:43:05] [Server thread/INFO]: [UltimateClans] | |   | || ||  _) | ||    \  / _  ||  _)  / _  )| |      | | / _  ||  _ \  /___)
[17:43:05] [Server thread/INFO]: [UltimateClans] | |___| || || |__ | || | | |( ( | || |__ ( (/ / | \_____ | |( ( | || | | ||___ |
[17:43:05] [Server thread/INFO]: [UltimateClans]  \______||_| \___)|_||_|_|_| \_||_| \___) \____) \______)|_| \_||_||_| |_|(___/ 
[17:43:05] [Server thread/INFO]: [UltimateClans]  
[17:43:05] [Folia Async Scheduler Thread #4/INFO]: [HeadDatabase] Successfully loaded 59134 heads!
[17:43:05] [Folia Async Scheduler Thread #4/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[17:43:06] [Server thread/INFO]: [UltimateClans] Licensed to: Bloody_Mind (12246)
[17:43:06] [Server thread/INFO]: [UltimateClans] Language: GE (default)
[17:43:06] [Server thread/INFO]: [UltimateClans] Setup ScriptEngine: 
[17:43:06] [Server thread/INFO]: [UltimateClans]  - Loaded successfully
[17:43:06] [Server thread/INFO]: [UltimateClans] Setup database: MYSQL (Fast)
[17:43:06] [Server thread/INFO]: [UltimateClans]  - Clan database [OK]
[17:43:06] [Server thread/INFO]: [UltimateClans]  - Player database [OK]
[17:43:06] [Server thread/INFO]: [UltimateClans]  - Invite database [OK]
[17:43:06] [Server thread/INFO]: [UltimateClans]  - NEW Moderation database [OK]
[17:43:06] [Server thread/INFO]: [UltimateClans]  - Logger database [OK]
[17:43:06] [Server thread/INFO]: [UltimateClans] Setup hooks...
[17:43:06] [Server thread/INFO]: [UltimateClans]  - ProtocolLib
[17:43:06] [Server thread/INFO]: [UltimateClans]  - PlaceholderAPI
[17:43:06] [Server thread/INFO]: [UltimateClans]  - NBTAPI
[17:43:06] [Server thread/INFO]: [UltimateClans]  - WorldGuard 7+
[17:43:06] [Server thread/INFO]: [UltimateClans]  - CMI [ + HOLO USING]
[17:43:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: uclans [UClans V6]
[17:43:06] [Server thread/INFO]: [UltimateClans] Setup bedrock hook...
[17:43:06] [Server thread/INFO]: [UltimateClans]  - Not found.
[17:43:06] [Server thread/INFO]: [UltimateClans] Setup economy...
[17:43:06] [Server thread/INFO]: [UltimateClans]  - Vault
[17:43:06] [Server thread/INFO]: [UltimateClans] Economy: VAULT
[17:43:06] [Server thread/INFO]: [UltimateClans] Loaded 66 aliases.
[17:43:06] [Server thread/INFO]: [UltimateClans] Loaded 51 commands.
[17:43:06] [Server thread/INFO]: [UltimateClans] Loaded 1 clan patent(s).
[17:43:06] [Server thread/INFO]: [UltimateClans] Setup Addons...
[17:43:07] [pool-35-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared will fetch UUIDs in groups of 200
[17:43:07] [pool-35-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared has cached all UUIDs
[17:43:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: clanchest [ClanChest Addon V1]
[17:43:07] [Server thread/INFO]: [UltimateClans]  - ClanChest V3.4.0, Lang: EN, Chests: [On Demand], Using: MYSQL [Fast]
[17:43:08] [Server thread/INFO]: [UltimateClans]  - ClanBank, V3.3.1 (Lang: EN)
[17:43:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: clanland [ClanLand Addon V1]
[17:43:10] [Server thread/INFO]: [UltimateClans]  - ClanLand V2.4.2, Lang: EN, Using: SQLITE [Medium]
[17:43:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: clanquest [ClanQuest Addon V1]
[17:43:12] [Server thread/INFO]: [UltimateClans]  - ClanQuest V3.6.1, Lang: EN, Hooks: [CMI], Mode: CLAN, Quests: 30, Using: MYSQL [Fast]
[17:43:12] [Server thread/INFO]: [UltimateClans] ========================================
[17:43:12] [Server thread/INFO]: [AdvancedRegionMarket] Enabling AdvancedRegionMarket v3.5.3
[17:43:12] [Server thread/INFO]: [AdvancedRegionMarket] Using WorldGuard7 adapter
[17:43:12] [Server thread/INFO]: [AdvancedRegionMarket] Using WorldEdit7 adapter
[17:43:12] [Server thread/INFO]: [AdvancedRegionMarket] Using MC 1.20 adapter
[17:43:12] [Server thread/INFO]: [AdvancedRegionMarket] Regions loaded!
[17:43:12] [Server thread/INFO]: [AdvancedRegionMarket] Programmed by Alex9849
[17:43:12] [Server thread/INFO]: [AdvancedRegionMarket] I'm always searching for better translations of AdvancedRegionMarket. If you've translated the plugin it would be very nice if you would send me your translation via spigot private message! :)
[17:43:12] [Server thread/INFO]: [AdventCore] Enabling AdventCore v1.0.0
[17:43:12] [Server thread/ERROR]: Error occurred while enabling AdventCore v1.0.0 (Is it up to date?)
java.lang.NoClassDefFoundError: com/innouniq/plugin/TheCore/Common/ConsoleLogger/ConsoleLogger
    at com.innouniq.plugin.AdventCore.AdventCore.onEnable(AdventCore.java:70) ~[AdventCore - 1.0.0 (1.20.X).jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:190) ~[paper-1.20.4.jar:git-Paper-320]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.4.jar:git-Paper-320]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:641) ~[paper-1.20.4.jar:git-Paper-320]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:552) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:673) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:433) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1132) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[paper-1.20.4.jar:git-Paper-320]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.ClassNotFoundException: com.innouniq.plugin.TheCore.Common.ConsoleLogger.ConsoleLogger
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:521) ~[?:?]
    ... 13 more
[17:43:12] [Server thread/INFO]: [AdventCore] Disabling AdventCore v1.0.0
[17:43:12] [Server thread/ERROR]: Error occurred (in the plugin loader) while disabling AdventCore v1.0.0 (Is it up to date?)
java.lang.NoClassDefFoundError: com/innouniq/plugin/TheCore/Common/ConsoleLogger/ConsoleLogger
    at com.innouniq.plugin.AdventCore.AdventCore.onDisable(AdventCore.java:158) ~[AdventCore - 1.0.0 (1.20.X).jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:283) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:225) ~[paper-1.20.4.jar:git-Paper-320]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.20.4.jar:git-Paper-320]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:537) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:194) ~[paper-1.20.4.jar:git-Paper-320]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.4.jar:git-Paper-320]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:641) ~[paper-1.20.4.jar:git-Paper-320]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:552) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:673) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:433) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1132) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[paper-1.20.4.jar:git-Paper-320]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.ClassNotFoundException: com.innouniq.plugin.TheCore.Common.ConsoleLogger.ConsoleLogger
    ... 16 more
[17:43:12] [Server thread/INFO]: [AdvancedChests] Enabling AdvancedChests v29.2
[17:43:12] [Server thread/INFO]: [Ethria-Chests] NBTAPI was found, please make sure to have it enabled on config for a better experience
[17:43:12] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.9.1
[17:43:12] [Server thread/INFO]: [UltimateBackPack] Enabling UltimateBackPack v2.10.0
[17:43:12] [Server thread/INFO]: [UltimateBackPack] ========================================
[17:43:12] [Server thread/INFO]: [UltimateBackPack] Licensed to: Bloody_Mind (12246)
[17:43:12] [Server thread/INFO]: [UltimateBackPack] Language: EN (default)
[17:43:12] [Server thread/INFO]: [UltimateBackPack] Synchronization: NORMAL
[17:43:12] [Server thread/INFO]: [UltimateBackPack] Setup database: SQLITE (Hikari - Medium)
[17:43:12] [Server thread/INFO]: [UltimateBackPack]  - Backpack database [OK]
[17:43:12] [Server thread/INFO]: [UltimateBackPack]  - Register database [OK]
[17:43:12] [Server thread/INFO]: [UltimateBackPack] Hook: Vault
[17:43:12] [Server thread/INFO]: [UltimateBackPack] Hook: PlaceholderAPI
[17:43:12] [Server thread/INFO]: [UltimateBackPack] Hook: ProtocolLib
[17:43:12] [Server thread/INFO]: [UltimateBackPack] Hook: WorldGuard 7+
[17:43:12] [Server thread/INFO]: [UltimateBackPack] Loaded 12 commands.
[17:43:12] [Server thread/INFO]: [UltimateBackPack] Loaded 7 backpack(s)
[17:43:13] [Server thread/INFO]: [UltimateBackPack] Loaded 1 Registers(s)
[17:43:13] [Server thread/ERROR]: Error occurred while enabling UltimateBackPack v2.10.0 (Is it up to date?)
java.lang.ExceptionInInitializerError: null
    at me.ulrich.backpack.f.f.a(Unknown Source) ~[UltimateBackpack-2.10.0.jar:?]
    at me.ulrich.backpack.manager.r.a(Unknown Source) ~[UltimateBackpack-2.10.0.jar:?]
    at me.ulrich.backpack.f.g.a(Unknown Source) ~[UltimateBackpack-2.10.0.jar:?]
    at me.ulrich.backpack.manager.r.b(Unknown Source) ~[UltimateBackpack-2.10.0.jar:?]
    at me.ulrich.backpack.manager.r.b(Unknown Source) ~[UltimateBackpack-2.10.0.jar:?]
    at me.ulrich.backpack.Backpack.onEnable(Unknown Source) ~[UltimateBackpack-2.10.0.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:190) ~[paper-1.20.4.jar:git-Paper-320]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.4.jar:git-Paper-320]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:641) ~[paper-1.20.4.jar:git-Paper-320]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:552) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:673) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:433) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1132) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[paper-1.20.4.jar:git-Paper-320]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.NullPointerException: Cannot invoke "me.ulrich.backpack.i.f$c.ordinal()" because "<parameter1>" is null
    at me.ulrich.backpack.i.f$c.b(Unknown Source) ~[UltimateBackpack-2.10.0.jar:?]
    at me.ulrich.backpack.i.f.<clinit>(Unknown Source) ~[UltimateBackpack-2.10.0.jar:?]
    ... 18 more
[17:43:13] [Server thread/INFO]: [UltimateBackPack] Disabling UltimateBackPack v2.10.0
[17:43:13] [Server thread/INFO]: [UltimateBackPack] Starting shutdown ...
[17:43:13] [Server thread/INFO]: [UltimateBackPack] Closing storage...
[17:43:13] [Server thread/INFO]: [UltimateBackPack] Disabling Adventure...
[17:43:13] [Server thread/INFO]: [UltimateBackPack] Goodbye!
[17:43:13] [Server thread/INFO]: [RankUpgrade] Enabling RankUpgrade v1.0-SNAPSHOT
[17:43:13] [Server thread/INFO]: [RankUpgrade] [STDOUT] ÂEthria >> Â----------------------------
[17:43:13] [Server thread/WARN]: Nag author(s): '[]' of 'RankUpgrade v1.0-SNAPSHOT' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[17:43:13] [Server thread/INFO]: [RankUpgrade] [STDOUT] ÂEthria >> ÂRankUpgrade v1.0-SNAPSHOT enabled
[17:43:13] [Server thread/INFO]: [RankUpgrade] [STDOUT] ÂEthria >> Â----------------------------
[17:43:13] [Server thread/INFO]: [BottledExp] Enabling BottledExp v3.2.2.2
[17:43:13] [Server thread/INFO]: [BottledExp] Version 3.2.2.2 has been enabled
[17:43:13] [Server thread/INFO]: [BottledExp] Using LuckPerms via Vault.
[17:43:13] [Server thread/INFO]: [TreeFeller] Enabling TreeFeller v1.22.2
[17:43:13] [Server thread/INFO]: [TreeFeller] TreeFeller has been enabled! (Version 1.22.2) by ThizThizzyDizzy
[17:43:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: treefeller [1.0.0]
[17:43:13] [Server thread/INFO]: [TreeFeller] Server version: 1_20_R3
[17:43:13] [Server thread/INFO]: [TreeFeller] Loaded global values:
[17:43:13] [Server thread/INFO]: [TreeFeller] - Startup Logs: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Default Enabled: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Scan Distance: 256
[17:43:13] [Server thread/INFO]: [TreeFeller] - Leaf Detect Range: 6
[17:43:13] [Server thread/INFO]: [TreeFeller] - Leaf Break Range: 0
[17:43:13] [Server thread/INFO]: [TreeFeller] - Required Logs: 4
[17:43:13] [Server thread/INFO]: [TreeFeller] - Required Leaves: 10
[17:43:13] [Server thread/INFO]: [TreeFeller] - Max Logs: 250
[17:43:13] [Server thread/INFO]: [TreeFeller] - Max Height: 5
[17:43:13] [Server thread/INFO]: [TreeFeller] - Allow Partial: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Allow Partial Tool: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Player Leaves: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Diagonal Leaves: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Ignore Leaf Data: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Require Cross Section: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Force Distance Check: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Decorations: [snow, vines, cocoa, weeping vines, moss]
[17:43:13] [Server thread/INFO]: [TreeFeller] - Max Horizontal Trunk Pillar Length: 6
[17:43:13] [Server thread/INFO]: [TreeFeller] - Max Trunks: 1
[17:43:13] [Server thread/INFO]: [TreeFeller] - Cutting Animation: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Anim Delay: 1
[17:43:13] [Server thread/INFO]: [TreeFeller] - Replant Saplings: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Use Inventory Saplings: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Spawn Saplings: 0
[17:43:13] [Server thread/INFO]: [TreeFeller] - Sapling Timeout: 50
[17:43:13] [Server thread/INFO]: [TreeFeller] - Grass: [PODZOL, DIRT, GRASS_BLOCK]
[17:43:13] [Server thread/INFO]: [TreeFeller] - Root Distance: 6
[17:43:13] [Server thread/INFO]: [TreeFeller] - Log Behavior: BREAK
[17:43:13] [Server thread/INFO]: [TreeFeller] - Leaf Behavior: BREAK
[17:43:13] [Server thread/INFO]: [TreeFeller] - Fall Hurt Amount: 2.0
[17:43:13] [Server thread/INFO]: [TreeFeller] - Fall Hurt Max: 40
[17:43:13] [Server thread/INFO]: [TreeFeller] - Directional Fall Behavior: RANDOM
[17:43:13] [Server thread/INFO]: [TreeFeller] - Overridables: [CAVE_AIR, LARGE_FERN, AIR, TALL_GRASS, TALL_SEAGRASS, FERN, SEAGRASS, WATER]
[17:43:13] [Server thread/INFO]: [TreeFeller] - Lock Fall Cardinal: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Directional Fall Velocity: 0.35
[17:43:13] [Server thread/INFO]: [TreeFeller] - Vertical Fall Velocity: 0.05
[17:43:13] [Server thread/INFO]: [TreeFeller] - Explosive Fall Velocity: 0.0
[17:43:13] [Server thread/INFO]: [TreeFeller] - Random Fall Velocity: 0.0
[17:43:13] [Server thread/INFO]: [TreeFeller] - Fall Delay: 0
[17:43:13] [Server thread/INFO]: [TreeFeller] - Respect Unbreaking: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Respect Unbreakable: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Damage Mult: 1.0
[17:43:13] [Server thread/INFO]: [TreeFeller] - Stacked Tools: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Leaf Fortune: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Leaf Silk Touch: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Log Fortune: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Log Silk Touch: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Leave Stump: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Rotate Logs: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Drop Conversions: {SPRUCE_WOOD=SPRUCE_LOG, DARK_OAK_WOOD=DARK_OAK_LOG, BIRCH_WOOD=BIRCH_LOG, WARPED_HYPHAE=WARPED_STEM, CRIMSON_HYPHAE=CRIMSON_STEM, OAK_WOOD=OAK_LOG, JUNGLE_WOOD=JUNGLE_LOG, ACACIA_WOOD=ACACIA_LOG}
[17:43:13] [Server thread/INFO]: [TreeFeller] - Leaf Drop Chance: 1.0
[17:43:13] [Server thread/INFO]: [TreeFeller] - Log Drop Chance: 1.0
[17:43:13] [Server thread/INFO]: [TreeFeller] - Effects: []
[17:43:13] [Server thread/INFO]: [TreeFeller] - Consumed Food Base: 0.0
[17:43:13] [Server thread/INFO]: [TreeFeller] - Consumed Food Logs: 0.0
[17:43:13] [Server thread/INFO]: [TreeFeller] - Consumed Food Leaves: 0.0
[17:43:13] [Server thread/INFO]: [TreeFeller] - Consumed Health Base: 0.0
[17:43:13] [Server thread/INFO]: [TreeFeller] - Consumed Health Logs: 0.0
[17:43:13] [Server thread/INFO]: [TreeFeller] - Consumed Health Leaves: 0.0
[17:43:13] [Server thread/INFO]: [TreeFeller] - Prevent Breakage: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Enable Adventure: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Enable Survival: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Enable Creative: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - With Sneak: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Without Sneak: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - World Blacklist: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Cascade: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Parallel Cascade Limit: 1
[17:43:13] [Server thread/INFO]: [TreeFeller] - Cascade Check Limit: 64
[17:43:13] [Server thread/INFO]: [TreeFeller] - MMOCore Trunk XP: {woodcutting=1.0}
[17:43:13] [Server thread/INFO]: [TreeFeller] - MMOCore Leaves XP: {woodcutting=0.0}
[17:43:13] [Server thread/INFO]: [TreeFeller] - MMOCore Tree XP: {woodcutting=0.0}
[17:43:13] [Server thread/INFO]: [TreeFeller] - MMOCore Emulate Regen: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Compatibility MMOCore: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Compatibility Jobs: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - MCMMO Double Drops: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Compatibility mcMMO: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Compatibility mcMMO Classic: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Compatibility CoreProtect: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Compatibility WorldGuard: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Compatibility GriefPrevention: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Compatibility Towny: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - OreRegenerator Regen Delay: 1200
[17:43:13] [Server thread/INFO]: [TreeFeller] - Compatibility OreRegenerator: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Compatibility Drop2Inventory: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - EcoSkills Trunk XP: {Woodcutting=1.0}
[17:43:13] [Server thread/INFO]: [TreeFeller] - EcoSkills Leaves XP: {woodcutting=0.0}
[17:43:13] [Server thread/INFO]: [TreeFeller] - EcoSkills Tree XP: {woodcutting=0.0}
[17:43:13] [Server thread/INFO]: [TreeFeller] - Compatibility EcoSkills: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - EcoJobs Apply Multipliers: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Compatibility EcoJobs: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Compatibility LogBlock Legacy: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Compatibility LogBlock: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Compatibility Lands: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Compatibility PlaceholderAPI: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Compatibility SaberFactions: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - AureliumSkills Trunk XP: {foraging=1.0}
[17:43:13] [Server thread/INFO]: [TreeFeller] - AureliumSkills Leaves XP: {foraging=0.0}
[17:43:13] [Server thread/INFO]: [TreeFeller] - AureliumSkills Apply Modifiers: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Compatibility AureliumSkills: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Compatibility BlockRegen: true
[17:43:13] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[17:43:13] [Server thread/INFO]: [TreeFeller] - Trunk: OAK_LOG, OAK_WOOD
[17:43:13] [Server thread/INFO]: [TreeFeller] - Leaves: OAK_LEAVES
[17:43:13] [Server thread/INFO]: [TreeFeller] - Sapling: [OAK_SAPLING]
[17:43:13] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1
[17:43:13] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[17:43:13] [Server thread/INFO]: [TreeFeller] - Trunk: BIRCH_LOG, BIRCH_WOOD
[17:43:13] [Server thread/INFO]: [TreeFeller] - Leaves: BIRCH_LEAVES
[17:43:13] [Server thread/INFO]: [TreeFeller] - Sapling: [BIRCH_SAPLING]
[17:43:13] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1
[17:43:13] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[17:43:13] [Server thread/INFO]: [TreeFeller] - Trunk: SPRUCE_LOG, SPRUCE_WOOD
[17:43:13] [Server thread/INFO]: [TreeFeller] - Leaves: SPRUCE_LEAVES
[17:43:13] [Server thread/INFO]: [TreeFeller] - Sapling: [SPRUCE_SAPLING]
[17:43:13] [Server thread/INFO]: [TreeFeller] - Max Saplings: 4
[17:43:13] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[17:43:13] [Server thread/INFO]: [TreeFeller] - Trunk: JUNGLE_LOG, JUNGLE_WOOD
[17:43:13] [Server thread/INFO]: [TreeFeller] - Leaves: JUNGLE_LEAVES
[17:43:13] [Server thread/INFO]: [TreeFeller] - Sapling: [JUNGLE_SAPLING]
[17:43:13] [Server thread/INFO]: [TreeFeller] - Max Saplings: 4
[17:43:13] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[17:43:13] [Server thread/INFO]: [TreeFeller] - Trunk: DARK_OAK_LOG, DARK_OAK_WOOD
[17:43:13] [Server thread/INFO]: [TreeFeller] - Leaves: DARK_OAK_LEAVES
[17:43:13] [Server thread/INFO]: [TreeFeller] - Sapling: [DARK_OAK_SAPLING]
[17:43:13] [Server thread/INFO]: [TreeFeller] - Max Saplings: 4
[17:43:13] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[17:43:13] [Server thread/INFO]: [TreeFeller] - Trunk: ACACIA_LOG, ACACIA_WOOD
[17:43:13] [Server thread/INFO]: [TreeFeller] - Leaves: ACACIA_LEAVES
[17:43:13] [Server thread/INFO]: [TreeFeller] - Sapling: [ACACIA_SAPLING]
[17:43:13] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1
[17:43:13] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[17:43:13] [Server thread/INFO]: [TreeFeller] - Trunk: OAK_LOG, OAK_WOOD
[17:43:13] [Server thread/INFO]: [TreeFeller] - Leaves: AZALEA_LEAVES, FLOWERING_AZALEA_LEAVES
[17:43:13] [Server thread/INFO]: [TreeFeller] - Diagonal Leaves: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Sapling: [AZALEA, FLOWERING_AZALEA]
[17:43:13] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1
[17:43:13] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[17:43:13] [Server thread/INFO]: [TreeFeller] - Trunk: MANGROVE_LOG, MANGROVE_WOOD
[17:43:13] [Server thread/INFO]: [TreeFeller] - Leaves: MANGROVE_ROOTS, MANGROVE_LEAVES
[17:43:13] [Server thread/INFO]: [TreeFeller] - Leaf Detect Range: 16
[17:43:13] [Server thread/INFO]: [TreeFeller] - Leaf Break Range: 16
[17:43:13] [Server thread/INFO]: [TreeFeller] - Required Logs: 3
[17:43:13] [Server thread/INFO]: [TreeFeller] - Diagonal Leaves: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Max Horizontal Trunk Pillar Length: 16
[17:43:13] [Server thread/INFO]: [TreeFeller] - Max Trunks: 16
[17:43:13] [Server thread/INFO]: [TreeFeller] - Sapling: [MANGROVE_PROPAGULE]
[17:43:13] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1
[17:43:13] [Server thread/INFO]: [TreeFeller] - Roots: [MANGROVE_ROOTS]
[17:43:13] [Server thread/INFO]: [TreeFeller] - Root Distance: 16
[17:43:13] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[17:43:13] [Server thread/INFO]: [TreeFeller] - Trunk: CHERRY_LOG, CHERRY_WOOD
[17:43:13] [Server thread/INFO]: [TreeFeller] - Leaves: CHERRY_LEAVES
[17:43:13] [Server thread/INFO]: [TreeFeller] - Sapling: [CHERRY_SAPLING]
[17:43:13] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1
[17:43:13] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[17:43:13] [Server thread/INFO]: [TreeFeller] - Trunk: CRIMSON_STEM, CRIMSON_HYPHAE
[17:43:13] [Server thread/INFO]: [TreeFeller] - Leaves: NETHER_WART_BLOCK, SHROOMLIGHT
[17:43:13] [Server thread/INFO]: [TreeFeller] - Leaf Detect Range: 8
[17:43:13] [Server thread/INFO]: [TreeFeller] - Leaf Break Range: 8
[17:43:13] [Server thread/INFO]: [TreeFeller] - Diagonal Leaves: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Sapling: [CRIMSON_FUNGUS]
[17:43:13] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1
[17:43:13] [Server thread/INFO]: [TreeFeller] - Grass: [CRIMSON_NYLIUM]
[17:43:13] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[17:43:13] [Server thread/INFO]: [TreeFeller] - Trunk: WARPED_STEM, WARPED_HYPHAE
[17:43:13] [Server thread/INFO]: [TreeFeller] - Leaves: WARPED_WART_BLOCK, SHROOMLIGHT
[17:43:13] [Server thread/INFO]: [TreeFeller] - Leaf Detect Range: 8
[17:43:13] [Server thread/INFO]: [TreeFeller] - Leaf Break Range: 8
[17:43:13] [Server thread/INFO]: [TreeFeller] - Diagonal Leaves: true
[17:43:13] [Server thread/INFO]: [TreeFeller] - Sapling: [WARPED_FUNGUS]
[17:43:13] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1
[17:43:13] [Server thread/INFO]: [TreeFeller] - Grass: [WARPED_NYLIUM]
[17:43:13] [Server thread/INFO]: [TreeFeller] Loaded tool: WOODEN_AXE
[17:43:13] [Server thread/INFO]: [TreeFeller] Loaded tool: STONE_AXE
[17:43:13] [Server thread/INFO]: [TreeFeller] Loaded tool: IRON_AXE
[17:43:13] [Server thread/INFO]: [TreeFeller] Loaded tool: GOLDEN_AXE
[17:43:13] [Server thread/INFO]: [TreeFeller] Loaded tool: DIAMOND_AXE
[17:43:13] [Server thread/INFO]: [TreeFeller] Loaded tool: NETHERITE_AXE
[17:43:13] [Server thread/INFO]: [Elevator] Enabling Elevator v1.3-SNAPSHOT
[17:43:13] [Server thread/INFO]: [Elevator] Â[Elevator] ÂPlotSquared support activated
[17:43:13] [Server thread/INFO]: [Elevator] Â[Elevator] ÂPlugin enabled!
[17:43:13] [Server thread/INFO]: [CraftingStore] Enabling CraftingStore v2.9.0
[17:43:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: craftingstore [2.9.0]
[17:43:13] [Server thread/INFO]: [CraftingStore] Hooked with PlaceholderAPI
[17:43:13] [Server thread/INFO]: [CraftingStore] Hooked with Vault
[17:43:13] [Server thread/INFO]: [BCommons] Enabling BCommons v0.3.0*
[17:43:13] [Server thread/INFO]: [BCommons] [Info]: Server version: 1.2 (v1_20_R3, legacy: false).
[17:43:13] [Server thread/INFO]: [BCommons] [Info]: Registered worker: WorkerBInventory.
[17:43:13] [Server thread/INFO]: [Werbung] Enabling Werbung v1.0-SNAPSHOT
[17:43:13] [Server thread/INFO]: [HuskHomesGUI] Enabling HuskHomesGUI v2.3
[17:43:13] [Server thread/INFO]: [HuskHomesGUI] Successfully enabled HuskHomes v2.3
[17:43:13] [Server thread/INFO]: [UltraCosmetics] Enabling UltraCosmetics v3.4.1
[17:43:13] [Server thread/INFO]: [UltraCosmetics] Checking for update...
[17:43:13] [Server thread/INFO]: [UltraCosmetics] -------------------------------------------------------------------
[17:43:13] [Server thread/INFO]: [UltraCosmetics] Thanks for using UltraCosmetics! Version: 3.4.1-RELEASE (commit c5c2a02)
[17:43:13] [Server thread/INFO]: [UltraCosmetics] Plugin by Datatags. Original Author: iSach
[17:43:13] [Server thread/INFO]: [UltraCosmetics] Link: https://bit.ly/UltraCosmetics
[17:43:13] [Server thread/INFO]: [UltraCosmetics] 
[17:43:13] [Server thread/WARN]: [UltraCosmetics] This NMS version is unknown (v1_20_R3), but UltraCosmetics will try to continue running.
[17:43:13] [Server thread/INFO]: [UltraCosmetics] Initializing module NEW (expected version: ???)
[17:43:13] [Server thread/INFO]: [UltraCosmetics] Loading NMS-less mode...
[17:43:13] [Server thread/INFO]: [UltraCosmetics] Loaded NMS-less mode
[17:43:16] [Server thread/INFO]: [UltraCosmetics] 
[17:43:16] [Server thread/WARN]: [UltraCosmetics] Morphs require Lib's Disguises, but it is not installed. Morphs will be disabled.
[17:43:16] [Server thread/INFO]: [UltraCosmetics] 
[17:43:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultracosmetics [3.4.1]
[17:43:16] [Server thread/INFO]: [UltraCosmetics] Hooked into PlaceholderAPI
[17:43:16] [Server thread/INFO]: [WorldGuard] Registering session handler be.isach.ultracosmetics.worldguard.FlagManager
[17:43:16] [Server thread/INFO]: [UltraCosmetics] 
[17:43:16] [Server thread/INFO]: [UltraCosmetics] WorldGuard custom flags enabled
[17:43:16] [Server thread/INFO]: [UltraCosmetics] 
[17:43:16] [Server thread/INFO]: [UltraCosmetics] Hooked into Vault:CMIEconomy for economy.
[17:43:16] [Server thread/INFO]: [UltraCosmetics] 
[17:43:17] [Server thread/INFO]: [UltraCosmetics] 
[17:43:17] [Server thread/INFO]: [UltraCosmetics] UltraCosmetics successfully finished loading in 3471ms!
[17:43:17] [Server thread/INFO]: [UltraCosmetics] -------------------------------------------------------------------
[17:43:17] [Server thread/INFO]: [BungeeTokens-Spigot] Enabling BungeeTokens-Spigot v1.1-SNAPSHOT
[17:43:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: bungeetokens [1.1-SNAPSHOT]
[17:43:17] [Server thread/INFO]: [PreventMapCloning] Enabling PreventMapCloning v1.0-SNAPSHOT
[17:43:17] [Server thread/INFO]: [PreventMapCloning] [PMC] Plugin enabled
[17:43:17] [Server thread/INFO]: [DeathCoordinates] Enabling DeathCoordinates v1.12.1
[17:43:17] [Server thread/INFO]: [DeathCoordinates] Has been enabled! Version: 1.12.1
[17:43:17] [Server thread/INFO]: [DeathCoordinates] Thanks for using my plugin!  ~Ajneb97
[17:43:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deathcoordinates [1.12.1]
[17:43:17] [Server thread/INFO]: [ImageMaps] Enabling ImageMaps v1.0.11
[17:43:17] [Server thread/INFO]: [PluginManager] Enabling PluginManager v2.8.1
[17:43:17] [Server thread/INFO]: [ChestCommands] Enabling ChestCommands v4.0.4
[17:43:17] [Server thread/INFO]: [ChestCommands] Hooked Vault
[17:43:17] [Server thread/INFO]: [ChestCommands] Hooked PlaceholderAPI
[17:43:17] [Server thread/INFO]: [Stopwatch] Enabling Stopwatch v1.0*
[17:43:17] [Server thread/INFO]: [Stopwatch] Your server is running version v1_20_R3
[17:43:17] [Server thread/INFO]: [qsaddon-discount] Enabling qsaddon-discount v5.2.0.6
[17:43:17] [Server thread/INFO]: [qsaddon-discount] Registering the per shop permissions...
[17:43:17] [Server thread/INFO]: [qsaddon-discount] Registering the listeners...
[17:43:17] [Server thread/INFO]: [Builders-Utilities] Enabling Builders-Utilities v2.1.1-95
[17:43:17] [Server thread/INFO]: [EpicSign] Enabling EpicSign v2.0.3*
[17:43:17] [Server thread/INFO]: [EpicSign] [STDOUT] : 1
[17:43:17] [Server thread/WARN]: Nag author(s): '[xZaruk]' of 'EpicSign v2.0.3' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[17:43:17] [Server thread/INFO]: [MobsToEggs] Enabling MobsToEggs v1.7.7
[17:43:17] [Server thread/INFO]: [MobsToEggs] Loading files for MobsToEggs...
[17:43:17] [Server thread/INFO]: [MobsToEggs] Loading language: en
[17:43:17] [Server thread/INFO]: [MobsToEggs] Using Dependencies:
[17:43:17] [Server thread/INFO]: [MobsToEggs] ✔️ [Vault, WorldGuard, NBTAPI]
[17:43:17] [Server thread/INFO]: [MobsToEggs] ❌ [Towny]
[17:43:17] [Server thread/INFO]: [Lottery] Enabling Lottery v5.1.0
[17:43:17] [Server thread/ERROR]: Error occurred while enabling Lottery v5.1.0 (Is it up to date?)
java.lang.NoClassDefFoundError: com/innouniq/plugin/TheCore/Common/ConsoleLogger/ConsoleLogger
    at com.innouniq.plugin.Lottery.Lottery.onEnable(Lottery.java:71) ~[Lottery - 5.1.0 (1.20.X).jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:190) ~[paper-1.20.4.jar:git-Paper-320]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.4.jar:git-Paper-320]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:641) ~[paper-1.20.4.jar:git-Paper-320]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:552) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:673) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:433) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1132) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[paper-1.20.4.jar:git-Paper-320]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.ClassNotFoundException: com.innouniq.plugin.TheCore.Common.ConsoleLogger.ConsoleLogger
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:521) ~[?:?]
    ... 13 more
[17:43:17] [Server thread/INFO]: [Lottery] Disabling Lottery v5.1.0
[17:43:17] [Server thread/ERROR]: Error occurred (in the plugin loader) while disabling Lottery v5.1.0 (Is it up to date?)
java.lang.NoClassDefFoundError: com/innouniq/plugin/TheCore/Common/ConsoleLogger/ConsoleLogger
    at com.innouniq.plugin.Lottery.Lottery.onDisable(Lottery.java:190) ~[Lottery - 5.1.0 (1.20.X).jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:283) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:225) ~[paper-1.20.4.jar:git-Paper-320]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.20.4.jar:git-Paper-320]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:537) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:194) ~[paper-1.20.4.jar:git-Paper-320]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.4.jar:git-Paper-320]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:641) ~[paper-1.20.4.jar:git-Paper-320]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:552) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:673) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:433) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1132) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[paper-1.20.4.jar:git-Paper-320]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.ClassNotFoundException: com.innouniq.plugin.TheCore.Common.ConsoleLogger.ConsoleLogger
    ... 16 more
[17:43:17] [Server thread/INFO]: [RankGift] Enabling RankGift v1.0
[17:43:17] [Server thread/INFO]: MySQL verbunden!
[17:43:17] [Server thread/INFO]: [Ethria-Board] Enabling Ethria-Board v1.0-SNAPSHOT
[17:43:17] [Server thread/INFO]: [Bank] Enabling Bank v4.6.4-RELEASE
[17:43:17] [Server thread/INFO]: [Bank] Bank Enabled
[17:43:17] [Server thread/INFO]: [MarriageMaster] Enabling MarriageMaster v2.7.2
[17:43:17] [Server thread/INFO]: [MarriageMaster] Starting Marriage Master in standalone mode!
[17:43:17] [Server thread/INFO]: [MarriageMaster] Config file successfully loaded.
[17:43:17] [Server thread/INFO]: [MarriageMaster] Successful linked with Minepacks v2.4.24-T20231206015532!
[17:43:17] [Server thread/INFO]: [MarriageMaster] Language file successfully loaded. Language: English  Author: GeorgH93
[17:43:17] [Thread-45/INFO]: [MarriageMaster] Loading marriages ...
[17:43:17] [Thread-45/INFO]: [MarriageMaster] Marriages loaded
[17:43:17] [Thread-45/INFO]: [MarriageMaster] Loading priests ...
[17:43:17] [Thread-45/INFO]: [MarriageMaster] Priests loaded
[17:43:17] [Thread-45/INFO]: [MarriageMaster] Loading players ...
[17:43:17] [Thread-45/INFO]: [MarriageMaster] Players loaded
[17:43:17] [Thread-45/INFO]: [MarriageMaster] Writing marriages into cache ...
[17:43:17] [Thread-45/INFO]: [MarriageMaster] Marriages loaded into cache
[17:43:17] [Thread-45/INFO]: [MarriageMaster] Loading homes ...
[17:43:17] [Thread-45/INFO]: [MarriageMaster] Homes loaded
[17:43:18] [Server thread/INFO]: [MarriageMaster] Item name language file successfully loaded. Language: english  Author: GeorgH93
[17:43:18] [Server thread/INFO]: [MarriageMaster] Loading item translations ...
[17:43:18] [Server thread/INFO]: [MarriageMaster] Finished loading item translations for 827 items.
[17:43:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: marriagemaster [2.7.2]
[17:43:18] [Server thread/INFO]: [MarriageMaster] PlaceholderAPI hook was successfully registered!
[17:43:18] [Server thread/INFO]: [MarriageMaster]  Marriage Master has been enabled!  :) 
[17:43:18] [Server thread/INFO]: [NBSPlayer] Enabling NBSPlayer v1.0-SNAPSHOT
[17:43:18] [Server thread/INFO]: [ClipboardConnect] Enabling ClipboardConnect v1.0.0+c6c939b
[17:43:18] [Server thread/INFO]: [ClipboardConnect] Please run "/clipboardconnect setup" ingame
[17:43:18] [Server thread/INFO]: [EmployMe] Enabling EmployMe v1.2.3
[17:43:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: employme [1.0.0]
[17:43:18] [Server thread/INFO]: [AntiMapCopy] Enabling AntiMapCopy v2.5
[17:43:18] [Server thread/INFO]: ----- AntiMapCopy -----
[17:43:18] [Server thread/INFO]: 
[17:43:18] [Server thread/INFO]: Das Plugin AntiMapCopy wurde von JakobG programmiert!
[17:43:18] [Server thread/INFO]: Version: 2.5
[17:43:18] [Server thread/INFO]: 
[17:43:18] [Server thread/INFO]: -----------------------
[17:43:18] [Server thread/INFO]: [NotQuests] Enabling NotQuests v5.17.1
[17:43:18] [Server thread/INFO]: [NotQuests] Loading NotQuests Paper...
[17:43:18] [Server thread/INFO]: [NotQuests]: Loading general config
[17:43:18] [Server thread/INFO]: [NotQuests]: Detected version: 1.20.4-R0.1-SNAPSHOT (Paper)
[17:43:18] [Server thread/INFO]: [NotQuests] Enabling NotQuests Paper...
[17:43:18] [Server thread/INFO]: [NotQuests]: NotQuests (Paper) is starting...
[17:43:18] [Server thread/INFO]: [NotQuests]: PlaceholderAPI found. Enabled PlaceholderAPI support!
[17:43:18] [Server thread/INFO]: [NotQuests]: Vault found. Enabled Vault support!
[17:43:18] [Server thread/INFO]: [NotQuests]: WorldEdit found. Enabled WorldEdit support!
[17:43:18] [Server thread/INFO]: [NotQuests]: Citizens found. Enabled Citizens support!
[17:43:18] [Server thread/INFO]: [NotQuests]: LuckPerms found. Enabled LuckPerms support!
[17:43:18] [Server thread/INFO]: [NotQuests]: UltimateClans found. Enabled UltimateClans support!
[17:43:18] [Server thread/INFO]: [NotQuests]: Jobs found. Enabled Jobs support!
[17:43:18] [Server thread/INFO]: [NotQuests]: getLanguageConfig() is null. Loading language config...
[17:43:18] [Server thread/INFO]: [NotQuests]: Creating or updating default.yml...
[17:43:18] [Server thread/INFO]: [NotQuests]: Loading language config en-US.yml
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variables...
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable True
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable False
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable Condition
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable QuestPoints
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable Money
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable UltimateClansClanLevel
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable ActiveQuests
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable CompletedQuests
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable CompletedObjectiveIDsOfQuest
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable Permission
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable Statistic
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable Name
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable Experience
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable ExperienceLevel
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable CurrentWorld
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable CurrentPositionX
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable CurrentPositionY
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable CurrentPositionZ
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable RandomNumberBetweenRange
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable PlaytimeTicks
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable PlaytimeMinutes
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable PlaytimeHours
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable Glowing
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable Op
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable Climbing
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable InLava
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable InWater
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable Ping
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable WalkSpeed
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable FlySpeed
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable Sleeping
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable Sneaking
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable Sprinting
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable Swimming
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable Health
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable MaxHealth
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable GameMode
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable Flying
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable DayOfWeek
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable CurrentBiome
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable Chance
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable Advancement
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable Inventory
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable EnderChest
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable ContainerInventory
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable Block
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable TagBoolean
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable TagInteger
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable TagFloat
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable TagDouble
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable TagString
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable QuestOnCooldown
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable QuestAbleToAccept
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable QuestReachedMaxAccepts
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable QuestReachedMaxCompletions
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable QuestReachedMaxFails
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable ItemInInventoryEnchantments
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable ReflectionStaticDouble
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable ReflectionStaticFloat
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable ReflectionStaticInteger
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable ReflectionStaticBoolean
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable ReflectionStaticString
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable PlaceholderAPINumber
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering variable PlaceholderAPIString
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering objectives...
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering objective Condition
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering objective BreakBlocks
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering objective PlaceBlocks
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering objective PickupItems
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering objective FishItems
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering objective TriggerCommand
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering objective OtherQuest
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering objective KillMobs
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering objective ConsumeItems
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering objective DeliverItems
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering objective TalkToNPC
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering objective EscortNPC
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering objective CraftItems
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering objective Enchant
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering objective KillEliteMobs
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering objective ReachLocation
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering objective BreedMobs
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering objective SlimefunResearch
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering objective RunCommand
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering objective Interact
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering objective Jump
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering objective Sneak
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering objective SmeltItems
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering objective OpenBuriedTreasure
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering objective ShearSheep
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering objective Objective
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering objective NumberVariable
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering objective TownyReachResidentCount
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering objective TownyNationReachTownCount
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering objective JobsRebornReachJobLevel
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering objective ProjectKorraUseAbility
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering conditions...
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering condition CompletedObjective
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering condition WorldTime
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering condition Date
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering condition Number
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering number condition: PlaytimeTicks
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering number condition: CurrentPositionX
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering number condition: CurrentPositionY
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering number condition: CurrentPositionZ
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering number condition: UltimateClansClanLevel
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering number condition: MaxHealth
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering number condition: TagDouble
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering number condition: RandomNumberBetweenRange
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering number condition: Experience
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering number condition: Ping
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering number condition: PlaytimeHours
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering number condition: FlySpeed
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering number condition: ReflectionStaticFloat
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering number condition: WalkSpeed
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering number condition: Money
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering number condition: Statistic
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering number condition: PlaytimeMinutes
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering number condition: ReflectionStaticInteger
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering number condition: ReflectionStaticDouble
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering number condition: Health
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering number condition: ExperienceLevel
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering number condition: TagInteger
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering number condition: TagFloat
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering number condition: PlaceholderAPINumber
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering number condition: QuestPoints
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering condition String
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering string condition: TagString
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering string condition: ReflectionStaticString
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering string condition: Name
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering string condition: GameMode
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering string condition: Block
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering string condition: PlaceholderAPIString
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering string condition: CurrentWorld
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering string condition: DayOfWeek
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering string condition: CurrentBiome
[17:43:18] [Server thread/INFO]: [NotQuests]: Registering condition Boolean
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Op
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: InWater
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: QuestOnCooldown
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: InLava
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: True
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: False
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: QuestReachedMaxCompletions
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Permission
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Swimming
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: ReflectionStaticBoolean
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Flying
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Sneaking
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Sprinting
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Climbing
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: QuestAbleToAccept
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Condition
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: QuestReachedMaxAccepts
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Glowing
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: QuestReachedMaxFails
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Chance
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Sleeping
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: TagBoolean
[17:43:18] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Advancement
[17:43:19] [Server thread/INFO]: [NotQuests]: Registering condition List
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering list condition: ItemInInventoryEnchantments
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering list condition: CompletedObjectiveIDsOfQuest
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering list condition: ActiveQuests
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering list condition: CompletedQuests
[17:43:19] [Server thread/INFO]: [NotQuests]: Registering condition ItemStackList
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering ItemStackList condition: ContainerInventory
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering ItemStackList condition: Inventory
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering ItemStackList condition: EnderChest
[17:43:19] [Server thread/INFO]: [NotQuests]: Registering actions...
[17:43:19] [Server thread/INFO]: [NotQuests]: Registering action Action
[17:43:19] [Server thread/INFO]: [NotQuests]: Registering action GiveQuest
[17:43:19] [Server thread/INFO]: [NotQuests]: Registering action CompleteQuest
[17:43:19] [Server thread/INFO]: [NotQuests]: Registering action FailQuest
[17:43:19] [Server thread/INFO]: [NotQuests]: Registering action TriggerCommand
[17:43:19] [Server thread/INFO]: [NotQuests]: Registering action StartConversation
[17:43:19] [Server thread/INFO]: [NotQuests]: Registering action ConsoleCommand
[17:43:19] [Server thread/INFO]: [NotQuests]: Registering action PlayerCommand
[17:43:19] [Server thread/INFO]: [NotQuests]: Registering action Chat
[17:43:19] [Server thread/INFO]: [NotQuests]: Registering action GiveItem
[17:43:19] [Server thread/INFO]: [NotQuests]: Registering action SpawnMob
[17:43:19] [Server thread/INFO]: [NotQuests]: Registering action SendMessage
[17:43:19] [Server thread/INFO]: [NotQuests]: Registering action BroadcastMessage
[17:43:19] [Server thread/INFO]: [NotQuests]: Registering action PlaySound
[17:43:19] [Server thread/INFO]: [NotQuests]: Registering action Number
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering number action: PlaytimeTicks
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering number action: CurrentPositionX
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering number action: CurrentPositionY
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering number action: CurrentPositionZ
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering number action: UltimateClansClanLevel
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering number action: MaxHealth
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering number action: TagDouble
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering number action: Experience
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering number action: PlaytimeHours
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering number action: FlySpeed
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering number action: ReflectionStaticFloat
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering number action: WalkSpeed
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering number action: Money
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering number action: Statistic
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering number action: PlaytimeMinutes
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering number action: ReflectionStaticInteger
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering number action: ReflectionStaticDouble
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering number action: Health
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering number action: ExperienceLevel
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering number action: TagInteger
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering number action: TagFloat
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering number action: QuestPoints
[17:43:19] [Server thread/INFO]: [NotQuests]: Registering action String
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering string action: TagString
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering string action: ReflectionStaticString
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering string action: Name
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering string action: GameMode
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering string action: Block
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering string action: CurrentWorld
[17:43:19] [Server thread/INFO]: [NotQuests]: Registering action Boolean
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering boolean action: Op
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering boolean action: Permission
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering boolean action: Swimming
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering boolean action: ReflectionStaticBoolean
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering boolean action: Flying
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering boolean action: Sneaking
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering boolean action: Sprinting
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering boolean action: Glowing
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering boolean action: TagBoolean
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering boolean action: Advancement
[17:43:19] [Server thread/INFO]: [NotQuests]: Registering action List
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering list action: CompletedObjectiveIDsOfQuest
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering list action: ActiveQuests
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering list action: CompletedQuests
[17:43:19] [Server thread/INFO]: [NotQuests]: Registering action ItemStackList
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering ItemStackList action: ContainerInventory
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering ItemStackList action: Inventory
[17:43:19] [Server thread/INFO]: [NotQuests]:   Registering ItemStackList action: EnderChest
[17:43:19] [Server thread/INFO]: [NotQuests]: Registering action Beam
[17:43:19] [Server thread/INFO]: [NotQuests]: Registering triggers...
[17:43:19] [Server thread/INFO]: [NotQuests]: Registering trigger BEGIN
[17:43:19] [Server thread/INFO]: [NotQuests]: Registering trigger COMPLETE
[17:43:19] [Server thread/INFO]: [NotQuests]: Registering trigger DEATH
[17:43:19] [Server thread/INFO]: [NotQuests]: Registering trigger DISCONNECT
[17:43:19] [Server thread/INFO]: [NotQuests]: Registering trigger FAIL
[17:43:19] [Server thread/INFO]: [NotQuests]: Registering trigger NPCDEATH
[17:43:19] [Server thread/INFO]: [NotQuests]: Registering trigger WORLDENTER
[17:43:19] [Server thread/INFO]: [NotQuests]: Registering trigger WORLDLEAVE
[17:43:20] [Server thread/INFO]: [NotQuests]: Registering events for Citizens (on time)...
[17:43:20] [Server thread/INFO]: [NotQuests]: Initialized CitizensEvents
[17:43:20] [Server thread/INFO]: [NotQuests]: Registering events for Jobs (on time)...
[17:43:20] [Server thread/INFO]: [NotQuests]: Loading categories and configurations...
[17:43:20] [Server thread/INFO]: [NotQuests]: Checking folder for categories: NotQuests
[17:43:20] [Server thread/INFO]: [NotQuests]:   Loading real category: default
[17:43:20] [Server thread/INFO]: [NotQuests]: Checking folder for categories: default
[17:43:20] [Server thread/INFO]: [NotQuests]: Scheduled Actions Data load for following categories: [default]...
[17:43:20] [Server thread/INFO]: [NotQuests]: Loading actions for category default
[17:43:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: notquests [5.17.1]
[17:43:20] [Server thread/INFO]: [NotQuests]: Loading conversations...
[17:43:20] [Server thread/INFO]: [NotQuests]: Initializing modern packet injector...
[17:43:20] [Server thread/INFO]: [NotQuests]: Scheduled Tags Data load for following categories: [default]
[17:43:20] [Server thread/INFO]: [NotQuests]:   Loading tags for category default
[17:43:20] [Server thread/INFO]: [NotQuests]: Scheduled Items Data load for following categories: [default]
[17:43:20] [Server thread/INFO]: [NotQuests]:   Loading Items for category default
[17:43:20] [Server thread/INFO]: [NotQuests]: Initial loading has completed!
[17:43:20] [Server thread/INFO]: [Automessage] Enabling Automessage v1.2*
[17:43:20] [Server thread/INFO]: [AutoMessage] 5 messages loaded.
[17:43:20] [Server thread/INFO]: [AutoMessage] Version 1.2 von Voyqed wurde geladen.
[17:43:20] [Server thread/INFO]: [UltimateAutoRestart] Enabling UltimateAutoRestart vBuild 54a
[17:43:20] [Server thread/INFO]: [UltimateAutoRestart] Build 54a, a free resource by Norska - Thanks for downloading!
[17:43:20] [Server thread/INFO]: [UltimateAutoRestart] Attempting hooks...
[17:43:21] [Server thread/INFO]: [Booster] Enabling Booster v9.0
[17:43:21] [Server thread/INFO]: ----------------------------------------------------
[17:43:21] [Server thread/INFO]: 
[17:43:21] [Server thread/INFO]:   ____                  _            
[17:43:21] [Server thread/INFO]:  |  _ \                | |           
[17:43:21] [Server thread/INFO]:  | |_) | ___   ___  ___| |_ ___ _ __ 
[17:43:21] [Server thread/INFO]:  |  _ < / _ \ / _ \/ __| __/ _ \ '__|
[17:43:21] [Server thread/INFO]:  | |_) | (_) | (_) \__ \ ||  __/ |   
[17:43:21] [Server thread/INFO]:  |____/ \___/ \___/|___/\__\___|_|   
[17:43:21] [Server thread/INFO]: 
[17:43:21] [Server thread/INFO]: Das Plugin Booster wurde von JakobG programmiert!
[17:43:21] [Server thread/INFO]: Version: 9.0
[17:43:21] [Server thread/INFO]: 
[17:43:21] [Server thread/INFO]: ----------------------------------------------------
[17:43:21] [Server thread/INFO]: [Booster] Load DamageBooster-AddOn
[17:43:21] [Server thread/INFO]: [Booster] Loaded addon: Damage-Booster v1.4
[17:43:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: booster [9.0]
[17:43:21] [Server thread/INFO]: [Booster] PlaceholderAPI wurde geladen!
[17:43:21] [Server thread/INFO]: [HiddenArmor] Enabling HiddenArmor v1.1.2
[17:43:21] [Server thread/WARN]: [HiddenArmor] Your HiddenArmor configuration file is outdated!
[17:43:21] [Server thread/WARN]: [HiddenArmor] Please regenerate the 'config.yml' file when possible.
[17:43:21] [Server thread/INFO]: [EscoVotifier-Spigot] Enabling EscoVotifier-Spigot v1.0-SNAPSHOT
[17:43:21] [Server thread/INFO]: [EscoVotifier-Spigot] [STDOUT] Â[EscoVotifier]Â Enabled
[17:43:21] [Server thread/WARN]: Nag author(s): '[Escolar]' of 'EscoVotifier-Spigot v1.0-SNAPSHOT' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[17:43:21] [Server thread/INFO]: [antiRedstoneClock] Enabling antiRedstoneClock v1.4.1
[17:43:21] [Server thread/INFO]: [antiRedstoneClock] Enabling Metrics
[17:43:21] [Server thread/INFO]: [antiRedstoneClock] Metrics loaded
[17:43:21] [Server thread/WARN]: [antiRedstoneClock] PlotSquared 7 is not supported
[17:43:21] [Server thread/INFO]: [antiRedstoneClock] Plugin loaded in 7 ms
[17:43:21] [Server thread/INFO]: [qscompat-advancedregionmarket] Enabling qscompat-advancedregionmarket v5.2.0.6
[17:43:21] [Server thread/INFO]: [qscompat-advancedregionmarket] Enabling...
[17:43:21] [Server thread/INFO]: [UltimateSign] Enabling UltimateSign v1.5.2*
[17:43:21] [Server thread/INFO]: [DisableRecipe] Enabling DisableRecipe v1.4.4
[17:43:21] [Server thread/INFO]: [qsaddon-list] Enabling qsaddon-list v5.2.0.6
[17:43:21] [Server thread/INFO]: [qsaddon-list] Registering the per shop permissions...
[17:43:21] [Server thread/INFO]: [DisableChorusFruit] Enabling DisableChorusFruit v1.5.0*
[17:43:21] [Server thread/INFO]: DisableChorusFruit ON
[17:43:21] [Server thread/INFO]: [ChatFeelings] Enabling ChatFeelings v4.12.1
[17:43:21] [Server thread/INFO]: [ChatFeelings] Checking repository to maximize support...
[17:43:21] [Server thread/INFO]: [ChatFeelings] Hooking into PlaceholderAPI...
[17:43:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chatfeelings [4.12.1]
[17:43:21] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
[17:43:21] [Server thread/INFO]: [ClearLag] Using version-adapter: LatestVersionAdapter
[17:43:21] [Server thread/INFO]: [ClearLag] Loading modules...
[17:43:21] [Server thread/WARN]: [ClearLag] Clearlag failed to use the internal TPS tracker during initialization. Reverted to estimation... (net.minecraft.server.v1_20_R3.MinecraftServer)
[17:43:21] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[17:43:21] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[17:43:21] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[17:43:21] [Thread-46/INFO]: [ClearLag] Checking for updates compatible with your bukkit version [1.20]...
[17:43:21] [Server thread/INFO]: [Signatures] Enabling Signatures v1.0
[17:43:21] [Server thread/WARN]: [Signatures] Found language file 'en_US.yml'
[17:43:21] [Server thread/INFO]: [CrazyCrates] Enabling CrazyCrates v1.16.3
[17:43:21] [Server thread/INFO]: [CrazyCrates] Loading the events.log
[17:43:21] [Server thread/INFO]: [CrazyCrates] Successfully loaded events.log
[17:43:21] [Server thread/INFO]: [CrazyCrates] Loading the locations.yml
[17:43:21] [Server thread/INFO]: [CrazyCrates] Successfully loaded locations.yml
[17:43:21] [Server thread/INFO]: [CrazyCrates] Loading the data.yml
[17:43:21] [Server thread/INFO]: [CrazyCrates] Successfully loaded data.yml
[17:43:21] [Server thread/INFO]: [CrazyCrates] Loading custom files.
[17:43:21] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/Crazy.yml.
[17:43:21] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/teambox.yml.
[17:43:21] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/hallo.yml.
[17:43:21] [Thread-46/INFO]: [ClearLag] No updates found!
[17:43:21] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/Classic.yml.
[17:43:21] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/Key-Crate.yml.
[17:43:21] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/Booox.yml.
[17:43:21] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/Galactic.yml.
[17:43:21] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/test.yml.
[17:43:21] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/OP-Box.yml.
[17:43:21] [Server thread/INFO]: [CrazyCrates] Finished loading custom files.
[17:43:21] [Server thread/INFO]: [CrazyCrates] CMI Hologram support has been enabled.
[17:43:21] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[17:43:21] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R3! Trying to find NMS support
[17:43:21] [Server thread/WARN]: [NBTAPI] [NBTAPI] This Server-Version(v1_20_R3) is not supported by this NBT-API Version(2.12.0) located in CrazyCrates. The NBT-API will try to work as good as it can! Some functions may not work!
[17:43:21] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'CrazyCrates' to create a bStats instance!
[17:43:22] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[17:43:22] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[17:43:22] [Server thread/INFO]: [CrazyCrates] All physical crate locations have been loaded.
[17:43:22] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[17:43:22] [Server thread/INFO]: [CrazyCrates] nether.nbt was successfully found and loaded.
[17:43:22] [Server thread/INFO]: [CrazyCrates] wooden.nbt was successfully found and loaded.
[17:43:22] [Server thread/INFO]: [CrazyCrates] classic.nbt was successfully found and loaded.
[17:43:22] [Server thread/INFO]: [CrazyCrates] soul.nbt was successfully found and loaded.
[17:43:22] [Server thread/INFO]: [CrazyCrates] sea.nbt was successfully found and loaded.
[17:43:22] [Server thread/INFO]: [CrazyCrates] outdoors.nbt was successfully found and loaded.
[17:43:22] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[17:43:22] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[17:43:22] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[17:43:22] [Server thread/INFO]: [CrazyCrates]: DECENT_HOLOGRAMS NOT FOUND
[17:43:22] [Server thread/INFO]: [CrazyCrates]: HOLOGRAPHIC_DISPLAYS NOT FOUND
[17:43:22] [Server thread/INFO]: [CrazyCrates]: CMI FOUND
[17:43:22] [Server thread/INFO]: [CrazyCrates]: PLACEHOLDERAPI FOUND
[17:43:22] [Server thread/INFO]: [CrazyCrates]: ORAXEN NOT FOUND
[17:43:22] [Server thread/INFO]: [CrazyCrates]: ITEMS_ADDER NOT FOUND
[17:43:22] [Server thread/WARN]: [CrazyCrates] CrazyCrate Update: 1.16.3 is one of 2 major updates.
[17:43:22] [Server thread/WARN]: [CrazyCrates] Version: 1.16.3 is currently backwards compatible.
[17:43:22] [Server thread/WARN]: [CrazyCrates] Please submit any bugs at https://github.com/Crazy-Crew/CrazyCrates/issues
[17:43:22] [Server thread/WARN]: [CrazyCrates] 
[17:43:22] [Server thread/WARN]: [CrazyCrates] I will wait between releasing updates for bug reports
[17:43:22] [Server thread/WARN]: [CrazyCrates] The next version is Version 2.0 excluding version bumps for Minecraft releases
[17:43:22] [Server thread/WARN]: [CrazyCrates] 
[17:43:22] [Server thread/WARN]: [CrazyCrates] 2.0 is a hard break, Legacy color codes will no longer work, Configurations will be fully migrated, Placeholders will change and so on.
[17:43:22] [Server thread/WARN]: [CrazyCrates] We only support https://papermc.io in 2.0 and will fully migrate to Modrinth and Hangar.
[17:43:22] [Server thread/WARN]: [CrazyCrates] After that's done, I'll be adding practically anything including light gui editors or in-game editors ( improved /cc additem ) and crate conversions.
[17:43:22] [Server thread/INFO]: [CrazyCrates] PlaceholderAPI support is enabled!
[17:43:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: crazycrates [1.16.3]
[17:43:22] [Server thread/INFO]: [qsaddon-displaycontrol] Enabling qsaddon-displaycontrol v5.2.0.6
[17:43:22] [Server thread/INFO]: [qsaddon-displaycontrol] BungeeCord: true
[17:43:22] [Server thread/INFO]: [qsaddon-displaycontrol] Detected BungeeCord, register the BungeeCord client information forward module, you will need install Compat-BungeeCord-Geyser module to make this feature work.
[17:43:22] [Server thread/INFO]: [qscompat-plotsquared] Enabling qscompat-plotsquared v5.2.0.6
[17:43:22] [Server thread/INFO]: [qscompat-plotsquared] Enabling...
[17:43:22] [Server thread/INFO]: [qscompat-plotsquared] Mapping localized captions...
[17:43:22] [Server thread/INFO]: [qscompat-plotsquared] Flags register successfully.
[17:43:22] [Server thread/INFO]: [ArmorStandTools] Enabling ArmorStandTools v4.4.4
[17:43:22] [Server thread/INFO]: [ArmorStandTools] PlotSquared plugin was found. PlotSquared support enabled.
[17:43:22] [Server thread/INFO]: [ArmorStandTools] WorldGuard plugin found. WorldGuard support enabled.
[17:43:22] [Server thread/INFO]: [TAB-Bridge] Enabling TAB-Bridge v5.0.0
[17:43:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [5.0.0]
[17:43:22] [Server thread/INFO]: [ChatFree] Enabling ChatFree v1.2
[17:43:22] [Server thread/INFO]: [PlayerWarps] Enabling PlayerWarps v6.29.0
[17:43:22] [Server thread/INFO]: [PlayerWarps] Vault found, now enabling PlayerWarps...
[17:43:23] [Server thread/INFO]: [PlayerWarps] Found 22 config files to load!
[17:43:24] [Server thread/INFO]: [PlayerWarps] Permissions plugin found! (LuckPerms)
[17:43:24] [Server thread/INFO]: [PlayerWarps] Economy plugin found! (CMIEconomy)
[17:43:24] [Server thread/INFO]: [PlayerWarps] Chat plugin found! (LuckPerms)
[17:43:24] [Server thread/INFO]: [PlayerWarps] Found PlaceholderAPI integrating support...
[17:43:24] [Server thread/INFO]: [PlayerWarps] Found HuskHomes Expansion integrating support...
[17:43:24] [Server thread/INFO]: [PlayerWarps] SQLite database is enabling...
[17:43:24] [Server thread/INFO]: [PlayerWarps] Loading Metrics...
[17:43:24] [Server thread/INFO]: [PlayerWarps] Successfully loaded Metrics!
[17:43:24] [Server thread/INFO]: [AdventCalendar] Enabling AdventCalendar v1.0.3
[17:43:24] [Server thread/ERROR]: Error occurred while enabling AdventCalendar v1.0.3 (Is it up to date?)
java.lang.NoClassDefFoundError: com/innouniq/plugin/TheCore/Common/ConsoleLogger/ConsoleLogger
    at com.innouniq.plugin.AdventCalendar.AdventCalendar.onEnable(AdventCalendar.java:62) ~[AdventCalendar - 1.0.3 (1.20.X).jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:190) ~[paper-1.20.4.jar:git-Paper-320]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.4.jar:git-Paper-320]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:641) ~[paper-1.20.4.jar:git-Paper-320]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:552) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:673) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:433) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1132) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[paper-1.20.4.jar:git-Paper-320]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.ClassNotFoundException: com.innouniq.plugin.TheCore.Common.ConsoleLogger.ConsoleLogger
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:521) ~[?:?]
    ... 13 more
[17:43:24] [Server thread/INFO]: [AdventCalendar] Disabling AdventCalendar v1.0.3
[17:43:24] [Server thread/ERROR]: Error occurred (in the plugin loader) while disabling AdventCalendar v1.0.3 (Is it up to date?)
java.lang.NoClassDefFoundError: com/innouniq/plugin/TheCore/Common/ConsoleLogger/ConsoleLogger
    at com.innouniq.plugin.AdventCalendar.AdventCalendar.onDisable(AdventCalendar.java:148) ~[AdventCalendar - 1.0.3 (1.20.X).jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:283) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:225) ~[paper-1.20.4.jar:git-Paper-320]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.20.4.jar:git-Paper-320]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:537) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:194) ~[paper-1.20.4.jar:git-Paper-320]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.4.jar:git-Paper-320]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:641) ~[paper-1.20.4.jar:git-Paper-320]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:552) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:673) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:433) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1132) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[paper-1.20.4.jar:git-Paper-320]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.ClassNotFoundException: com.innouniq.plugin.TheCore.Common.ConsoleLogger.ConsoleLogger
    ... 16 more
[17:43:24] [Server thread/INFO]: [ItemSorter] Enabling ItemSorter v1.4.4_DEV
[17:43:24] [Server thread/INFO]: [ItemSorter] Checking for updates ...
[17:43:24] [Server thread/INFO]: [ItemSorter] An update is available! Please upgrade ItemSorter here https://www.spigotmc.org/resources/itemsorter.85370/
[17:43:24] [Server thread/INFO]: [ItemSorter] Custom events from the plugin "AdvancedChests" registered.
[17:43:24] [Server thread/INFO]: [ItemSorter] Checking for database migrations ... Your version: 1 last DB version: 1
[17:43:24] [Server thread/INFO]: [ItemSorter] No migration needed. Your on the last DB version.
[17:43:24] [Server thread/INFO]: [GPet] Enabling GPet v1.3.0
[17:43:25] [Server thread/INFO]: [Haustier] Das Plugin wurde erfolgreich aktiviert.
[17:43:25] [Server thread/INFO]: [Haustier] Verknüpfung mit Vault erfolgreich!
[17:43:25] [Server thread/INFO]: [Haustier] Verknüpfung mit CMIEconomy erfolgreich!
[17:43:25] [Server thread/INFO]: [AntiSmithingCopy] Enabling AntiSmithingCopy v1.0
[17:43:25] [Server thread/INFO]: [EthriaEvent] Enabling EthriaEvent v1.0-SNAPSHOT
[17:43:25] [Server thread/INFO]: [EthriaEvent] Language 'en' was registered!
[17:43:25] [Server thread/INFO]: [Exposed] Preparing create tables statements took 8ms
[17:43:25] [Server thread/INFO]: [Exposed] Executing create tables statements took 0ms
[17:43:25] [Server thread/INFO]: [Exposed] Extracting table columns took 2ms
[17:43:25] [Server thread/INFO]: [Exposed] Preparing alter table statements took 2ms
[17:43:25] [Server thread/INFO]: [Exposed] Executing alter table statements took 0ms
[17:43:25] [Server thread/INFO]: [Exposed] Checking mapping consistence took 5ms
[17:43:25] [Server thread/WARN]: Plugin 'EthriaEvent' is creating timing 'Commands' - this is deprecated behavior, please report it to the authors: MrFireDevil
[17:43:25] [Server thread/INFO]: [EthriaEvent] [ACF] Enabled Asynchronous Tab Completion Support!
[17:43:25] [Server thread/WARN]: Plugin 'EthriaEvent' is creating timing 'Command: delevent' - this is deprecated behavior, please report it to the authors: MrFireDevil
[17:43:25] [Server thread/WARN]: Plugin 'EthriaEvent' is creating timing 'Command: setevent' - this is deprecated behavior, please report it to the authors: MrFireDevil
[17:43:25] [Server thread/WARN]: Plugin 'EthriaEvent' is creating timing 'Command: toggleevent' - this is deprecated behavior, please report it to the authors: MrFireDevil
[17:43:25] [Server thread/WARN]: Plugin 'EthriaEvent' is creating timing 'Command: event' - this is deprecated behavior, please report it to the authors: MrFireDevil
[17:43:25] [Server thread/INFO]: [KixsChatGames] Enabling KixsChatGames v2.1.1
[17:43:26] [Server thread/INFO]: 
[17:43:26] [Server thread/INFO]: --------------------------------------
[17:43:26] [Server thread/INFO]:      Kix's Chat Games by kixmc
[17:43:26] [Server thread/INFO]:      Starting on version 2.1.1
[17:43:26] [Server thread/INFO]: --------------------------------------
[17:43:26] [Server thread/INFO]: 
[17:43:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: kixschatgames [2.1.1]
[17:43:26] [Server thread/INFO]: [iShop] Enabling iShop v2.24
[17:43:26] [Server thread/INFO]: [GSit] Enabling GSit v1.6.0
[17:43:26] [Server thread/INFO]: [GSit] The Plugin was successfully enabled.
[17:43:26] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
[17:43:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [1.6.0]
[17:43:26] [Server thread/INFO]: [GSit] Link with PlotSquared successful!
[17:43:26] [Server thread/INFO]: [GSit] Link with ViaVersion successful!
[17:43:26] [Server thread/INFO]: [GSit] Link with WorldGuard successful!
[17:43:26] [Server thread/INFO]: [BetterConcrete] Enabling BetterConcrete v1.9.1
[17:43:26] [Server thread/INFO]: [BetterConcrete] This plugin was made by alex_qp
[17:43:26] [Server thread/INFO]: [BetterConcrete] furnace recipes concrete_to_powder were enabled in config.
[17:43:26] [Server thread/INFO]: [BetterConcrete] furnace recipes powder_to_glass were enabled in config.
[17:43:26] [Server thread/INFO]: [BetterConcrete] cauldron mechanic was enabled in config.
[17:43:26] [Server thread/INFO]: [spark] Enabling spark v1.10.43
[17:43:26] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[17:43:26] [Server thread/INFO]: [spark] Starting background profiler...
[17:43:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: spark [1.10.43]
[17:43:26] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[17:43:26] [Server thread/INFO]: [HeadBlocks] Enabling HeadBlocks v2.4.2
[17:43:26] [Server thread/INFO]: HeadBlocks initializing...
[17:43:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: headblocks [1.0.0]
[17:43:26] [Server thread/INFO]: SQLite storage properly connected!
[17:43:26] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R3! Trying to find NMS support
[17:43:26] [Server thread/WARN]: [NBTAPI] [NBTAPI] This Server-Version(v1_20_R3) is not supported by this NBT-API Version(2.12.0) located in HeadBlocks. The NBT-API will try to work as good as it can! Some functions may not work!
[17:43:26] [Server thread/INFO]: Loaded 1 (+2 HeadDatabase heads) configuration heads!
[17:43:26] [Server thread/INFO]: Loaded 1 locations!
[17:43:26] [Server thread/INFO]: Loaded HeadDatabase head id 44345.
[17:43:26] [Server thread/INFO]: Loaded HeadDatabase head id 44345.
[17:43:26] [Server thread/INFO]: HeadBlocks successfully loaded!
[17:43:26] [Server thread/INFO]: [PlotBorders] Enabling PlotBorders v1.12
[17:43:26] [Server thread/INFO]: [Craftmatic] Enabling Craftmatic v3.1.0
[17:43:26] [Server thread/INFO]: [Craftmatic/CONFIG]: Ticking CraftingBlocks every 20 game ticks.
[17:43:26] [Server thread/INFO]: [Craftmatic/CONFIG]: Delay reloading CraftingBlocks by 100 game ticks.
[17:43:26] [Server thread/INFO]: [Craftmatic/CONFIG]: Will emit particles.
[17:43:26] [Server thread/INFO]: [Craftmatic]: Activation item is ItemStack{BEDROCK x 1, UNSPECIFIC_META:{meta-type=UNSPECIFIC, lore=[{"extra":[{"text":"Ethria Autocrafter Aktivator"}],"text":""}], PublicBukkitValues={
    "craftmatic:valid": 1
}}}.
[17:43:26] [Server thread/INFO]: [Craftmatic]: Loaded Craftbukkit_1_18_1_R0 specialization.
[17:43:26] [Server thread/INFO]: [Craftmatic/CONFIG]: Enabled statistics.
[17:43:26] [Server thread/INFO]: [Craftmatic]: Enabled Craftmatic 3.1.0 by [BornToCode]
[17:43:26] [Server thread/WARN]: Could not register alias advent because it contains commands that do not exist: acal
[17:43:26] [Server thread/WARN]: Could not register alias skull because it contains commands that do not exist: kopf
[17:43:27] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[17:43:27] [Server thread/INFO]: Running delayed init tasks
[17:43:27] [Craft Scheduler Thread - 9 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[17:43:27] [Craft Scheduler Thread - 35 - PlayerWarps/INFO]: [PlayerWarps] Loading player warps...
[17:43:27] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[17:43:27] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[17:43:27] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.plotsquared.PlotSquaredFeature] Optimizing PlotSquared
[17:43:27] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Plugin 'PlotSquared' v7 found. Using it now.
[17:43:27] [Craft Scheduler Thread - 5 - PlotSquared/INFO]: [PlotSquared/UpdateUtility] Congratulations! You are running the latest PlotSquared version
[17:43:27] [Craft Scheduler Thread - 32 - NotQuests/INFO]: [NotQuests]: Backing up database...
[17:43:27] [Craft Scheduler Thread - 32 - NotQuests/INFO]: [NotQuests]: Your sqlite database has been successfully backed up to plugins/NotQuests/backups/database_sqlite-backup-2023-12-10-17-43-27.db
[17:43:27] [Server thread/INFO]: [BigDoors] Checking for updates...
[17:43:27] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (Vault)
[17:43:27] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (LuckPerms)
[17:43:27] [Craft Scheduler Thread - 32 - NotQuests/INFO]: [NotQuests]: Adding 'Profile' column to database tables if it the table exists but the column doesn't exist yet...
[17:43:27] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[17:43:27] [Craft Scheduler Thread - 32 - NotQuests/INFO]: [NotQuests]: Adding 'Profile' column to database tables if it the table exists but the column doesn't exist yet...
[17:43:27] [Craft Scheduler Thread - 32 - NotQuests/INFO]: [NotQuests]: Adding 'Profile' column to database tables if it the table exists but the column doesn't exist yet...
[17:43:27] [Craft Scheduler Thread - 32 - NotQuests/INFO]: [NotQuests]: Adding 'Profile' column to database tables if it the table exists but the column doesn't exist yet...
[17:43:27] [Server thread/INFO]: [UltimateClans] Start invite loader...
[17:43:27] [Craft Scheduler Thread - 32 - NotQuests/INFO]: [NotQuests]: Adding 'Profile' column to database tables if it the table exists but the column doesn't exist yet...
[17:43:27] [Craft Scheduler Thread - 32 - NotQuests/INFO]: [NotQuests]: Adding 'Profile' column to database tables if it the table exists but the column doesn't exist yet...
[17:43:27] [Craft Scheduler Thread - 32 - NotQuests/INFO]: [NotQuests]: Creating database table 'QuestPlayerProfileData' if it doesn't exist yet...
[17:43:27] [Craft Scheduler Thread - 32 - NotQuests/INFO]: [NotQuests]: Creating database table 'QuestPlayerData' if it doesn't exist yet...
[17:43:27] [Craft Scheduler Thread - 32 - NotQuests/INFO]: [NotQuests]: Creating database table 'ActiveQuests' if it doesn't exist yet...
[17:43:27] [Craft Scheduler Thread - 32 - NotQuests/INFO]: [NotQuests]: Creating database table 'FailedQuests' if it doesn't exist yet...
[17:43:27] [Craft Scheduler Thread - 32 - NotQuests/INFO]: [NotQuests]: Creating database table 'CompletedQuests' if it doesn't exist yet...
[17:43:27] [Craft Scheduler Thread - 31 - AntiMapCopy/INFO]: [AntiMapCopy] Keine Updates vorhanden!
[17:43:27] [Craft Scheduler Thread - 32 - NotQuests/INFO]: [NotQuests]: Adding 'ProgressNeeded' column to 'ActiveObjectives' if it the table exists but the column doesn't exist yet...
[17:43:27] [Craft Scheduler Thread - 32 - NotQuests/INFO]: [NotQuests]: Creating database table 'ActiveObjectives' if it doesn't exist yet...
[17:43:27] [Craft Scheduler Thread - 32 - NotQuests/INFO]: [NotQuests]: Creating database table 'ActiveTriggers' if it doesn't exist yet...
[17:43:27] [Craft Scheduler Thread - 32 - NotQuests/INFO]: [NotQuests]: Creating database table 'Tags' if it doesn't exist yet...
[17:43:27] [Craft Scheduler Thread - 32 - NotQuests/INFO]: [NotQuests]: Loaded player data
[17:43:27] [Craft Scheduler Thread - 32 - NotQuests/INFO]: [NotQuests]: Registering Citizens nquestgiver trait...
[17:43:27] [Server thread/INFO]: [UltimateClans] Loaded 0 invites(s).
[17:43:27] [Server thread/INFO]: [UltimateClans] Start moderation loader...
[17:43:27] [Server thread/INFO]: [UltimateClans] Loaded 0 moderations(s).
[17:43:27] [Server thread/INFO]: [UltimateClans] Start logger loader...
[17:43:27] [Server thread/INFO]: [UltimateClans] Loaded 0 log(s).
[17:43:27] [Server thread/INFO]: [UltimateClans] Start clans loader...
[17:43:27] [Craft Scheduler Thread - 17 - Booster/INFO]: [Booster] Keine Updates vorhanden!
[17:43:27] [Server thread/INFO]: [UltimateClans] Loaded 16 clan(s).
[17:43:27] [Craft Scheduler Thread - 32 - NotQuests/INFO]: [NotQuests]: Citizens nquestgiver trait has been registered!
[17:43:27] [Craft Scheduler Thread - 32 - NotQuests/INFO]: [NotQuests]: Tried to load NPC data before quest data was loaded. NotQuests is scheduling another load...
[17:43:27] [Craft Scheduler Thread - 32 - NotQuests/INFO]: [NotQuests]: Trying to bind Conversations to NPCs...
[17:43:27] [Craft Scheduler Thread - 32 - NotQuests/INFO]: [NotQuests]: Scheduled Quest Data load for following categories: [default]
[17:43:27] [Craft Scheduler Thread - 32 - NotQuests/INFO]: [NotQuests]: Loading Quests data from default category...
[17:43:27] [Craft Scheduler Thread - 32 - NotQuests/INFO]: [NotQuests]: Loading NPC data...
[17:43:27] [Craft Scheduler Thread - 32 - NotQuests/INFO]: [NotQuests]: Skipped loading NPC data because the 'quests' configuration section of the quests configuration for the category default was null.
[17:43:27] [Craft Scheduler Thread - 32 - NotQuests/INFO]: [NotQuests]: NPC data loaded!
[17:43:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pw [1.0.0]
[17:43:27] [Craft Scheduler Thread - 27 - UltraCosmetics/INFO]: [UltraCosmetics] You are running the latest version on Spigot.
[17:43:27] [Craft Scheduler Thread - 41 - AuctionHouse/INFO]: [AuctionHouse] Is running the latest version!
[17:43:27] [Server thread/INFO]: --------------------------------------------------------
[17:43:27] [Server thread/INFO]: 
[17:43:27] [Server thread/INFO]: Thank you for purchasing Auction House, it means a lot
[17:43:27] [ForkJoinPool.commonPool-worker-4/INFO]: [BigDoors] No new updates available.
[17:43:27] [Server thread/INFO]:  - Kiran Hart
[17:43:27] [Server thread/INFO]: 
[17:43:27] [Server thread/INFO]: --------------------------------------------------------
[17:43:27] [Server thread/WARN]: [Citizens] Task #93 for Citizens v2.0.33-SNAPSHOT (build 3283) generated an exception
java.lang.UnsupportedOperationException: null
    at clib.net.kyori.adventure.platform.bukkit.MinecraftComponentSerializer.<clinit>(MinecraftComponentSerializer.java:91) ~[Citizens-2.0.33-b3283.jar:?]
    at clib.net.kyori.adventure.platform.bukkit.CraftBukkitFacet.<clinit>(CraftBukkitFacet.java:186) ~[Citizens-2.0.33-b3283.jar:?]
    at clib.net.kyori.adventure.platform.bukkit.BukkitAudience.lambda$static$1(BukkitAudience.java:52) ~[Citizens-2.0.33-b3283.jar:?]
    at clib.net.kyori.adventure.platform.facet.Facet.of(Facet.java:71) ~[Citizens-2.0.33-b3283.jar:?]
    at clib.net.kyori.adventure.platform.bukkit.BukkitAudience.<clinit>(BukkitAudience.java:48) ~[Citizens-2.0.33-b3283.jar:?]
    at clib.net.kyori.adventure.platform.bukkit.BukkitAudiencesImpl.createAudience(BukkitAudiencesImpl.java:136) ~[Citizens-2.0.33-b3283.jar:?]
    at clib.net.kyori.adventure.platform.bukkit.BukkitAudiencesImpl.createAudience(BukkitAudiencesImpl.java:74) ~[Citizens-2.0.33-b3283.jar:?]
    at clib.net.kyori.adventure.platform.facet.FacetAudienceProvider.lambda$addViewer$0(FacetAudienceProvider.java:112) ~[Citizens-2.0.33-b3283.jar:?]
    at java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1708) ~[?:?]
    at clib.net.kyori.adventure.platform.facet.FacetAudienceProvider.addViewer(FacetAudienceProvider.java:110) ~[Citizens-2.0.33-b3283.jar:?]
    at clib.net.kyori.adventure.platform.bukkit.BukkitAudiencesImpl.<init>(BukkitAudiencesImpl.java:99) ~[Citizens-2.0.33-b3283.jar:?]
    at clib.net.kyori.adventure.platform.bukkit.BukkitAudiencesImpl$Builder.lambda$build$1(BukkitAudiencesImpl.java:175) ~[Citizens-2.0.33-b3283.jar:?]
    at java.util.HashMap.computeIfAbsent(HashMap.java:1220) ~[?:?]
    at java.util.Collections$SynchronizedMap.computeIfAbsent(Collections.java:2760) ~[?:?]
    at clib.net.kyori.adventure.platform.bukkit.BukkitAudiencesImpl$Builder.build(BukkitAudiencesImpl.java:173) ~[Citizens-2.0.33-b3283.jar:?]
    at clib.net.kyori.adventure.platform.bukkit.BukkitAudiencesImpl.instanceFor(BukkitAudiencesImpl.java:89) ~[Citizens-2.0.33-b3283.jar:?]
    at clib.net.kyori.adventure.platform.bukkit.BukkitAudiences.create(BukkitAudiences.java:53) ~[Citizens-2.0.33-b3283.jar:?]
    at net.citizensnpcs.api.util.Messaging.configure(Messaging.java:75) ~[Citizens-2.0.33-b3283.jar:?]
    at net.citizensnpcs.Settings.updateMessagingSettings(Settings.java:61) ~[Citizens-2.0.33-b3283.jar:?]
    at net.citizensnpcs.Settings.<init>(Settings.java:37) ~[Citizens-2.0.33-b3283.jar:?]
    at net.citizensnpcs.Citizens.onEnable(Citizens.java:372) ~[Citizens-2.0.33-b3283.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:190) ~[paper-1.20.4.jar:git-Paper-320]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.4.jar:git-Paper-320]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:641) ~[paper-1.20.4.jar:git-Paper-320]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:552) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:673) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:433) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1132) ~[paper-1.20.4.jar:git-Paper-320]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321) ~[paper-1.20.4.jar:git-Paper-320]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[17:43:27] [Server thread/INFO]: [BetterConcrete] You are using the latest version of BetterConcrete.
[17:43:27] [Server thread/INFO]: [KixsChatGames Updater] You are running the latest version of KixsChatGames.
[17:43:27] [Server thread/INFO]: [Ethria-Chests] There is a NEW VERSION of AdvancedChests please download it at: https://www.spigotmc.org/resources/79061
[17:43:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[17:43:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.7]
[17:43:27] [Craft Scheduler Thread - 29 - PluginManager/INFO]: PM | You are using the latest version of PluginManager.
[17:43:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.1]
[17:43:27] [Server thread/WARN]: Vanish Placeholders - Could not find a supported plugin!
[17:43:27] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion vanish due to an unknown issue.
[17:43:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: servertime [3.2]
[17:43:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: bungee [2.3]
[17:43:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: parseother [1.4.6]
[17:43:27] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion ServerWebsite due to a missing plugin: ServerWebsite
[17:43:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.6.2]
[17:43:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: ViaVersion [2.0.0]
[17:43:27] [Server thread/INFO]: 8 placeholder hook(s) registered! 1 placeholder hook(s) have an update available.
[17:43:27] [Server thread/INFO]: Done (41.884s)! For help, type "help"
[17:43:27] [Server thread/INFO]: Timings Reset
[17:43:27] [Craft Scheduler Thread - 27 - UltimateClans/INFO]: [UltimateClans] Start players loader...
[17:43:27] [Craft Scheduler Thread - 29 - Vault/INFO]: [Vault] Checking for Updates ... 
[17:43:27] [Craft Scheduler Thread - 27 - UltimateClans/INFO]: [UltimateClans] Loaded 1037 player(s).
[17:43:27] [Craft Scheduler Thread - 29 - Vault/INFO]: [Vault] No new version available
[17:43:27] [Craft Scheduler Thread - 34 - ChatFeelings/INFO]: [ChatFeelings] [ChatFeelings] > Consider giving to the Palestine's children relief fund: zachduda.com/u/001d05
[17:43:27] [Craft Scheduler Thread - 34 - ChatFeelings/INFO]: [ChatFeelings] Having issues? Got a question? Join our support discord: https://discord.com/invite/6ugXPfX
[17:43:27] [Server thread/INFO]: [HolographicDisplays] Fatal error while enabling the plugin. Check previous logs for more information.
[17:43:28] [Craft Scheduler Thread - 34 - CrashAPI/INFO]: [CrashAPI] Checking for latest version.
[17:43:28] [Server thread/INFO]: [CMI] Loaded (1) disabled recipes into memory. Took 1ms
[17:43:28] [Craft Scheduler Thread - 34 - CrashAPI/INFO]: [CrashAPI] Your version is up-to-date.
[17:43:28] [Thread-48/INFO]: --------------------
[17:43:28] [Thread-48/INFO]: [CoreProtect] Version 22.2 is now available.
[17:43:28] [Thread-48/INFO]: [CoreProtect] Download: www.coreprotect.net/download/
[17:43:28] [Thread-48/INFO]: --------------------
[17:43:29] [Craft Scheduler Thread - 26 - UltimateClans/INFO]: [UltimateClans] Loaded 0 land(s).
[17:43:30] [Thread-61/INFO]: [UltimateClans] Find for new versions...
[17:43:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultimateautorestart [Build 54a]
[17:43:30] [Server thread/INFO]: [UltimateAutoRestart] Hooked into PlaceholderAPI!
[17:43:30] [Server thread/INFO]: [UltimateAutoRestart] Successfully performed 1 hooks!
[17:43:30] [Thread-61/WARN]: [UltimateClans] New version (6.15.6) of Ultimate Clans is avaliable in https://polymart.org/r/1162
[17:43:32] [Craft Scheduler Thread - 14 - AuctionHouse/INFO]: [AuctionHouse] Auto saved auction items & transactions
[17:43:32] [Server thread/INFO]:  
[17:43:32] [Server thread/INFO]:  [UltimateAutoRestart] New update available!
[17:43:32] [Server thread/INFO]:  Current version: Build 54a with latest being 2023.11!
[17:43:32] [Server thread/INFO]:  
[17:43:32] [Server thread/INFO]:  SpigotMC -> https://norska.dev/r/spigot/uar/
[17:43:32] [Server thread/INFO]:  Polymart -> https://norska.dev/r/polymart/uar/
[17:43:32] [Server thread/INFO]:  
[17:49:15] [User Authenticator #0/INFO]: UUID of player Bloody_Mind is 44b14d0b-8a84-47b0-a722-01f99b65c962
[17:49:15] [Server thread/INFO]: [EthriaEvent] [ACF] Can't read players locale, you will be unable to automatically detect players language. Only Bukkit 1.7+ is supported for this.
[17:49:15] [Server thread/INFO]: [EthriaEvent] [ACF] java.lang.NoSuchFieldException: locale
[17:49:15] [Server thread/INFO]: [EthriaEvent] [ACF]     at java.base/java.lang.Class.getDeclaredField(Class.java:2642)
[17:49:15] [Server thread/INFO]: [EthriaEvent] [ACF]     at ethria-event-1.0-SNAPSHOT.jar//co.aikar.commands.BukkitCommandManager.readPlayerLocale(BukkitCommandManager.java:318)
[17:49:15] [Server thread/INFO]: [EthriaEvent] [ACF]     at ethria-event-1.0-SNAPSHOT.jar//co.aikar.commands.ACFBukkitListener.onPlayerJoin(ACFBukkitListener.java:57)
[17:49:15] [Server thread/INFO]: [EthriaEvent] [ACF]     at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:40)
[17:49:15] [Server thread/INFO]: [EthriaEvent] [ACF]     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81)
[17:49:15] [Server thread/INFO]: [EthriaEvent] [ACF]     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[17:49:15] [Server thread/INFO]: [EthriaEvent] [ACF]     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[17:49:15] [Server thread/INFO]: [EthriaEvent] [ACF]     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126)
[17:49:15] [Server thread/INFO]: [EthriaEvent] [ACF]     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615)
[17:49:15] [Server thread/INFO]: [EthriaEvent] [ACF]     at net.minecraft.server.players.PlayerList.a(PlayerList.java:344)
[17:49:15] [Server thread/INFO]: [EthriaEvent] [ACF]     at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.a(ServerConfigurationPacketListenerImpl.java:130)
[17:49:15] [Server thread/INFO]: [EthriaEvent] [ACF]     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(ServerboundFinishConfigurationPacket.java:18)
[17:49:15] [Server thread/INFO]: [EthriaEvent] [ACF]     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(ServerboundFinishConfigurationPacket.java:9)
[17:49:15] [Server thread/INFO]: [EthriaEvent] [ACF]     at net.minecraft.network.protocol.PlayerConnectionUtils.lambda$ensureRunningOnSameThread$0(PlayerConnectionUtils.java:54)
[17:49:15] [Server thread/INFO]: [EthriaEvent] [ACF]     at net.minecraft.server.TickTask.run(TickTask.java:18)
[17:49:15] [Server thread/INFO]: [EthriaEvent] [ACF]     at net.minecraft.util.thread.IAsyncTaskHandler.d(IAsyncTaskHandler.java:153)
[17:49:15] [Server thread/INFO]: [EthriaEvent] [ACF]     at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(IAsyncTaskHandlerReentrant.java:24)
[17:49:15] [Server thread/INFO]: [EthriaEvent] [ACF]     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1458)
[17:49:15] [Server thread/INFO]: [EthriaEvent] [ACF]     at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:194)
[17:49:15] [Server thread/INFO]: [EthriaEvent] [ACF]     at net.minecraft.util.thread.IAsyncTaskHandler.x(IAsyncTaskHandler.java:126)
[17:49:15] [Server thread/INFO]: [EthriaEvent] [ACF]     at net.minecraft.server.MinecraftServer.bl(MinecraftServer.java:1435)
[17:49:15] [Server thread/INFO]: [EthriaEvent] [ACF]     at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1358)
[17:49:15] [Server thread/INFO]: [EthriaEvent] [ACF]     at net.minecraft.util.thread.IAsyncTaskHandler.c(IAsyncTaskHandler.java:136)
[17:49:15] [Server thread/INFO]: [EthriaEvent] [ACF]     at net.minecraft.server.MinecraftServer.w_(MinecraftServer.java:1336)
[17:49:15] [Server thread/INFO]: [EthriaEvent] [ACF]     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1220)
[17:49:15] [Server thread/INFO]: [EthriaEvent] [ACF]     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:321)
[17:49:15] [Server thread/INFO]: [EthriaEvent] [ACF]     at java.base/java.lang.Thread.run(Thread.java:833)
[17:49:15] [Server thread/INFO]: [AuctionHouse] Updating profile player reference for: Bloody_Mind
[17:49:15] [Server thread/INFO]: [NotQuests]: Disabling packet stuff because something went wrong...
[17:49:15] [Bank - Loader Thread/INFO]: [Bank] Loading 44b14d0b-8a84-47b0-a722-01f99b65c962
[17:49:15] [Server thread/INFO]: Bloody_Mind[/87.122.38.177:41985] logged in with entity id 1693 at ([p_test]-15.136703110355278, 78.42670527195968, 18.092669515160562)
[17:49:15] [Craft Scheduler Thread - 45 - NotQuests/INFO]: [NotQuests]: Loading PlayerData of player 44b14d0b-8a84-47b0-a722-01f99b65c962...
[17:49:15] [Craft Scheduler Thread - 45 - NotQuests/INFO]: [NotQuests]: Loaded player with uuid 44b14d0b-8a84-47b0-a722-01f99b65c962 (Profile: default) and questPoints: 0
[17:49:15] [Craft Scheduler Thread - 45 - NotQuests/INFO]: [NotQuests]: Loading tags for Bloody_Mind (Profile: default) ...
[17:49:15] [Craft Scheduler Thread - 45 - NotQuests/INFO]: [NotQuests]:   Loaded 0 tags for Bloody_Mind:
[17:49:16] [Server thread/INFO]: [CMI] CMI proxy plugin detected
[17:49:24] [Server thread/INFO]: Bloody_Mind issued server command: /pm list
[17:58:32] [Craft Scheduler Thread - 59 - AuctionHouse/INFO]: [AuctionHouse] Auto saved auction items & transactions
[18:10:44] [Server thread/INFO]: Bloody_Mind issued server command: /pm list
[18:10:59] [Server thread/INFO]: Bloody_Mind lost connection: Disconnected
[18:10:59] [Server thread/INFO]: [AuctionHouse] Removing sell holding instance for user: Bloody_Mind
[18:11:00] [Craft Scheduler Thread - 63 - NotQuests/INFO]: [NotQuests]: Saving PlayerData of player Bloody_Mind...
[18:11:00] [Craft Scheduler Thread - 63 - NotQuests/INFO]: [NotQuests]: PlayerData of player Bloody_Mind was saved (0 QuestPoints, Profile: default)
[18:13:32] [Craft Scheduler Thread - 65 - AuctionHouse/INFO]: [AuctionHouse] Auto saved auction items & transactions
[18:28:32] [Craft Scheduler Thread - 66 - AuctionHouse/INFO]: [AuctionHouse] Auto saved auction items & transactions
[18:43:27] [Craft Scheduler Thread - 80 - Core/INFO]: [Core] [Core] Checking for 2 updates.
[18:43:27] [Craft Scheduler Thread - 80 - Core/INFO]: [Core] Checking update for Core v0.6.0
[18:43:27] [Craft Scheduler Thread - 80 - Core/INFO]: [Core] Checking update for Bank v4.6.4-RELEASE
[18:43:32] [Craft Scheduler Thread - 73 - AuctionHouse/INFO]: [AuctionHouse] Auto saved auction items & transactions
[18:58:32] [Craft Scheduler Thread - 98 - AuctionHouse/INFO]: [AuctionHouse] Auto saved auction items & transactions