Paste #127344: Logs

Date: 2024/10/19 08:19:58 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
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
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981


[15:09:04] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.4+7-LTS; Eclipse Adoptium Temurin-21.0.4+7) on Linux 6.8.0-45-generic (amd64)
[15:09:04] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.1-123-master@aebbdc9 (2024-10-16T14:15:18Z) for Minecraft 1.21.1
[15:09:04] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[15:09:05] [ServerMain/ERROR]: [DirectoryProviderSource] Error loading plugin: zip file is empty
java.util.zip.ZipException: zip file is empty
    at java.base/java.util.zip.ZipFile$Source.zerror(Unknown Source) ~[?:?]
    at java.base/java.util.zip.ZipFile$Source.findEND(Unknown Source) ~[?:?]
    at java.base/java.util.zip.ZipFile$Source.initCEN(Unknown Source) ~[?:?]
    at java.base/java.util.zip.ZipFile$Source.<init>(Unknown Source) ~[?:?]
    at java.base/java.util.zip.ZipFile$Source.get(Unknown Source) ~[?:?]
    at java.base/java.util.zip.ZipFile$CleanableResource.<init>(Unknown Source) ~[?:?]
    at java.base/java.util.zip.ZipFile.<init>(Unknown Source) ~[?:?]
    at java.base/java.util.zip.ZipFile.<init>(Unknown Source) ~[?:?]
    at java.base/java.util.jar.JarFile.<init>(Unknown Source) ~[?:?]
    at io.papermc.paper.plugin.provider.source.FileProviderSource.registerProviders(FileProviderSource.java:76) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:52) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:17) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.util.EntrypointUtil.registerProvidersFromSource(EntrypointUtil.java:15) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.PluginInitializerManager.load(PluginInitializerManager.java:113) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.Main.main(Main.java:123) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.PaperBootstrap.boot(PaperBootstrap.java:21) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.craftbukkit.Main.main(Main.java:281) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paperclip.Paperclip.lambda$main$0(Paperclip.java:42) ~[app:?]
    at java.base/java.lang.Thread.run(Unknown Source) ~[?:?]
[15:09:05] [ServerMain/INFO]: [PluginInitializerManager] Initialized 90 plugins
[15:09:05] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (2):
 - BKCommonLib (1.20.4-v3), Minepacks (2.4.31.4-T20240629215752)
[15:09:05] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (88):
 - AltDetector (2.02), AquaticCrates (2.7.4), ArmoredElytra (2.4.15), AutomaticBroadcast (1.4.2), BendingItems (1.9.1), Bendinggsmp (1.0), BigDoors (Alpha 0.1.8.54), BigDoorsOpener (2.5.2), CRUtils (1.1.6), ChatInjector (1.0.0), Citizens (2.0.35-SNAPSHOT (build 3594)), Coins (1.13.1), CollisionUtility (1.0.1), CoreProtect (22.1), CratesPlus (4.5.3), CustomFishing (2.1.5), Daggers (1.0.0), DecentHolograms (2.8.11), DiscordSRV (1.28.0), DiscordSRV-Staff-Chat (1.4.5), Dragon (1.0), Essentials (2.21.0-dev+117-c80bef9), EssentialsChat (2.21.0-dev+117-c80bef9), EssentialsSpawn (2.21.0-dev+117-c80bef9), ExecutableItems (7.24.7.18), FastAsyncWorldEdit (2.11.3-SNAPSHOT-937;91bdd15), Flora (1.0.0), ForcePack (1.3.6), GSit (1.10.0), Gapi (1.0.11), GriefPrevention (16.18.2), Hackathon (1.0), HackathonPack (1.0.1), Hat (1.5.0), HeadDB (5.0.0-rc.10), HorseTpWithMe (11.1.0), Hyperion (1.6.3), Images (2.3.2), InventoryRollbackPlus (1.6.18), ItemFrameToggle (1.5.4), JedCore (2.13.2-PK1.11.1), LibsDisguises (10.0.44-SNAPSHOT), LootChest (2.4.0), LuckPerms (5.4.141), LumosComet (1.0), MCPets (4.1.2), MacbarmHackatonPack (1.0-SNAPSHOT), ModelEngine (R4.0.8), Multiverse-Core (4.3.12), Multiverse-Portals (4.2.3), MythicCrucible (2.1.0-SNAPSHOT), MythicMobs (5.8.0-SNAPSHOT-7b1a5e36), NPCLibPlugin (2.11.1-SNAPSHOT), NotQuests (5.18.2), NoteBlockAPI (1.6.2), OpenInv (4.4.3), PacketListenerApi (3.9.10-SNAPSHOT), PetTeleport (1.0), PlaceholderAPI (2.11.6), PlatinumArenas (0.7.5), ProBending (1.2.0), ProjectAddons (1.2.4), ProjectCoco (${project.version}), ProjectKorra (1.12.0-BETA-13), ProtocolLib (5.3.0-SNAPSHOT-732), RainbowsPro (1.3.0), SCore (5.24.7.18), Sentinel (2.8.1-SNAPSHOT (build 513)), Shopkeepers (2.19.0), SimpleRename (13.9), SpellBooks (0.8.4), Spirits (1.2), Spirits (1.2.3), SuperVanish (6.2.18), TAB (4.1.9), TheAPI (12.1), TimTheEnchanter (2.1), TorrentRedirection (1.1), Typewriter (0.5.0-beta-85), Vault (1.7.3-b131), VentureChat (3.7.1), Votifier (2.7.3), VotingPlugin (6.15.1), Vulcan (1.0), WorldGuard (7.0.10+d9424b1), WorldGuardExtraFlags (4.2.3), Zephyrus (1.0), packetevents (2.5.0)
[15:09:09] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[15:09:11] [ServerMain/INFO]: Loaded 1290 recipes
[15:09:11] [ServerMain/INFO]: Loaded 1399 advancements
[15:09:11] [Server thread/INFO]: Starting minecraft server version 1.21.1
[15:09:11] [Server thread/WARN]: ****************************
[15:09:11] [Server thread/WARN]: YOU ARE RUNNING THIS SERVER AS AN ADMINISTRATIVE OR ROOT USER. THIS IS NOT ADVISED.
[15:09:11] [Server thread/WARN]: YOU ARE OPENING YOURSELF UP TO POTENTIAL RISKS WHEN DOING THIS.
[15:09:11] [Server thread/WARN]: FOR MORE INFORMATION, SEE https://madelinemiller.dev/blog/root-minecraft-server/
[15:09:11] [Server thread/WARN]: ****************************
[15:09:11] [Server thread/INFO]: Loading properties
[15:09:11] [Server thread/INFO]: This server is running Paper version 1.21.1-123-master@aebbdc9 (2024-10-16T14:15:18Z) (Implementing API version 1.21.1-R0.1-SNAPSHOT)
[15:09:12] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[15:09:12] [Server thread/INFO]: Server Ping Player Sample Count: 12
[15:09:12] [Server thread/INFO]: Using 4 threads for Netty based IO
[15:09:12] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend migrating to the spark profiler.
    For more information please visit: https://github.com/PaperMC/Paper/discussions/10565
[15:09:12] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and population gen parallelism of 1 threads
[15:09:13] [Server thread/INFO]: Default game type: SURVIVAL
[15:09:13] [Server thread/INFO]: Generating keypair
[15:09:13] [Server thread/INFO]: Starting Minecraft server on *:25565
[15:09:13] [Server thread/INFO]: Using epoll channel type
[15:09:13] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[15:09:13] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
[15:09:13] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Ambiguous plugin name 'Spirits' for files 'plugins/.paper-remapped/Spirits-1.2.3-PK1.11.2.jar' and 'plugins/.paper-remapped/Spirits-1.2.1-PK1.11.2.jar' in 'plugins/.paper-remapped'
[15:09:14] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loading 4 libraries... please wait
[15:09:14] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /data/libraries/net/kyori/adventure-api/4.16.0/adventure-api-4.16.0.jar
[15:09:14] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /data/libraries/net/kyori/adventure-key/4.16.0/adventure-key-4.16.0.jar
[15:09:14] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /data/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[15:09:14] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /data/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[15:09:14] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /data/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[15:09:14] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /data/libraries/net/kyori/adventure-platform-bukkit/4.3.2/adventure-platform-bukkit-4.3.2.jar
[15:09:14] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /data/libraries/net/kyori/adventure-platform-api/4.3.2/adventure-platform-api-4.3.2.jar
[15:09:14] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /data/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.2/adventure-text-serializer-bungeecord-4.3.2.jar
[15:09:14] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /data/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[15:09:14] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /data/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[15:09:14] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /data/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[15:09:14] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /data/libraries/net/kyori/adventure-platform-facet/4.3.2/adventure-platform-facet-4.3.2.jar
[15:09:14] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /data/libraries/net/kyori/adventure-platform-viaversion/4.3.2/adventure-platform-viaversion-4.3.2.jar
[15:09:14] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /data/libraries/net/kyori/adventure-text-minimessage/4.16.0/adventure-text-minimessage-4.16.0.jar
[15:09:14] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /data/libraries/net/kyori/adventure-text-serializer-gson/4.16.0/adventure-text-serializer-gson-4.16.0.jar
[15:09:14] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /data/libraries/net/kyori/adventure-text-serializer-json/4.16.0/adventure-text-serializer-json-4.16.0.jar
[15:09:14] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /data/libraries/net/kyori/option/1.0.0/option-1.0.0.jar
[15:09:14] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /data/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[15:09:15] [Server thread/INFO]: [SpigotLibraryLoader] [BigDoors] Loading 1 libraries... please wait
[15:09:15] [Server thread/INFO]: [SpigotLibraryLoader] [BigDoors] Loaded library /data/libraries/net/bytebuddy/byte-buddy/1.14.17/byte-buddy-1.14.17.jar
[15:09:15] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[15:09:24] [Server thread/INFO]: [SpigotLibraryLoader] [CRUtils] Loading 1 libraries... please wait
[15:09:24] [Server thread/INFO]: [SpigotLibraryLoader] [CRUtils] Loaded library /data/libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
[15:09:24] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loading 3 libraries... please wait
[15:09:24] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /data/libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
[15:09:24] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /data/libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
[15:09:24] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /data/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[15:09:24] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /data/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[15:09:24] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /data/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[15:09:24] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /data/libraries/net/kyori/adventure-text-serializer-gson/4.14.0/adventure-text-serializer-gson-4.14.0.jar
[15:09:24] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /data/libraries/net/kyori/adventure-text-serializer-json/4.14.0/adventure-text-serializer-json-4.14.0.jar
[15:09:24] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /data/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[15:09:24] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /data/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.0/adventure-text-serializer-bungeecord-4.3.0.jar
[15:09:24] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /data/libraries/net/kyori/adventure-text-serializer-legacy/4.13.0/adventure-text-serializer-legacy-4.13.0.jar
[15:09:24] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Could not load plugin 'TheAPI.jar' in folder 'plugins/.paper-remapped'
org.bukkit.plugin.InvalidPluginException: java.lang.ExceptionInInitializerError
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:129) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:35) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.entrypoint.strategy.modern.ModernPluginLoadingStrategy.loadProviders(ModernPluginLoadingStrategy.java:116) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:38) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:40) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:546) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:292) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at java.base/java.lang.Thread.run(Unknown Source) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Unknown Source) ~[?:?]
    at java.base/java.lang.Class.forName(Unknown Source) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:78) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:125) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    ... 9 more
Caused by: java.lang.ArrayIndexOutOfBoundsException: Index 3 out of bounds for length 3
    at TheAPI.jar/me.devtec.theapi.bukkit.BukkitLibInit.initTheAPI(Unknown Source) ~[TheAPI.jar:?]
    at TheAPI.jar/me.devtec.theapi.bukkit.BukkitLoader.<clinit>(Unknown Source) ~[TheAPI.jar:?]
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Unknown Source) ~[?:?]
    at java.base/java.lang.Class.forName(Unknown Source) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:78) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:125) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    ... 9 more
[15:09:24] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Could not load plugin 'images-2.3.2.jar' in folder 'plugins/.paper-remapped'
org.bukkit.plugin.InvalidPluginException: java.lang.ExceptionInInitializerError
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:129) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:35) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.entrypoint.strategy.modern.ModernPluginLoadingStrategy.loadProviders(ModernPluginLoadingStrategy.java:116) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:38) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:40) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:546) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:292) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at java.base/java.lang.Thread.run(Unknown Source) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError
    at images-2.3.2.jar/com.andavin.images.Versioned.<clinit>(Versioned.java:42) ~[images-2.3.2.jar:?]
    at images-2.3.2.jar/com.andavin.images.Images.<clinit>(Images.java:97) ~[images-2.3.2.jar:?]
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Unknown Source) ~[?:?]
    at java.base/java.lang.Class.forName(Unknown Source) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:78) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:125) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    ... 9 more
Caused by: java.lang.StringIndexOutOfBoundsException: Range [23, -1) out of bounds for length 22
    at java.base/jdk.internal.util.Preconditions$1.apply(Unknown Source) ~[?:?]
    at java.base/jdk.internal.util.Preconditions$1.apply(Unknown Source) ~[?:?]
    at java.base/jdk.internal.util.Preconditions$4.apply(Unknown Source) ~[?:?]
    at java.base/jdk.internal.util.Preconditions$4.apply(Unknown Source) ~[?:?]
    at java.base/jdk.internal.util.Preconditions.outOfBounds(Unknown Source) ~[?:?]
    at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckFromToIndex(Unknown Source) ~[?:?]
    at java.base/jdk.internal.util.Preconditions.checkFromToIndex(Unknown Source) ~[?:?]
    at java.base/java.lang.String.checkBoundsBeginEnd(Unknown Source) ~[?:?]
    at java.base/java.lang.String.substring(Unknown Source) ~[?:?]
    at images-2.3.2.jar/com.andavin.util.MinecraftVersion.<clinit>(MinecraftVersion.java:168) ~[images-2.3.2.jar:?]
    at images-2.3.2.jar/com.andavin.images.Versioned.<clinit>(Versioned.java:42) ~[images-2.3.2.jar:?]
    at images-2.3.2.jar/com.andavin.images.Images.<clinit>(Images.java:97) ~[images-2.3.2.jar:?]
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Unknown Source) ~[?:?]
    at java.base/java.lang.Class.forName(Unknown Source) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:78) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:125) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    ... 9 more
[15:09:24] [Server thread/WARN]: Legacy plugin NPCLibPlugin v2.11.1-SNAPSHOT does not specify an api-version.
[15:09:24] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loading 1 libraries... please wait
[15:09:24] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /data/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[15:09:24] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /data/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[15:09:24] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /data/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[15:09:24] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /data/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[15:09:24] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /data/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[15:09:24] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /data/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[15:09:24] [Server thread/INFO]: [SpigotLibraryLoader] [Typewriter] Loading 4 libraries... please wait
[15:09:25] [Server thread/INFO]: [SpigotLibraryLoader] [Typewriter] Loaded library /data/libraries/org/jetbrains/kotlin/kotlin-stdlib/1.9.22/kotlin-stdlib-1.9.22.jar
[15:09:25] [Server thread/INFO]: [SpigotLibraryLoader] [Typewriter] Loaded library /data/libraries/org/jetbrains/annotations/13.0/annotations-13.0.jar
[15:09:25] [Server thread/INFO]: [SpigotLibraryLoader] [Typewriter] Loaded library /data/libraries/org/jetbrains/kotlin/kotlin-reflect/1.9.22/kotlin-reflect-1.9.22.jar
[15:09:25] [Server thread/INFO]: [SpigotLibraryLoader] [Typewriter] Loaded library /data/libraries/org/jetbrains/kotlinx/kotlinx-coroutines-core/1.7.1/kotlinx-coroutines-core-1.7.1.jar
[15:09:25] [Server thread/INFO]: [SpigotLibraryLoader] [Typewriter] Loaded library /data/libraries/org/jetbrains/kotlinx/kotlinx-coroutines-core-jvm/1.7.1/kotlinx-coroutines-core-jvm-1.7.1.jar
[15:09:25] [Server thread/INFO]: [SpigotLibraryLoader] [Typewriter] Loaded library /data/libraries/org/jetbrains/kotlin/kotlin-stdlib-common/1.8.20/kotlin-stdlib-common-1.8.20.jar
[15:09:25] [Server thread/INFO]: [SpigotLibraryLoader] [Typewriter] Loaded library /data/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.8.20/kotlin-stdlib-jdk8-1.8.20.jar
[15:09:25] [Server thread/INFO]: [SpigotLibraryLoader] [Typewriter] Loaded library /data/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.8.20/kotlin-stdlib-jdk7-1.8.20.jar
[15:09:25] [Server thread/INFO]: [SpigotLibraryLoader] [Typewriter] Loaded library /data/libraries/com/corundumstudio/socketio/netty-socketio/1.7.19/netty-socketio-1.7.19.jar
[15:09:25] [Server thread/INFO]: [SpigotLibraryLoader] [Typewriter] Loaded library /data/libraries/io/netty/netty-buffer/4.1.63.Final/netty-buffer-4.1.63.Final.jar
[15:09:25] [Server thread/INFO]: [SpigotLibraryLoader] [Typewriter] Loaded library /data/libraries/io/netty/netty-common/4.1.63.Final/netty-common-4.1.63.Final.jar
[15:09:25] [Server thread/INFO]: [SpigotLibraryLoader] [Typewriter] Loaded library /data/libraries/io/netty/netty-transport/4.1.63.Final/netty-transport-4.1.63.Final.jar
[15:09:25] [Server thread/INFO]: [SpigotLibraryLoader] [Typewriter] Loaded library /data/libraries/io/netty/netty-resolver/4.1.63.Final/netty-resolver-4.1.63.Final.jar
[15:09:25] [Server thread/INFO]: [SpigotLibraryLoader] [Typewriter] Loaded library /data/libraries/io/netty/netty-handler/4.1.63.Final/netty-handler-4.1.63.Final.jar
[15:09:25] [Server thread/INFO]: [SpigotLibraryLoader] [Typewriter] Loaded library /data/libraries/io/netty/netty-codec-http/4.1.63.Final/netty-codec-http-4.1.63.Final.jar
[15:09:25] [Server thread/INFO]: [SpigotLibraryLoader] [Typewriter] Loaded library /data/libraries/io/netty/netty-codec/4.1.63.Final/netty-codec-4.1.63.Final.jar
[15:09:25] [Server thread/INFO]: [SpigotLibraryLoader] [Typewriter] Loaded library /data/libraries/io/netty/netty-transport-native-epoll/4.1.63.Final/netty-transport-native-epoll-4.1.63.Final.jar
[15:09:25] [Server thread/INFO]: [SpigotLibraryLoader] [Typewriter] Loaded library /data/libraries/io/netty/netty-transport-native-unix-common/4.1.63.Final/netty-transport-native-unix-common-4.1.63.Final.jar
[15:09:25] [Server thread/INFO]: [SpigotLibraryLoader] [Typewriter] Loaded library /data/libraries/org/slf4j/slf4j-api/1.7.21/slf4j-api-1.7.21.jar
[15:09:25] [Server thread/INFO]: [SpigotLibraryLoader] [Typewriter] Loaded library /data/libraries/com/fasterxml/jackson/core/jackson-core/2.12.3/jackson-core-2.12.3.jar
[15:09:25] [Server thread/INFO]: [SpigotLibraryLoader] [Typewriter] Loaded library /data/libraries/com/fasterxml/jackson/core/jackson-databind/2.12.3/jackson-databind-2.12.3.jar
[15:09:25] [Server thread/INFO]: [SpigotLibraryLoader] [Typewriter] Loaded library /data/libraries/com/fasterxml/jackson/core/jackson-annotations/2.12.3/jackson-annotations-2.12.3.jar
[15:09:25] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Could not load plugin 'Shopkeepers-2.19.0.jar' in folder 'plugins/.paper-remapped'
org.bukkit.plugin.InvalidPluginException: Exception initializing main class `com.nisovin.shopkeepers.SKShopkeepersPlugin'
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:106) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:125) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:35) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.entrypoint.strategy.modern.ModernPluginLoadingStrategy.loadProviders(ModernPluginLoadingStrategy.java:116) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:38) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:40) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:546) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:292) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at java.base/java.lang.Thread.run(Unknown Source) ~[?:?]
Caused by: java.lang.reflect.InvocationTargetException
    at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(Unknown Source) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Unknown Source) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstance(Unknown Source) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:98) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    ... 10 more
Caused by: java.lang.VerifyError: Bad type on operand stack
Exception Details:
  Location:
    com/nisovin/shopkeepers/shopobjects/living/types/ZombieVillagerShop.cycleProfession(Z)V @8: invokestatic
  Reason:
    Type 'org/bukkit/entity/Villager$Profession' (current frame, stack[2]) is not assignable to 'java/lang/Enum'
  Current Frame:
    bci: @8
    flags: { }
    locals: { 'com/nisovin/shopkeepers/shopobjects/living/types/ZombieVillagerShop', integer }
    stack: { 'com/nisovin/shopkeepers/shopobjects/living/types/ZombieVillagerShop', 'java/lang/Class', 'org/bukkit/entity/Villager$Profession', integer }
  Bytecode:
    0000000: 2a12 092a b600 9a1b b800 a0c0 0009 b600
    0000010: a2b1                                   

    at Shopkeepers-2.19.0.jar/com.nisovin.shopkeepers.shopobjects.living.SKLivingShopObjectTypes.createLivingShopObjectType(SKLivingShopObjectTypes.java:404) ~[Shopkeepers-2.19.0.jar:?]
    at Shopkeepers-2.19.0.jar/com.nisovin.shopkeepers.shopobjects.living.SKLivingShopObjectTypes.createShopObjectTypes(SKLivingShopObjectTypes.java:249) ~[Shopkeepers-2.19.0.jar:?]
    at Shopkeepers-2.19.0.jar/com.nisovin.shopkeepers.shopobjects.living.SKLivingShopObjectTypes.<init>(SKLivingShopObjectTypes.java:240) ~[Shopkeepers-2.19.0.jar:?]
    at Shopkeepers-2.19.0.jar/com.nisovin.shopkeepers.shopobjects.living.LivingShops.<init>(LivingShops.java:62) ~[Shopkeepers-2.19.0.jar:?]
    at Shopkeepers-2.19.0.jar/com.nisovin.shopkeepers.SKShopkeepersPlugin.<init>(SKShopkeepersPlugin.java:155) ~[Shopkeepers-2.19.0.jar:?]
    at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(Unknown Source) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Unknown Source) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstance(Unknown Source) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:98) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    ... 10 more
[15:09:25] [Server thread/WARN]: Legacy plugin ChatInjector v1.0.0 does not specify an api-version.
[15:09:25] [Server thread/INFO]: [SpigotLibraryLoader] [AquaticCrates] Loading 1 libraries... please wait
[15:09:25] [Server thread/INFO]: [SpigotLibraryLoader] [AquaticCrates] Loaded library /data/libraries/org/jetbrains/kotlin/kotlin-stdlib/2.0.0/kotlin-stdlib-2.0.0.jar
[15:09:25] [Server thread/INFO]: [SpigotLibraryLoader] [AquaticCrates] Loaded library /data/libraries/org/jetbrains/annotations/13.0/annotations-13.0.jar
[15:09:25] [Server thread/INFO]: [Minepacks] PCGF-PluginLib not installed. Switching to standalone mode!
[15:09:26] [Server thread/WARN]: Legacy plugin LumosComet v1.0 does not specify an api-version.
[15:09:26] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Could not load plugin 'ArmoredElytra.jar' in folder 'plugins/.paper-remapped'
org.bukkit.plugin.InvalidPluginException: java.lang.ExceptionInInitializerError
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:129) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:35) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.entrypoint.strategy.modern.ModernPluginLoadingStrategy.loadProviders(ModernPluginLoadingStrategy.java:116) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:38) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:40) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:546) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:292) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at java.base/java.lang.Thread.run(Unknown Source) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Unknown Source) ~[?:?]
    at java.base/java.lang.Class.forName(Unknown Source) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:78) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:125) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    ... 9 more
Caused by: java.lang.ArrayIndexOutOfBoundsException: Index 3 out of bounds for length 3
    at ArmoredElytra.jar/nl.pim16aap2.armoredElytra.ArmoredElytra.<clinit>(ArmoredElytra.java:37) ~[ArmoredElytra.jar:?]
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Unknown Source) ~[?:?]
    at java.base/java.lang.Class.forName(Unknown Source) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:78) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:125) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    ... 9 more
[15:09:26] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.141
[15:09:26] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[15:09:26] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.11.3-SNAPSHOT-937;91bdd15
[15:09:29] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@2c2d3f9d]
[15:09:29] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.3.0-SNAPSHOT-732
[15:09:29] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.21.1) has not yet been tested! Proceed with caution.
[15:09:29] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.10+d9424b1
[15:09:29] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.12
[15:09:29] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[15:09:29] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.5.0
[15:09:32] [Server thread/INFO]: [GriefPrevention] Loading server plugin GriefPrevention v16.18.2
[15:09:32] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0-dev+117-c80bef9
[15:09:32] [Server thread/INFO]: [LibsDisguises] Loading server plugin LibsDisguises v10.0.44-SNAPSHOT
[15:09:32] [Server thread/INFO]: [ProjectKorra] Loading server plugin ProjectKorra v1.12.0-BETA-13
[15:09:32] [Server thread/INFO]: [VentureChat] Loading server plugin VentureChat v3.7.1
[15:09:32] [Server thread/INFO]: [SuperVanish] Loading server plugin SuperVanish v6.2.18
[15:09:32] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.11
[15:09:32] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v22.1
[15:09:32] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.35-SNAPSHOT (build 3594)
[15:09:32] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.8.0-SNAPSHOT-7b1a5e36
[15:09:32] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[15:09:32] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[15:09:32] [Server thread/INFO]: [ProjectAddons] Loading server plugin ProjectAddons v1.2.4
[15:09:32] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.28.0
[15:09:32] [Server thread/INFO]: [SCore] Loading server plugin SCore v5.24.7.18
[15:09:32] [Server thread/INFO]: [Votifier] Loading server plugin Votifier v2.7.3
[15:09:32] [Server thread/INFO]: [BigDoors] Loading server plugin BigDoors vAlpha 0.1.8.54
[15:09:32] [Server thread/INFO]: [CRUtils] Loading server plugin CRUtils v1.1.6
[15:09:32] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR4.0.8
[15:09:32] [Server thread/INFO]: [GSit] Loading server plugin GSit v1.10.0
[15:09:32] [Server thread/INFO]: [RainbowsPro] Loading server plugin RainbowsPro v1.3.0
[15:09:32] [Server thread/INFO]: [CustomFishing] Loading server plugin CustomFishing v2.1.5
[15:09:32] [Server thread/ERROR]: [CustomFishing] Error initializing plugin 'CustomFishing-2.1.5.jar' in folder 'plugins/.paper-remapped' (Is it up to date?)
java.lang.ExceptionInInitializerError: null
    at java.base/jdk.internal.misc.Unsafe.ensureClassInitialized0(Native Method) ~[?:?]
    at java.base/jdk.internal.misc.Unsafe.ensureClassInitialized(Unknown Source) ~[?:?]
    at java.base/jdk.internal.reflect.MethodHandleAccessorFactory.ensureClassInitialized(Unknown Source) ~[?:?]
    at java.base/jdk.internal.reflect.MethodHandleAccessorFactory.newMethodAccessor(Unknown Source) ~[?:?]
    at java.base/jdk.internal.reflect.ReflectionFactory.newMethodAccessor(Unknown Source) ~[?:?]
    at java.base/java.lang.reflect.Method.acquireMethodAccessor(Unknown Source) ~[?:?]
    at java.base/java.lang.reflect.Method.invoke(Unknown Source) ~[?:?]
    at java.base/java.lang.Class.getEnumConstantsShared(Unknown Source) ~[?:?]
    at java.base/java.lang.System$2.getEnumConstantsShared(Unknown Source) ~[?:?]
    at java.base/java.util.EnumMap.getKeyUniverse(Unknown Source) ~[?:?]
    at java.base/java.util.EnumMap.<init>(Unknown Source) ~[?:?]
    at CustomFishing-2.1.5.jar/net.momirealms.customfishing.libraries.dependencies.DependencyManagerImpl.<init>(DependencyManagerImpl.java:58) ~[CustomFishing-2.1.5.jar:?]
    at CustomFishing-2.1.5.jar/net.momirealms.customfishing.CustomFishingPluginImpl.onLoad(CustomFishingPluginImpl.java:86) ~[CustomFishing-2.1.5.jar:?]
    at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:59) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:18) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:39) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:40) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:546) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:292) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at java.base/java.lang.Thread.run(Unknown Source) ~[?:?]
Caused by: java.lang.RuntimeException: Unsupported version: 1.21.1
    at CustomFishing-2.1.5.jar/net.momirealms.customfishing.libraries.dependencies.Dependency.getInvUINms(Dependency.java:340) ~[CustomFishing-2.1.5.jar:?]
    at CustomFishing-2.1.5.jar/net.momirealms.customfishing.libraries.dependencies.Dependency.<clinit>(Dependency.java:228) ~[CustomFishing-2.1.5.jar:?]
    ... 22 more
[15:09:32] [Server thread/INFO]: [Hackathon] Loading server plugin Hackathon v1.0
[15:09:32] [Server thread/INFO]: [CratesPlus] Loading server plugin CratesPlus v4.5.3
[15:09:32] [Server thread/INFO]: [AltDetector] Loading server plugin AltDetector v2.02
[15:09:32] [Server thread/INFO]: [PacketListenerApi] Loading server plugin PacketListenerApi v3.9.10-SNAPSHOT
[15:09:32] [Server thread/INFO]: [PacketListenerApi] [STDOUT] [ReflectionHelper/MinecraftVersion] I am loaded from package org.inventivetalent.packetlistener.reflection.minecraft
[15:09:32] [Server thread/WARN]: Nag author(s): '[inventivetalent]' of 'PacketListenerApi v3.9.10-SNAPSHOT' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[15:09:32] [Server thread/ERROR]: [PacketListenerApi] [STDERR] [ReflectionHelper/MinecraftVersion] Failed to find version enum for 'org.bukkit.craftbukkit'/'craftbukkit'
[15:09:32] [Server thread/INFO]: [PacketListenerApi] [STDOUT] [ReflectionHelper/MinecraftVersion] Generating dynamic constant...
[15:09:32] [Server thread/ERROR]: [PacketListenerApi] [STDERR] [ReflectionHelper/MinecraftVersion] Failed to create dynamic version for craftbukkit
[15:09:32] [Server thread/INFO]: [PacketListenerApi] [STDOUT] [ReflectionHelper/MinecraftVersion] Version is UNKNOWN (-1)
[15:09:32] [Server thread/ERROR]: [PacketListenerApi] [STDERR] [ReflectionHelper/MinecraftVersion] Failed to find version enum for 'org.bukkit.craftbukkit'/'craftbukkit'
[15:09:32] [Server thread/INFO]: [PacketListenerApi] [STDOUT] [ReflectionHelper/MinecraftVersion] Generating dynamic constant...
[15:09:32] [Server thread/ERROR]: [PacketListenerApi] [STDERR] [ReflectionHelper/MinecraftVersion] Failed to create dynamic version for craftbukkit
[15:09:32] [Server thread/ERROR]: [PacketListenerApi] [STDERR] [ReflectionHelper] Failed to find version enum for 'org.bukkit.craftbukkit'/'craftbukkit'
[15:09:32] [Server thread/INFO]: [PacketListenerApi] [STDOUT] [ReflectionHelper] Generating dynamic constant...
[15:09:32] [Server thread/ERROR]: [PacketListenerApi] Error initializing plugin 'PacketListenerAPI_v3.9.10-SNAPSHOT.jar' in folder 'plugins/.paper-remapped' (Is it up to date?)
java.lang.ExceptionInInitializerError: null
    at PacketListenerAPI_v3.9.10-SNAPSHOT.jar/org.inventivetalent.packetlistener.reflection.resolver.minecraft.NMSClassResolver.resolve(NMSClassResolver.java:26) ~[PacketListenerAPI_v3.9.10-SNAPSHOT.jar:?]
    at PacketListenerAPI_v3.9.10-SNAPSHOT.jar/org.inventivetalent.packetlistener.reflection.resolver.ClassResolver.resolveSilent(ClassResolver.java:17) ~[PacketListenerAPI_v3.9.10-SNAPSHOT.jar:?]
    at PacketListenerAPI_v3.9.10-SNAPSHOT.jar/org.inventivetalent.packetlistener.channel.ChannelAbstract.<clinit>(ChannelAbstract.java:22) ~[PacketListenerAPI_v3.9.10-SNAPSHOT.jar:?]
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Unknown Source) ~[?:?]
    at java.base/java.lang.Class.forName(Unknown Source) ~[?:?]
    at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.forName(AbstractDefaultRulesReflectionProxy.java:68) ~[reflection-rewriter-runtime-0.0.3.jar:?]
    at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.forName(Unknown Source) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at PacketListenerAPI_v3.9.10-SNAPSHOT.jar/org.inventivetalent.packetlistener.reflection.resolver.ClassResolver.resolveObject(ClassResolver.java:37) ~[PacketListenerAPI_v3.9.10-SNAPSHOT.jar:?]
    at PacketListenerAPI_v3.9.10-SNAPSHOT.jar/org.inventivetalent.packetlistener.reflection.resolver.ClassResolver.resolveObject(ClassResolver.java:9) ~[PacketListenerAPI_v3.9.10-SNAPSHOT.jar:?]
    at PacketListenerAPI_v3.9.10-SNAPSHOT.jar/org.inventivetalent.packetlistener.reflection.resolver.ResolverAbstract.resolve(ResolverAbstract.java:53) ~[PacketListenerAPI_v3.9.10-SNAPSHOT.jar:?]
    at PacketListenerAPI_v3.9.10-SNAPSHOT.jar/org.inventivetalent.packetlistener.reflection.resolver.ClassResolver.resolve(ClassResolver.java:29) ~[PacketListenerAPI_v3.9.10-SNAPSHOT.jar:?]
    at PacketListenerAPI_v3.9.10-SNAPSHOT.jar/org.inventivetalent.packetlistener.ChannelInjector.newChannelInstance(ChannelInjector.java:41) ~[PacketListenerAPI_v3.9.10-SNAPSHOT.jar:?]
    at PacketListenerAPI_v3.9.10-SNAPSHOT.jar/org.inventivetalent.packetlistener.ChannelInjector.inject(ChannelInjector.java:28) ~[PacketListenerAPI_v3.9.10-SNAPSHOT.jar:?]
    at PacketListenerAPI_v3.9.10-SNAPSHOT.jar/org.inventivetalent.packetlistener.PacketListenerAPI.load(PacketListenerAPI.java:32) ~[PacketListenerAPI_v3.9.10-SNAPSHOT.jar:?]
    at PacketListenerAPI_v3.9.10-SNAPSHOT.jar/org.inventivetalent.packetlistener.PacketListenerPlugin.onLoad(PacketListenerPlugin.java:16) ~[PacketListenerAPI_v3.9.10-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:59) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:18) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:39) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:40) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:546) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:292) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at java.base/java.lang.Thread.run(Unknown Source) ~[?:?]
Caused by: java.lang.RuntimeException: java.lang.ClassNotFoundException: Could not resolve class for [ResolverQuery{name='net.minecraft.server.UNKNOWN.Entity', types=[]}, ResolverQuery{name='net.minecraft.server.UNKNOWN.Entity', types=[]}]
    at PacketListenerAPI_v3.9.10-SNAPSHOT.jar/org.inventivetalent.packetlistener.reflection.minecraft.Minecraft.<clinit>(Minecraft.java:61) ~[PacketListenerAPI_v3.9.10-SNAPSHOT.jar:?]
    ... 25 more
Caused by: java.lang.ClassNotFoundException: Could not resolve class for [ResolverQuery{name='net.minecraft.server.UNKNOWN.Entity', types=[]}, ResolverQuery{name='net.minecraft.server.UNKNOWN.Entity', types=[]}]
    at PacketListenerAPI_v3.9.10-SNAPSHOT.jar/org.inventivetalent.packetlistener.reflection.resolver.ClassResolver.notFoundException(ClassResolver.java:42) ~[PacketListenerAPI_v3.9.10-SNAPSHOT.jar:?]
    at PacketListenerAPI_v3.9.10-SNAPSHOT.jar/org.inventivetalent.packetlistener.reflection.resolver.ClassResolver.notFoundException(ClassResolver.java:9) ~[PacketListenerAPI_v3.9.10-SNAPSHOT.jar:?]
    at PacketListenerAPI_v3.9.10-SNAPSHOT.jar/org.inventivetalent.packetlistener.reflection.resolver.ResolverAbstract.resolve(ResolverAbstract.java:63) ~[PacketListenerAPI_v3.9.10-SNAPSHOT.jar:?]
    at PacketListenerAPI_v3.9.10-SNAPSHOT.jar/org.inventivetalent.packetlistener.reflection.resolver.ClassResolver.resolve(ClassResolver.java:29) ~[PacketListenerAPI_v3.9.10-SNAPSHOT.jar:?]
    at PacketListenerAPI_v3.9.10-SNAPSHOT.jar/org.inventivetalent.packetlistener.reflection.resolver.minecraft.NMSClassResolver.resolve(NMSClassResolver.java:28) ~[PacketListenerAPI_v3.9.10-SNAPSHOT.jar:?]
    at PacketListenerAPI_v3.9.10-SNAPSHOT.jar/org.inventivetalent.packetlistener.reflection.minecraft.Minecraft.<clinit>(Minecraft.java:58) ~[PacketListenerAPI_v3.9.10-SNAPSHOT.jar:?]
    ... 25 more
[15:09:32] [Server thread/INFO]: [InventoryRollbackPlus] Loading server plugin InventoryRollbackPlus v1.6.18
[15:09:32] [Server thread/INFO]: [PetTeleport] Loading server plugin PetTeleport v1.0
[15:09:32] [Server thread/INFO]: [NPCLibPlugin] Loading server plugin NPCLibPlugin v2.11.1-SNAPSHOT
[15:09:32] [Server thread/INFO]: [PlatinumArenas] Loading server plugin PlatinumArenas v0.7.5
[15:09:32] [Server thread/INFO]: [AutomaticBroadcast] Loading server plugin AutomaticBroadcast v1.4.2
[15:09:32] [Server thread/INFO]: [ProjectCoco] Loading server plugin ProjectCoco v${project.version}
[15:09:32] [Server thread/INFO]: [MacbarmHackatonPack] Loading server plugin MacbarmHackatonPack v1.0-SNAPSHOT
[15:09:32] [Server thread/INFO]: [DiscordSRV-Staff-Chat] Loading server plugin DiscordSRV-Staff-Chat v1.4.5
[15:09:32] [Server thread/INFO]: [Tim] Loading server plugin TimTheEnchanter v2.1
[15:09:32] [Server thread/INFO]: [Vulcan] Loading server plugin Vulcan v1.0
[15:09:32] [Server thread/INFO]: [ExecutableItems] Loading server plugin ExecutableItems v7.24.7.18
[15:09:32] [Server thread/INFO]: [TorrentRedirection] Loading server plugin TorrentRedirection v1.1
[15:09:32] [Server thread/INFO]: [Sentinel] Loading server plugin Sentinel v2.8.1-SNAPSHOT (build 513)
[15:09:32] [Server thread/INFO]: [VotingPlugin] Loading server plugin VotingPlugin v6.15.1
[15:09:32] [Server thread/INFO]: [Coins] Loading server plugin Coins v1.13.1
[15:09:32] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.0-dev+117-c80bef9
[15:09:32] [Server thread/INFO]: [Dragon] Loading server plugin Dragon v1.0
[15:09:32] [Server thread/INFO]: [BigDoorsOpener] Debug logger initialized. Log Level: INFO
[15:09:32] [Server thread/INFO]: [BigDoorsOpener] Loading server plugin BigDoorsOpener v2.5.2
[15:09:32] [Server thread/INFO]: [Daggers] Loading server plugin Daggers v1.0.0
[15:09:32] [Server thread/INFO]: [Hat] Loading server plugin Hat v1.5.0
[15:09:32] [Server thread/INFO]: [Gapi] Loading server plugin Gapi v1.0.11
[15:09:32] [Server thread/INFO]: [SimpleRename] Loading server plugin SimpleRename v13.9
[15:09:32] [Server thread/INFO]: [CollisionUtility] Loading server plugin CollisionUtility v1.0.1
[15:09:32] [Server thread/INFO]: [NotQuests] Loading server plugin NotQuests v5.18.2
[15:09:32] [Server thread/INFO]: [Multiverse-Portals] Loading server plugin Multiverse-Portals v4.2.3
[15:09:32] [Server thread/INFO]: [JedCore] Loading server plugin JedCore v2.13.2-PK1.11.1
[15:09:32] [Server thread/INFO]: [NoteBlockAPI] Loading server plugin NoteBlockAPI v1.6.2
[15:09:32] [Server thread/INFO]: [Typewriter] Loading server plugin Typewriter v0.5.0-beta-85
[15:09:34] [Server thread/INFO]: [Typewriter] Loading adapter CitizensAdapter (1)
[15:09:37] [Server thread/INFO]: [Typewriter] Loading adapter WorldGuardAdapter (1)
[15:09:37] [Server thread/INFO]: [Typewriter] Loading adapter BasicAdapter (1)
[15:09:39] [Server thread/INFO]: [Typewriter] Loading adapter VaultAdapter (1)
[15:09:39] [Server thread/INFO]: [Typewriter] Loading adapter MythicMobsAdapter (1)
[15:09:39] [Server thread/INFO]: [Typewriter] Loading adapter EntityAdapter (1)
[15:09:40] [Server thread/INFO]: [Typewriter] 
---------------{ Loaded Adapters }---------------

CitizensAdapter   (0.5.0-beta-85) 📚:   5 👂:   2 💬:   0 🚚:   1 (⚠️ UNSUPPORTED)
WorldGuardAdapter (0.5.0-beta-85) 📚:   5 👂:   2 💬:   0 🚚:   0
BasicAdapter      (0.5.0-beta-85) 📚: 102 👂:  17 💬:   8 🚚:  10
VaultAdapter      (0.5.0-beta-85) 📚:   7 👂:   0 💬:   0 🚚:   0
MythicMobsAdapter (0.5.0-beta-85) 📚:   8 👂:   2 💬:   0 🚚:   0 (⚠️ UNTESTED)
EntityAdapter     (0.5.0-beta-85) 📚:  64 👂:   1 💬:   0 🚚:   0

There are unsupported adapters loaded. You won't get any support for these.

--------------------------------------------------
[15:09:40] [Server thread/INFO]: [Bendinggsmp] Loading server plugin Bendinggsmp v1.0
[15:09:40] [Server thread/INFO]: [MCPets] Loading server plugin MCPets v4.1.2
[15:09:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mcpets [1.0.0]
[15:09:40] [Server thread/INFO]: [MCPets] : mcpets-dismount flag registered successfully !
[15:09:40] [Server thread/INFO]: [MCPets] : mcpets-despawn flag registered successfully !
[15:09:40] [Server thread/INFO]: [MCPets] : mcpets-dismount-flying flag registered successfully !
[15:09:40] [Server thread/INFO]: [MCPets] : mcpets-pet-player-damage flag registered successfully !
[15:09:40] [Server thread/INFO]: [LootChest] Loading server plugin LootChest v2.4.0
[15:09:40] [Server thread/INFO]: [HackathonPack] Loading server plugin HackathonPack v1.0.1
[15:09:40] [Server thread/INFO]: [ChatInjector] Loading server plugin ChatInjector v1.0.0
[15:09:40] [Server thread/INFO]: [Spirits] Loading server plugin Spirits v1.2.3
[15:09:40] [Server thread/INFO]: [SpellBooks] Loading server plugin SpellBooks v0.8.4
[15:09:40] [Server thread/INFO]: [HorseTpWithMe] Loading server plugin HorseTpWithMe v11.1.0
[15:09:40] [Server thread/INFO]: [BKCommonLib] Loading server plugin BKCommonLib v1.20.4-v3
[15:09:40] [Server thread/WARN]: [BKCommonLib] [Developer] Class mappings file has no mappings for this Minecraft version. Build problem?
[15:09:41] [Server thread/WARN]: [BKCommonLib] > Fetching JSON from Mojang servers: https://hub.spigotmc.org/versions/1.21.1.json
[15:09:41] [Server thread/WARN]: [BKCommonLib] > Fetching Minecraft - Bukkit 1.21.1 class mappings from Mojang servers: https://hub.spigotmc.org/stash/projects/SPIGOT/repos/builddata/raw/mappings/bukkit-1.21.1-cl.csrg?at=533b02cd6ba8dbf8c8607250b02bf2d8c36421e8
[15:09:41] [Server thread/WARN]: [BKCommonLib] > Download metadata has no checksum, no file verification will be performed
[15:09:41] [Server thread/WARN]: [BKCommonLib] > Minecraft - Bukkit 1.21.1 class mappings download completed!
[15:09:41] [Server thread/ERROR]: [BKCommonLib] Mapping filter fail: declaring class net.minecraft.server.level.EntityPlayer not found
[15:09:41] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.1.9
[15:09:41] [Server thread/INFO]: [OpenInv] Loading server plugin OpenInv v4.4.3
[15:09:41] [Server thread/INFO]: [ForcePack] Loading server plugin ForcePack v1.3.6
[15:09:41] [Server thread/INFO]: [AquaticCrates] Loading server plugin AquaticCrates v2.7.4
[15:09:41] [Server thread/INFO]: Loading the plugin...
[15:09:42] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.21.0-dev+117-c80bef9
[15:09:42] [Server thread/INFO]: [Flora] Loading server plugin Flora v1.0.0
[15:09:42] [Server thread/INFO]: [Minepacks] Loading server plugin Minepacks v2.4.31.4-T20240629215752
[15:09:42] [Server thread/INFO]: [ProBending] Loading server plugin ProBending v1.2.0
[15:09:42] [Server thread/INFO]: [Zephyrus] Loading server plugin Zephyrus v1.0
[15:09:42] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.3
[15:09:42] [Server thread/INFO]: [Hyperion] Loading server plugin Hyperion v1.6.3
[15:09:42] [Server thread/INFO]: [MythicCrucible] Loading server plugin MythicCrucible v2.1.0-SNAPSHOT
[15:09:42] [Server thread/INFO]: [ItemFrameToggle] Loading server plugin ItemFrameToggle v1.5.4
[15:09:42] [Server thread/INFO]: [LumosComet] Loading server plugin LumosComet v1.0
[15:09:42] [Server thread/INFO]: [HeadDB] Loading server plugin HeadDB v5.0.0-rc.10
[15:09:42] [Server thread/INFO]: [BendingItems] Loading server plugin BendingItems v1.9.1
[15:09:42] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[15:09:42] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.141
[15:09:42] [Server thread/INFO]:         __    
[15:09:42] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.141
[15:09:42] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[15:09:42] [Server thread/INFO]: 
[15:09:42] [Server thread/INFO]: [LuckPerms] Loading configuration...
[15:09:43] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[15:09:44] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[15:09:44] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[15:09:44] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 2748ms)
[15:09:44] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[15:09:44] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[15:09:45] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[15:09:45] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[15:09:45] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[15:09:45] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.11.3-SNAPSHOT-937;91bdd15
[15:09:45] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
[15:09:45] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!                                                                !!!
[15:09:45] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    Using history database whilst deleting disk history!        !!!
[15:09:45] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    You will not be able to rollback edits after a user logs    !!!
[15:09:45] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    out, recommended to disable delete-disk-on-logout if you    !!!
[15:09:45] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    you want to have full history rollback functionality.       !!!
[15:09:45] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    Disable use-database if you do not need to have rollback    !!!
[15:09:45] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    functionality and wish to disable this warning.             !!!
[15:09:45] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!                                                                !!!
[15:09:45] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
[15:09:45] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[15:09:45] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[15:09:45] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[15:09:45] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[15:09:45] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_R1.PaperweightFaweAdapter as the Bukkit adapter
[15:09:46] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.3.0-SNAPSHOT-732
[15:09:46] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR4.0.8
[15:09:47] [Server thread/INFO]: [ModelEngine] [S] Loading cache version: R4.0.8
[15:09:47] [Server thread/INFO]: [BKCommonLib] Enabling BKCommonLib v1.20.4-v3
[15:09:47] [Server thread/ERROR]: [BKCommonLib] This version of BKCommonLib is not compatible with: Paper (1.21.1-123-aebbdc9) : (Unknown) (Minecraft 1.21.1)
[15:09:47] [Server thread/ERROR]: [BKCommonLib] It could be that BKCommonLib has to be updated, as the current version is built for MC 1.8 to 1.19.4, 1.20, 1.20.1, 1.20.2, 1.20.3 and 1.20.4
[15:09:47] [Server thread/ERROR]: [BKCommonLib] Please look for a new updated BKCommonLib version that is compatible:
[15:09:47] [Server thread/ERROR]: [BKCommonLib] https://www.spigotmc.org/resources/bkcommonlib.39590/
[15:09:47] [Server thread/ERROR]: [BKCommonLib] Unstable development builds for MC 1.21.1 may be found on our continuous integration server:
[15:09:47] [Server thread/ERROR]: [BKCommonLib] https://ci.mg-dev.eu/job/BKCommonLib/
[15:09:47] [Server thread/ERROR]: [BKCommonLib] BKCommonLib and all depending plugins will now disable...
[15:09:47] [Server thread/INFO]: [BKCommonLib] null
[15:09:47] [Server thread/INFO]: Preparing level "Isothermal"
[15:09:47] [Server thread/INFO]: -------- World Settings For [Isothermal] --------
[15:09:47] [Server thread/INFO]: View Distance: 8
[15:09:47] [Server thread/INFO]: Simulation Distance: 10
[15:09:47] [Server thread/INFO]: Item Merge Radius: 2.5
[15:09:47] [Server thread/INFO]: Experience Merge Radius: 3.0
[15:09:47] [Server thread/INFO]: Mob Spawn Range: 6
[15:09:47] [Server thread/INFO]: Item Despawn Rate: 6000
[15:09:47] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[15:09:47] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[15:09:47] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[15:09:47] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[15:09:47] [Server thread/INFO]: Cactus Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Cane Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Melon Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Sapling Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Carrot Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Potato Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Wheat Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Vine Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Kelp Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[15:09:47] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[15:09:47] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[15:09:47] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[15:09:47] [Server thread/INFO]: Max TNT Explosions: 100
[15:09:47] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[15:09:47] [Server thread/INFO]: -------- World Settings For [Isothermal_nether] --------
[15:09:47] [Server thread/INFO]: View Distance: 8
[15:09:47] [Server thread/INFO]: Simulation Distance: 10
[15:09:47] [Server thread/INFO]: Item Merge Radius: 2.5
[15:09:47] [Server thread/INFO]: Experience Merge Radius: 3.0
[15:09:47] [Server thread/INFO]: Mob Spawn Range: 6
[15:09:47] [Server thread/INFO]: Item Despawn Rate: 6000
[15:09:47] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[15:09:47] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[15:09:47] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[15:09:47] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[15:09:47] [Server thread/INFO]: Cactus Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Cane Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Melon Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Sapling Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Carrot Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Potato Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Wheat Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Vine Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Kelp Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[15:09:47] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[15:09:47] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[15:09:47] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[15:09:47] [Server thread/INFO]: Max TNT Explosions: 100
[15:09:47] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[15:09:47] [Server thread/INFO]: -------- World Settings For [Isothermal_the_end] --------
[15:09:47] [Server thread/INFO]: View Distance: 8
[15:09:47] [Server thread/INFO]: Simulation Distance: 10
[15:09:47] [Server thread/INFO]: Item Merge Radius: 2.5
[15:09:47] [Server thread/INFO]: Experience Merge Radius: 3.0
[15:09:47] [Server thread/INFO]: Mob Spawn Range: 6
[15:09:47] [Server thread/INFO]: Item Despawn Rate: 6000
[15:09:47] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[15:09:47] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[15:09:47] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[15:09:47] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[15:09:47] [Server thread/INFO]: Cactus Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Cane Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Melon Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Sapling Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Carrot Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Potato Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Wheat Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Vine Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Kelp Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[15:09:47] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[15:09:47] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[15:09:47] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[15:09:47] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[15:09:47] [Server thread/INFO]: Max TNT Explosions: 100
[15:09:47] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[15:09:47] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[15:09:48] [Server thread/INFO]: Time elapsed: 473 ms
[15:09:48] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[15:09:48] [Server thread/INFO]: Time elapsed: 488 ms
[15:09:48] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[15:09:48] [Server thread/INFO]: Time elapsed: 110 ms
[15:09:48] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.10+d9424b1
[15:09:49] [Server thread/INFO]: [WorldGuard] (Isothermal) TNT ignition is PERMITTED.
[15:09:49] [Server thread/INFO]: [WorldGuard] (Isothermal) Lighters are PERMITTED.
[15:09:49] [Server thread/INFO]: [WorldGuard] (Isothermal) Lava fire is PERMITTED.
[15:09:49] [Server thread/INFO]: [WorldGuard] (Isothermal) Fire spread is UNRESTRICTED.
[15:09:49] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Isothermal'
[15:09:49] [Server thread/INFO]: [WorldGuard] (Isothermal_nether) TNT ignition is PERMITTED.
[15:09:49] [Server thread/INFO]: [WorldGuard] (Isothermal_nether) Lighters are PERMITTED.
[15:09:49] [Server thread/INFO]: [WorldGuard] (Isothermal_nether) Lava fire is PERMITTED.
[15:09:49] [Server thread/INFO]: [WorldGuard] (Isothermal_nether) Fire spread is UNRESTRICTED.
[15:09:49] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Isothermal_nether'
[15:09:49] [Server thread/INFO]: [WorldGuard] (Isothermal_the_end) TNT ignition is PERMITTED.
[15:09:49] [Server thread/INFO]: [WorldGuard] (Isothermal_the_end) Lighters are PERMITTED.
[15:09:49] [Server thread/INFO]: [WorldGuard] (Isothermal_the_end) Lava fire is PERMITTED.
[15:09:49] [Server thread/INFO]: [WorldGuard] (Isothermal_the_end) Fire spread is UNRESTRICTED.
[15:09:49] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Isothermal_the_end'
[15:09:49] [Server thread/INFO]: [WorldGuard] Loading region data...
[15:09:49] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.12
[15:09:49] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.12" 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--].
[15:09:49] [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.
[15:09:49] [Server thread/INFO]: -------- World Settings For [Arenaworld] --------
[15:09:49] [Server thread/INFO]: View Distance: 8
[15:09:49] [Server thread/INFO]: Simulation Distance: 10
[15:09:49] [Server thread/INFO]: Item Merge Radius: 2.5
[15:09:49] [Server thread/INFO]: Experience Merge Radius: 3.0
[15:09:49] [Server thread/INFO]: Mob Spawn Range: 6
[15:09:49] [Server thread/INFO]: Item Despawn Rate: 6000
[15:09:49] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[15:09:49] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[15:09:49] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[15:09:49] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[15:09:49] [Server thread/INFO]: Cactus Growth Modifier: 100%
[15:09:49] [Server thread/INFO]: Cane Growth Modifier: 100%
[15:09:49] [Server thread/INFO]: Melon Growth Modifier: 100%
[15:09:49] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[15:09:49] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[15:09:49] [Server thread/INFO]: Sapling Growth Modifier: 100%
[15:09:49] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[15:09:49] [Server thread/INFO]: Carrot Growth Modifier: 100%
[15:09:49] [Server thread/INFO]: Potato Growth Modifier: 100%
[15:09:49] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[15:09:49] [Server thread/INFO]: Wheat Growth Modifier: 100%
[15:09:49] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[15:09:49] [Server thread/INFO]: Vine Growth Modifier: 100%
[15:09:49] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[15:09:49] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[15:09:49] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[15:09:49] [Server thread/INFO]: Kelp Growth Modifier: 100%
[15:09:49] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[15:09:49] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[15:09:49] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[15:09:49] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[15:09:49] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[15:09:49] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[15:09:49] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[15:09:49] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[15:09:49] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[15:09:49] [Server thread/INFO]: Max TNT Explosions: 100
[15:09:49] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[15:09:49] [Server thread/INFO]: Preparing start region for dimension minecraft:arenaworld
[15:09:50] [Server thread/INFO]: Time elapsed: 128 ms
[15:09:50] [Server thread/INFO]: [WorldGuard] (Arenaworld) TNT ignition is PERMITTED.
[15:09:50] [Server thread/INFO]: [WorldGuard] (Arenaworld) Lighters are PERMITTED.
[15:09:50] [Server thread/INFO]: [WorldGuard] (Arenaworld) Lava fire is PERMITTED.
[15:09:50] [Server thread/INFO]: [WorldGuard] (Arenaworld) Fire spread is UNRESTRICTED.
[15:09:50] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Arenaworld'
[15:09:50] [Server thread/INFO]: -------- World Settings For [Serverspawn] --------
[15:09:50] [Server thread/INFO]: View Distance: 8
[15:09:50] [Server thread/INFO]: Simulation Distance: 10
[15:09:50] [Server thread/INFO]: Item Merge Radius: 2.5
[15:09:50] [Server thread/INFO]: Experience Merge Radius: 3.0
[15:09:50] [Server thread/INFO]: Mob Spawn Range: 6
[15:09:50] [Server thread/INFO]: Item Despawn Rate: 6000
[15:09:50] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[15:09:50] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[15:09:50] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[15:09:50] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[15:09:50] [Server thread/INFO]: Cactus Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Cane Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Melon Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Sapling Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Carrot Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Potato Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Wheat Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Vine Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Kelp Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[15:09:50] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[15:09:50] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[15:09:50] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[15:09:50] [Server thread/INFO]: Max TNT Explosions: 100
[15:09:50] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[15:09:50] [Server thread/INFO]: Preparing start region for dimension minecraft:serverspawn
[15:09:50] [Server thread/INFO]: Time elapsed: 58 ms
[15:09:50] [Server thread/INFO]: [WorldGuard] (Serverspawn) TNT ignition is PERMITTED.
[15:09:50] [Server thread/INFO]: [WorldGuard] (Serverspawn) Lighters are PERMITTED.
[15:09:50] [Server thread/INFO]: [WorldGuard] (Serverspawn) Lava fire is PERMITTED.
[15:09:50] [Server thread/INFO]: [WorldGuard] (Serverspawn) Fire spread is UNRESTRICTED.
[15:09:50] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Serverspawn'
[15:09:50] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Avatarr
[15:09:50] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[15:09:50] [Server thread/INFO]: -------- World Settings For [Dimension] --------
[15:09:50] [Server thread/INFO]: View Distance: 8
[15:09:50] [Server thread/INFO]: Simulation Distance: 10
[15:09:50] [Server thread/INFO]: Item Merge Radius: 2.5
[15:09:50] [Server thread/INFO]: Experience Merge Radius: 3.0
[15:09:50] [Server thread/INFO]: Mob Spawn Range: 6
[15:09:50] [Server thread/INFO]: Item Despawn Rate: 6000
[15:09:50] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[15:09:50] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[15:09:50] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[15:09:50] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[15:09:50] [Server thread/INFO]: Cactus Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Cane Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Melon Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Sapling Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Carrot Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Potato Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Wheat Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Vine Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Kelp Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[15:09:50] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[15:09:50] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[15:09:50] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[15:09:50] [Server thread/INFO]: Max TNT Explosions: 100
[15:09:50] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[15:09:50] [Server thread/INFO]: Preparing start region for dimension minecraft:dimension
[15:09:50] [Server thread/INFO]: Time elapsed: 165 ms
[15:09:50] [Server thread/INFO]: [WorldGuard] (Dimension) TNT ignition is PERMITTED.
[15:09:50] [Server thread/INFO]: [WorldGuard] (Dimension) Lighters are PERMITTED.
[15:09:50] [Server thread/INFO]: [WorldGuard] (Dimension) Lava fire is PERMITTED.
[15:09:50] [Server thread/INFO]: [WorldGuard] (Dimension) Fire spread is UNRESTRICTED.
[15:09:50] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Dimension'
[15:09:50] [Server thread/INFO]: -------- World Settings For [Buildworld] --------
[15:09:50] [Server thread/INFO]: View Distance: 8
[15:09:50] [Server thread/INFO]: Simulation Distance: 10
[15:09:50] [Server thread/INFO]: Item Merge Radius: 2.5
[15:09:50] [Server thread/INFO]: Experience Merge Radius: 3.0
[15:09:50] [Server thread/INFO]: Mob Spawn Range: 6
[15:09:50] [Server thread/INFO]: Item Despawn Rate: 6000
[15:09:50] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[15:09:50] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[15:09:50] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[15:09:50] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[15:09:50] [Server thread/INFO]: Cactus Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Cane Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Melon Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Sapling Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Carrot Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Potato Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Wheat Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Vine Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Kelp Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[15:09:50] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[15:09:50] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[15:09:50] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[15:09:50] [Server thread/INFO]: Max TNT Explosions: 100
[15:09:50] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[15:09:50] [Server thread/INFO]: Preparing start region for dimension minecraft:buildworld
[15:09:50] [Server thread/INFO]: Time elapsed: 266 ms
[15:09:50] [Server thread/INFO]: [WorldGuard] (Buildworld) TNT ignition is PERMITTED.
[15:09:50] [Server thread/INFO]: [WorldGuard] (Buildworld) Lighters are PERMITTED.
[15:09:50] [Server thread/INFO]: [WorldGuard] (Buildworld) Lava fire is PERMITTED.
[15:09:50] [Server thread/INFO]: [WorldGuard] (Buildworld) Fire spread is UNRESTRICTED.
[15:09:50] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Buildworld'
[15:09:50] [Server thread/INFO]: -------- World Settings For [Survival] --------
[15:09:50] [Server thread/INFO]: View Distance: 8
[15:09:50] [Server thread/INFO]: Simulation Distance: 10
[15:09:50] [Server thread/INFO]: Item Merge Radius: 2.5
[15:09:50] [Server thread/INFO]: Experience Merge Radius: 3.0
[15:09:50] [Server thread/INFO]: Mob Spawn Range: 6
[15:09:50] [Server thread/INFO]: Item Despawn Rate: 6000
[15:09:50] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[15:09:50] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[15:09:50] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[15:09:50] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[15:09:50] [Server thread/INFO]: Cactus Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Cane Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Melon Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Sapling Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Carrot Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Potato Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Wheat Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Vine Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Kelp Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[15:09:50] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[15:09:50] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[15:09:50] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[15:09:50] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[15:09:50] [Server thread/INFO]: Max TNT Explosions: 100
[15:09:50] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[15:09:50] [Server thread/INFO]: Preparing start region for dimension minecraft:survival
[15:09:51] [Server thread/INFO]: Time elapsed: 307 ms
[15:09:51] [Server thread/INFO]: [WorldGuard] (Survival) TNT ignition is PERMITTED.
[15:09:51] [Server thread/INFO]: [WorldGuard] (Survival) Lighters are PERMITTED.
[15:09:51] [Server thread/INFO]: [WorldGuard] (Survival) Lava fire is PERMITTED.
[15:09:51] [Server thread/INFO]: [WorldGuard] (Survival) Fire spread is UNRESTRICTED.
[15:09:51] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Survival'
[15:09:51] [Server thread/INFO]: -------- World Settings For [Thespiritworld] --------
[15:09:51] [Server thread/INFO]: View Distance: 8
[15:09:51] [Server thread/INFO]: Simulation Distance: 10
[15:09:51] [Server thread/INFO]: Item Merge Radius: 2.5
[15:09:51] [Server thread/INFO]: Experience Merge Radius: 3.0
[15:09:51] [Server thread/INFO]: Mob Spawn Range: 6
[15:09:51] [Server thread/INFO]: Item Despawn Rate: 6000
[15:09:51] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[15:09:51] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[15:09:51] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[15:09:51] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[15:09:51] [Server thread/INFO]: Cactus Growth Modifier: 100%
[15:09:51] [Server thread/INFO]: Cane Growth Modifier: 100%
[15:09:51] [Server thread/INFO]: Melon Growth Modifier: 100%
[15:09:51] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[15:09:51] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[15:09:51] [Server thread/INFO]: Sapling Growth Modifier: 100%
[15:09:51] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[15:09:51] [Server thread/INFO]: Carrot Growth Modifier: 100%
[15:09:51] [Server thread/INFO]: Potato Growth Modifier: 100%
[15:09:51] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[15:09:51] [Server thread/INFO]: Wheat Growth Modifier: 100%
[15:09:51] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[15:09:51] [Server thread/INFO]: Vine Growth Modifier: 100%
[15:09:51] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[15:09:51] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[15:09:51] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[15:09:51] [Server thread/INFO]: Kelp Growth Modifier: 100%
[15:09:51] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[15:09:51] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[15:09:51] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[15:09:51] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[15:09:51] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[15:09:51] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[15:09:51] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[15:09:51] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[15:09:51] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[15:09:51] [Server thread/INFO]: Max TNT Explosions: 100
[15:09:51] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[15:09:51] [Server thread/INFO]: Preparing start region for dimension minecraft:thespiritworld
[15:09:53] [Server thread/INFO]: Time elapsed: 2432 ms
[15:09:53] [Server thread/INFO]: [WorldGuard] (Thespiritworld) TNT ignition is PERMITTED.
[15:09:53] [Server thread/INFO]: [WorldGuard] (Thespiritworld) Lighters are PERMITTED.
[15:09:53] [Server thread/INFO]: [WorldGuard] (Thespiritworld) Lava fire is PERMITTED.
[15:09:53] [Server thread/INFO]: [WorldGuard] (Thespiritworld) Fire spread is UNRESTRICTED.
[15:09:53] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Thespiritworld'
[15:09:53] [Server thread/INFO]: [Multiverse-Core] 9 - World(s) loaded.
[15:09:53] [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.
[15:09:53] [Server thread/INFO]: [Multiverse-Core] Version 4.3.12 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[15:09:53] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[15:09:54] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[15:09:54] [Server thread/INFO]: [packetevents] Enabling packetevents v2.5.0
[15:09:54] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[15:09:55] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.18.2
[15:09:55] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:334) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:229) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:185) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:201) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:327) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:193) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:325) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:331) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:281) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:158) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:324) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:244) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:230) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:307) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:234) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:335) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:235) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:189) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:264) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:330) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:314) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:211) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:237) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:243) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:242) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:309) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:260) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:161) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:212) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:162) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:231) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:328) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:159) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:226) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:304) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:241) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:188) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:233) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:247) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:254) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:215) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:206) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:332) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:09:55] [Server thread/INFO]: [GriefPrevention] 8 total claims loaded.
[15:09:56] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
[15:09:56] [Server thread/INFO]: [GriefPrevention] Successfully hooked into WorldGuard.
[15:09:56] [Server thread/INFO]: [GriefPrevention] Finished loading data (File Mode).
[15:09:56] [packetevents-update-check-thread/INFO]: [packetevents] You are running the latest release of PacketEvents. Your build: (2.5.0)
[15:09:56] [Server thread/INFO]: [GriefPrevention] Boot finished.
[15:09:56] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+117-c80bef9
[15:09:57] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[15:09:57] [Server thread/INFO]: [Essentials] No kits found to migrate.
[15:09:58] [Server thread/INFO]: [Essentials] Loaded 36926 items from items.json.
[15:09:58] [Server thread/INFO]: [Essentials] Using locale en_US
[15:09:58] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[15:09:59] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[15:09:59] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[15:09:59] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[15:09:59] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v10.0.44-SNAPSHOT
[15:09:59] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises.jar
[15:09:59] [Server thread/INFO]: [LibsDisguises] Discovered nms version: (Package: {Not package relocated}) (LD: v1_21_R1) (MC: 1.21.1)
[15:09:59] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1461
[15:09:59] [Server thread/INFO]: [LibsDisguises] Build Date: 17/10/2024 08:30
[15:09:59] [Server thread/INFO]: [LibsDisguises] If you own the plugin, place the premium jar downloaded from https://www.spigotmc.org/resources/libs-disguises.32453/ in plugins/LibsDisguises/
[15:09:59] [Server thread/INFO]: [LibsDisguises] You are running the free version, commands limited to non-players and operators. (Console, Command Blocks, Admins)
[15:10:03] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[15:10:03] [Server thread/INFO]: [LibsDisguises] Loaded 1 custom disguise
[15:10:03] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[15:10:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: libsdisguises [1.0.0]
[15:10:04] [Server thread/INFO]: [LibsDisguises] PlaceholderAPI support enabled
[15:10:04] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: LibsDisguises
[15:10:04] [Server thread/INFO]: [ProjectKorra] Enabling ProjectKorra v1.12.0-BETA-13
[15:10:05] [Server thread/WARN]: [ProjectKorra] The JAR file Electrocute (4).jar is a plugin and not an ability! Put it in the plugins folder!
[15:10:05] [Server thread/WARN]: [ProjectKorra] The JAR file AirTendril-Sammycocobear.jar is a plugin and not an ability! Put it in the plugins folder!
[15:10:05] [Server thread/WARN]: [ProjectKorra] The JAR file DirtBlast (2).jar is a plugin and not an ability! Put it in the plugins folder!
[15:10:05] [Server thread/WARN]: [ProjectKorra] The JAR file FireSwirl (2).jar is a plugin and not an ability! Put it in the plugins folder!
[15:10:05] [Server thread/WARN]: [ProjectKorra] The JAR file Deflect - Sammycocobear.jar is a plugin and not an ability! Put it in the plugins folder!
[15:10:05] [Server thread/WARN]: [ProjectKorra] The JAR file EarthSpike (2).jar is a plugin and not an ability! Put it in the plugins folder!
[15:10:05] [Server thread/WARN]: [ProjectKorra] The JAR file AirDash-1.0.0.jar is a plugin and not an ability! Put it in the plugins folder!
[15:10:05] [Server thread/WARN]: [ProjectKorra] The JAR file BloodShards-1.0-SNAPSHOT.jar is a plugin and not an ability! Put it in the plugins folder!
[15:10:05] [Server thread/WARN]: [ProjectKorra] The JAR file Dash.jar is a plugin and not an ability! Put it in the plugins folder!
[15:10:05] [Server thread/WARN]: [ProjectKorra] The JAR file Landslide.jar is a plugin and not an ability! Put it in the plugins folder!
[15:10:06] [Server thread/WARN]: [ProjectKorra] The JAR file SCBPKHackathon.jar is a plugin and not an ability! Put it in the plugins folder!
[15:10:06] [Server thread/INFO]: [ProjectKorra] ElementTrap 1.0 Build 12 by StrangeOne101 and Prride loaded! 
[15:10:06] [Server thread/INFO]: [ProjectKorra] AirJump by Loony 1.1.1 has been loaded!
[15:10:06] [Server thread/INFO]: [ProjectKorra] Succesfully enabled Sprinkle by Hiro3
[15:10:06] [Server thread/INFO]: [ProjectKorra] Succesfully enabled IceVolley by Hiro3
[15:10:06] [Server thread/INFO]: [ProjectKorra] Geyser 1.0 by DreamerBoy loaded! 
[15:10:06] [Server thread/INFO]: [ProjectKorra] DayCycle v1.0.1 by StrangeOne101 loaded!
[15:10:06] [Server thread/INFO]: [ProjectKorra] Transcend 1.0.0 by DreamerBoy/Dramaura enabled! 
[15:10:06] [Server thread/INFO]: Pressure v1.5 Developed by Aceliip has been enabled!
[15:10:06] [Server thread/INFO]: [ProjectKorra] Riftwalker 1.0.0 by DreamerBoy/Dramaura enabled! 
[15:10:06] [Server thread/INFO]: [ProjectKorra] Succesfully enabled Smokebomb by Hiro3
[15:10:06] [Server thread/INFO]: [ProjectKorra] Succesfully enabled Mist by Hiro3
[15:10:06] [Server thread/INFO]: [ProjectKorra] FireBomb 1.0.4 by Greenwolf5 has been sucessfuly enabled. Blame Kiam and Kirby for this move.
[15:10:06] [Server thread/INFO]: [ProjectKorra] AirBubble 1.0 by StrangeOne101 enabled!
[15:10:06] [Server thread/INFO]: [ProjectKorra] BloodRip v1.2 by StrangeOne101 loaded!
[15:10:06] [Server thread/INFO]: [ProjectKorra] You're a good person for installing this ability. Take that how you will. :)
[15:10:06] [Server thread/INFO]: [ProjectKorra] PlantBlast v2.0 by NickC1211 loaded!
[15:10:06] [Server thread/INFO]: [ProjectKorra] Successfully loaded CosmicBlast by xNuminousx
[15:10:06] [Server thread/INFO]: [ProjectKorra] Successfully enabled InnerFlame 1.0.2 by Manu
[15:10:06] [Server thread/INFO]: [ProjectKorra] MeteorDash by Dreig_Michihi 1.5.4 has been loaded!
[15:10:06] [Server thread/INFO]: [ProjectKorra] Spinjitsu 1.0.0 by Dramaura / DreamerBoy enabled! 
[15:10:06] [Server thread/INFO]: [ProjectKorra] SpinjitsuBurst 1.0.0 by Dramaura / DreamerBoy enabled! 
[15:10:06] [Server thread/INFO]: [ProjectKorra] Succesfully enabled Squall by Hiro3
[15:10:06] [Server thread/INFO]: [ProjectKorra] AirLift 1.2 by xLumos loaded! 
[15:10:06] [Server thread/INFO]: [ProjectKorra] BloodLet 1.2 by xLumos loaded! 
[15:10:06] [Server thread/INFO]: [ProjectKorra] ChestPalm 1.1 by xLumos loaded! 
[15:10:06] [Server thread/INFO]: [ProjectKorra] CrystalPrison 1.4 by xLumos loaded baked potatoes! 
[15:10:06] [Server thread/INFO]: [ProjectKorra] DragonFire 1.1 by xLumos loaded! 
[15:10:06] [Server thread/INFO]: [ProjectKorra] DustDevils 1.1 by xLumos loaded! 
[15:10:06] [Server thread/INFO]: [ProjectKorra] FireVortex 1.2 by xLumos loaded! 
[15:10:06] [Server thread/INFO]: [ProjectKorra] Flatulate 1.0 by xLumos loaded! 
[15:10:06] [Server thread/INFO]: [ProjectKorra] FrostCuffs 1.0 by xLumos loaded! 
[15:10:06] [Server thread/INFO]: [ProjectKorra] FrostTrap 1.2 by xLumos loaded! 
[15:10:06] [Server thread/INFO]: [ProjectKorra] HydroTherapy 1.1 by xLumos loaded! 
[15:10:06] [Server thread/INFO]: [ProjectKorra] Invoke 1.1 by xLumos loaded baked potatoes! 
[15:10:07] [Server thread/WARN]: java.io.IOException: Server returned HTTP response code: 401 for URL: https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/b2962ffe-ef86-4b12-8485-b5e02603bef0/deg4j7t-6747b469-ef80-415f-92e8-5ffb0db27578.png?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOiIsImlzcyI6InVybjphcHA6Iiwib2JqIjpbW3sicGF0aCI6IlwvZlwvYjI5NjJmZmUtZWY4Ni00YjEyLTg0ODUtYjVlMDI2MDNiZWYwXC9kZWc0ajd0LTY3NDdiNDY5LWVmODAtNDE1Zi05MmU4LTVmZmIwZGIyNzU3OC5wbmcifV1dLCJhdWQiOlsidXJuOnNlcnZpY2U6ZmlsZS5kb3dubG9hZCJdfQ.SU2_7wAhjeJCvTYPvQjpvvW9azfbRej4EcwvAlxaFec
[15:10:07] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(Unknown Source)
[15:10:07] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
[15:10:07] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(Unknown Source)
[15:10:07] [Server thread/WARN]:     at java.base/java.net.URL.openStream(Unknown Source)
[15:10:07] [Server thread/WARN]:     at com.xLumos.Invoke.Invoke.getImage(Invoke.java:368)
[15:10:07] [Server thread/WARN]:     at com.xLumos.Invoke.Invoke.loadImages(Invoke.java:356)
[15:10:07] [Server thread/WARN]:     at com.xLumos.Invoke.Invoke.load(Invoke.java:349)
[15:10:07] [Server thread/WARN]:     at ProjectKorra-1.12.0-BETA-13 (1).jar//com.projectkorra.projectkorra.ability.CoreAbility.registerAddonAbilities(CoreAbility.java:634)
[15:10:07] [Server thread/WARN]:     at ProjectKorra-1.12.0-BETA-13 (1).jar//com.projectkorra.projectkorra.ability.CoreAbility.registerAbilities(CoreAbility.java:528)
[15:10:07] [Server thread/WARN]:     at ProjectKorra-1.12.0-BETA-13 (1).jar//com.projectkorra.projectkorra.ProjectKorra.onEnable(ProjectKorra.java:65)
[15:10:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[15:10:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[15:10:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[15:10:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[15:10:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640)
[15:10:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589)
[15:10:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[15:10:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[15:10:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[15:10:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[15:10:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[15:10:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Unknown Source)
[15:10:07] [Server thread/WARN]: java.io.IOException: Server returned HTTP response code: 401 for URL: https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/b2962ffe-ef86-4b12-8485-b5e02603bef0/deg4j9o-49670d1c-4f42-4455-8e0d-d52bcd4d3669.png?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOiIsImlzcyI6InVybjphcHA6Iiwib2JqIjpbW3sicGF0aCI6IlwvZlwvYjI5NjJmZmUtZWY4Ni00YjEyLTg0ODUtYjVlMDI2MDNiZWYwXC9kZWc0ajlvLTQ5NjcwZDFjLTRmNDItNDQ1NS04ZTBkLWQ1MmJjZDRkMzY2OS5wbmcifV1dLCJhdWQiOlsidXJuOnNlcnZpY2U6ZmlsZS5kb3dubG9hZCJdfQ.GrUqR1lTR6UF5mDm1uO99fuXPQsG_q4qwm9hL7R0zp4
[15:10:07] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(Unknown Source)
[15:10:07] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
[15:10:07] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(Unknown Source)
[15:10:07] [Server thread/WARN]:     at java.base/java.net.URL.openStream(Unknown Source)
[15:10:07] [Server thread/WARN]:     at com.xLumos.Invoke.Invoke.getImage(Invoke.java:368)
[15:10:07] [Server thread/WARN]:     at com.xLumos.Invoke.Invoke.loadImages(Invoke.java:357)
[15:10:07] [Server thread/WARN]:     at com.xLumos.Invoke.Invoke.load(Invoke.java:349)
[15:10:07] [Server thread/WARN]:     at ProjectKorra-1.12.0-BETA-13 (1).jar//com.projectkorra.projectkorra.ability.CoreAbility.registerAddonAbilities(CoreAbility.java:634)
[15:10:07] [Server thread/WARN]:     at ProjectKorra-1.12.0-BETA-13 (1).jar//com.projectkorra.projectkorra.ability.CoreAbility.registerAbilities(CoreAbility.java:528)
[15:10:07] [Server thread/WARN]:     at ProjectKorra-1.12.0-BETA-13 (1).jar//com.projectkorra.projectkorra.ProjectKorra.onEnable(ProjectKorra.java:65)
[15:10:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[15:10:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[15:10:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[15:10:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[15:10:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640)
[15:10:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589)
[15:10:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[15:10:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[15:10:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[15:10:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[15:10:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[15:10:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Unknown Source)
[15:10:07] [Server thread/WARN]: java.io.IOException: Server returned HTTP response code: 401 for URL: https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/b2962ffe-ef86-4b12-8485-b5e02603bef0/deg4jlk-809f0e65-7709-4783-aa0a-cf6ec3c03d74.png?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOiIsImlzcyI6InVybjphcHA6Iiwib2JqIjpbW3sicGF0aCI6IlwvZlwvYjI5NjJmZmUtZWY4Ni00YjEyLTg0ODUtYjVlMDI2MDNiZWYwXC9kZWc0amxrLTgwOWYwZTY1LTc3MDktNDc4My1hYTBhLWNmNmVjM2MwM2Q3NC5wbmcifV1dLCJhdWQiOlsidXJuOnNlcnZpY2U6ZmlsZS5kb3dubG9hZCJdfQ.cRawnPt4UfWl9dq4mhWOX0_EXjQYZvXbhKtCFq8_z9I
[15:10:07] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(Unknown Source)
[15:10:07] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
[15:10:07] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(Unknown Source)
[15:10:07] [Server thread/WARN]:     at java.base/java.net.URL.openStream(Unknown Source)
[15:10:07] [Server thread/WARN]:     at com.xLumos.Invoke.Invoke.getImage(Invoke.java:368)
[15:10:07] [Server thread/WARN]:     at com.xLumos.Invoke.Invoke.loadImages(Invoke.java:358)
[15:10:07] [Server thread/WARN]:     at com.xLumos.Invoke.Invoke.load(Invoke.java:349)
[15:10:07] [Server thread/WARN]:     at ProjectKorra-1.12.0-BETA-13 (1).jar//com.projectkorra.projectkorra.ability.CoreAbility.registerAddonAbilities(CoreAbility.java:634)
[15:10:07] [Server thread/WARN]:     at ProjectKorra-1.12.0-BETA-13 (1).jar//com.projectkorra.projectkorra.ability.CoreAbility.registerAbilities(CoreAbility.java:528)
[15:10:07] [Server thread/WARN]:     at ProjectKorra-1.12.0-BETA-13 (1).jar//com.projectkorra.projectkorra.ProjectKorra.onEnable(ProjectKorra.java:65)
[15:10:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[15:10:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[15:10:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[15:10:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[15:10:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640)
[15:10:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589)
[15:10:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[15:10:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[15:10:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[15:10:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[15:10:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[15:10:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Unknown Source)
[15:10:07] [Server thread/WARN]: java.io.IOException: Server returned HTTP response code: 401 for URL: https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/b2962ffe-ef86-4b12-8485-b5e02603bef0/deg4jbv-f9025f09-aceb-4884-9e6c-84fc83a0b5fb.png?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOiIsImlzcyI6InVybjphcHA6Iiwib2JqIjpbW3sicGF0aCI6IlwvZlwvYjI5NjJmZmUtZWY4Ni00YjEyLTg0ODUtYjVlMDI2MDNiZWYwXC9kZWc0amJ2LWY5MDI1ZjA5LWFjZWItNDg4NC05ZTZjLTg0ZmM4M2EwYjVmYi5wbmcifV1dLCJhdWQiOlsidXJuOnNlcnZpY2U6ZmlsZS5kb3dubG9hZCJdfQ.NslTgchCnV9qN8WzjW5P8L7meE7gOanLgWpCWON4EOs
[15:10:07] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(Unknown Source)
[15:10:07] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
[15:10:07] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(Unknown Source)
[15:10:07] [Server thread/WARN]:     at java.base/java.net.URL.openStream(Unknown Source)
[15:10:07] [Server thread/WARN]:     at com.xLumos.Invoke.Invoke.getImage(Invoke.java:368)
[15:10:07] [Server thread/WARN]:     at com.xLumos.Invoke.Invoke.loadImages(Invoke.java:359)
[15:10:07] [Server thread/WARN]:     at com.xLumos.Invoke.Invoke.load(Invoke.java:349)
[15:10:07] [Server thread/WARN]:     at ProjectKorra-1.12.0-BETA-13 (1).jar//com.projectkorra.projectkorra.ability.CoreAbility.registerAddonAbilities(CoreAbility.java:634)
[15:10:07] [Server thread/WARN]:     at ProjectKorra-1.12.0-BETA-13 (1).jar//com.projectkorra.projectkorra.ability.CoreAbility.registerAbilities(CoreAbility.java:528)
[15:10:07] [Server thread/WARN]:     at ProjectKorra-1.12.0-BETA-13 (1).jar//com.projectkorra.projectkorra.ProjectKorra.onEnable(ProjectKorra.java:65)
[15:10:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[15:10:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[15:10:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[15:10:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[15:10:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640)
[15:10:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589)
[15:10:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[15:10:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[15:10:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[15:10:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[15:10:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[15:10:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Unknown Source)
[15:10:07] [Server thread/INFO]: [ProjectKorra] MetalShots 1.2 by xLumos loaded! 
[15:10:07] [Server thread/INFO]: MetalWhip has been successfully enabled!
[15:10:07] [Server thread/INFO]: [ProjectKorra] Mirage 1.2 by xLumos loaded! 
[15:10:07] [Server thread/INFO]: [ProjectKorra] PressurePoint 1.1 by xLumos loaded! 
[15:10:07] [Server thread/INFO]: [ProjectKorra] Redirect 1.1 by xLumos loaded! 
[15:10:07] [Server thread/INFO]: [ProjectKorra] SideStep 1.1 by xLumos loaded! 
[15:10:07] [Server thread/INFO]: [ProjectKorra] Succesfully enabled EarthPulse by Hiro3
[15:10:07] [Server thread/INFO]: [ProjectKorra] Succesfully enabled SeismicWave by Hiro3
[15:10:07] [Server thread/INFO]: [ProjectKorra] Succesfully enabled TerraSense by Hiro3
[15:10:07] [Server thread/INFO]: [ProjectKorra] CactusBlast v1.1 by StrangeOne101 loaded!
[15:10:07] [Server thread/INFO]: [ProjectKorra] SparklingFire by Dreig_Michihi 1.3.1 has been loaded!
[15:10:07] [Server thread/INFO]: [ProjectKorra] Strangle 1.2.0 by DreamerBoy (Dramaura) enabled! 
[15:10:07] [Server thread/INFO]: [ProjectKorra] IceCatapult 1.2 by DreamerBoy loaded! 
[15:10:07] [Server thread/INFO]: [ProjectKorra] Succesfully enabled IceDiscs by Lord_Cacetus_
[15:10:07] [Server thread/INFO]: [ProjectKorra] Succesfully enabled IceDiscs by Lord_Cacetus_
[15:10:07] [Server thread/INFO]: [ProjectKorra] Loaded MetalTendrils
[15:10:07] [Server thread/INFO]: [ProjectKorra] WaterBlock 2.1 by DreamerBoy/Dramaura & Hiro3 enabled! 
[15:10:07] [Server thread/INFO]: CloudBurst v1.0Developed by EmeraldJelly has been enabled!
[15:10:07] [Server thread/INFO]: [ProjectKorra] Successfully enabled CombustionSmoke by Woefie
[15:10:07] [Server thread/INFO]: [ProjectKorra] Successfully enabled SandManipulation 1.0.0 by Seabarrel
[15:10:07] [Server thread/INFO]: [ProjectKorra] Successfully enabled BloodManipulation 1.0.0 by Seabarrel
[15:10:07] [Server thread/INFO]: [ProjectKorra] Establishing SQLite Connection...
[15:10:07] [Server thread/INFO]: [ProjectKorra] [SQLite] Connection established!
[15:10:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ProjectKorra [1.12.0-BETA-13]
[15:10:07] [Server thread/INFO]: [VentureChat] Enabling VentureChat v3.7.1
[15:10:07] [Server thread/INFO]: [VentureChat] - Initializing...
[15:10:07] [Server thread/INFO]: [VentureChat] - Config found! Loading file.
[15:10:07] [Server thread/INFO]: [VentureChat] - Checking for Vault...
[15:10:07] [Server thread/INFO]: [VentureChat] - Loading player data
[15:10:08] [Server thread/INFO]: [VentureChat] - Registering Listeners
[15:10:08] [Server thread/INFO]: [VentureChat] - Attaching to Executors
[15:10:08] [Server thread/INFO]: [VentureChat] - Establishing BungeeCord
[15:10:08] [Server thread/INFO]: [VentureChat] - Enabling PlaceholderAPI Hook
[15:10:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: venturechat [3.7.1]
[15:10:08] [Server thread/INFO]: [VentureChat] - Enabled Successfully
[15:10:08] [Server thread/INFO]: [SuperVanish] Enabling SuperVanish v6.2.18
[15:10:08] [Server thread/WARN]: [SuperVanish] Unknown exception occurred!
[15:10:08] [Server thread/WARN]: [SuperVanish] Please report this issue!
[15:10:08] [Server thread/WARN]: [SuperVanish] Message: 
[15:10:08] [Server thread/WARN]: [SuperVanish]   Index 3 out of bounds for length 3
[15:10:08] [Server thread/WARN]: [SuperVanish] General information: 
[15:10:08] [Server thread/WARN]: [SuperVanish]   ServerVersion: 1.21.1-123-aebbdc9 (MC: 1.21.1)
[15:10:08] [Server thread/WARN]: [SuperVanish]   PluginVersion: 6.2.18
[15:10:08] [Server thread/WARN]: [SuperVanish]   ServerPlugins: LuckPerms v5.4.141, Vault v1.7.3-b131, FastAsyncWorldEdit v2.11.3-SNAPSHOT-937;91bdd15, ProtocolLib v5.3.0-SNAPSHOT-732, WorldGuard v7.0.10+d9424b1, Multiverse-Core v4.3.12, PlaceholderAPI v2.11.6, packetevents v2.5.0, GriefPrevention v16.18.2, Essentials v2.21.0-dev+117-c80bef9, LibsDisguises v10.0.44-SNAPSHOT, ProjectKorra v1.12.0-BETA-13, VentureChat v3.7.1, DecentHolograms v2.8.11, CoreProtect v22.1, Citizens v2.0.35-SNAPSHOT (build 3594), MythicMobs v5.8.0-SNAPSHOT-7b1a5e36, ProjectAddons v1.2.4, DiscordSRV v1.28.0, SCore v5.24.7.18, Votifier v2.7.3, BigDoors vAlpha 0.1.8.54, CRUtils v1.1.6, ModelEngine vR4.0.8, GSit v1.10.0, RainbowsPro v1.3.0, CustomFishing v2.1.5, Hackathon v1.0, CratesPlus v4.5.3, AltDetector v2.02, PacketListenerApi v3.9.10-SNAPSHOT, InventoryRollbackPlus v1.6.18, PetTeleport v1.0, NPCLibPlugin v2.11.1-SNAPSHOT, PlatinumArenas v0.7.5, AutomaticBroadcast v1.4.2, ProjectCoco v${project.version}, MacbarmHackatonPack v1.0-SNAPSHOT, DiscordSRV-Staff-Chat v1.4.5, TimTheEnchanter v2.1, Vulcan v1.0, ExecutableItems v7.24.7.18, TorrentRedirection v1.1, Sentinel v2.8.1-SNAPSHOT (build 513), VotingPlugin v6.15.1, Coins v1.13.1, EssentialsSpawn v2.21.0-dev+117-c80bef9, Dragon v1.0, BigDoorsOpener v2.5.2, Daggers v1.0.0, Hat v1.5.0, Gapi v1.0.11, SimpleRename v13.9, CollisionUtility v1.0.1, NotQuests v5.18.2, Multiverse-Portals v4.2.3, JedCore v2.13.2-PK1.11.1, NoteBlockAPI v1.6.2, Typewriter v0.5.0-beta-85, Bendinggsmp v1.0, MCPets v4.1.2, LootChest v2.4.0, HackathonPack v1.0.1, ChatInjector v1.0.0, Spirits v1.2.3, SpellBooks v0.8.4, HorseTpWithMe v11.1.0, BKCommonLib v1.20.4-v3, TAB v4.1.9, OpenInv v4.4.3, ForcePack v1.3.6, AquaticCrates v2.7.4, EssentialsChat v2.21.0-dev+117-c80bef9, Flora v1.0.0, Minepacks v2.4.31.4-T20240629215752, ProBending v1.2.0, Zephyrus v1.0, WorldGuardExtraFlags v4.2.3, Hyperion v1.6.3, MythicCrucible v2.1.0-SNAPSHOT, ItemFrameToggle v1.5.4, LumosComet v1.0, HeadDB v5.0.0-rc.10, BendingItems v1.9.1,
[15:10:08] [Server thread/WARN]: [SuperVanish] Settings:
[15:10:08] [Server thread/WARN]: [SuperVanish]   MsgsVersion: 6.2.15
[15:10:08] [Server thread/WARN]: [SuperVanish]   Settings: ||InvisibilityFeatures.NightVisionEffect>true||InvisibilityFeatures.DisableDamage>true||InvisibilityFeatures.DisableHunger>true||InvisibilityFeatures.DisableMobTarget>true||InvisibilityFeatures.OpenChestsSilently>true||InvisibilityFeatures.DisablePressurePlates>true||InvisibilityFeatures.DisablePush>false||InvisibilityFeatures.DefaultPickUpItemsOption>false||InvisibilityFeatures.ModifyTablistPackets>true||InvisibilityFeatures.ModifyTabCompletePackets>true||InvisibilityFeatures.PreventSculkSensorActivation>true||InvisibilityFeatures.PreventTurtleEggBreaking>true||InvisibilityFeatures.DisableDripLeaf>true||InvisibilityFeatures.PreventRaidTriggering>true||InvisibilityFeatures.Fly.Enable>true||InvisibilityFeatures.Fly.DisableOnReappear>true||VanishStateFeatures.AutoVanishOnJoin>false||VanishStateFeatures.ReappearOnWorldChange>false||VanishStateFeatures.ReappearOnQuit>false||VanishStateFeatures.CheckPermissionOnWorldChange>false||VanishStateFeatures.CheckPermissionOnQuit>false||VanishStateFeatures.CheckPermissionOnLogin>false||IndicationFeatures.LayeredPermissions.EnableSeePermission>true||IndicationFeatures.LayeredPermissions.LayeredSeeAndUsePermissions>false||IndicationFeatures.LayeredPermissions.MaxLevel>100||IndicationFeatures.MarkVanishedPlayersAsSpectators>true||MessageOptions.FakeJoinQuitMessages.BroadcastFakeQuitOnVanish>true||MessageOptions.FakeJoinQuitMessages.BroadcastFakeJoinOnReappear>true||MessageOptions.FakeJoinQuitMessages.AnnounceVanishReappearToAdmins>true||MessageOptions.FakeJoinQuitMessages.SendMessageOnlyToAdmins>false||MessageOptions.FakeJoinQuitMessages.SendMessageOnlyToUsers>false||MessageOptions.HideRealJoinQuitMessages>true||MessageOptions.ReappearOnQuitHideLeaveMsg>true||MessageOptions.AnnounceRealJoinQuitToAdmins>true||MessageOptions.AnnounceDeathToAdmins>true||MessageOptions.RemindVanishedOnJoin>true||MessageOptions.DisplayActionBar>true||RestrictiveOptions.PreventBlockBreaking>false||RestrictiveOptions.PreventBlockPlacing>false||RestrictiveOptions.PreventHittingEntities>false||ExternalInvisibility.ServerList.AdjustAmountOfOnlinePlayers>true||ExternalInvisibility.ServerList.AdjustListOfLoggedInPlayers>true||HookOptions.EnableEssentialsHook>true||HookOptions.EnableDynmapHook>true||HookOptions.DynmapSendJoinLeaveMessages>true||HookOptions.EnableTrailGUIHook>true||HookOptions.EnablePlaceholderAPIHook>true||HookOptions.EnableMVdWPlaceholderAPIHook>true||HookOptions.EnableCitizensHook>true||CompatibilityOptions.PlayerJoinEventPriority>HIGH||CompatibilityOptions.PlayerQuitEventPriority>HIGH||MiscellaneousOptions.UpdateChecker.Enable>true||MiscellaneousOptions.UpdateChecker.NotifyAdmins>true||ConfigVersion>6.2.15||
[15:10:08] [Server thread/WARN]: [SuperVanish] StackTrace: 
[15:10:08] [Server thread/WARN]: java.lang.ArrayIndexOutOfBoundsException: Index 3 out of bounds for length 3
[15:10:08] [Server thread/WARN]:     at SuperVanish.jar//de.myzelyam.supervanish.utils.VersionUtil.<init>(VersionUtil.java:12)
[15:10:08] [Server thread/WARN]:     at SuperVanish.jar//de.myzelyam.supervanish.SuperVanish.onEnable(SuperVanish.java:94)
[15:10:08] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[15:10:08] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[15:10:08] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[15:10:08] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[15:10:08] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640)
[15:10:08] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589)
[15:10:08] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[15:10:08] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[15:10:08] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[15:10:08] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[15:10:08] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[15:10:08] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Unknown Source)
[15:10:08] [Server thread/WARN]: [SuperVanish] Please include this information
[15:10:08] [Server thread/WARN]: [SuperVanish] if you report the issue.
[15:10:08] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.11
[15:10:08] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[15:10:08] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[15:10:08] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[15:10:08] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v22.1
[15:10:08] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[15:10:08] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[15:10:08] [Server thread/INFO]: --------------------
[15:10:08] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[15:10:08] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[15:10:08] [Server thread/INFO]: --------------------
[15:10:09] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.35-SNAPSHOT (build 3594)
[15:10:09] [Server thread/INFO]: [Citizens] Loading external libraries
[15:10:09] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[15:10:09] [Server thread/WARN]: org.bukkit.configuration.InvalidConfigurationException: unacceptable code point '' (0x1F) special characters are not allowed
[15:10:09] [Server thread/WARN]: in "'reader'", position 0
[15:10:09] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:111)
[15:10:09] [Server thread/WARN]:     at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160)
[15:10:09] [Server thread/WARN]:     at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128)
[15:10:09] [Server thread/WARN]:     at Citizens-2.0.35-b3594.jar//net.citizensnpcs.api.util.YamlStorage.load(YamlStorage.java:68)
[15:10:09] [Server thread/WARN]:     at Citizens-2.0.35-b3594.jar//net.citizensnpcs.trait.shop.StoredShops.loadFromDisk(StoredShops.java:50)
[15:10:09] [Server thread/WARN]:     at Citizens-2.0.35-b3594.jar//net.citizensnpcs.Citizens.onEnable(Citizens.java:388)
[15:10:09] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[15:10:09] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[15:10:09] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[15:10:09] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[15:10:09] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640)
[15:10:09] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589)
[15:10:09] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[15:10:09] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[15:10:09] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[15:10:09] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[15:10:09] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[15:10:09] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Unknown Source)
[15:10:09] [Server thread/WARN]: Caused by: unacceptable code point '' (0x1F) special characters are not allowed
[15:10:09] [Server thread/WARN]: in "'reader'", position 0
[15:10:09] [Server thread/WARN]:     at org.yaml.snakeyaml.reader.StreamReader.update(StreamReader.java:208)
[15:10:09] [Server thread/WARN]:     at org.yaml.snakeyaml.reader.StreamReader.ensureEnoughData(StreamReader.java:173)
[15:10:09] [Server thread/WARN]:     at org.yaml.snakeyaml.reader.StreamReader.ensureEnoughData(StreamReader.java:168)
[15:10:09] [Server thread/WARN]:     at org.yaml.snakeyaml.reader.StreamReader.peek(StreamReader.java:123)
[15:10:09] [Server thread/WARN]:     at org.yaml.snakeyaml.scanner.ScannerImpl.scanToNextToken(ScannerImpl.java:1204)
[15:10:09] [Server thread/WARN]:     at org.yaml.snakeyaml.scanner.ScannerImpl.fetchMoreTokens(ScannerImpl.java:320)
[15:10:09] [Server thread/WARN]:     at org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(ScannerImpl.java:238)
[15:10:09] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl$ParseImplicitDocumentStart.produce(ParserImpl.java:210)
[15:10:09] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:161)
[15:10:09] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl.checkEvent(ParserImpl.java:152)
[15:10:09] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:156)
[15:10:09] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.compose(Yaml.java:575)
[15:10:09] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:104)
[15:10:09] [Server thread/WARN]:     ... 17 more
[15:10:09] [Server thread/ERROR]: [Citizens] Unable to load saves, disabling...
[15:10:09] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.35-SNAPSHOT (build 3594)
[15:10:09] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.8.0-SNAPSHOT-7b1a5e36
[15:10:09] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.21.1)...
[15:10:09] [Server thread/INFO]: [MythicMobs] The server is running Paper; enabled Paper exclusive functionality
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] END_SPAWN_POINT
[15:10:11] [Server thread/WARN]: Nag author(s): '[Lumine]' of 'MythicMobs v5.8.0-SNAPSHOT-7b1a5e36' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] RAIN_DELAY
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] RAIN_DURATION
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] THUNDER_DELAY
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] THUNDER_DURATION
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] LOGGER
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] EMPTY_TIME_NO_TICK
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] MAX_SCHEDULED_TICKS_PER_TICK
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] players
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] chunkSource
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] server
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] serverLevelData
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] lastSpawnChunkRadius
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] entityTickList
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] gameEventDispatcher
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] noSave
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] sleepStatus
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] emptyTime
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] portalForcer
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] blockTicks
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] fluidTicks
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] pathTypesByPosCache
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] navigatingMobs
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] isUpdatingNavigations
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] raids
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] blockEvents
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] blockEventsToReschedule
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] handlingTick
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] customSpawners
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] dragonFight
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] dragonParts
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] structureManager
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] structureCheck
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] tickTime
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] randomSequences
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] convertable
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] uuid
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] hasPhysicsEvent
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] hasEntityMoveEvent
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] wireHandler
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] markedClosing
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] viewDistanceHolder
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] chunkLoader
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] entityDataController
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] poiDataController
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] chunkDataController
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] chunkTaskScheduler
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] lastMidTickFailure
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] tickedBlocksOrFluids
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] nearbyPlayers
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] EMPTY_CHUNK_AND_HOLDERS
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] loadedChunks
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] tickingChunks
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] entityTickingChunks
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] lagCompensationTick
[15:10:11] [Server thread/INFO]: [MythicMobs] [STDOUT] currentlyTickingEntity
[15:10:11] [Server thread/INFO]: [MythicMobs] Mythic GriefPrevention Support has been enabled!
[15:10:11] [Server thread/INFO]: [MythicMobs] Mythic LibsDisguises Support has been enabled!
[15:10:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[15:10:11] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[15:10:11] [Server thread/INFO]: [MythicMobs] Mythic ProtocolLib Support has been enabled!
[15:10:11] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[15:10:11] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[15:10:11] [Server thread/INFO]: [MythicMobs] Base directory /data/plugins/MythicMobs/data
[15:10:11] [Server thread/INFO]: [MythicMobs] Module directory /data/plugins/MythicMobs/data/worlds
[15:10:14] [Server thread/INFO]: [MythicMobs] Loading Packs...
[15:10:14] [Server thread/INFO]: [MythicMobs] Loading Items...
[15:10:14] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Item yuan
[15:10:14] [Server thread/WARN]: [MythicMobs] --| File: /data/plugins/MythicMobs/Items/yuan.yml
[15:10:14] [Server thread/WARN]: [MythicMobs] --| Error Message: Couldn't get name/lore of ItemStack
[15:10:14] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[15:10:14] [Server thread/INFO]: [MythicMobs] Loading Skills...
[15:10:14] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:10:15] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic effect:sound
[15:10:15] [Server thread/WARN]: [MythicMobs] --| File: /data/plugins/MythicMobs/Skills/Vaatu.yml
[15:10:15] [Server thread/WARN]: [MythicMobs] --| Error Message: Invalid SoundCategory specified
[15:10:15] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: sound{s=minecraft:entity.illusioner.prepare_blindness;v=1;p=0.1;sc=PLAYER}
[15:10:15] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic effect:sound
[15:10:15] [Server thread/WARN]: [MythicMobs] --| File: /data/plugins/MythicMobs/Skills/Vaatu.yml
[15:10:15] [Server thread/WARN]: [MythicMobs] --| Error Message: Invalid SoundCategory specified
[15:10:15] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: sound{s=minecraft:entity.illusioner.prepare_mirror;v=1;p=0.1;sc=PLAYER}
[15:10:15] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:10:15] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:10:15] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:10:15] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:10:15] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:10:15] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:10:15] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:10:15] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic effect:sound
[15:10:15] [Server thread/WARN]: [MythicMobs] --| File: /data/plugins/MythicMobs/Skills/Raava.yml
[15:10:15] [Server thread/WARN]: [MythicMobs] --| Error Message: Invalid SoundCategory specified
[15:10:15] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: sound{s=minecraft:entity.illusioner.prepare_blindness;v=1;p=0.1;sc=PLAYER}
[15:10:15] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic effect:sound
[15:10:15] [Server thread/WARN]: [MythicMobs] --| File: /data/plugins/MythicMobs/Skills/Raava.yml
[15:10:15] [Server thread/WARN]: [MythicMobs] --| Error Message: Invalid SoundCategory specified
[15:10:15] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: sound{s=minecraft:entity.illusioner.cast_spell;v=1;p=0.1;sc=PLAYER}
[15:10:15] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:10:15] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:10:16] [Server thread/WARN]: java.lang.IllegalArgumentException
[15:10:16] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.numbers.RandomInt.<init>(RandomInt.java:46)
[15:10:16] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.skills.placeholders.parsers.RandomInt.<init>(RandomInt.java:17)
[15:10:16] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.skills.placeholders.parsers.PlaceholderIntImpl.of(PlaceholderIntImpl.java:133)
[15:10:16] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.api.skills.placeholders.PlaceholderInt.of(PlaceholderInt.java:22)
[15:10:16] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.config.MythicLineConfigImpl.getPlaceholderInteger(MythicLineConfigImpl.java:204)
[15:10:16] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.config.MythicLineConfigImpl.getPlaceholderInteger(MythicLineConfigImpl.java:210)
[15:10:16] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.skills.auras.Aura.<init>(Aura.java:153)
[15:10:16] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.skills.mechanics.StunMechanic.<init>(StunMechanic.java:26)
[15:10:16] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(Unknown Source)
[15:10:16] [Server thread/WARN]:     at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Unknown Source)
[15:10:16] [Server thread/WARN]:     at java.base/java.lang.reflect.Constructor.newInstance(Unknown Source)
[15:10:16] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.skills.SkillExecutor.getMechanic(SkillExecutor.java:303)
[15:10:16] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.mobs.MobType.<init>(MobType.java:480)
[15:10:16] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.mobs.MobExecutor.loadMobs(MobExecutor.java:145)
[15:10:16] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.config.ConfigExecutor.load(ConfigExecutor.java:436)
[15:10:16] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:186)
[15:10:16] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:81)
[15:10:16] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[15:10:16] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[15:10:16] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[15:10:16] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[15:10:16] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640)
[15:10:16] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589)
[15:10:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[15:10:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[15:10:16] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[15:10:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[15:10:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[15:10:16] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Unknown Source)
[15:10:16] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '100000000000': invalid syntax.
[15:10:16] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[15:10:16] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[15:10:16] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[15:10:16] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[15:10:16] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:10:16] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:10:16] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:10:16] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:10:16] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:10:16] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:10:16] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mob: Horncrier_Forest | File: /data/plugins/MythicMobs/Mobs/rpg_mount_5_mobs.yml
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill Horncrier_Forest_Dash
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=Horncrier_Forest_Dash}
[15:10:16] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mob: Horncrier_Frozen | File: /data/plugins/MythicMobs/Mobs/rpg_mount_5_mobs.yml
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill Horncrier_Frozen_Dash
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=Horncrier_Frozen_Dash}
[15:10:16] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mob: Horncrier_Crimsonwood | File: /data/plugins/MythicMobs/Mobs/rpg_mount_5_mobs.yml
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill Horncrier_Crimsonwood_Dash
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=Horncrier_Crimsonwood_Dash}
[15:10:16] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mob: Horncrier_Sculk | File: /data/plugins/MythicMobs/Mobs/rpg_mount_5_mobs.yml
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill Horncrier_Sculk_Dash
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=Horncrier_Sculk_Dash}
[15:10:16] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mob: Mob_Throne_Zombie | File: /data/plugins/MythicMobs/Mobs/rpg_mount_5_mobs.yml
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill Mob_Throne_Zombie_Dash
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=Mob_Throne_Zombie_Dash}
[15:10:16] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mob: Mob_Throne_Skeleton | File: /data/plugins/MythicMobs/Mobs/rpg_mount_5_mobs.yml
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill Mob_Throne_Skeleton_Dash
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=Mob_Throne_Skeleton_Dash}
[15:10:16] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mob: Mob_Throne_Slime | File: /data/plugins/MythicMobs/Mobs/rpg_mount_5_mobs.yml
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill Mob_Throne_Slime_Dash
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=Mob_Throne_Slime_Dash}
[15:10:16] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mob: Mob_Throne_Enderman | File: /data/plugins/MythicMobs/Mobs/rpg_mount_5_mobs.yml
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill Mob_Throne_Enderman_Dash
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=Mob_Throne_Enderman_Dash}
[15:10:16] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mob: Ogres_Prisoner_Mossy | File: /data/plugins/MythicMobs/Mobs/rpg_mount_5_mobs.yml
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill Ogre_Idle
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=Ogre_Idle}
[15:10:16] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mob: Ogres_Prisoner_Mossy | File: /data/plugins/MythicMobs/Mobs/rpg_mount_5_mobs.yml
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill Ogres_Prisoner_Mossy_Dash
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=Ogres_Prisoner_Mossy_Dash}
[15:10:16] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mob: Ogres_Prisoner_Fiery | File: /data/plugins/MythicMobs/Mobs/rpg_mount_5_mobs.yml
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill Ogre_Idle
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=Ogre_Idle}
[15:10:16] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mob: Ogres_Prisoner_Fiery | File: /data/plugins/MythicMobs/Mobs/rpg_mount_5_mobs.yml
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill Ogres_Prisoner_Fiery_Dash
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=Ogres_Prisoner_Fiery_Dash}
[15:10:16] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mob: Ogres_Prisoner_Undead | File: /data/plugins/MythicMobs/Mobs/rpg_mount_5_mobs.yml
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill Ogre_Idle
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=Ogre_Idle}
[15:10:16] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mob: Ogres_Prisoner_Undead | File: /data/plugins/MythicMobs/Mobs/rpg_mount_5_mobs.yml
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill Ogres_Prisoner_Undead_Dash
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=Ogres_Prisoner_Undead_Dash}
[15:10:16] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mob: Ogres_Prisoner_Cyclops | File: /data/plugins/MythicMobs/Mobs/rpg_mount_5_mobs.yml
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill Ogre_Idle
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=Ogre_Idle}
[15:10:16] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mob: Ogres_Prisoner_Cyclops | File: /data/plugins/MythicMobs/Mobs/rpg_mount_5_mobs.yml
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill Ogres_Prisoner_Cyclops_Dash
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=Ogres_Prisoner_Cyclops_Dash}
[15:10:16] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mob: Jellyfish_Blue | File: /data/plugins/MythicMobs/Mobs/rpg_mount_5_mobs.yml
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill Jellyfish_Blue_Dash
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=Jellyfish_Blue_Dash}
[15:10:16] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mob: Jellyfish_Abyss | File: /data/plugins/MythicMobs/Mobs/rpg_mount_5_mobs.yml
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill Jellyfish_Abyss_Dash
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=Jellyfish_Abyss_Dash}
[15:10:16] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mob: Jellyfish_Obsidian | File: /data/plugins/MythicMobs/Mobs/rpg_mount_5_mobs.yml
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill Jellyfish_Obsidian_Dash
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=Jellyfish_Obsidian_Dash}
[15:10:16] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mob: Jellyfish_Aether | File: /data/plugins/MythicMobs/Mobs/rpg_mount_5_mobs.yml
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill Jellyfish_Aether_Dash
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=Jellyfish_Aether_Dash}
[15:10:16] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mob: Jellyfish_Nether | File: /data/plugins/MythicMobs/Mobs/rpg_mount_5_mobs.yml
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill Jellyfish_Nether_Dash
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=Jellyfish_Nether_Dash}
[15:10:16] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mob: Talonstrider_Desert | File: /data/plugins/MythicMobs/Mobs/rpg_mount_5_mobs.yml
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill Talonstrider_Desert_Dash
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=Talonstrider_Desert_Dash}
[15:10:16] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mob: Talonstrider_Sculk | File: /data/plugins/MythicMobs/Mobs/rpg_mount_5_mobs.yml
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill Talonstrider_Sculk_Dash
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=Talonstrider_Sculk_Dash}
[15:10:16] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mob: Talonstrider_Ender | File: /data/plugins/MythicMobs/Mobs/rpg_mount_5_mobs.yml
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill Talonstrider_Ender_Dash
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=Talonstrider_Ender_Dash}
[15:10:16] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mob: Talonstrider_Arctic | File: /data/plugins/MythicMobs/Mobs/rpg_mount_5_mobs.yml
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill Talonstrider_Arctic_Dash
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=Talonstrider_Arctic_Dash}
[15:10:16] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mob: Celestial_Thunderlord | File: /data/plugins/MythicMobs/Mobs/dragon_mobs.yml
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill Celestial_Thunderlord_LOOK
[15:10:16] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=Celestial_Thunderlord_LOOK}
[15:10:16] [Server thread/INFO]: [MythicMobs] ✓ Loaded 221 mobs.
[15:10:16] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[15:10:16] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[15:10:16] [Server thread/INFO]: [MythicMobs] ✓ Loaded 841 skills.
[15:10:16] [Server thread/INFO]: [MythicMobs] ✓ Loaded 30 random spawns.
[15:10:16] [Server thread/INFO]: [MythicMobs] ✓ Loaded 147 mythic items.
[15:10:16] [Server thread/INFO]: [MythicMobs] ✓ Loaded 12 drop tables.
[15:10:16] [Server thread/INFO]: [MythicMobs] ✓ Loaded 27 mob spawners.
[15:10:16] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[15:10:17] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[15:10:17] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs Premium v5.8.0 ( build 7b1a5e36 ) has been successfully loaded!
[15:10:17] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
[15:10:17] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: MythicMobs
[15:10:17] [Server thread/INFO]: [ProjectAddons] Enabling ProjectAddons v1.2.4
[15:10:18] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.28.0
[15:10:18] [Server thread/INFO]: [SCore] Enabling SCore v5.24.7.18
[15:10:18] [Server thread/INFO]: ================ SCore ================
[15:10:18] [Server thread/INFO]: SCore is running on Folia
[15:10:18] [Server thread/INFO]: SCore is running on Paper or fork
[15:10:18] [Server thread/INFO]: SCore Version of the server 1.21.1-123-aebbdc9 (MC: 1.21.1) !
[15:10:18] [Server thread/INFO]: SCore ExecutableItems hooked !  (7.24.7.18) Load After
[15:10:18] [Server thread/INFO]: SCore PlaceholderAPI hooked !  (2.11.6)  Load Before
[15:10:18] [Server thread/INFO]: SCore WorldGuard hooked !  (7.0.10+d9424b1)  Load Before
[15:10:18] [Server thread/INFO]: SCore Vault hooked !  (1.7.3-b131)  Load Before
[15:10:18] [Server thread/INFO]: SCore Multiverse-Core hooked !  (4.3.12)  Load Before
[15:10:18] [Server thread/INFO]: SCore GriefPrevention hooked !  (16.18.2)  Load Before
[15:10:18] [Server thread/INFO]: SCore CoreProtect hooked !  (22.1)  Load Before
[15:10:18] [Server thread/INFO]: SCore ProtocolLib hooked !
[15:10:18] [Server thread/INFO]: SCore Locale setup: EN
[15:10:18] [Server thread/INFO]: SCore HeadDB hooked !  (5.0.0-rc.10) Load After
[15:10:18] [Server thread/INFO]: SCore MythicMobs hooked !  (5.8.0-SNAPSHOT-7b1a5e36)  Load Before
[15:10:18] [Server thread/INFO]: SCore DecentHolograms hooked !  (2.8.11)  Load Before
[15:10:18] [Server thread/INFO]: SCore TAB hooked !  (4.1.9) Load After
[15:10:18] [Server thread/INFO]: SCore WorldEdit hooked !  (2.11.3-SNAPSHOT-937;91bdd15)  Load Before
[15:10:18] [Server thread/INFO]: SCore Language of the editor setup on EN
[15:10:18] [Server thread/INFO]: SCore Language for in-game messages setup on EN
[15:10:18] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[15:10:18] [Server thread/INFO]: SCore Connection to the db...
[15:10:18] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[15:10:18] [Server thread/INFO]: SCore Creating table SecurityOP if not exists...
[15:10:18] [Server thread/INFO]: SCore Creating table Commands if not exists...
[15:10:18] [Server thread/INFO]: SCore Creating table Cooldowns if not exists...
[15:10:18] [Server thread/INFO]: SCore Creating table Commands Player if not exists...
[15:10:18] [Server thread/INFO]: SCore Creating table Commands Entity if not exists...
[15:10:18] [Server thread/INFO]: SCore Creating table Commands Block if not exists...
[15:10:18] [Server thread/INFO]: SCore Creating table UsePerDay if not exists...
[15:10:18] [Server thread/ERROR]: &cERROR, Couldn't load the Enchantment value of enchantment from config, value: BUNNY_HOP &7&oSProjectile: trident1 &6>> Enchantments available: Look in-game, it's the same name
[15:10:18] [Server thread/ERROR]: &cERROR, Couldn't load the Enchantment value of enchantment from config, value: BUNNY_HOP &7&oSProjectile: tridentCustom1 &6>> Enchantments available: Look in-game, it's the same name
[15:10:19] [pool-94-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (42aad8401b73c52bb4edd11d9a73aa8a6e1619c1)
[15:10:19] [Server thread/INFO]: SCore SCore loaded 1 variables from local files !
[15:10:19] [Server thread/INFO]: SCore SCore loaded 0 delayed commands saved
[15:10:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: SCore [1.0.0]
[15:10:19] [Server thread/INFO]: ================ SCore ================
[15:10:19] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[15:10:19] [Server thread/INFO]: [Votifier] Loaded token for website: default
[15:10:19] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[15:10:19] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[15:10:19] [Server thread/INFO]: [BigDoors] Enabling BigDoors vAlpha 0.1.8.54
[15:10:19] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /[0:0:0:0:0:0:0:0%0]:1865.
[15:10:20] [Server thread/INFO]: [BigDoors] Power Block Types:
[15:10:20] [Server thread/INFO]: [BigDoors]  - GOLD_BLOCK
[15:10:20] [Server thread/INFO]: [BigDoors] Blacklisted materials:
[15:10:20] [Server thread/INFO]: [BigDoors]  - BEDROCK
[15:10:20] [Server thread/INFO]: [BigDoors]  - END_PORTAL
[15:10:20] [Server thread/INFO]: [BigDoors]  - END_PORTAL_FRAME
[15:10:20] [Server thread/INFO]: [BigDoors]  - NETHER_PORTAL
[15:10:20] [Server thread/INFO]: [BigDoors] No materials Whitelisted!
[15:10:20] [Server thread/INFO]: [BigDoors] Failed to parse material: "GRASS"
[15:10:20] [Server thread/INFO]: [BigDoors] DestroyListed materials:
[15:10:20] [Server thread/INFO]: [BigDoors]  - LAVA
[15:10:20] [Server thread/INFO]: [BigDoors]  - WATER
[15:10:20] [Server thread/INFO]: [BigDoors]  - SNOW
[15:10:20] [Server thread/INFO]: [BigDoors]  - FERN
[15:10:20] [Server thread/INFO]: [BigDoors]  - GRASS
[15:10:20] [Server thread/INFO]: [BigDoors]  - TALL_GRASS
[15:10:20] [Server thread/INFO]: [BigDoors]  - SEAGRASS
[15:10:20] [Server thread/INFO]: [BigDoors]  - TALL_SEAGRASS
[15:10:20] [Server thread/WARN]: [BigDoors] ╔═══════════════════════════════════════════════════════╗
[15:10:20] [Server thread/WARN]: [BigDoors] ║                                                       ║
[15:10:20] [Server thread/WARN]: [BigDoors] ║                    !!  WARNING  !!                    ║
[15:10:20] [Server thread/WARN]: [BigDoors] ║                                                       ║
[15:10:20] [Server thread/WARN]: [BigDoors] ║                                                       ║
[15:10:20] [Server thread/WARN]: [BigDoors] ║            You have enabled "unsafe mode"!            ║
[15:10:20] [Server thread/WARN]: [BigDoors] ║                                                       ║
[15:10:20] [Server thread/WARN]: [BigDoors] ║   THIS IS NOT SUPPORTED! USE THIS AT YOUR OWN RISK!   ║
[15:10:20] [Server thread/WARN]: [BigDoors] ║                                                       ║
[15:10:20] [Server thread/WARN]: [BigDoors] ╚═══════════════════════════════════════════════════════╝
[15:10:20] [Server thread/INFO]: [BigDoors] Enabling stats! Thanks, it really helps!
[15:10:20] [Server thread/INFO]: [BigDoors] Successfully hooked into "WorldGuard"!
[15:10:20] [Server thread/INFO]: [BigDoors] Successfully hooked into "GriefPrevention"!
[15:10:20] [Server thread/INFO]: [CRUtils] Enabling CRUtils v1.1.6
[15:10:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[15:10:20] [Server thread/WARN]: [CRUtils] Error while updating
[15:10:20] [Server thread/WARN]: java.lang.RuntimeException: Invalid semver format
[15:10:20] [Server thread/WARN]:     at CRUtils.jar//com.crazicrafter1.crutils.Util.compareSemver(Util.java:148)
[15:10:20] [Server thread/WARN]:     at CRUtils.jar//com.crazicrafter1.crutils.Util.outdatedSemver(Util.java:116)
[15:10:20] [Server thread/WARN]:     at CRUtils.jar//com.crazicrafter1.crutils.GitUtils.updatePlugin(GitUtils.java:143)
[15:10:20] [Server thread/WARN]:     at CRUtils.jar//com.crazicrafter1.crutils.Main.onEnable(Main.java:27)
[15:10:20] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[15:10:20] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[15:10:20] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[15:10:20] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[15:10:20] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640)
[15:10:20] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589)
[15:10:20] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[15:10:20] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[15:10:20] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[15:10:20] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[15:10:20] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[15:10:20] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Unknown Source)
[15:10:20] [Server thread/INFO]: [GSit] Enabling GSit v1.10.0
[15:10:20] [Server thread/INFO]: [GSit] The Plugin was successfully enabled.
[15:10:20] [Server thread/INFO]: [GSit] Link with GriefPrevention successful!
[15:10:20] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
[15:10:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [1.10.0]
[15:10:20] [Server thread/INFO]: [GSit] Link with WorldGuard successful!
[15:10:20] [Server thread/INFO]: [RainbowsPro] Enabling RainbowsPro v1.3.0
[15:10:21] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[15:10:22] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[15:10:22] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console channel ID was invalid, not forwarding console output
[15:10:22] [Server thread/INFO]:     __   __
[15:10:22] [Server thread/INFO]:    |__) |__)   RainbowsPro v1.3.0
[15:10:22] [Server thread/INFO]:    |  | |        by OliPulse
[15:10:22] [Server thread/INFO]:  
[15:10:22] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling VentureChat hook
[15:10:22] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[15:10:22] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling SuperVanish hook
[15:10:22] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[15:10:22] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[15:10:23] [Server thread/INFO]: [RainbowsPro] Invalid particle 'SPELL_MOB_AMBIENT' for layer 'Potion' of rainbow 'prism_S'
[15:10:23] [Server thread/INFO]: [CustomFishing] Enabling CustomFishing v2.1.5
[15:10:23] [Server thread/ERROR]: Error occurred while enabling CustomFishing v2.1.5 (Is it up to date?)
java.lang.ArrayIndexOutOfBoundsException: Index 3 out of bounds for length 3
    at CustomFishing-2.1.5.jar/net.momirealms.customfishing.version.VersionManagerImpl.<init>(VersionManagerImpl.java:52) ~[CustomFishing-2.1.5.jar:?]
    at CustomFishing-2.1.5.jar/net.momirealms.customfishing.CustomFishingPluginImpl.onEnable(CustomFishingPluginImpl.java:120) ~[CustomFishing-2.1.5.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at java.base/java.lang.Thread.run(Unknown Source) ~[?:?]
[15:10:23] [Server thread/INFO]: [CustomFishing] Disabling CustomFishing v2.1.5
[15:10:23] [Server thread/INFO]: [Hackathon] Enabling Hackathon v1.0
[15:10:23] [Server thread/INFO]: [Hackathon] [STDOUT] GlacialShards plugin has started
[15:10:23] [Server thread/WARN]: Nag author(s): '[]' of 'Hackathon v1.0' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[15:10:23] [Server thread/INFO]: [CratesPlus] Enabling CratesPlus v4.5.3
[15:10:23] [Server thread/WARN]: [CratesPlus] CratesPlus has not yet been officially tested with Bukkit 1.21.1 but should still work
[15:10:23] [Server thread/WARN]: [CratesPlus] Please let me know if there are any errors or issues
[15:10:23] [Server thread/WARN]: [CratesPlus] Failed to load crate in world %s that no longer exists!
[15:10:23] [Server thread/WARN]: [CratesPlus] Failed to load crate in world %s that no longer exists!
[15:10:23] [Server thread/WARN]: [CratesPlus] Failed to load crate in world %s that no longer exists!
[15:10:23] [Server thread/WARN]: [CratesPlus] Failed to load crate in world %s that no longer exists!
[15:10:23] [Server thread/WARN]: [CratesPlus] Failed to load crate in world %s that no longer exists!
[15:10:23] [Server thread/WARN]: [CratesPlus] Failed to load crate in world %s that no longer exists!
[15:10:23] [Server thread/WARN]: [CratesPlus] Failed to load crate in world %s that no longer exists!
[15:10:23] [Server thread/WARN]: [CratesPlus] Failed to load crate in world %s that no longer exists!
[15:10:23] [Server thread/WARN]: [CratesPlus] Failed to load crate in world %s that no longer exists!
[15:10:23] [Server thread/WARN]: [CratesPlus] Failed to load crate in world %s that no longer exists!
[15:10:23] [Server thread/INFO]: CratesPlus Version 4.5.3
[15:10:23] [Server thread/INFO]: You are using the built in handler for holograms. This will be removed in a future update! It is recommended to install Individual Holograms or HolographicDisplays which CratesPlus will then use to handle holograms.
[15:10:23] [Server thread/INFO]: [AltDetector] Enabling AltDetector v2.02
[15:10:23] [Server thread/INFO]: [com.bobcat00.altdetector.hikari.HikariDataSource] HikariPool-1 - Starting...
[15:10:23] [Server thread/INFO]: [com.bobcat00.altdetector.hikari.HikariDataSource] HikariPool-1 - Start completed.
[15:10:23] [Server thread/INFO]: [AltDetector] Using SQLite database, version 3.46.0, driver version 3.46.0.0
[15:10:23] [Server thread/INFO]: [AltDetector] 0 records removed, expiration time 60 days.
[15:10:23] [Server thread/INFO]: [AltDetector] Metrics enabled if allowed by plugins/bStats/config.yml
[15:10:23] [Server thread/INFO]: [PacketListenerApi] Enabling PacketListenerApi v3.9.10-SNAPSHOT
[15:10:23] [Server thread/WARN]: [PacketListenerApi] Injection failed. Disabling...
[15:10:23] [Server thread/INFO]: [PacketListenerApi] Disabling PacketListenerApi v3.9.10-SNAPSHOT
[15:10:23] [Server thread/INFO]: [InventoryRollbackPlus] Enabling InventoryRollbackPlus v1.6.18
[15:10:23] [Server thread/INFO]: [InventoryRollbackPlus] Attempting Paper support for version: 1.21.1-R0.1-SNAPSHOT
[15:10:23] [Server thread/INFO]: [InventoryRollbackPlus] Found CraftBukkit Package Version: v1_21_R1
[15:10:23] [Server thread/INFO]: [InventoryRollbackPlus] Inventory backup data is set to save to: YAML
[15:10:23] [Server thread/INFO]: [InventoryRollbackPlus] bStats are enabled
[15:10:24] [Server thread/INFO]: [PetTeleport] Enabling PetTeleport v1.0
[15:10:24] [Server thread/INFO]: [NPCLibPlugin] Enabling NPCLibPlugin v2.11.1-SNAPSHOT*
[15:10:24] [Server thread/INFO]: [NPCLibPlugin] NPCLib classes loaded
[15:10:24] [Server thread/INFO]: [PlatinumArenas] Enabling PlatinumArenas v0.7.5
[15:10:24] [Server thread/ERROR]: Error occurred while enabling PlatinumArenas v0.7.5 (Is it up to date?)
java.lang.StringIndexOutOfBoundsException: Range [23, 22) out of bounds for length 22
    at java.base/jdk.internal.util.Preconditions$1.apply(Unknown Source) ~[?:?]
    at java.base/jdk.internal.util.Preconditions$1.apply(Unknown Source) ~[?:?]
    at java.base/jdk.internal.util.Preconditions$4.apply(Unknown Source) ~[?:?]
    at java.base/jdk.internal.util.Preconditions$4.apply(Unknown Source) ~[?:?]
    at java.base/jdk.internal.util.Preconditions.outOfBounds(Unknown Source) ~[?:?]
    at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckFromToIndex(Unknown Source) ~[?:?]
    at java.base/jdk.internal.util.Preconditions.checkFromToIndex(Unknown Source) ~[?:?]
    at java.base/java.lang.String.checkBoundsBeginEnd(Unknown Source) ~[?:?]
    at java.base/java.lang.String.substring(Unknown Source) ~[?:?]
    at java.base/java.lang.String.substring(Unknown Source) ~[?:?]
    at PlatinumArenas-0.7.5.jar/com.strangeone101.platinumarenas.Util.getServerVersion(Util.java:209) ~[PlatinumArenas-0.7.5.jar:?]
    at PlatinumArenas-0.7.5.jar/com.strangeone101.platinumarenas.Util.getCraftbukkitClass(Util.java:213) ~[PlatinumArenas-0.7.5.jar:?]
    at PlatinumArenas-0.7.5.jar/com.strangeone101.platinumarenas.blockentity.SkullWrapper.<init>(SkullWrapper.java:25) ~[PlatinumArenas-0.7.5.jar:?]
    at PlatinumArenas-0.7.5.jar/com.strangeone101.platinumarenas.blockentity.WrapperRegistry.registerAll(WrapperRegistry.java:43) ~[PlatinumArenas-0.7.5.jar:?]
    at PlatinumArenas-0.7.5.jar/com.strangeone101.platinumarenas.PlatinumArenas.onEnable(PlatinumArenas.java:32) ~[PlatinumArenas-0.7.5.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at java.base/java.lang.Thread.run(Unknown Source) ~[?:?]
[15:10:24] [Server thread/INFO]: [PlatinumArenas] Disabling PlatinumArenas v0.7.5
[15:10:24] [Server thread/INFO]: [AutomaticBroadcast] Enabling AutomaticBroadcast v1.4.2
[15:10:24] [Server thread/INFO]:    _____  _____
[15:10:24] [Server thread/INFO]:   |  _  || __  |  AutomaticBroadcast
[15:10:24] [Server thread/INFO]:   |     || __ -|    Version 1.4.2
[15:10:24] [Server thread/INFO]:   |__|__||_____|      by Pandaaa
[15:10:24] [Server thread/INFO]: 
[15:10:24] [Server thread/INFO]: [ProjectCoco] Enabling ProjectCoco v${project.version}
[15:10:24] [Server thread/INFO]: [MacbarmHackatonPack] Enabling MacbarmHackatonPack v1.0-SNAPSHOT
[15:10:24] [Server thread/INFO]: [MacbarmHackatonPack] Mistbending By macbarm Version-V1.0.0 Is now active!
[15:10:24] [Server thread/INFO]: [DiscordSRV-Staff-Chat] Enabling DiscordSRV-Staff-Chat v1.4.5
[15:10:24] [Server thread/INFO]: [DiscordSRV] API listener com.rezzedup.discordsrv.staffchat.listeners.DiscordStaffChatListener subscribed (1 methods)
[15:10:24] [Server thread/INFO]: [DiscordSRV-Staff-Chat] Subscribed to DiscordSRV: messages will be sent to Discord
[15:10:24] [Server thread/INFO]: [Tim] Enabling TimTheEnchanter v2.1
[15:10:24] [Server thread/INFO]: [Vulcan] Enabling Vulcan v1.0
[15:10:24] [Server thread/INFO]: [Vulcan] Successfully enabled Vulcan.
[15:10:24] [Server thread/INFO]: [ExecutableItems] Enabling ExecutableItems v7.24.7.18
[15:10:24] [Server thread/INFO]: ================ ExecutableItems ================
[15:10:26] [Server thread/INFO]: ExecutableItems Amount of Executable Items configurations loaded: 23
[15:10:26] [Server thread/INFO]: ExecutableItems Items with display conditions :  
[15:10:26] [Server thread/INFO]: ================ ExecutableItems ================
[15:10:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ExecutableItems [1.0.0]
[15:10:26] [Server thread/INFO]: [TorrentRedirection] Enabling TorrentRedirection v1.1
[15:10:27] [Server thread/INFO]: [TorrentRedirection] TorrentRedirection ready for take off! (Just kidding. Done setting up.)
[15:10:27] [Server thread/INFO]: [Sentinel] Enabling Sentinel v2.8.1-SNAPSHOT (build 513)
[15:10:27] [Server thread/INFO]: [Sentinel] Sentinel loading...
[15:10:27] [Server thread/INFO]: [Sentinel] Running on java version: 21.0.4
[15:10:27] [Server thread/WARN]: [Sentinel] You are running on an unrecognized (future?) minecraft version. Support channel be guaranteed. Check if there is a newer version of Sentinel available that supports your minecraft version.
[15:10:27] [Server thread/ERROR]: Error occurred while enabling Sentinel v2.8.1-SNAPSHOT (build 513) (Is it up to date?)
java.lang.NoClassDefFoundError: net/citizensnpcs/api/CitizensAPI
    at Sentinel-2.8.1-SNAPSHOT-b513.jar/org.mcmonkey.sentinel.SentinelPlugin.onEnable(SentinelPlugin.java:318) ~[Sentinel-2.8.1-SNAPSHOT-b513.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at java.base/java.lang.Thread.run(Unknown Source) ~[?:?]
Caused by: java.lang.ClassNotFoundException: net.citizensnpcs.api.CitizensAPI
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(Unknown Source) ~[?:?]
    ... 13 more
[15:10:27] [Server thread/INFO]: [Sentinel] Disabling Sentinel v2.8.1-SNAPSHOT (build 513)
[15:10:27] [Server thread/INFO]: [Sentinel] Sentinel unloading...
[15:10:27] [Server thread/INFO]: [Sentinel] Sentinel unloaded!
[15:10:27] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.15.1
[15:10:27] [Server thread/INFO]: [VotingPlugin] Loaded LuckPerms hook!
[15:10:27] [Server thread/WARN]: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.craftbukkit.inventory.CraftItemStack
[15:10:27] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197)
[15:10:27] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[15:10:27] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(Unknown Source)
[15:10:27] [Server thread/WARN]:     at java.base/java.lang.Class.forName0(Native Method)
[15:10:27] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Unknown Source)
[15:10:27] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Unknown Source)
[15:10:27] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.forName(AbstractDefaultRulesReflectionProxy.java:68)
[15:10:27] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.forName(Unknown Source)
[15:10:27] [Server thread/WARN]:     at VotingPlugin.jar//com.bencodez.votingplugin.advancedcore.nms.ReflectionUtils.getClassForName(ReflectionUtils.java:27)
[15:10:27] [Server thread/WARN]:     at VotingPlugin.jar//com.bencodez.votingplugin.advancedcore.api.skull.SkullHandler.load(SkullHandler.java:122)
[15:10:27] [Server thread/WARN]:     at VotingPlugin.jar//com.bencodez.votingplugin.advancedcore.AdvancedCorePlugin.loadHook(AdvancedCorePlugin.java:550)
[15:10:27] [Server thread/WARN]:     at VotingPlugin.jar//com.bencodez.votingplugin.advancedcore.AdvancedCorePlugin.onEnable(AdvancedCorePlugin.java:961)
[15:10:27] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[15:10:27] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[15:10:27] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[15:10:27] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[15:10:27] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640)
[15:10:27] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589)
[15:10:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[15:10:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[15:10:27] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[15:10:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[15:10:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[15:10:27] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Unknown Source)
[15:10:27] [Server thread/ERROR]: Error occurred while enabling VotingPlugin v6.15.1 (Is it up to date?)
java.lang.NullPointerException: Cannot invoke "java.lang.Class.getName()" because "clazz" is null
    at io.papermc.paper.pluginremap.reflect.PaperReflection.mapDeclaredMethodName(PaperReflection.java:60) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getDeclaredMethod(AbstractDefaultRulesReflectionProxy.java:95) ~[reflection-rewriter-runtime-0.0.3.jar:?]
    at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getDeclaredMethod(Unknown Source) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at VotingPlugin.jar/com.bencodez.votingplugin.advancedcore.api.skull.SkullHandler.load(SkullHandler.java:131) ~[VotingPlugin.jar:?]
    at VotingPlugin.jar/com.bencodez.votingplugin.advancedcore.AdvancedCorePlugin.loadHook(AdvancedCorePlugin.java:550) ~[VotingPlugin.jar:?]
    at VotingPlugin.jar/com.bencodez.votingplugin.advancedcore.AdvancedCorePlugin.onEnable(AdvancedCorePlugin.java:961) ~[VotingPlugin.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at java.base/java.lang.Thread.run(Unknown Source) ~[?:?]
[15:10:27] [Server thread/INFO]: [VotingPlugin] Disabling VotingPlugin v6.15.1
[15:10:27] [Server thread/INFO]: [VotingPlugin] Allowing background tasks to finish, this could take up to 5 seconds
[15:10:27] [Server thread/ERROR]: Error occurred while disabling VotingPlugin v6.15.1
java.lang.NullPointerException: Cannot invoke "java.util.concurrent.ScheduledExecutorService.shutdown()" because "this.voteTimer" is null
    at VotingPlugin.jar/com.bencodez.votingplugin.VotingPluginMain.onUnLoad(VotingPluginMain.java:1296) ~[VotingPlugin.jar:?]
    at VotingPlugin.jar/com.bencodez.votingplugin.advancedcore.AdvancedCorePlugin.onDisable(AdvancedCorePlugin.java:937) ~[VotingPlugin.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:291) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:237) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:114) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:550) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:206) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at java.base/java.lang.Thread.run(Unknown Source) ~[?:?]
[15:10:27] [Server thread/INFO]: [Coins] Enabling Coins v1.13.1
[15:10:27] [Server thread/INFO]: [Coins] Vault is used as the economy provider.
[15:10:27] [Server thread/WARN]: [Coins] #1: 
Config file is missing key `pickup-message-position`. Using its default value now (ACTIONBAR). Consider to add this to the config:
----------------------------------------
pickup-message-position: ACTIONBAR
----------------------------------------
[15:10:27] [Server thread/WARN]: [Coins] #2: 
Config file is missing key `withdraw-message`. Using its default value now ('&4- &c{currency}{amount}'). Consider to add this to the config:
----------------------------------------
withdraw-message: '&4- &c{currency}{amount}'
----------------------------------------
[15:10:27] [Server thread/WARN]: [Coins] #3: 
Config file is missing key `withdraw-message-position`. Using its default value now (ACTIONBAR). Consider to add this to the config:
----------------------------------------
withdraw-message-position: ACTIONBAR
----------------------------------------
[15:10:27] [Server thread/WARN]: [Coins] #4: 
Config file is missing key `death-message-position`. Using its default value now (SUBTITLE). Consider to add this to the config:
----------------------------------------
death-message-position: SUBTITLE
----------------------------------------
[15:10:27] [Server thread/WARN]: [Coins] #5: 
Config file is missing key `digit-decimal-separator`. Using its default value now ('.'). Consider to add this to the config:
----------------------------------------
digit-decimal-separator: '.'
----------------------------------------
[15:10:27] [Server thread/WARN]: [Coins] #6: 
Config file is missing key `digit-group-separator`. Using its default value now (','). Consider to add this to the config:
----------------------------------------
digit-group-separator: ','
----------------------------------------
[15:10:27] [Server thread/WARN]: [Coins] Loaded the config of Coins with 6 warnings. Check above here for details.
[15:10:27] [Server thread/INFO]: [Coins] Initialized in 104ms.
[15:10:27] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.0-dev+117-c80bef9
[15:10:27] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[15:10:27] [Server thread/INFO]: [Dragon] Enabling Dragon v1.0
[15:10:27] [Server thread/INFO]: [Dragon] Loading configuration
[15:10:27] [Server thread/INFO]: [Dragon] Successfully enabled Dragon.
[15:10:28] [Server thread/INFO]: [BigDoorsOpener] Enabling BigDoorsOpener v2.5.2
[15:10:28] [Server thread/WARN]: Could not determine server Version.
[15:10:28] [Server thread/ERROR]: [BigDoorsOpener] Plugin failed to enable.
de.eldoria.bigdoorsopener.eldoutilities.crossversion.UnsupportedVersionException: Version MC_UNKOWN is not supported.
    at big-doors-opener-2.5.2.jar/de.eldoria.bigdoorsopener.eldoutilities.crossversion.ServerVersion.forceVersion(ServerVersion.java:145) ~[big-doors-opener-2.5.2.jar:?]
    at big-doors-opener-2.5.2.jar/de.eldoria.bigdoorsopener.core.BigDoorsOpener.onPluginEnable(BigDoorsOpener.java:130) ~[big-doors-opener-2.5.2.jar:?]
    at big-doors-opener-2.5.2.jar/de.eldoria.bigdoorsopener.eldoutilities.plugin.EldoPlugin.onEnable(EldoPlugin.java:251) ~[big-doors-opener-2.5.2.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at java.base/java.lang.Thread.run(Unknown Source) ~[?:?]
[15:10:28] [Server thread/ERROR]: [BigDoorsOpener] Initializing failsave mode.
[15:10:28] [Server thread/INFO]: [Daggers] Enabling Daggers v1.0.0
[15:10:28] [Server thread/INFO]: [Daggers] Registering listeners...
[15:10:28] [Server thread/INFO]: [Daggers] Registering custom element...
[15:10:28] [Server thread/INFO]: [Daggers] Registering abilities...
[15:10:28] [Server thread/INFO]: [Daggers] Initializing config...
[15:10:28] [Server thread/INFO]: [Daggers] Successfully enabled!
[15:10:28] [Server thread/INFO]: [Hat] Enabling Hat v1.5.0
[15:10:28] [Server thread/INFO]: [Hat] Validating messages.yml
[15:10:28] [Server thread/INFO]: [Hat] messages.yml has been validated.
[15:10:33] [Server thread/INFO]: [Hat] Hat has been enabled.
[15:10:33] [Server thread/INFO]: [Gapi] Enabling Gapi v1.0.11
[15:10:33] [Server thread/ERROR]: Error occurred while enabling Gapi v1.0.11 (Is it up to date?)
java.lang.RuntimeException: Invalid semver format
    at CRUtils.jar/com.crazicrafter1.crutils.Util.compareSemver(Util.java:148) ~[CRUtils.jar:?]
    at CRUtils.jar/com.crazicrafter1.crutils.Util.outdatedSemver(Util.java:116) ~[CRUtils.jar:?]
    at CRUtils.jar/com.crazicrafter1.crutils.GitUtils.updatePlugin(GitUtils.java:143) ~[CRUtils.jar:?]
    at Gapi.jar/com.crazicrafter1.gapi.Main.onEnable(Main.java:38) ~[Gapi.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at java.base/java.lang.Thread.run(Unknown Source) ~[?:?]
[15:10:33] [Server thread/INFO]: [Gapi] Disabling Gapi v1.0.11
[15:10:33] [Server thread/INFO]: [SimpleRename] Enabling SimpleRename v13.9
[15:10:33] [Server thread/INFO]: SimpleRename enabled!
[15:10:33] [Server thread/INFO]: [CollisionUtility] Enabling CollisionUtility v1.0.1
[15:10:33] [Server thread/WARN]: [CollisionUtility] Could not save collisions.txt to plugins/CollisionUtility/collisions.txt because collisions.txt already exists.
[15:10:34] [Server thread/INFO]: [CollisionUtility] CollisionUtility by KWilson272 has been enabled!
[15:10:34] [Server thread/INFO]: [NotQuests] Enabling NotQuests v5.18.2
[15:10:34] [Server thread/INFO]: [NotQuests] Loading NotQuests Paper...
[15:10:34] [Server thread/INFO]: [NotQuests]: Loading general config
[15:10:34] [Server thread/INFO]: [NotQuests]: Detected version: 1.21.1-R0.1-SNAPSHOT (Paper)
[15:10:34] [Server thread/INFO]: [NotQuests]: Packet magic has been disabled, because you are using an unsupported bukkit version...
[15:10:34] [Server thread/INFO]: [NotQuests] Enabling NotQuests Paper...
[15:10:34] [Server thread/INFO]: [NotQuests]: NotQuests (Paper) is starting...
[15:10:34] [Server thread/INFO]: [NotQuests]: PlaceholderAPI found. Enabled PlaceholderAPI support!
[15:10:34] [Server thread/INFO]: [NotQuests]: Vault found. Enabled Vault support!
[15:10:34] [Server thread/INFO]: [NotQuests]: MythicMobs found. Enabled MythicMobs support!
[15:10:34] [Server thread/INFO]: [NotQuests]: WorldEdit found. Enabled WorldEdit support!
[15:10:34] [Server thread/INFO]: [NotQuests]: Citizens Dependency not found! Congratulations! In NotQuests, you can use armor stands instead of Citizens NPCs
[15:10:34] [Server thread/INFO]: [NotQuests]: LuckPerms found. Enabled LuckPerms support!
[15:10:34] [Server thread/INFO]: [NotQuests]: ProjectKorra found. Enabled ProjectKorra support!
[15:10:34] [Server thread/INFO]: [NotQuests]: getLanguageConfig() is null. Loading language config...
[15:10:34] [Server thread/INFO]: [NotQuests]: Creating or updating default.yml...
[15:10:34] [Server thread/INFO]: [NotQuests]: Loading language config en-US.yml
[15:10:34] [Server thread/INFO]: [NotQuests]: Failed to initialize Brigadier support: Could not initialize Brigadier mappings. Reason: paper brigadier initialization failure (null)
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variables...
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable True
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable False
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable Condition
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable QuestPoints
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable Money
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable ActiveQuests
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable CompletedQuests
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable CompletedObjectiveIDsOfQuest
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable Permission
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable Statistic
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable Name
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable Experience
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable ExperienceLevel
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable CurrentWorld
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable CurrentPositionX
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable CurrentPositionY
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable CurrentPositionZ
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable RandomNumberBetweenRange
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable PlaytimeTicks
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable PlaytimeMinutes
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable PlaytimeHours
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable Glowing
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable Op
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable Climbing
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable InLava
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable InWater
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable Ping
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable WalkSpeed
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable FlySpeed
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable Sleeping
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable Sneaking
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable Sprinting
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable Swimming
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable Health
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable MaxHealth
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable GameMode
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable Flying
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable DayOfWeek
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable CurrentBiome
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable Chance
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable Advancement
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable Inventory
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable EnderChest
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable ContainerInventory
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable Block
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable TagBoolean
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable TagInteger
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable TagFloat
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable TagDouble
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable TagString
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable QuestOnCooldown
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable QuestAbleToAccept
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable QuestReachedMaxAccepts
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable QuestReachedMaxCompletions
[15:10:34] [Server thread/INFO]: [NotQuests]: Registering variable QuestReachedMaxFails
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering variable ItemInInventoryEnchantments
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering variable ReflectionStaticDouble
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering variable ReflectionStaticFloat
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering variable ReflectionStaticInteger
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering variable ReflectionStaticBoolean
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering variable ReflectionStaticString
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering variable PlaceholderAPINumber
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering variable PlaceholderAPIString
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering variable ProjectKorraElements
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering variable ProjectKorraSubElements
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering variable ProjectKorraIsBender
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering objectives...
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering objective Condition
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering objective BreakBlocks
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering objective PlaceBlocks
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering objective PickupItems
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering objective FishItems
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering objective TriggerCommand
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering objective OtherQuest
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering objective KillMobs
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering objective ConsumeItems
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering objective DeliverItems
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering objective TalkToNPC
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering objective EscortNPC
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering objective CraftItems
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering objective Enchant
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering objective KillEliteMobs
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering objective ReachLocation
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering objective BreedMobs
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering objective SlimefunResearch
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering objective RunCommand
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering objective Interact
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering objective Jump
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering objective Sneak
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering objective SmeltItems
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering objective OpenBuriedTreasure
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering objective ShearSheep
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering objective Objective
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering objective NumberVariable
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering objective TownyReachResidentCount
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering objective TownyNationReachTownCount
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering objective JobsRebornReachJobLevel
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering objective ProjectKorraUseAbility
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering conditions...
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering condition CompletedObjective
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering condition WorldTime
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering condition Date
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering condition Number
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering number condition: PlaytimeTicks
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering number condition: CurrentPositionX
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering number condition: CurrentPositionY
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering number condition: CurrentPositionZ
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering number condition: MaxHealth
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering number condition: TagDouble
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering number condition: RandomNumberBetweenRange
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering number condition: Experience
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering number condition: Ping
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering number condition: PlaytimeHours
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering number condition: FlySpeed
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering number condition: ReflectionStaticFloat
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering number condition: WalkSpeed
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering number condition: Money
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering number condition: Statistic
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering number condition: PlaytimeMinutes
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering number condition: ReflectionStaticInteger
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering number condition: ReflectionStaticDouble
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering number condition: Health
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering number condition: ExperienceLevel
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering number condition: TagInteger
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering number condition: TagFloat
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering number condition: PlaceholderAPINumber
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering number condition: QuestPoints
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering condition String
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering string condition: TagString
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering string condition: ReflectionStaticString
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering string condition: Name
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering string condition: GameMode
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering string condition: Block
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering string condition: PlaceholderAPIString
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering string condition: CurrentWorld
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering string condition: DayOfWeek
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering string condition: CurrentBiome
[15:10:35] [Server thread/INFO]: [NotQuests]: Registering condition Boolean
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Op
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: InWater
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: QuestOnCooldown
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: InLava
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: True
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: False
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: ProjectKorraIsBender
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: QuestReachedMaxCompletions
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Permission
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Swimming
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: ReflectionStaticBoolean
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Flying
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Sneaking
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Sprinting
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Climbing
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: QuestAbleToAccept
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Condition
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: QuestReachedMaxAccepts
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Glowing
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: QuestReachedMaxFails
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Chance
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Sleeping
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: TagBoolean
[15:10:35] [Server thread/INFO]: [NotQuests]:   Registering boolean condition: Advancement
[15:10:36] [Server thread/INFO]: [NotQuests]: Registering condition List
[15:10:36] [Server thread/INFO]: [NotQuests]:   Registering list condition: ItemInInventoryEnchantments
[15:10:36] [Server thread/INFO]: [NotQuests]:   Registering list condition: CompletedObjectiveIDsOfQuest
[15:10:36] [Server thread/INFO]: [NotQuests]:   Registering list condition: ActiveQuests
[15:10:36] [Server thread/INFO]: [NotQuests]:   Registering list condition: CompletedQuests
[15:10:36] [Server thread/INFO]: [NotQuests]:   Registering list condition: ProjectKorraElements
[15:10:36] [Server thread/INFO]: [NotQuests]:   Registering list condition: ProjectKorraSubElements
[15:10:36] [Server thread/INFO]: [NotQuests]: Registering condition ItemStackList
[15:10:36] [Server thread/INFO]: [NotQuests]:   Registering ItemStackList condition: ContainerInventory
[15:10:36] [Server thread/INFO]: [NotQuests]:   Registering ItemStackList condition: Inventory
[15:10:36] [Server thread/INFO]: [NotQuests]:   Registering ItemStackList condition: EnderChest
[15:10:36] [Server thread/INFO]: [NotQuests]: Registering actions...
[15:10:36] [Server thread/INFO]: [NotQuests]: Registering action Action
[15:10:36] [Server thread/INFO]: [NotQuests]: Registering action GiveQuest
[15:10:36] [Server thread/INFO]: [NotQuests]: Registering action CompleteQuest
[15:10:36] [Server thread/INFO]: [NotQuests]: Registering action FailQuest
[15:10:36] [Server thread/INFO]: [NotQuests]: Registering action TriggerCommand
[15:10:36] [Server thread/INFO]: [NotQuests]: Registering action StartConversation
[15:10:36] [Server thread/INFO]: [NotQuests]: Registering action ConsoleCommand
[15:10:36] [Server thread/INFO]: [NotQuests]: Registering action PlayerCommand
[15:10:36] [Server thread/INFO]: [NotQuests]: Registering action Chat
[15:10:36] [Server thread/INFO]: [NotQuests]: Registering action GiveItem
[15:10:36] [Server thread/INFO]: [NotQuests]: Registering action SpawnMob
[15:10:36] [Server thread/INFO]: [NotQuests]: Registering action SendMessage
[15:10:36] [Server thread/INFO]: [NotQuests]: Registering action BroadcastMessage
[15:10:36] [Server thread/INFO]: [NotQuests]: Registering action PlaySound
[15:10:36] [Server thread/INFO]: [NotQuests]: Registering action Number
[15:10:36] [Server thread/INFO]: [NotQuests]:   Registering number action: PlaytimeTicks
[15:10:36] [Server thread/INFO]: [NotQuests]:   Registering number action: CurrentPositionX
[15:10:36] [Server thread/INFO]: [NotQuests]:   Registering number action: CurrentPositionY
[15:10:36] [Server thread/INFO]: [NotQuests]:   Registering number action: CurrentPositionZ
[15:10:36] [Server thread/INFO]: [NotQuests]:   Registering number action: MaxHealth
[15:10:36] [Server thread/INFO]: [NotQuests]:   Registering number action: TagDouble
[15:10:36] [Server thread/INFO]: [NotQuests]:   Registering number action: Experience
[15:10:36] [Server thread/INFO]: [NotQuests]:   Registering number action: PlaytimeHours
[15:10:36] [Server thread/INFO]: [NotQuests]:   Registering number action: FlySpeed
[15:10:36] [Server thread/INFO]: [NotQuests]:   Registering number action: ReflectionStaticFloat
[15:10:36] [Server thread/INFO]: [NotQuests]:   Registering number action: WalkSpeed
[15:10:36] [Server thread/INFO]: [NotQuests]:   Registering number action: Money
[15:10:36] [Server thread/INFO]: [NotQuests]:   Registering number action: Statistic
[15:10:36] [Server thread/INFO]: [NotQuests]:   Registering number action: PlaytimeMinutes
[15:10:36] [Server thread/INFO]: [NotQuests]:   Registering number action: ReflectionStaticInteger
[15:10:36] [Server thread/INFO]: [NotQuests]:   Registering number action: ReflectionStaticDouble
[15:10:36] [Server thread/INFO]: [NotQuests]:   Registering number action: Health
[15:10:36] [Server thread/INFO]: [NotQuests]:   Registering number action: ExperienceLevel
[15:10:36] [Server thread/INFO]: [NotQuests]:   Registering number action: TagInteger
[15:10:36] [Server thread/INFO]: [NotQuests]:   Registering number action: TagFloat
[15:10:36] [Server thread/INFO]: [NotQuests]:   Registering number action: QuestPoints
[15:10:37] [Server thread/INFO]: [NotQuests]: Registering action String
[15:10:37] [Server thread/INFO]: [NotQuests]:   Registering string action: TagString
[15:10:37] [Server thread/INFO]: [NotQuests]:   Registering string action: ReflectionStaticString
[15:10:37] [Server thread/INFO]: [NotQuests]:   Registering string action: Name
[15:10:37] [Server thread/INFO]: [NotQuests]:   Registering string action: GameMode
[15:10:37] [Server thread/INFO]: [NotQuests]:   Registering string action: Block
[15:10:37] [Server thread/INFO]: [NotQuests]:   Registering string action: CurrentWorld
[15:10:37] [Server thread/INFO]: [NotQuests]: Registering action Boolean
[15:10:37] [Server thread/INFO]: [NotQuests]:   Registering boolean action: Op
[15:10:37] [Server thread/INFO]: [NotQuests]:   Registering boolean action: Permission
[15:10:37] [Server thread/INFO]: [NotQuests]:   Registering boolean action: Swimming
[15:10:37] [Server thread/INFO]: [NotQuests]:   Registering boolean action: ReflectionStaticBoolean
[15:10:37] [Server thread/INFO]: [NotQuests]:   Registering boolean action: Flying
[15:10:37] [Server thread/INFO]: [NotQuests]:   Registering boolean action: Sneaking
[15:10:37] [Server thread/INFO]: [NotQuests]:   Registering boolean action: Sprinting
[15:10:37] [Server thread/INFO]: [NotQuests]:   Registering boolean action: Glowing
[15:10:37] [Server thread/INFO]: [NotQuests]:   Registering boolean action: TagBoolean
[15:10:37] [Server thread/INFO]: [NotQuests]:   Registering boolean action: Advancement
[15:10:37] [Server thread/INFO]: [NotQuests]: Registering action List
[15:10:37] [Server thread/INFO]: [NotQuests]:   Registering list action: CompletedObjectiveIDsOfQuest
[15:10:37] [Server thread/INFO]: [NotQuests]:   Registering list action: ActiveQuests
[15:10:37] [Server thread/INFO]: [NotQuests]:   Registering list action: CompletedQuests
[15:10:37] [Server thread/INFO]: [NotQuests]:   Registering list action: ProjectKorraElements
[15:10:37] [Server thread/INFO]: [NotQuests]:   Registering list action: ProjectKorraSubElements
[15:10:37] [Server thread/INFO]: [NotQuests]: Registering action ItemStackList
[15:10:37] [Server thread/INFO]: [NotQuests]:   Registering ItemStackList action: ContainerInventory
[15:10:37] [Server thread/INFO]: [NotQuests]:   Registering ItemStackList action: Inventory
[15:10:37] [Server thread/INFO]: [NotQuests]:   Registering ItemStackList action: EnderChest
[15:10:37] [Server thread/INFO]: [NotQuests]: Registering action Beam
[15:10:37] [Server thread/INFO]: [NotQuests]: Registering triggers...
[15:10:37] [Server thread/INFO]: [NotQuests]: Registering trigger BEGIN
[15:10:37] [Server thread/INFO]: [NotQuests]: Registering trigger COMPLETE
[15:10:37] [Server thread/INFO]: [NotQuests]: Registering trigger DEATH
[15:10:37] [Server thread/INFO]: [NotQuests]: Registering trigger DISCONNECT
[15:10:37] [Server thread/INFO]: [NotQuests]: Registering trigger FAIL
[15:10:37] [Server thread/INFO]: [NotQuests]: Registering trigger NPCDEATH
[15:10:37] [Server thread/INFO]: [NotQuests]: Registering trigger WORLDENTER
[15:10:37] [Server thread/INFO]: [NotQuests]: Registering trigger WORLDLEAVE
[15:10:39] [Server thread/INFO]: [NotQuests]: Registering events for MythicMobs (on time)...
[15:10:39] [Server thread/INFO]: [NotQuests]: Registering events for ProjectKorra (on time)...
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading categories and configurations...
[15:10:39] [Server thread/INFO]: [NotQuests]: Checking folder for categories: NotQuests
[15:10:39] [Server thread/INFO]: [NotQuests]:   Loading real category: default
[15:10:39] [Server thread/INFO]: [NotQuests]: Checking folder for categories: default
[15:10:39] [Server thread/INFO]: [NotQuests]: Scheduled Actions Data load for following categories: [default]...
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading actions for category default
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action givemerchantquest
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action openmerchant
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action openiroh
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action irohtea2
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action irohtea
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action openkoh
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action openshoy
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action openku
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action openduruk
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action givekurukquest
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action opengyatso
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action openpathik
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action Bloodbender
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action Hama
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action Hamaquest
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action Spawnhelper
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action giverantoqquest
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action tiroq
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action openfong
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action Seashell
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action 125yuan
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action Fullmoon
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action Festival
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action Firebender
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action Chibender
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action openfire
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action firebender
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action waterbender
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action airbender
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action earthbender
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action chiblocker
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action doom
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action whitewolf
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading action openfisherman
[15:10:39] [Server thread/INFO]: [NotQuests]: Citizens Dependency not found! Congratulations! In NotQuests, you can use armor stands instead of Citizens NPCs
[15:10:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: notquests [5.18.2]
[15:10:39] [Server thread/INFO]: [NotQuests]: Loading conversations...
[15:10:39] [Server thread/INFO]: [NotQuests]: Reading conversation file Fong.yml...
[15:10:39] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=575, uuidID=null}, but Citizens is not active/loaded.
[15:10:39] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=575, uuidID=null}, but Citizens is not active/loaded.
[15:10:39] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation Fong. This NPC has been skipped.
[15:10:39] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation Fong. This NPC has been skipped.
[15:10:39] [Server thread/INFO]: [NotQuests]: Reading conversation file boatman.yml...
[15:10:39] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=579, uuidID=null}, but Citizens is not active/loaded.
[15:10:39] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=579, uuidID=null}, but Citizens is not active/loaded.
[15:10:39] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation boatman. This NPC has been skipped.
[15:10:39] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation boatman. This NPC has been skipped.
[15:10:39] [Server thread/INFO]: [NotQuests]: Reading conversation file festival.yml...
[15:10:39] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=581, uuidID=null}, but Citizens is not active/loaded.
[15:10:39] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=581, uuidID=null}, but Citizens is not active/loaded.
[15:10:39] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation festival. This NPC has been skipped.
[15:10:39] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation festival. This NPC has been skipped.
[15:10:39] [Server thread/INFO]: [NotQuests]: Reading conversation file seashell.yml...
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=580, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=580, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation seashell. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation seashell. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Reading conversation file shoy.yml...
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=542, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=542, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation shoy. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation shoy. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Reading conversation file Gyatso.yml...
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=549, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=549, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation Gyatso. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation Gyatso. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Reading conversation file Ku.yml...
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=544, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=544, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation Ku. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation Ku. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Reading conversation file wolf.yml...
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=699, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=701, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=699, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=701, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation wolf. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation wolf. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation wolf. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation wolf. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Reading conversation file Kohlector.yml...
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=541, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=541, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation Kohlector. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation Kohlector. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Reading conversation file chi.yml...
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=5, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=5, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=5, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation chi. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation chi. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation chi. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Reading conversation file Hama.yml...
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=456, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=456, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation Hama. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation Hama. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Reading conversation file fire.yml...
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=1, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=1, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation fire. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation fire. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Reading conversation file Kuruk.yml...
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=548, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=548, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation Kuruk. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation Kuruk. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Reading conversation file Tiroq.yml...
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=18, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=18, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation Tiroq. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation Tiroq. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Reading conversation file water.yml...
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=3, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=3, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=3, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=3, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation water. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation water. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation water. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation water. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Reading conversation file Merchant.yml...
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=535, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=535, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation Merchant. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation Merchant. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Reading conversation file Pathik.yml...
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=550, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=550, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation Pathik. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation Pathik. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Reading conversation file irohfirenation.yml...
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=539, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=539, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation irohfirenation. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation irohfirenation. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Reading conversation file Rantoq.yml...
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=175, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=475, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=175, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=475, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation Rantoq. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation Rantoq. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation Rantoq. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation Rantoq. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Reading conversation file whitewolf.yml...
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=704, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=704, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation whitewolf. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation whitewolf. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Reading conversation file earth.yml...
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=2, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=2, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation earth. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation earth. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Reading conversation file flake.yml...
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=637, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=637, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation flake. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation flake. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Reading conversation file fisherman.yml...
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=709, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=709, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation fisherman. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation fisherman. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Reading conversation file air.yml...
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=4, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=4, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation air. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation air. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Reading conversation file Duruk.yml...
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=547, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=547, uuidID=null}, but Citizens is not active/loaded.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation Duruk. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Tried to add a null NQNPC to the conversation Duruk. This NPC has been skipped.
[15:10:40] [Server thread/INFO]: [NotQuests]: Scheduled Tags Data load for following categories: [default]
[15:10:40] [Server thread/INFO]: [NotQuests]:   Loading tags for category default
[15:10:40] [Server thread/INFO]: [NotQuests]: Scheduled Items Data load for following categories: [default]
[15:10:40] [Server thread/INFO]: [NotQuests]:   Loading Items for category default
[15:10:40] [Server thread/INFO]: [NotQuests]: Initial loading has completed!
[15:10:40] [Server thread/INFO]: [Multiverse-Portals] Enabling Multiverse-Portals v4.2.3
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: Avatarworld (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal Avatarworld has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'Avatarworld' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: Avatarworld-Spawn (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal Avatarworld-Spawn has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'Avatarworld-Spawn' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: SouthSpirit (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal SouthSpirit has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'SouthSpirit' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: NorthWorld (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal NorthWorld has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'NorthWorld' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: Halloweenworld (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal Halloweenworld has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'Halloweenworld' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: wittehuisspirit (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal wittehuisspirit has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'wittehuisspirit' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: fireout (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal fireout has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'fireout' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: kohrealm (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal kohrealm has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'kohrealm' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: tokoh (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal tokoh has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'tokoh' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: ToChristmas (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal ToChristmas has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'ToChristmas' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: halloweencaveinside (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal halloweencaveinside has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'halloweencaveinside' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: caveoutside (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal caveoutside has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'caveoutside' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: Basingdoorin (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal Basingdoorin has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'Basingdoorin' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: basingdoorout (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal basingdoorout has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'basingdoorout' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: Arenain (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal Arenain has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'Arenain' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: arenaout (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal arenaout has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'arenaout' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: B9Belevdown (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal B9Belevdown has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'B9Belevdown' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: B9Belevup (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal B9Belevup has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'B9Belevup' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: toprobending (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal toprobending has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'toprobending' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: probending (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal probending has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'probending' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: Cinterior (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal Cinterior has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'Cinterior' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: Coutside (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal Coutside has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'Coutside' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: sandcamp (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal sandcamp has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'sandcamp' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: Misty (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal Misty has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'Misty' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: boilingup (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal boilingup has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'boilingup' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: boilingback (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal boilingback has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'boilingback' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: boiling (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal boiling has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'boiling' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: midtoboiling (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal midtoboiling has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'midtoboiling' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: Statues (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal Statues has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'Statues' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: Tostatues (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal Tostatues has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'Tostatues' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: Rokuup (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal Rokuup has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'Rokuup' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: rokudown (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal rokudown has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'rokudown' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: towulong (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal towulong has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'towulong' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: wulong (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal wulong has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'wulong' not loaded due to invalid location!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: Kyao (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal Kyao has an invalid LOCATION!
[15:10:40] [Server thread/WARN]: [Multiverse-Portals] Portal 'Kyao' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: tokyao (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal tokyao has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'tokyao' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: Shipkyao (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal Shipkyao has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'Shipkyao' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: kytowul (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal kytowul has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'kytowul' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: Southportal (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal Southportal has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'Southportal' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: NAtoNW (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal NAtoNW has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'NAtoNW' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: NWtoNA (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal NWtoNA has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'NWtoNA' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: Palacetowater (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal Palacetowater has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'Palacetowater' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: Watertopalace (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal Watertopalace has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'Watertopalace' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: iceberg (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal iceberg has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'iceberg' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: toiceberg (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal toiceberg has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'toiceberg' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: laghima (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal laghima has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'laghima' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: NAtolaghima (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal NAtolaghima has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'NAtolaghima' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: basingtofull (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal basingtofull has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'basingtofull' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: fullmoontobasing (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal fullmoontobasing has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'fullmoontobasing' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: door1 (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal door1 has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'door1' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: door11 (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal door11 has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'door11' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: door2 (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal door2 has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'door2' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: door22 (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal door22 has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'door22' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: door3 (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal door3 has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'door3' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: door33 (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal door33 has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'door33' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: tolowerba (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal tolowerba has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'tolowerba' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: basingback (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal basingback has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'basingback' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: moonbay (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal moonbay has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'moonbay' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: firetomoon (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal firetomoon has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'firetomoon' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: laogai (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal laogai has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'laogai' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: basinglao (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal basinglao has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'basinglao' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: toomadungeon (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal toomadungeon has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'toomadungeon' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: appabarn (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal appabarn has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'appabarn' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: appamoon (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal appamoon has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'appamoon' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: toprison (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal toprison has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'toprison' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: fromprison (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal fromprison has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'fromprison' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: firearena (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal firearena has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'firearena' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: spiritarenahub (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal spiritarenahub has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'spiritarenahub' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: eastair (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal eastair has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'eastair' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: SWtoEA (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal SWtoEA has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'SWtoEA' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: NWtokoh (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal NWtokoh has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'NWtokoh' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: kyaotospirit (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal kyaotospirit has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'kyaotospirit' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: sandroomprison (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal sandroomprison has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'sandroomprison' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: sandprison (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal sandprison has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'sandprison' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: Newroku (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal Newroku has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'Newroku' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: SenlinRoku (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal SenlinRoku has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'SenlinRoku' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: Bone (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal Bone has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'Bone' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: Boneup (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal Boneup has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'Boneup' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: topirate (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal topirate has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'topirate' not loaded due to invalid location!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: pirate (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal pirate has an invalid LOCATION!
[15:10:41] [Server thread/WARN]: [Multiverse-Portals] Portal 'pirate' not loaded due to invalid location!
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: kohsugar (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Portal kohsugar has an invalid LOCATION!
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Portal 'kohsugar' not loaded due to invalid location!
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: senlinsugar (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Portal senlinsugar has an invalid LOCATION!
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Portal 'senlinsugar' not loaded due to invalid location!
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: halloween (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Portal halloween has an invalid LOCATION!
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Portal 'halloween' not loaded due to invalid location!
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: halloweenworld (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Portal halloweenworld has an invalid LOCATION!
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Portal 'halloweenworld' not loaded due to invalid location!
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: maze (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Portal maze has an invalid LOCATION!
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Portal 'maze' not loaded due to invalid location!
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: cave (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Portal cave has an invalid LOCATION!
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Portal 'cave' not loaded due to invalid location!
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: b9bbij (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Portal b9bbij has an invalid LOCATION!
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Portal 'b9bbij' not loaded due to invalid location!
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: b9bbij2 (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Portal b9bbij2 has an invalid LOCATION!
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Portal 'b9bbij2' not loaded due to invalid location!
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: sunwarrior (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Portal sunwarrior has an invalid LOCATION!
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Portal 'sunwarrior' not loaded due to invalid location!
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: tosunwarrior (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Portal tosunwarrior has an invalid LOCATION!
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Portal 'tosunwarrior' not loaded due to invalid location!
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: makapu (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Portal makapu has an invalid LOCATION!
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Portal 'makapu' not loaded due to invalid location!
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: tomakapu (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Portal tomakapu has an invalid LOCATION!
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Portal 'tomakapu' not loaded due to invalid location!
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: firepalacetooutside (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Portal firepalacetooutside has an invalid LOCATION!
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Portal 'firepalacetooutside' not loaded due to invalid location!
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Failed Parsing World for: outsidetofirepalace (World Error, World did not exist or was not imported into Multiverse-Core!)
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Portal outsidetofirepalace has an invalid LOCATION!
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Portal 'outsidetofirepalace' not loaded due to invalid location!
[15:10:42] [Server thread/INFO]: [Multiverse-Portals] 120 - Portals(s) loaded
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Portal Southspiritworld has an invalid DESTINATION!
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Portal whitetocave has an invalid DESTINATION!
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Portal wolf has an invalid DESTINATION!
[15:10:42] [Server thread/WARN]: [Multiverse-Portals] Portal Lobby-Survival has an invalid DESTINATION!
[15:10:42] [Server thread/INFO]: [Multiverse-Portals] Found FastAsyncWorldEdit. Using it for selections.
[15:10:42] [Server thread/INFO]: [Multiverse-Portals 4.2.3]  Enabled - By Rigby and fernferret
[15:10:42] [Server thread/INFO]: [JedCore] Enabling JedCore v2.13.2-PK1.11.1
[15:10:42] [Server thread/INFO]: [JedCore] Initialized Metrics.
[15:10:42] [Server thread/INFO]: [NoteBlockAPI] Enabling NoteBlockAPI v1.6.2
[15:10:42] [Server thread/INFO]: [Typewriter] Enabling Typewriter v0.5.0-beta-85
[15:10:43] [Server thread/ERROR]: Error occurred while enabling Typewriter v0.5.0-beta-85 (Is it up to date?)
java.lang.ExceptionInInitializerError: null
    at typewriter (1).jar/lirand.api.dsl.command.implementation.dispatcher.Dispatcher.<clinit>(Dispatcher.kt:99) ~[typewriter (1).jar:?]
    at typewriter (1).jar/me.gabber235.typewriter.TypewriterCommandKt.typeWriterCommand(TypewriterCommand.kt:468) ~[typewriter (1).jar:?]
    at typewriter (1).jar/me.gabber235.typewriter.Typewriter.onEnableAsync(Typewriter.kt:98) ~[typewriter (1).jar:?]
    at typewriter (1).jar/com.github.shynixn.mccoroutine.bukkit.SuspendingJavaPlugin$onEnable$1.invokeSuspend(SuspendingJavaPlugin.kt:38) ~[typewriter (1).jar:?]
    at typewriter (1).jar/kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:33) ~[typewriter (1).jar:?]
    at typewriter (1).jar/kotlinx.coroutines.DispatchedTask.run(DispatchedTask.kt:106) ~[typewriter (1).jar:?]
    at typewriter (1).jar/kotlinx.coroutines.EventLoopImplBase.processNextEvent(EventLoop.common.kt:280) ~[typewriter (1).jar:?]
    at typewriter (1).jar/kotlinx.coroutines.BlockingCoroutine.joinBlocking(Builders.kt:85) ~[typewriter (1).jar:?]
    at typewriter (1).jar/kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(Builders.kt:59) ~[typewriter (1).jar:?]
    at typewriter (1).jar/kotlinx.coroutines.BuildersKt.runBlocking(Unknown Source) ~[typewriter (1).jar:?]
    at typewriter (1).jar/kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(Builders.kt:38) ~[typewriter (1).jar:?]
    at typewriter (1).jar/kotlinx.coroutines.BuildersKt.runBlocking$default(Unknown Source) ~[typewriter (1).jar:?]
    at typewriter (1).jar/com.github.shynixn.mccoroutine.bukkit.SuspendingJavaPlugin.onEnable(SuspendingJavaPlugin.kt:37) ~[typewriter (1).jar:?]
    at typewriter (1).jar/lirand.api.architecture.KotlinPlugin.onEnable(KotlinPlugin.kt:13) ~[typewriter (1).jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at java.base/java.lang.Thread.run(Unknown Source) ~[?:?]
Caused by: java.lang.IndexOutOfBoundsException: Index 3 out of bounds for length 3
    at java.base/jdk.internal.util.Preconditions.outOfBounds(Unknown Source) ~[?:?]
    at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Unknown Source) ~[?:?]
    at java.base/jdk.internal.util.Preconditions.checkIndex(Unknown Source) ~[?:?]
    at java.base/java.util.Objects.checkIndex(Unknown Source) ~[?:?]
    at java.base/java.util.ArrayList.get(Unknown Source) ~[?:?]
    at typewriter (1).jar/lirand.api.extensions.server.ServerExtensionsKt.<clinit>(ServerExtensions.kt:9) ~[typewriter (1).jar:?]
    ... 26 more
[15:10:43] [Server thread/INFO]: [Typewriter] Disabling Typewriter v0.5.0-beta-85
[15:10:43] [Server thread/ERROR]: Could not pass event PluginDisableEvent to Typewriter v0.5.0-beta-85
java.lang.NoClassDefFoundError: Could not initialize class lirand.api.extensions.server.ServerExtensionsKt
    at typewriter (1).jar/lirand.api.dsl.menu.MenuController.onPluginDisableEvent(MenuController.kt:41) ~[typewriter (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor932.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:84) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-123-aebbdc9]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:235) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:114) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:550) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:206) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at java.base/java.lang.Thread.run(Unknown Source) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.IndexOutOfBoundsException: Index 3 out of bounds for length 3 [in thread "Server thread"]
    at java.base/jdk.internal.util.Preconditions.outOfBounds(Unknown Source) ~[?:?]
    at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Unknown Source) ~[?:?]
    at java.base/jdk.internal.util.Preconditions.checkIndex(Unknown Source) ~[?:?]
    at java.base/java.util.Objects.checkIndex(Unknown Source) ~[?:?]
    at java.base/java.util.ArrayList.get(Unknown Source) ~[?:?]
    at typewriter (1).jar/lirand.api.extensions.server.ServerExtensionsKt.<clinit>(ServerExtensions.kt:9) ~[typewriter (1).jar:?]
    at typewriter (1).jar/lirand.api.dsl.command.implementation.dispatcher.Dispatcher.<clinit>(Dispatcher.kt:99) ~[typewriter (1).jar:?]
    at typewriter (1).jar/me.gabber235.typewriter.TypewriterCommandKt.typeWriterCommand(TypewriterCommand.kt:468) ~[typewriter (1).jar:?]
    at typewriter (1).jar/me.gabber235.typewriter.Typewriter.onEnableAsync(Typewriter.kt:98) ~[typewriter (1).jar:?]
    at typewriter (1).jar/com.github.shynixn.mccoroutine.bukkit.SuspendingJavaPlugin$onEnable$1.invokeSuspend(SuspendingJavaPlugin.kt:38) ~[typewriter (1).jar:?]
    at typewriter (1).jar/kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:33) ~[typewriter (1).jar:?]
    at typewriter (1).jar/kotlinx.coroutines.DispatchedTask.run(DispatchedTask.kt:106) ~[typewriter (1).jar:?]
    at typewriter (1).jar/kotlinx.coroutines.EventLoopImplBase.processNextEvent(EventLoop.common.kt:280) ~[typewriter (1).jar:?]
    at typewriter (1).jar/kotlinx.coroutines.BlockingCoroutine.joinBlocking(Builders.kt:85) ~[typewriter (1).jar:?]
    at typewriter (1).jar/kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(Builders.kt:59) ~[typewriter (1).jar:?]
    at typewriter (1).jar/kotlinx.coroutines.BuildersKt.runBlocking(Unknown Source) ~[typewriter (1).jar:?]
    at typewriter (1).jar/kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(Builders.kt:38) ~[typewriter (1).jar:?]
    at typewriter (1).jar/kotlinx.coroutines.BuildersKt.runBlocking$default(Unknown Source) ~[typewriter (1).jar:?]
    at typewriter (1).jar/com.github.shynixn.mccoroutine.bukkit.SuspendingJavaPlugin.onEnable(SuspendingJavaPlugin.kt:37) ~[typewriter (1).jar:?]
    at typewriter (1).jar/lirand.api.architecture.KotlinPlugin.onEnable(KotlinPlugin.kt:13) ~[typewriter (1).jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    ... 10 more
[15:10:43] [Server thread/ERROR]: Error occurred while disabling Typewriter v0.5.0-beta-85
java.lang.NoClassDefFoundError: net/citizensnpcs/api/CitizensAPI
    at me.gabber235.typewriter.citizens.CitizensAdapter.shutdown(CitizensAdapter.kt:38) ~[?:?]
    at typewriter (1).jar/me.gabber235.typewriter.adapters.AdapterLoaderImpl.shutdown(AdapterLoader.kt:141) ~[typewriter (1).jar:?]
    at typewriter (1).jar/me.gabber235.typewriter.Typewriter.onDisableAsync(Typewriter.kt:148) ~[typewriter (1).jar:?]
    at typewriter (1).jar/com.github.shynixn.mccoroutine.bukkit.SuspendingJavaPlugin$onDisable$1.invokeSuspend(SuspendingJavaPlugin.kt:49) ~[typewriter (1).jar:?]
    at typewriter (1).jar/kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:33) ~[typewriter (1).jar:?]
    at typewriter (1).jar/kotlinx.coroutines.DispatchedTask.run(DispatchedTask.kt:106) ~[typewriter (1).jar:?]
    at typewriter (1).jar/kotlinx.coroutines.EventLoopImplBase.processNextEvent(EventLoop.common.kt:280) ~[typewriter (1).jar:?]
    at typewriter (1).jar/kotlinx.coroutines.BlockingCoroutine.joinBlocking(Builders.kt:85) ~[typewriter (1).jar:?]
    at typewriter (1).jar/kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(Builders.kt:59) ~[typewriter (1).jar:?]
    at typewriter (1).jar/kotlinx.coroutines.BuildersKt.runBlocking(Unknown Source) ~[typewriter (1).jar:?]
    at typewriter (1).jar/kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(Builders.kt:38) ~[typewriter (1).jar:?]
    at typewriter (1).jar/kotlinx.coroutines.BuildersKt.runBlocking$default(Unknown Source) ~[typewriter (1).jar:?]
    at typewriter (1).jar/com.github.shynixn.mccoroutine.bukkit.SuspendingJavaPlugin.onDisable(SuspendingJavaPlugin.kt:48) ~[typewriter (1).jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:291) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:237) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:114) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:550) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:206) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at java.base/java.lang.Thread.run(Unknown Source) ~[?:?]
Caused by: java.lang.ClassNotFoundException: net.citizensnpcs.api.CitizensAPI
    at java.base/java.net.URLClassLoader.findClass(Unknown Source) ~[?:?]
    at java.base/java.lang.ClassLoader.loadClass(Unknown Source) ~[?:?]
    at java.base/java.lang.ClassLoader.loadClass(Unknown Source) ~[?:?]
    ... 28 more
[15:10:43] [Server thread/INFO]: [Bendinggsmp] Enabling Bendinggsmp v1.0
[15:10:43] [Server thread/INFO]: [Bendinggsmp] [STDOUT] SpiritBending has begun!
[15:10:43] [Server thread/WARN]: Nag author(s): '[]' of 'Bendinggsmp v1.0' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[15:10:43] [Server thread/INFO]: [MCPets] Enabling MCPets v4.1.2
[15:10:43] [Server thread/INFO]: [MCPets] : Language file reloaded.
[15:10:43] [Server thread/INFO]: [MCPets] : Blacklist file reloaded.
[15:10:43] [Server thread/INFO]: Loading pets... 
[15:10:43] [Server thread/INFO]:   - Pink dragonfly bunny loaded succesfully.
[15:10:43] [Server thread/INFO]:   - Nocsy_Cat-Halloween loaded succesfully.
[15:10:43] [Server thread/INFO]:   - duck loaded succesfully.
[15:10:43] [Server thread/INFO]:   - Tuiandla loaded succesfully.
[15:10:43] [Server thread/INFO]:   - Celestial_Thunderlord_Mount loaded succesfully.
[15:10:43] [Server thread/INFO]:   - Skywhisper_Wyvern_Mount loaded succesfully.
[15:10:43] [Server thread/INFO]:   - Terravore_Drake_Mount loaded succesfully.
[15:10:43] [Server thread/INFO]:   - Flarewing_Dragon_Mount loaded succesfully.
[15:10:43] [Server thread/INFO]:   - Jellyfish_Blue loaded succesfully.
[15:10:43] [Server thread/INFO]:   - Mob_Throne_Zombie loaded succesfully.
[15:10:43] [Server thread/INFO]:   - Horncrier_Forest loaded succesfully.
[15:10:43] [Server thread/INFO]:   - Ogres_Prisoner_Mossy loaded succesfully.
[15:10:43] [Server thread/INFO]:   - Talonstrider_Desert loaded succesfully.
[15:10:43] [Server thread/INFO]:   - Nocsy_Werewolf loaded succesfully.
[15:10:43] [Server thread/INFO]:   - lemur loaded succesfully.
[15:10:43] [Server thread/INFO]:   - penguin loaded succesfully.
[15:10:43] [Server thread/INFO]:   - vs_chieftain loaded succesfully.
[15:10:43] [Server thread/INFO]:   - Green dragonfly bunny loaded succesfully.
[15:10:43] [Server thread/INFO]:   - Cyan dragonfly bunny loaded succesfully.
[15:10:43] [Server thread/INFO]:   - koh loaded succesfully.
[15:10:43] [Server thread/INFO]:   - babybison loaded succesfully.
[15:10:43] [Server thread/INFO]:   - Nellabel_lv1 loaded succesfully.
[15:10:43] [Server thread/INFO]:   - Nellabel_lv2 loaded succesfully.
[15:10:43] [Server thread/INFO]:   - Nocsy_Corgi loaded succesfully.
[15:10:43] [Server thread/INFO]:   - Orange dragonfly bunny loaded succesfully.
[15:10:43] [Server thread/INFO]:   - crab loaded succesfully.
[15:10:43] [Server thread/INFO]:   - ringedlemur loaded succesfully.
[15:10:43] [Server thread/INFO]:   - lightspirit loaded succesfully.
[15:10:43] [Server thread/INFO]:   - appa loaded succesfully.
[15:10:43] [Server thread/INFO]:   - Tui loaded succesfully.
[15:10:43] [Server thread/INFO]:   - TofNocsy_Capybara loaded succesfully.
[15:10:43] [Server thread/INFO]:   - Blue dragonfly bunny loaded succesfully.
[15:10:43] [Server thread/INFO]:   - Nocsy_Icebear loaded succesfully.
[15:10:43] [Server thread/INFO]:   - La loaded succesfully.
[15:10:43] [Server thread/INFO]:   - Otter2 loaded succesfully.
[15:10:43] [Server thread/INFO]:   - bluelightspirit loaded succesfully.
[15:10:43] [Server thread/INFO]:   - fireferret loaded succesfully.
[15:10:43] [Server thread/INFO]:   - darkspirit loaded succesfully.
[15:10:43] [Server thread/INFO]:   - Techno loaded succesfully.
[15:10:43] [Server thread/INFO]:   - SpellBook loaded succesfully.
[15:10:43] [Server thread/INFO]:   - WitchBroomDarkOak loaded succesfully.
[15:10:43] [Server thread/INFO]:   - crow_pet loaded succesfully.
[15:10:43] [Server thread/INFO]:   - WitchBroomBirch loaded succesfully.
[15:10:43] [Server thread/INFO]: [MCPets] : 43 pets registered successfully !
[15:10:43] [Server thread/INFO]: [MCPets] : 0 categories registered successfully !
[15:10:43] [Server thread/ERROR]: [MCPets] Could not reach SQL database. Please configure your database parameters.
[15:10:43] [Server thread/INFO]: [MCPets] [Database] Can't initialize MySQL.
[15:10:43] [Server thread/INFO]: [MCPets] [Database] Will be using YAML support instead (no worry it's not a bug).
[15:10:43] [Server thread/INFO]: -=-=-=-= MCPets loaded =-=-=-=-
[15:10:43] [Server thread/INFO]:       Plugin made by Nocsy
[15:10:43] [Server thread/INFO]: -=-=-=-= -=-=-=-=-=-=- =-=-=-=-
[15:10:43] [Server thread/INFO]: -=- Launching Flags -=-
[15:10:43] [Server thread/INFO]: [MCPets] : Starting flag mcpets-dismount.
[15:10:43] [Server thread/INFO]: [MCPets] : Starting flag mcpets-despawn.
[15:10:43] [Server thread/INFO]: [MCPets] : Starting flag mcpets-dismount-flying.
[15:10:43] [Server thread/INFO]: 3 flags launched.
[15:10:43] [Server thread/INFO]: [LootChest] Enabling LootChest v2.4.0
[15:10:43] [Server thread/INFO]: [LootChest] Server version: 1.21
[15:10:43] [Server thread/INFO]: [LootChest] Loading config files...
[15:10:43] [Server thread/INFO]: [LootChest] Checking for update...
[15:10:43] [Server thread/INFO]: [LootChest] Starting particles...
[15:10:43] [Server thread/ERROR]: Error occurred while enabling LootChest v2.4.0 (Is it up to date?)
java.lang.ExceptionInInitializerError: null
    at LootChest.jar/fr.black_eyes.lootchest.particles.ParticleTypes.<clinit>(ParticleTypes.java:18) ~[LootChest.jar:?]
    at LootChest.jar/fr.black_eyes.lootchest.particles.ParticleType.of(ParticleType.java:16) ~[LootChest.jar:?]
    at LootChest.jar/fr.black_eyes.lootchest.particles.Particle.<init>(Particle.java:171) ~[LootChest.jar:?]
    at LootChest.jar/fr.black_eyes.lootchest.particles.Particle.<clinit>(Particle.java:30) ~[LootChest.jar:?]
    at LootChest.jar/fr.black_eyes.lootchest.Main.initParticles(Main.java:502) ~[LootChest.jar:?]
    at LootChest.jar/fr.black_eyes.lootchest.Main.onEnable(Main.java:204) ~[LootChest.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at java.base/java.lang.Thread.run(Unknown Source) ~[?:?]
Caused by: java.lang.StringIndexOutOfBoundsException: Range [23, 22) out of bounds for length 22
    at java.base/jdk.internal.util.Preconditions$1.apply(Unknown Source) ~[?:?]
    at java.base/jdk.internal.util.Preconditions$1.apply(Unknown Source) ~[?:?]
    at java.base/jdk.internal.util.Preconditions$4.apply(Unknown Source) ~[?:?]
    at java.base/jdk.internal.util.Preconditions$4.apply(Unknown Source) ~[?:?]
    at java.base/jdk.internal.util.Preconditions.outOfBounds(Unknown Source) ~[?:?]
    at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckFromToIndex(Unknown Source) ~[?:?]
    at java.base/jdk.internal.util.Preconditions.checkFromToIndex(Unknown Source) ~[?:?]
    at java.base/java.lang.String.checkBoundsBeginEnd(Unknown Source) ~[?:?]
    at java.base/java.lang.String.substring(Unknown Source) ~[?:?]
    at java.base/java.lang.String.substring(Unknown Source) ~[?:?]
    at LootChest.jar/fr.black_eyes.lootchest.particles.FastReflection.<clinit>(FastReflection.java:18) ~[LootChest.jar:?]
    ... 18 more
[15:10:43] [Server thread/INFO]: [LootChest] Disabling LootChest v2.4.0
[15:10:43] [Server thread/INFO]: [LootChest] Backed up data file in case of crash
[15:10:43] [Server thread/INFO]: [HackathonPack] Enabling HackathonPack v1.0.1
[15:10:43] [Server thread/INFO]: [HackathonPack] [HackathonPack] Enabling HackathonPack
[15:10:43] [Server thread/INFO]: [HackathonPack] [ACF] Enabled Asynchronous Tab Completion Support!
[15:10:44] [Server thread/INFO]: [ChatInjector] Enabling ChatInjector v1.0.0*
[15:10:44] [Server thread/INFO]: [Spirits] Enabling Spirits v1.2.3
[15:10:44] [Server thread/INFO]: [Spirits] Init config
[15:10:44] [Server thread/INFO]: [Spirits] Init abilities
[15:10:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: Spirits [1.2.3]
[15:10:44] [Server thread/INFO]: [Spirits] Successfully enabled Spirits.
[15:10:44] [Server thread/INFO]: [SpellBooks] Enabling SpellBooks v0.8.4
[15:10:44] [Server thread/INFO]: [HorseTpWithMe] Enabling HorseTpWithMe v11.1.0
[15:10:44] [Server thread/INFO]: 
[15:10:44] [Server thread/INFO]: [ FAIL ] Server is Spigot or Spigot Fork.
[15:10:44] [Server thread/INFO]: [ PASS ] 1.19.3+ Show/Hide API detected.
[15:10:44] [Server thread/INFO]: 
[15:10:44] [Server thread/INFO]: Server is unsupported, HorseTpWithMe will be disabled.
[15:10:44] [Server thread/INFO]: [HorseTpWithMe] Disabling HorseTpWithMe v11.1.0
[15:10:44] [Server thread/INFO]: 
[15:10:44] [Server thread/INFO]: [TAB] Enabling TAB v4.1.9
[15:10:44] [Server thread/INFO]: [TAB] Loaded NMS hook in 88ms
[15:10:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [4.1.9]
[15:10:45] [Server thread/INFO]: [TAB] [WARN] anti-override for scoreboard-teams is disabled in config. This is usually a mistake. If you notice the feature randomly breaking, enable it back.
[15:10:45] [Server thread/INFO]: [TAB] [WARN] ---------------------------------------------------------------------
[15:10:45] [Server thread/INFO]: [TAB] [WARN] You have unlimited nametag mode feature enabled.
[15:10:45] [Server thread/INFO]: [TAB] [WARN] This feature is scheduled for removal in a future TAB release.
[15:10:45] [Server thread/INFO]: [TAB] [WARN] Please considering the alternative solutions available to achieve your desired result.
[15:10:45] [Server thread/INFO]: [TAB] [WARN] No bug reports with this feature will be accepted anymore.
[15:10:45] [Server thread/INFO]: [TAB] [WARN] No support with this feature will be provided anymore.
[15:10:45] [Server thread/INFO]: [TAB] [WARN] See https://gist.github.com/NEZNAMY/f4cabf2fd9251a836b5eb877720dee5c/ for more info.
[15:10:45] [Server thread/INFO]: [TAB] [WARN] ---------------------------------------------------------------------
[15:10:45] [Server thread/INFO]: [TAB] [WARN] Found a total of 1 issues.
[15:10:45] [Server thread/INFO]: [TAB] Enabled in 527ms
[15:10:45] [Server thread/INFO]: [OpenInv] Enabling OpenInv v4.4.3
[15:10:45] [Server thread/WARN]: [OpenInv] Your server version (craftbukkit) is not supported.
[15:10:45] [Server thread/WARN]: [OpenInv] Please download the correct version of OpenInv here: https://github.com/Jikoo/OpenInv/releases
[15:10:45] [Server thread/INFO]: [ForcePack] Enabling ForcePack v1.3.6
[15:10:45] [Server thread/INFO]: [ForcePack] Generated en_gb.yml
[15:10:45] [Server thread/INFO]: [ForcePack] Generated es_es.yml
[15:10:45] [Server thread/INFO]: [ForcePack] Generated zh_cn.yml
[15:10:45] [Server thread/INFO]: [ForcePack] Generated zh_tw.yml
[15:10:49] [Server thread/INFO]: [ForcePack] Performing version size check...
[15:10:49] [Server thread/INFO]: 1.8-1.15 (50 MB): Supported.
[15:10:49] [Server thread/INFO]: 1.16-1.17 (100 MB): Supported.
[15:10:49] [Server thread/INFO]: 1.18+ (250 MB): Supported.
[15:10:49] [Server thread/INFO]: Hash verification complete.
[15:10:49] [Server thread/INFO]: [ForcePack] Generated resource pack (https://download.mc-packs.net/pack/554533aad149f8a428b9cdc181b52f6a29e6af44.zip#554533aad149f8a428b9cdc181b52f6a29e6af44) for version all with id f0305474-e2fc-308c-aa02-22f84f9f2331
[15:10:49] [Server thread/INFO]: [ForcePack] [ForcePack] Enabled!
[15:10:49] [Server thread/INFO]: [AquaticCrates] Enabling AquaticCrates v2.7.4
[15:10:49] [Server thread/INFO]: [AquaticSeriesLib] Currently using MINIMESSAGE message formatting!
[15:10:49] [Server thread/INFO]: [AquaticSeriesLib] Currently using MINIMESSAGE message formatting!
[15:10:50] [Server thread/INFO]: [AquaticCrates] Loading PlaceholderAPI Hook!
[15:10:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aquaticcrates [1.0.0]
[15:10:50] [Server thread/INFO]: [AquaticCrates] Loading Database!
[15:10:50] [Server thread/INFO]: [AquaticCrates] Loading ModelEngine Hook!
[15:10:50] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.21.0-dev+117-c80bef9
[15:10:50] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[15:10:50] [Server thread/INFO]: [Flora] Enabling Flora v1.0.0
[15:10:50] [Server thread/INFO]: [Flora] Successfully enabled [Flora] 1.0.0
[15:10:50] [Server thread/INFO]: [Minepacks] Enabling Minepacks v2.4.31.4-T20240629215752
[15:10:50] [Server thread/INFO]: [Minepacks] Starting Minepacks in standalone mode!
[15:10:50] [Server thread/INFO]: [Minepacks] Config file successfully loaded.
[15:10:50] [Server thread/WARN]: [Minepacks] Paper support is experimental! Use at your own risk!
[15:10:50] [Server thread/WARN]: [Minepacks] No guarantee for data integrity! Backup constantly!
[15:10:50] [Server thread/INFO]: [Minepacks] Language file successfully loaded. Language: english  Author: GeorgH93
[15:10:50] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Starting...
[15:10:50] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Start completed.
[15:10:50] [Server thread/INFO]: [Minepacks] Item name language file successfully loaded. Language: english  Author: GeorgH93
[15:10:50] [Server thread/INFO]: [Minepacks] Loading item translations ...
[15:10:50] [Server thread/INFO]: [Minepacks] Finished loading item translations for 826 items.
[15:10:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: minepacks [2.4.31.4-T20240629215752]
[15:10:50] [Server thread/INFO]: [Minepacks] PlaceholderAPI hook was successfully registered!
[15:10:50] [Server thread/INFO]: [Minepacks]  Minepacks has been enabled!  :) 
[15:10:50] [Server thread/INFO]: [ProBending] Enabling ProBending v1.2.0
[15:10:50] [Server thread/INFO]: [ProBending] ProBending 1.2.0 has been loaded!
[15:10:50] [Server thread/INFO]: [ProBending] Hooked into Multiverse-Core!
[15:10:51] [Server thread/WARN]: [ProBending] World "Avatarr" doesn't exist!
[15:10:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: probending [1.2.0]
[15:10:51] [Server thread/WARN]: [ProBending] World "Avatarr" doesn't exist!
[15:10:51] [Server thread/WARN]: [ProBending] World "Avatarr" doesn't exist!
[15:10:51] [Server thread/WARN]: [ProBending] World "Avatarr" doesn't exist!
[15:10:51] [Server thread/WARN]: [ProBending] World "Avatarr" doesn't exist!
[15:10:51] [Server thread/WARN]: [ProBending] World "Avatarr" doesn't exist!
[15:10:51] [Server thread/WARN]: [ProBending] World "Avatarr" doesn't exist!
[15:10:51] [Server thread/WARN]: [ProBending] World "Avatarr" doesn't exist!
[15:10:51] [Server thread/WARN]: [ProBending] World "Avatarr" doesn't exist!
[15:10:51] [Server thread/WARN]: [ProBending] World "Avatarr" doesn't exist!
[15:10:51] [Server thread/WARN]: [ProBending] World "Avatarr" doesn't exist!
[15:10:51] [Server thread/WARN]: [ProBending] World "Avatarr" doesn't exist!
[15:10:51] [Server thread/WARN]: [ProBending] World "Avatarr" doesn't exist!
[15:10:51] [Server thread/WARN]: [ProBending] World "Avatarr" doesn't exist!
[15:10:51] [Server thread/WARN]: [ProBending] World "Avatarr" doesn't exist!
[15:10:51] [Server thread/WARN]: [ProBending] World "Avatarr" doesn't exist!
[15:10:51] [Server thread/WARN]: [ProBending] World "Avatarr" doesn't exist!
[15:10:51] [Server thread/WARN]: [ProBending] World "Avatarr" doesn't exist!
[15:10:51] [Server thread/WARN]: [ProBending] World "Avatarr" doesn't exist!
[15:10:51] [Server thread/WARN]: [ProBending] World "Avatarr" doesn't exist!
[15:10:51] [Server thread/WARN]: [ProBending] World "Avatarr" doesn't exist!
[15:10:51] [Server thread/WARN]: [ProBending] World "Avatarr" doesn't exist!
[15:10:51] [Server thread/WARN]: [ProBending] World "Avatarr" doesn't exist!
[15:10:51] [Server thread/WARN]: [ProBending] ProBending spawn is not set!
[15:10:51] [Server thread/INFO]: [Zephyrus] Enabling Zephyrus v1.0
[15:10:51] [Server thread/INFO]: [Zephyrus] Loading configuration
[15:10:51] [Server thread/INFO]: [Zephyrus] Successfully enabled Zephyrus.
[15:10:51] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.3
[15:10:51] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[15:10:51] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[15:10:51] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[15:10:51] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[15:10:51] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[15:10:51] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[15:10:51] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[15:10:51] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[15:10:51] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[15:10:51] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[15:10:51] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[15:10:51] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[15:10:51] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[15:10:51] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[15:10:51] [Server thread/INFO]: [Hyperion] Enabling Hyperion v1.6.3
[15:10:51] [Server thread/INFO]: [Hyperion] Registered collisions.
[15:10:51] [Server thread/INFO]: [MythicCrucible] Enabling MythicCrucible v2.1.0-SNAPSHOT
[15:10:51] [Server thread/INFO]: [MythicMobs] ------------------------------------------------
[15:10:51] [Server thread/INFO]: [MythicMobs] + Loading MythicCrucible for Bukkit
[15:10:51] [Server thread/INFO]: [MythicMobs] ------------------------------------------------
[15:10:51] [Server thread/INFO]: [MythicMobs] Registering Durability Listener
[15:10:58] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[15:10:58] [Server thread/INFO]: [MythicMobs] MythicCrucible Support has been enabled!
[15:10:58] [Server thread/INFO]: [MythicMobs] MythicCrucible WorldEdit support enabled!
[15:10:58] [Server thread/INFO]: [MythicMobs] Attached traits to items.
[15:10:58] [Server thread/INFO]: [MythicMobs] Loaded 147 items.
[15:10:58] [Server thread/INFO]: [MythicMobs] ✓ MythicCrucible  v2.1.0 has been successfully loaded!
[15:10:58] [Server thread/INFO]: [ItemFrameToggle] Enabling ItemFrameToggle v1.5.4
[15:10:58] [Server thread/INFO]: [LumosComet] Enabling LumosComet v1.0*
[15:10:58] [Server thread/INFO]: [LumosComet]: Plugin is enabled!
[15:10:58] [Server thread/INFO]: [HeadDB] Enabling HeadDB v5.0.0-rc.10
[15:10:58] [Server thread/INFO]: [HeadDB] Loading HeadDB - 5.0.0-rc.10
[15:10:58] [Server thread/INFO]: [HeadDB] Loaded 1 languages!
[15:10:58] [Server thread/INFO]: [HeadDB] Done!
[15:10:58] [Server thread/INFO]: [BendingItems] Enabling BendingItems v1.9.1
[15:10:58] [helper-scheduler-2/WARN]: [HeadDB] There is a new update available for HeadDB on spigot!
[15:10:58] [helper-scheduler-2/WARN]: [HeadDB] Download: https://www.spigotmc.org/resources/84967
[15:10:58] [Server thread/ERROR]: Error occurred while enabling BendingItems v1.9.1 (Is it up to date?)
java.lang.IllegalArgumentException: Damage cannot be negative
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:143) ~[guava-32.1.2-jre.jar:?]
    at org.bukkit.craftbukkit.inventory.CraftMetaItem.setDamage(CraftMetaItem.java:1634) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at BendingItems-1.9.1.jar/me.simplicitee.project.items.item.parser.DurabilityParser.apply(DurabilityParser.java:22) ~[BendingItems-1.9.1.jar:?]
    at BendingItems-1.9.1.jar/me.simplicitee.project.items.item.ItemData.parseAll(ItemData.java:50) ~[BendingItems-1.9.1.jar:?]
    at BendingItems-1.9.1.jar/me.simplicitee.project.items.ItemManager.register(ItemManager.java:232) ~[BendingItems-1.9.1.jar:?]
    at BendingItems-1.9.1.jar/me.simplicitee.project.items.ItemManager.init(ItemManager.java:398) ~[BendingItems-1.9.1.jar:?]
    at BendingItems-1.9.1.jar/me.simplicitee.project.items.ItemsPlugin.onEnable(ItemsPlugin.java:25) ~[BendingItems-1.9.1.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at java.base/java.lang.Thread.run(Unknown Source) ~[?:?]
[15:10:58] [Server thread/INFO]: [BendingItems] Disabling BendingItems v1.9.1
[15:10:58] [Server thread/WARN]: Could not register alias shop because it contains commands that do not exist: shop ores
[15:10:58] [Server thread/WARN]: Could not register alias give because it contains commands that do not exist: mcgive
[15:11:00] [Server thread/INFO]: [spark] Starting background profiler...
[15:11:00] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[15:11:00] [Server thread/INFO]: Done preparing level "Isothermal" (72.895s)
[15:11:00] [Server thread/INFO]: Starting GS4 status listener
[15:11:00] [Server thread/INFO]: Thread Query Listener started
[15:11:00] [Query Listener #1/INFO]: Query running on 0.0.0.0:25565
[15:11:00] [Server thread/INFO]: Running delayed init tasks
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] [Importing models]
[15:11:00] [Craft Scheduler Thread - 5 - ProjectKorra/INFO]: [ProjectKorra] Checking for updates...!
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Loading cache version: R4.0.8
[15:11:00] [Craft Scheduler Thread - 14 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] Checking for updates...
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing La.bbmodel.
[15:11:00] [Craft Scheduler Thread - 14 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] You are running the latest version.
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [rocks.gravili.notquests.paper.shadow.hikari.HikariDataSource] HikariPool-1 - Starting...
[15:11:00] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[15:11:00] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[15:11:00] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.GriefPreventionFeature] Plugin 'GriefPrevention' found. Using it now.
[15:11:00] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'GriefPrevention'
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing Rabbitblue.bbmodel.
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing Rabbitgreen.bbmodel.
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing Rabbitorange.bbmodel.
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing Winged_Lemur2.bbmodel.
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Model contains duplicate bone names bottom_left_leg.
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ancient_altar_desert.bbmodel.
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ancient_altar_hell.bbmodel.
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ancient_altar_magma.bbmodel.
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ancient_altar_mossy.bbmodel.
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ancient_altar_stone.bbmodel.
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ancient_altar_terracotta.bbmodel.
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ancient_altar_void.bbmodel.
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ancient_portal_desert.bbmodel.
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [rocks.gravili.notquests.paper.shadow.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@4934ddf0
[15:11:00] [Craft Scheduler Thread - 8 - Essentials/INFO]: [Essentials] Fetching version information...
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [rocks.gravili.notquests.paper.shadow.hikari.HikariDataSource] HikariPool-1 - Start completed.
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Backing up database...
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone stone_8_bn has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 3.1805547185895103E-15 ]
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone stone_9_bn has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 3.1805547185895103E-15 ]
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ancient_portal_hell.bbmodel.
[15:11:00] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Your sqlite database has been successfully backed up to plugins/NotQuests/backups/database_sqlite-backup-2024-10-19-15-11-00.db
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone stone_8_bn has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 3.1805547185895103E-15 ]
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone stone_9_bn has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 3.1805547185895103E-15 ]
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ancient_portal_magma.bbmodel.
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone stone_8_bn has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 3.1805547185895103E-15 ]
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone stone_9_bn has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 3.1805547185895103E-15 ]
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ancient_portal_mossy.bbmodel.
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Adding 'Profile' column to database tables if it the table exists but the column doesn't exist yet...
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Adding 'Profile' column to database tables if it the table exists but the column doesn't exist yet...
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Adding 'Profile' column to database tables if it the table exists but the column doesn't exist yet...
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Adding 'Profile' column to database tables if it the table exists but the column doesn't exist yet...
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Adding 'Profile' column to database tables if it the table exists but the column doesn't exist yet...
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Adding 'Profile' column to database tables if it the table exists but the column doesn't exist yet...
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Creating database table 'QuestPlayerProfileData' if it doesn't exist yet...
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Creating database table 'QuestPlayerData' if it doesn't exist yet...
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Creating database table 'ActiveQuests' if it doesn't exist yet...
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Creating database table 'FailedQuests' if it doesn't exist yet...
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Creating database table 'CompletedQuests' if it doesn't exist yet...
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Adding 'ProgressNeeded' column to 'ActiveObjectives' if it the table exists but the column doesn't exist yet...
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Creating database table 'ActiveObjectives' if it doesn't exist yet...
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Creating database table 'ActiveTriggers' if it doesn't exist yet...
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Creating database table 'Tags' if it doesn't exist yet...
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Loaded player data
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Scheduled Quest Data load for following categories: [default]
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Loading Quests data from default category...
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]:    Loading Quest Merchant...
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]:    Loading Quest Tiroq...
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=18, uuidID=null}, but Citizens is not active/loaded.
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Some error happened when reading/converting NqNPC (which was null) for DeliverItemsObjective (Objective Holder: Tiroq, config path: quests.Tiroq.objectives.1)
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]:    Loading Quest TheBloodbender...
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]:    Loading Quest Farmer...
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=542, uuidID=null}, but Citizens is not active/loaded.
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Some error happened when reading/converting NqNPC (which was null) for DeliverItemsObjective (Objective Holder: Farmer, config path: quests.Farmer.objectives.1)
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=461, uuidID=null}, but Citizens is not active/loaded.
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Some error happened when reading/converting NqNPC (which was null) for DeliverItemsObjective (Objective Holder: Farmer, config path: quests.Farmer.objectives.2)
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]:    Loading Quest Penguinotter...
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]:    Loading Quest lightspirit...
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=452, uuidID=null}, but Citizens is not active/loaded.
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Some error happened when reading/converting NqNPC (which was null) for DeliverItemsObjective (Objective Holder: lightspirit, config path: quests.lightspirit.objectives.2)
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=488, uuidID=null}, but Citizens is not active/loaded.
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Some error happened when reading/converting NqNPC (which was null) for DeliverItemsObjective (Objective Holder: lightspirit, config path: quests.lightspirit.objectives.4)
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=487, uuidID=null}, but Citizens is not active/loaded.
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Some error happened when reading/converting NqNPC (which was null) for DeliverItemsObjective (Objective Holder: lightspirit, config path: quests.lightspirit.objectives.5)
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]:    Loading Quest Kuruk...
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=548, uuidID=null}, but Citizens is not active/loaded.
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Some error happened when reading/converting NqNPC (which was null) for DeliverItemsObjective (Objective Holder: Kuruk, config path: quests.Kuruk.objectives.3)
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=548, uuidID=null}, but Citizens is not active/loaded.
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Some error happened when reading/converting NqNPC (which was null) for DeliverItemsObjective (Objective Holder: Kuruk, config path: quests.Kuruk.objectives.5)
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=548, uuidID=null}, but Citizens is not active/loaded.
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Some error happened when reading/converting NqNPC (which was null) for DeliverItemsObjective (Objective Holder: Kuruk, config path: quests.Kuruk.objectives.6)
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone stone_8_bn has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 3.1805547185895103E-15 ]
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone stone_9_bn has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 3.1805547185895103E-15 ]
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ancient_portal_stone.bbmodel.
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]:    Loading Quest Hamaquest...
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=456, uuidID=null}, but Citizens is not active/loaded.
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Some error happened when reading/converting NqNPC (which was null) for DeliverItemsObjective (Objective Holder: Hamaquest, config path: quests.Hamaquest.objectives.2)
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]:    Loading Quest Pirate...
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]:    Loading Quest halloween...
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=701, uuidID=null}, but Citizens is not active/loaded.
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Some error happened when reading/converting NqNPC (which was null) for DeliverItemsObjective (Objective Holder: halloween, config path: quests.halloween.objectives.3)
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=702, uuidID=null}, but Citizens is not active/loaded.
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Some error happened when reading/converting NqNPC (which was null) for DeliverItemsObjective (Objective Holder: halloween, config path: quests.halloween.objectives.5)
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=704, uuidID=null}, but Citizens is not active/loaded.
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Some error happened when reading/converting NqNPC (which was null) for DeliverItemsObjective (Objective Holder: halloween, config path: quests.halloween.objectives.7)
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: Loading NPC data...
[15:11:00] [Craft Scheduler Thread - 17 - NotQuests/INFO]: [NotQuests]: NPC data loaded!
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone stone_8_bn has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 3.1805547185895103E-15 ]
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone stone_9_bn has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 3.1805547185895103E-15 ]
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ancient_portal_terracotta.bbmodel.
[15:11:00] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone stone_8_bn has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 3.1805547185895103E-15 ]
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone stone_9_bn has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 3.1805547185895103E-15 ]
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:00] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ancient_portal_void.bbmodel.
[15:11:00] [Server thread/INFO]: [BigDoors] Checking for updates...
[15:11:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrv [1.28.0]
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone stone_8_bn has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 3.1805547185895103E-15 ]
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone stone_9_bn has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 3.1805547185895103E-15 ]
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing appa.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing babybison.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing barrel_bomb.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing bear.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing bear_trap.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing bluelightspirit.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing cactus.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing captain_octo.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing carp_fish.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing cat_fish.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing celestial_thunderlord.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing combat_dummy.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing coppergolem.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing crab.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing crate4.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing crate5.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone bone10 is rotated in multiple axis. Choosing one axis.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone bone10 is rotated in multiple axis. Choosing one axis.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing crate6.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing crate7.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone bone10 is rotated in multiple axis. Choosing one axis.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone bone10 is rotated in multiple axis. Choosing one axis.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing cyandragonbunny.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing darkspirit.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing darkspiritskin.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing death_spike.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing deathbloom.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing duck.bbmodel.
[15:11:01] [Craft Scheduler Thread - 5 - ProjectKorra/INFO]: [ProjectKorra] You are running the latest version of ProjectKorra
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing dungeon_spike.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing dungeon_statue.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing explosive_barrel.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing fireferret.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube head in bone head has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 1.5902773592947552E-15 ]
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube head in bone head has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 1.5902773592947552E-15 ]
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube head in bone head has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 1.5902773592947552E-15 ]
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube head in bone head has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 1.5902773592947552E-15 ]
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube head in bone head has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 1.5902773592947552E-15 ]
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube head in bone head has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 1.5902773592947552E-15 ]
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube head in bone head has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 1.5902773592947552E-15 ]
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube head in bone head has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 1.5902773592947552E-15 ]
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone eft2 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 1.5902773592947552E-15 ]
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone right2 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 1.5902773592947552E-15 ]
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone right has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 1.5902773592947552E-15 ]
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone body has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 1.5902773592947552E-15 ]
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone tai has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 1.5902773592947552E-15 ]
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing flame_trap.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing flarewing_dragon.bbmodel.
[15:11:01] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic:NULL
[15:11:01] [Server thread/WARN]: [MythicMobs] --| Skill: VAATUDOPPLE | File: /data/plugins/MythicMobs/Skills/Vaatu.yml
[15:11:01] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MOBSINRADIUS
[15:11:01] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mobsInRadius{types=DarkDopple;amount=0to1;radius=15}
[15:11:01] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[15:11:01] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[15:11:01] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[15:11:01] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing floating_spellbook_entity.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing four_leaf_clover.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ghost.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ghost_fish.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ghoststar.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing golden_fish.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing halloweencrate.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing hawk.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing health_pack.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing herring_fish.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing horncrier_crimsonwood.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing horncrier_forest.bbmodel.
[15:11:01] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic:NULL
[15:11:01] [Server thread/WARN]: [MythicMobs] --| Mob: kohpet | File: /data/plugins/MythicMobs/Mobs/kohpet.yml
[15:11:01] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic SWAPMODEL
[15:11:01] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: swapmodel{m=kohpet;nid=kohface2;drive=true;ride=true}
[15:11:01] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic:NULL
[15:11:01] [Server thread/WARN]: [MythicMobs] --| Mob: kohpet | File: /data/plugins/MythicMobs/Mobs/kohpet.yml
[15:11:01] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic SWAPMODEL
[15:11:01] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: swapmodel{m=kohface2;nid=kohpet;drive=true;ride=true}
[15:11:01] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic:NULL
[15:11:01] [Server thread/WARN]: [MythicMobs] --| Mob: kohpet | File: /data/plugins/MythicMobs/Mobs/kohpet.yml
[15:11:01] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic SWAPMODEL
[15:11:01] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: swapmodel{m=kohpet;nid=kohface3;drive=true;ride=true}
[15:11:01] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic:NULL
[15:11:01] [Server thread/WARN]: [MythicMobs] --| Mob: kohpet | File: /data/plugins/MythicMobs/Mobs/kohpet.yml
[15:11:01] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic SWAPMODEL
[15:11:01] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: swapmodel{m=kohface3;nid=kohpet;drive=true;ride=true}
[15:11:01] [ForkJoinPool.commonPool-worker-3/INFO]: [BigDoors] No new updates available.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing horncrier_frozen.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing horncrier_sculk.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing hurricane.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing jellyfish_abyss.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing jellyfish_aether.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing jellyfish_blue.bbmodel.
[15:11:01] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic:NULL
[15:11:01] [Server thread/WARN]: [MythicMobs] --| Mob: koh | File: /data/plugins/MythicMobs/Mobs/koh.yml
[15:11:01] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic SWAPMODEL
[15:11:01] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: swapmodel{m=koh;nid=kohface2}
[15:11:01] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic:NULL
[15:11:01] [Server thread/WARN]: [MythicMobs] --| Mob: koh | File: /data/plugins/MythicMobs/Mobs/koh.yml
[15:11:01] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic SWAPMODEL
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: swapmodel{m=kohface2;nid=koh}
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing jellyfish_nether.bbmodel.
[15:11:01] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic:NULL
[15:11:01] [Server thread/WARN]: [MythicMobs] --| Mob: koh | File: /data/plugins/MythicMobs/Mobs/koh.yml
[15:11:01] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic SWAPMODEL
[15:11:01] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: swapmodel{m=koh;nid=kohface3}
[15:11:01] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic:NULL
[15:11:01] [Server thread/WARN]: [MythicMobs] --| Mob: koh | File: /data/plugins/MythicMobs/Mobs/koh.yml
[15:11:01] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic SWAPMODEL
[15:11:01] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: swapmodel{m=kohface3;nid=koh}
[15:11:01] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop Raavatrophy 1 0.10
[15:11:01] [Server thread/WARN]: [MythicMobs] --| File: raavadrops.yml
[15:11:01] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[15:11:01] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop Vaatutrophy 1 0.10
[15:11:01] [Server thread/WARN]: [MythicMobs] --| File: raavadrops.yml
[15:11:01] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[15:11:01] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop Raavatrophy 1 0.10
[15:11:01] [Server thread/WARN]: [MythicMobs] --| File: raavadrops.yml
[15:11:01] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[15:11:01] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop Vaatutrophy 1 0.10
[15:11:01] [Server thread/WARN]: [MythicMobs] --| File: raavadrops.yml
[15:11:01] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing jellyfish_obsidian.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing koh.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing kohface2.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing kohface3.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing kohpet.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing kohslave.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing leave_flyaway.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing legacykoh.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing lightspirit.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing lingcod_carp_fish.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing lion_fish.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing lobster_king.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing maddie.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing maddieboss.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing magical_herb.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing magicvendingmachine.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing md_crow.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing midnight_carp_fish.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing mob_throne_enderman.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing mob_throne_skeleton.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing mob_throne_slime.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing mob_throne_zombie.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing moonbornwerewolf.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing moonbornwerewolf2.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing mullet_fish.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing mushroom_glowing.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing mushroom_red.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing mysterybox.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_baby_icebear.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_baby_werewolf.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_corgi.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_magic_cat.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_otter_v2.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing octo_tentacle.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ogres_prisoner_cyclops.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ogres_prisoner_fiery.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ogres_prisoner_mossy.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ogres_prisoner_undead.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing otterpenguin5.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing perch_fish.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing pike_fish.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing pinkbunny.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing pirate_gunner.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing pirate_swordsman.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing player.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing portal.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing portal_round.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing puffersaur.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing raava.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing rainkoh.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing red_spnapper_fish.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing ringedlemur.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Model contains duplicate bone names bottom_left_leg.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing salmon_void_fish.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing sardine_fish.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing sawblade_trap_long.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing sawblade_trap_short.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing shadow_archer.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing shadow_arrow.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing shadow_blade.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing shadow_dragon.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing shadow_knight.bbmodel.
[15:11:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: str [1.0.0]
[15:11:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: string [1.0.1]
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing shadow_projection.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing shadow_spirit.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing shamrock.bbmodel.
[15:11:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing shark.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing skywhisper_wyvern.bbmodel.
[15:11:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: world [1.2.2]
[15:11:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[15:11:01] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion protocolvanish due to a missing plugin: ProtocolVanish
[15:11:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[15:11:01] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion coinsapi due to an unknown issue.
[15:11:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.7.1]
[15:11:01] [Server thread/INFO]: 7 placeholder hook(s) registered! 2 placeholder hook(s) have an update available.
[15:11:01] [Server thread/INFO]: [NotQuests] Your version 5.18.2 is not the latest version (5.19.0). Click this message to update: https://www.notquests.com/update/
[15:11:01] [Server thread/INFO]: [NotQuests] Your version 5.18.2 is not the latest version (5.19.0). Click this message to update: https://www.notquests.com/update/
[15:11:01] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=461, uuidID=null}, but Citizens is not active/loaded.
[15:11:01] [Server thread/INFO]: [NotQuests]: Error attaching npc with ID 461 to quest Farmer - NPC not found.
[15:11:01] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=482, uuidID=null}, but Citizens is not active/loaded.
[15:11:01] [Server thread/INFO]: [NotQuests]: Error attaching npc with ID 482 to quest Penguinotter - NPC not found.
[15:11:01] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=482, uuidID=null}, but Citizens is not active/loaded.
[15:11:01] [Server thread/INFO]: [NotQuests]: Error attaching npc with ID 0 to quest Penguinotter - NPC not found.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing slime_pit.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing spike_ball_trap.bbmodel.
[15:11:01] [Server thread/INFO]: [NotQuests]: Tried to create a Citizens NQNPC with ID NQNPCID{integerID=487, uuidID=null}, but Citizens is not active/loaded.
[15:11:01] [Server thread/INFO]: [NotQuests]: Error attaching npc with ID 0 to quest lightspirit - NPC not found.
[15:11:01] [Server thread/INFO]: Done (118.365s)! For help, type "help"
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing spike_trap_pop_up.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing spike_trap_still.bbmodel.
[15:11:01] [Server thread/INFO]: Timings Reset
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing sturgeon_fish.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing sunfish_fish.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing swampmonster.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing talonstrider_arctic.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing talonstrider_desert.bbmodel.
[15:11:01] [Server thread/INFO]: [CollisionUtility] Initializing Collisions...
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing talonstrider_ender.bbmodel.
[15:11:01] [Craft Scheduler Thread - 7 - Vault/INFO]: [Vault] Checking for Updates ... 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing talonstrider_sculk.bbmodel.
[15:11:01] [Server thread/INFO]: [CollisionUtility] Finished reading all collisions.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing techno.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing terravore_drake.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing thorns.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing toffy_capybara.bbmodel.
[15:11:01] [Craft Scheduler Thread - 7 - Vault/INFO]: [Vault] No new version available
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing toffy_toy_bone.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing toffy_yarn.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing toffynocsy_owl_lv1.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing toffynocsy_owl_lv2.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing toffynocsy_owl_ninjastar.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing tui.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing tuila.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Eye height is below 0. Entity might suffocate.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing tuna_fish.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing turtleduck.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vaatu.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vendingmachine.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_air_pulse.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_dragon_totem.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_dash_1.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_dash_10.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_dash_11.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_dash_12.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_dash_13.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_dash_14.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_dash_2.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_dash_3.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_dash_4.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_dash_5.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_dash_6.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_dash_7.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_dash_8.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_dash_9.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_ground_impact.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_impact.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_slash_1.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_slash_10.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_slash_11.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_slash_2.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_slash_3.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_slash_4.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_slash_5.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_slash_6.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_slash_7.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_slash_8.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_slash_9.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_spear.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_spin.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_thrust_1.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_thrust_2.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_thrust_3.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_thrust_4.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_thrust_5.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_thrust_6.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_thrust_7.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_thrust_8.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_thrust_9.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_tornado.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_vault_1.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_vault_2.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_vault_3.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_vault_4.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_vault_5.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_vault_6.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_vault_7.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_gale_vault_8.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_ground_crack.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vfx_ground_crack_debris.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vine.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vine_entangle.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vs_chieftain.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing warp_pipe.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing waystone.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing wild_berry.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing wisp.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing witch.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing witch_broom_birch_entity.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing witch_broom_dark_oak_entity.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing wolf.bbmodel.
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:01] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing woodskip_fish.bbmodel.
[15:11:02] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[15:11:02] [Thread-32/INFO]: --------------------
[15:11:02] [Thread-32/INFO]: [CoreProtect] Version 22.4 is now available.
[15:11:02] [Thread-32/INFO]: [CoreProtect] Download: www.coreprotect.net/download/
[15:11:02] [Thread-32/INFO]: --------------------
[15:11:02] [Craft Scheduler Thread - 12 - CratesPlus/INFO]: Checking for updates via Spigot...
[15:11:02] [Craft Scheduler Thread - 12 - CratesPlus/INFO]: [CratesPlus] No update was found, you are running the latest version. Will check again later.
[15:11:03] [Server thread/INFO]: [MythicMobs] Loading ProtocolLib listeners...
[15:11:04] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:11:04] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:11:04] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:11:04] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:11:04] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:11:05] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:11:05] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:11:05] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:11:05] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:11:05] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:11:05] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:11:05] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:11:05] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:11:05] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:11:05] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:11:05] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:11:05] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:11:05] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:11:05] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:11:05] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:11:05] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:11:05] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:11:05] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:11:05] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:11:05] [Server thread/WARN]: [MythicMobs] ItemFlag 'HIDE_POTION_EFFECTS' does not exist in >=1.20.5.
[15:11:05] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 4306ms or 86 ticks behind
[15:11:09] [Craft Scheduler Thread - 15 - MythicMobs/INFO]: [Generation] Starting Pack Generator...
[15:11:09] [Craft Scheduler Thread - 15 - MythicMobs/INFO]: [Generation] Processing ModelEngine Pack...
[15:11:10] [Craft Scheduler Thread - 15 - MythicMobs/INFO]: [Generation] Generating Custom Blocks...
[15:11:10] [Craft Scheduler Thread - 15 - MythicMobs/INFO]: [Generation] Generating Items...
[15:11:10] [Craft Scheduler Thread - 15 - MythicMobs/WARN]: [MythicMobs] Texture File /data/plugins/MythicMobs/assets/textures/materials/ancient_key_terracotta.png not found
[15:11:10] [Craft Scheduler Thread - 15 - MythicMobs/WARN]: [MythicMobs] Texture File /data/plugins/MythicMobs/assets/textures/materials/ancient_key_desert.png not found
[15:11:10] [Craft Scheduler Thread - 15 - MythicMobs/WARN]: [MythicMobs] Texture File /data/plugins/MythicMobs/assets/textures/materials/ancient_key_void.png not found
[15:11:10] [Craft Scheduler Thread - 15 - MythicMobs/WARN]: [MythicMobs] Texture File /data/plugins/MythicMobs/assets/textures/materials/ancient_key_stone.png not found
[15:11:10] [Craft Scheduler Thread - 15 - MythicMobs/WARN]: [MythicMobs] Texture File /data/plugins/MythicMobs/assets/textures/materials/ancient_key_hell.png not found
[15:11:10] [Craft Scheduler Thread - 15 - MythicMobs/WARN]: [MythicMobs] Texture File /data/plugins/MythicMobs/assets/textures/materials/ancient_key_magma.png not found
[15:11:10] [Craft Scheduler Thread - 15 - MythicMobs/WARN]: [MythicMobs] Texture File /data/plugins/MythicMobs/assets/textures/materials/ancient_key_mossy.png not found
[15:11:10] [Craft Scheduler Thread - 15 - MythicMobs/INFO]: [Generation] Assigning Materials...
[15:11:10] [Craft Scheduler Thread - 15 - MythicMobs/INFO]: [Generation] Generating Sounds...
[15:11:10] [Craft Scheduler Thread - 15 - MythicMobs/INFO]: [Generation] Linking Custom Blocks...
[15:11:10] [Craft Scheduler Thread - 15 - MythicMobs/INFO]: [Generation] Generating Atlas...
[15:11:10] [Craft Scheduler Thread - 15 - MythicMobs/INFO]: [Generation] Zipping Pack...
[15:11:10] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:11:10] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Resource pack zipped.
[15:11:10] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [AquaticCrates] ModelEngine Hook initialized!
[15:11:11] [Server thread/INFO]: [AquaticCrates] Loading Item Database!
[15:11:11] [Craft Scheduler Thread - 15 - MythicMobs/INFO]: [Generation] Generation Completed in 1471ms
[15:11:11] [Server thread/INFO]: [AquaticCrates] Loading Crates!
[15:11:11] [Server thread/INFO]: [AquaticCrates] Loading reward: 1
[15:11:11] [Server thread/INFO]: [AquaticCrates] Loading reward: 2
[15:11:11] [Server thread/INFO]: [AquaticCrates] Loading reward: 3
[15:11:11] [Server thread/INFO]: [AquaticCrates] Loading reward: 4
[15:11:11] [Server thread/INFO]: Loaded animation tasks: 1
[15:11:11] [Server thread/INFO]: [AquaticCrates] Loading Players!
[15:11:11] [Server thread/INFO]: [AquaticCrates] Loading Messages!
[15:11:11] [Server thread/INFO]: [AquaticCrates] Plugin Loaded!
[15:11:11] [Server thread/INFO]:                                 _   _       _____           _                 
[15:11:11] [Server thread/INFO]:          /\                    | | (_)     / ____|         | |                
[15:11:11] [Server thread/INFO]:         /  \   __ _ _   _  __ _| |_ _  ___| |     _ __ __ _| |_ ___  ___      
[15:11:11] [Server thread/INFO]:        / /\ \ / _` | | | |/ _` | __| |/ __| |    | '__/ _` | __/ _ \/ __|     
[15:11:11] [Server thread/INFO]:       / ____ \ (_| | |_| | (_| | |_| | (__| |____| | | (_| | ||  __/\__ \     
[15:11:11] [Server thread/INFO]:      /_/    \_\__, |\__,_|\__,_|\__|_|\___|\_____|_|  \__,_|\__\___||___/     
[15:11:11] [Server thread/INFO]:                  | |                                                          
[15:11:11] [Server thread/INFO]:                  |_|                                                          
[15:11:11] [Server thread/INFO]: 
[15:11:11] [Server thread/INFO]:   Created by Aquatic Creations
[15:11:11] [Server thread/INFO]:   Discord: http://discord.aquatic.gg
[15:11:11] [Server thread/INFO]: 
[15:14:56] [User Authenticator #0/INFO]: UUID of player B9B is f24ec99c-5d9b-4815-8938-5401f5d62877
[15:14:58] [Server thread/INFO]: [HackathonPack] [ACF] Can't read players locale, you will be unable to automatically detect players language. Only Bukkit 1.7+ is supported for this.
[15:14:58] [Server thread/INFO]: [HackathonPack] [ACF] java.lang.NoSuchFieldException: locale
[15:14:58] [Server thread/INFO]: [HackathonPack] [ACF]     at java.base/java.lang.Class.getDeclaredField(Unknown Source)
[15:14:58] [Server thread/INFO]: [HackathonPack] [ACF]     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getDeclaredField(AbstractDefaultRulesReflectionProxy.java:90)
[15:14:58] [Server thread/INFO]: [HackathonPack] [ACF]     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getDeclaredField(Unknown Source)
[15:14:58] [Server thread/INFO]: [HackathonPack] [ACF]     at Hackathon2023-1.0.1.jar//co.aikar.commands.BukkitCommandManager.readPlayerLocale(BukkitCommandManager.java:324)
[15:14:58] [Server thread/INFO]: [HackathonPack] [ACF]     at Hackathon2023-1.0.1.jar//co.aikar.commands.ACFBukkitListener.onPlayerJoin(ACFBukkitListener.java:57)
[15:14:58] [Server thread/INFO]: [HackathonPack] [ACF]     at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:44)
[15:14:58] [Server thread/INFO]: [HackathonPack] [ACF]     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:84)
[15:14:58] [Server thread/INFO]: [HackathonPack] [ACF]     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[15:14:58] [Server thread/INFO]: [HackathonPack] [ACF]     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[15:14:58] [Server thread/INFO]: [HackathonPack] [ACF]     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[15:14:58] [Server thread/INFO]: [HackathonPack] [ACF]     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[15:14:58] [Server thread/INFO]: [HackathonPack] [ACF]     at net.minecraft.server.players.PlayerList.placeNewPlayer(PlayerList.java:347)
[15:14:58] [Server thread/INFO]: [HackathonPack] [ACF]     at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.handleConfigurationFinished(ServerConfigurationPacketListenerImpl.java:173)
[15:14:58] [Server thread/INFO]: [HackathonPack] [ACF]     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:22)
[15:14:58] [Server thread/INFO]: [HackathonPack] [ACF]     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:13)
[15:14:58] [Server thread/INFO]: [HackathonPack] [ACF]     at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:56)
[15:14:58] [Server thread/INFO]: [HackathonPack] [ACF]     at net.minecraft.server.TickTask.run(TickTask.java:18)
[15:14:58] [Server thread/INFO]: [HackathonPack] [ACF]     at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:151)
[15:14:58] [Server thread/INFO]: [HackathonPack] [ACF]     at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24)
[15:14:58] [Server thread/INFO]: [HackathonPack] [ACF]     at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1535)
[15:14:58] [Server thread/INFO]: [HackathonPack] [ACF]     at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:201)
[15:14:58] [Server thread/INFO]: [HackathonPack] [ACF]     at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:125)
[15:14:58] [Server thread/INFO]: [HackathonPack] [ACF]     at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1512)
[15:14:58] [Server thread/INFO]: [HackathonPack] [ACF]     at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1505)
[15:14:58] [Server thread/INFO]: [HackathonPack] [ACF]     at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:135)
[15:14:58] [Server thread/INFO]: [HackathonPack] [ACF]     at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1464)
[15:14:58] [Server thread/INFO]: [HackathonPack] [ACF]     at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1471)
[15:14:58] [Server thread/INFO]: [HackathonPack] [ACF]     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1316)
[15:14:58] [Server thread/INFO]: [HackathonPack] [ACF]     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[15:14:58] [Server thread/INFO]: [HackathonPack] [ACF]     at java.base/java.lang.Thread.run(Unknown Source)
[15:14:58] [Netty Epoll Server IO #2/WARN]: [ForcePack] Unable to get player for resource pack status!?!? com.convallyria.forcepack.spigot.libs.pe-api.protocol.player.User@18988dba, null
[15:14:59] [Server thread/ERROR]: Could not pass event PlayerJoinEvent to DiscordSRV v1.28.0
java.lang.NullPointerException: Cannot invoke "de.myzelyam.supervanish.visibility.FileVanishStateMgr.isVanished(java.util.UUID)" because the return value of "de.myzelyam.supervanish.SuperVanish.getVanishStateMgr()" is null
    at SuperVanish.jar/de.myzelyam.api.vanish.VanishAPI.isInvisible(VanishAPI.java:51) ~[SuperVanish.jar:?]
    at DiscordSRV-Build-1.28.0.jar/github.scarsz.discordsrv.hooks.vanish.SuperVanishHook.isVanished(SuperVanishHook.java:109) ~[DiscordSRV-Build-1.28.0.jar:?]
    at DiscordSRV-Build-1.28.0.jar/github.scarsz.discordsrv.util.PlayerUtil.isVanished(PlayerUtil.java:136) ~[DiscordSRV-Build-1.28.0.jar:?]
    at DiscordSRV-Build-1.28.0.jar/github.scarsz.discordsrv.listeners.PlayerJoinLeaveListener.onPlayerJoin(PlayerJoinLeaveListener.java:67) ~[DiscordSRV-Build-1.28.0.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor622.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:84) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-123-aebbdc9]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.players.PlayerList.placeNewPlayer(PlayerList.java:347) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.handleConfigurationFinished(ServerConfigurationPacketListenerImpl.java:173) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:22) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:13) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:56) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:151) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1535) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:201) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:125) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1512) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1505) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:135) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1464) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1471) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1316) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at java.base/java.lang.Thread.run(Unknown Source) ~[?:?]
[15:14:59] [Server thread/INFO]: B9B joined the game
[15:14:59] [Server thread/INFO]: B9B[/84.193.40.150:51821] logged in with entity id 482 at ([Serverspawn]-44.0380257090851, 79.2497445379028, 4.609116104779677)
[15:14:59] [Craft Scheduler Thread - 20 - NotQuests/INFO]: [NotQuests]: Loading PlayerData of player f24ec99c-5d9b-4815-8938-5401f5d62877...
[15:14:59] [Craft Scheduler Thread - 15 - ProjectKorra/INFO]: [ProjectKorra] Successfully loaded in all abilities!
[15:14:59] [Craft Scheduler Thread - 20 - NotQuests/INFO]: [NotQuests]: Loaded player with uuid f24ec99c-5d9b-4815-8938-5401f5d62877 (Profile: default) and questPoints: 0
[15:14:59] [Craft Scheduler Thread - 20 - NotQuests/INFO]: [NotQuests]: Loading tags for B9B (Profile: default) ...
[15:14:59] [Craft Scheduler Thread - 20 - NotQuests/INFO]: [NotQuests]:   Loaded 0 tags for B9B:
[15:14:59] [Craft Scheduler Thread - 14 - ProjectKorra/INFO]: [ProjectKorra] Loaded 15 presets for B9B
[15:15:00] [Craft Scheduler Thread - 20 - ProBending/INFO]: [ProBending] Loaded player data for B9B!
[15:15:09] [Server thread/INFO]: B9B issued server command: /npc list
[15:15:09] [Server thread/ERROR]: Command exception: /npc list
org.bukkit.command.CommandException: Cannot execute command 'npc' in plugin Citizens v2.0.35-SNAPSHOT (build 3594) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.command.brigadier.bukkit.BukkitCommandNode$BukkitBrigCommand.run(BukkitCommandNode.java:91) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at com.mojang.brigadier.context.ContextChain.runExecutable(ContextChain.java:73) ~[brigadier-1.3.10.jar:?]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:31) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:19) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.commands.execution.UnboundEntryAction.lambda$bind$0(UnboundEntryAction.java:8) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.commands.execution.CommandQueueEntry.execute(CommandQueueEntry.java:5) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.commands.execution.ExecutionContext.runCommandQueue(ExecutionContext.java:103) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.commands.Commands.executeCommandInContext(Commands.java:443) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.commands.Commands.performCommand(Commands.java:350) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.commands.Commands.performCommand(Commands.java:337) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.commands.Commands.performCommand(Commands.java:332) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performUnsignedChatCommand(ServerGamePacketListenerImpl.java:2218) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$11(ServerGamePacketListenerImpl.java:2192) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:151) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1535) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:201) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:125) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1512) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1505) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:135) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1464) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1471) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1316) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-123-aebbdc9]
    at java.base/java.lang.Thread.run(Unknown Source) ~[?:?]
[15:16:22] [DiscordSRV - Presence Updater/WARN]: Exception in thread "DiscordSRV - Presence Updater" java.lang.NullPointerException: Cannot invoke "de.myzelyam.supervanish.visibility.FileVanishStateMgr.isVanished(java.util.UUID)" because the return value of "de.myzelyam.supervanish.SuperVanish.getVanishStateMgr()" is null
[15:16:22] [DiscordSRV - Presence Updater/WARN]:     at SuperVanish.jar//de.myzelyam.api.vanish.VanishAPI.isInvisible(VanishAPI.java:51)
[15:16:22] [DiscordSRV - Presence Updater/WARN]:     at DiscordSRV-Build-1.28.0.jar//github.scarsz.discordsrv.hooks.vanish.SuperVanishHook.isVanished(SuperVanishHook.java:109)
[15:16:22] [DiscordSRV - Presence Updater/WARN]:     at DiscordSRV-Build-1.28.0.jar//github.scarsz.discordsrv.util.PlayerUtil.isVanished(PlayerUtil.java:136)
[15:16:22] [DiscordSRV - Presence Updater/WARN]:     at DiscordSRV-Build-1.28.0.jar//github.scarsz.discordsrv.util.PlayerUtil.lambda$getOnlinePlayers$0(PlayerUtil.java:72)
[15:16:22] [DiscordSRV - Presence Updater/WARN]:     at java.base/java.util.stream.ReferencePipeline$2$1.accept(Unknown Source)
[15:16:22] [DiscordSRV - Presence Updater/WARN]:     at java.base/java.util.ArrayList$ArrayListSpliterator.forEachRemaining(Unknown Source)
[15:16:22] [DiscordSRV - Presence Updater/WARN]:     at java.base/java.util.stream.AbstractPipeline.copyInto(Unknown Source)
[15:16:22] [DiscordSRV - Presence Updater/WARN]:     at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(Unknown Source)
[15:16:22] [DiscordSRV - Presence Updater/WARN]:     at java.base/java.util.stream.ReduceOps$ReduceOp.evaluateSequential(Unknown Source)
[15:16:22] [DiscordSRV - Presence Updater/WARN]:     at java.base/java.util.stream.AbstractPipeline.evaluate(Unknown Source)
[15:16:22] [DiscordSRV - Presence Updater/WARN]:     at java.base/java.util.stream.ReferencePipeline.collect(Unknown Source)
[15:16:22] [DiscordSRV - Presence Updater/WARN]:     at DiscordSRV-Build-1.28.0.jar//github.scarsz.discordsrv.util.PlayerUtil.getOnlinePlayers(PlayerUtil.java:73)
[15:16:22] [DiscordSRV - Presence Updater/WARN]:     at DiscordSRV-Build-1.28.0.jar//github.scarsz.discordsrv.objects.threads.PresenceUpdater.run(PresenceUpdater.java:77)