Paste #130637: craftbossbar

Date: 2025/02/05 08:56:11 UTC-08:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[16:49:25] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.5+11-Ubuntu-1ubuntu124.04; Ubuntu null) on Linux 6.8.0-1018-oracle (aarch64)
[16:49:25] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.3-82-ver/1.21.3@5a60ffb (2024-12-23T19:10:30Z) for Minecraft 1.21.3
[16:49:26] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[16:49:26] [ServerMain/ERROR]: [DirectoryProviderSource] Error preparing plugin context: Directory 'plugins/plotsquared-core-7.4.2-SNAPSHOT.jar' failed to update!
java.lang.RuntimeException: Directory 'plugins/plotsquared-core-7.4.2-SNAPSHOT.jar' failed to update!
    at io.papermc.paper.plugin.provider.source.FileProviderSource.prepareContext(FileProviderSource.java:62) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.lambda$prepareContext$1(DirectoryProviderSource.java:33) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184) ~[?:?]
    at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) ~[?:?]
    at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?]
    at java.base/java.util.Iterator.forEachRemaining(Iterator.java:133) ~[?:?]
    at java.base/java.util.Spliterators$IteratorSpliterator.forEachRemaining(Spliterators.java:1939) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]
    at java.base/java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:151) ~[?:?]
    at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:174) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]
    at java.base/java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.walkFiles(DirectoryProviderSource.java:64) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.prepareContext(DirectoryProviderSource.java:31) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.prepareContext(DirectoryProviderSource.java:17) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    at io.papermc.paper.plugin.util.EntrypointUtil.registerProvidersFromSource(EntrypointUtil.java:14) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    at io.papermc.paper.plugin.PluginInitializerManager.load(PluginInitializerManager.java:113) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    at net.minecraft.server.Main.main(Main.java:123) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    at io.papermc.paper.PaperBootstrap.boot(PaperBootstrap.java:21) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    at org.bukkit.craftbukkit.Main.main(Main.java:281) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    at io.papermc.paperclip.Paperclip.lambda$main$0(Paperclip.java:42) ~[app:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: org.bukkit.plugin.InvalidPluginException: java.lang.IllegalArgumentException: plugins/plotsquared-core-7.4.2-SNAPSHOT.jar does not contain a paper-plugin.yml or plugin.yml! Could not determine plugin type, cannot load a plugin from it!
    at io.papermc.paper.plugin.provider.source.FileProviderSource.checkUpdate(FileProviderSource.java:131) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    at io.papermc.paper.plugin.provider.source.FileProviderSource.prepareContext(FileProviderSource.java:60) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    ... 22 more
Caused by: java.lang.IllegalArgumentException: plugins/plotsquared-core-7.4.2-SNAPSHOT.jar does not contain a paper-plugin.yml or plugin.yml! Could not determine plugin type, cannot load a plugin from it!
    at io.papermc.paper.plugin.provider.source.FileProviderSource.getPluginName(FileProviderSource.java:140) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    at io.papermc.paper.plugin.provider.source.FileProviderSource.checkUpdate(FileProviderSource.java:112) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    at io.papermc.paper.plugin.provider.source.FileProviderSource.prepareContext(FileProviderSource.java:60) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    ... 22 more
[16:49:27] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Remapping plugin 'plugins/Citizens.jar'...
[16:49:27] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/MythicDungeons-2.0.0-SNAPSHOT (2).jar'...
[16:49:28] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/MythicDungeons-2.0.0-SNAPSHOT (2).jar' in 1510ms.
[16:49:29] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Done remapping plugin 'plugins/Citizens.jar' in 1888ms.
[16:49:29] [ServerMain/INFO]: [FileProviderSource] The spark plugin will not be loaded as this server bundles the spark profiler.
[16:49:29] [ServerMain/INFO]: [PluginInitializerManager] Initialized 69 plugins
[16:49:29] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (2):
 - FancyHolograms (2.4.1), FancyNpcs (2.4.1.230)
[16:49:29] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (67):
 - AnimatedScoreboard (0.3.5), AnimationsCore (2.2.1), Aurora (2.0.5), AuroraCollections (1.4.7), BanItem (3.5), BetonQuest (2.2.1), BetterHud (1.11.1), Citizens (2.0.37-SNAPSHOT (build 3706)), CleanroomGenerator (1.2.1), Coins (b1.13.2), CrossplatForms (1.5.0), CustomFishing (2.2.33), DecentHolograms (2.8.12), DeluxeMenus (1.14.1-DEV-null), DiscordSRV (1.29.0), DriveBackupV2 (1.8.0), Essentials (2.21.0-dev+115-6157668), ExecutableBlocks (5.25.2.3), ExecutableEvents (3.25.2.3), ExecutableItems (7.25.2.3), ExecutableLevers (2.24.11.30), FastAsyncWorldEdit (2.12.4-SNAPSHOT-1010;e0db69c), GPS (2.19.28), GPS-Quests (3.0), GSit (1.13.0), Geyser-Spigot (2.6.0-SNAPSHOT), LM_Items (1.3.3), LevelledMobs (4.2.0.1 b93), LibsDisguises (10.0.44-SNAPSHOT), LuckPerms (5.4.141), MMOCore (1.13.1-SNAPSHOT), MMOItems (6.10.1-SNAPSHOT), MiniMOTD (2.1.4), ModelEngine (R4.0.8), Multiverse-Core (4.3.1-b861), Multiverse-Portals (4.2.3), MythicDungeons (2.0.0-SNAPSHOT), MythicLib (1.7.1-SNAPSHOT), MythicMobs (5.8.0-SNAPSHOT-2f3fb7f8), NBTAPI (2.14.0), Nexo (0.9-dev), PlaceholderAPI (2.11.6), PlayerVaults (4.4.0-SNAPSHOT), PlotSquared (7.4.2-SNAPSHOT), PocketGames (3.25.0), ProtocolLib (5.4.0-SNAPSHOT-736), Quests (5.1.5-b512), SCore (42.42.42), SkQuery (4.1.10), Skript (2.9.4), TradeSystem (2.6.3), Vault (1.7.3-b131), ViaBackwards (5.2.1), ViaRewind (4.0.4), ViaVersion (5.2.1), Votifier (2.7.3), VotingPlugin (6.18.2), WorldGuard (7.0.11-beta1+a801a9d), WorldGuardExtraFlags (4.2.4-SNAPSHOT), XenoWorldReset (2.1.6), ajLeaderboards (2.9.0), dynmap (3.7-SNAPSHOT-968), floodgate (2.2.3-SNAPSHOT (b114-83fbd6e)), packetevents (2.6.1+a0fc7f697-SNAPSHOT), skript-placeholders (1.7.0), skript-yaml (1.5), uShop (2.2.2-SNAPSHOT)
[16:49:34] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[16:49:35] [Worker-Main-1/ERROR]: Couldn't parse data file 'armor_statues:random_pose' from 'armor_statues:loot_table/random_pose.json': DataResult.Error['Unknown registry key in ResourceKey[minecraft:root / minecraft:attribute]: minecraft:generic.attack_damage; Unknown registry key in ResourceKey[minecraft:root / minecraft:attribute]: minecraft:generic.attack_damage; Unknown registry key in ResourceKey[minecraft:root / minecraft:attribute]: minecraft:generic.attack_damage; Unknown registry key in ResourceKey[minecraft:root / minecraft:attribute]: minecraft:generic.attack_damage; Unknown registry key in ResourceKey[minecraft:root / minecraft:attribute]: minecraft:generic.attack_damage; Unknown registry key in ResourceKey[minecraft:root / minecraft:attribute]: minecraft:generic.attack_damage; Unknown registry key in ResourceKey[minecraft:root / minecraft:attribute]: minecraft:generic.attack_damage; Unknown registry key in ResourceKey[minecraft:root / minecraft:attribute]: minecraft:generic.attack_damage; Unknown registry key in ResourceKey[minecraft:root / minecraft:attribute]: minecraft:generic.attack_damage; Unknown registry key in ResourceKey[minecraft:root / minecraft:attribute]: minecraft:generic.attack_damage; Unknown registry key in ResourceKey[minecraft:root / minecraft:attribute]: minecraft:generic.attack_damage; Unknown registry key in ResourceKey[minecraft:root / minecraft:attribute]: minecraft:generic.attack_damage; Unknown registry key in ResourceKey[minecraft:root / minecraft:attribute]: minecraft:generic.attack_damage; Unknown registry key in ResourceKey[minecraft:root / minecraft:attribute]: minecraft:generic.attack_damage; Unknown registry key in ResourceKey[minecraft:root / minecraft:attribute]: minecraft:generic.attack_damage; Unknown registry key in ResourceKey[minecraft:root / minecraft:attribute]: minecraft:generic.attack_damage; Unknown registry key in ResourceKey[minecraft:root / minecraft:attribute]: minecraft:generic.attack_damage; Unknown registry key in ResourceKey[minecraft:root / minecraft:attribute]: minecraft:generic.attack_damage': net.minecraft.world.level.storage.loot.LootTable@afa58f8]
[16:49:36] [ServerMain/INFO]: Loaded 1337 recipes
[16:49:36] [ServerMain/ERROR]: Failed to load function armor_statues:trigger/random_pose
java.util.concurrent.CompletionException: java.lang.IllegalArgumentException: Whilst parsing command on line 11: Failed to parse structure: Failed to get element ResourceKey[minecraft:loot_table / armor_statues:random_pose] at position 116: ...andom_pose<--[HERE]
    at java.base/java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:315) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:320) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1770) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.IllegalArgumentException: Whilst parsing command on line 11: Failed to parse structure: Failed to get element ResourceKey[minecraft:loot_table / armor_statues:random_pose] at position 116: ...andom_pose<--[HERE]
    at net.minecraft.commands.functions.CommandFunction.fromLines(CommandFunction.java:86) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    at net.minecraft.server.ServerFunctionLibrary.lambda$reload$3(ServerFunctionLibrary.java:92) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    ... 3 more
[16:49:36] [ServerMain/ERROR]: Couldn't load tag minecraft:tick as it is missing following references: datapack:tick (from file/Departed Datapack.zip)
[16:49:36] [ServerMain/INFO]: Loaded 1453 advancements
[16:49:37] [Server thread/INFO]: Starting minecraft server version 1.21.3
[16:49:37] [Server thread/INFO]: Loading properties
[16:49:37] [Server thread/INFO]: This server is running Paper version 1.21.3-82-ver/1.21.3@5a60ffb (2024-12-23T19:10:30Z) (Implementing API version 1.21.3-R0.1-SNAPSHOT)
[16:49:37] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[16:49:38] [Server thread/INFO]: Server Ping Player Sample Count: 12
[16:49:38] [Server thread/INFO]: Using 4 threads for Netty based IO
[16:49:38] [Server thread/INFO]: [MoonriseCommon] Paper is using 1 worker threads, 1 I/O threads
[16:49:38] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using population gen parallelism: true
[16:49:38] [Server thread/INFO]: Default game type: SURVIVAL
[16:49:38] [Server thread/INFO]: Generating keypair
[16:49:38] [Server thread/INFO]: Starting Minecraft server on *:25565
[16:49:38] [Server thread/INFO]: Using epoll channel type
[16:49:38] [Server thread/INFO]: Paper: Using libdeflate (Linux aarch64) compression from Velocity.
[16:49:38] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux aarch64) cipher from Velocity.
[16:49:39] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loading 4 libraries... please wait
[16:49:39] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-api/4.16.0/adventure-api-4.16.0.jar
[16:49:39] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-key/4.16.0/adventure-key-4.16.0.jar
[16:49:39] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[16:49:39] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[16:49:39] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/ubuntu/minecraft/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[16:49:39] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-platform-bukkit/4.3.2/adventure-platform-bukkit-4.3.2.jar
[16:49:39] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-platform-api/4.3.2/adventure-platform-api-4.3.2.jar
[16:49:39] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.2/adventure-text-serializer-bungeecord-4.3.2.jar
[16:49:39] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[16:49:39] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[16:49:39] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[16:49:39] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-platform-facet/4.3.2/adventure-platform-facet-4.3.2.jar
[16:49:39] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-platform-viaversion/4.3.2/adventure-platform-viaversion-4.3.2.jar
[16:49:39] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-text-minimessage/4.16.0/adventure-text-minimessage-4.16.0.jar
[16:49:39] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-text-serializer-gson/4.16.0/adventure-text-serializer-gson-4.16.0.jar
[16:49:39] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-text-serializer-json/4.16.0/adventure-text-serializer-json-4.16.0.jar
[16:49:39] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/option/1.0.0/option-1.0.0.jar
[16:49:39] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/ubuntu/minecraft/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 5 libraries... please wait
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/ubuntu/minecraft/libraries/ch/ethz/globis/phtree/phtree/2.8.1/phtree-2.8.1.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/ubuntu/minecraft/libraries/org/joml/joml/1.10.8/joml-1.10.8.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/ubuntu/minecraft/libraries/it/unimi/dsi/fastutil/8.5.15/fastutil-8.5.15.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-platform-bukkit/4.3.3/adventure-platform-bukkit-4.3.3.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-platform-api/4.3.3/adventure-platform-api-4.3.3.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.3/adventure-text-serializer-bungeecord-4.3.3.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/ubuntu/minecraft/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-platform-facet/4.3.3/adventure-platform-facet-4.3.3.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-platform-viaversion/4.3.3/adventure-platform-viaversion-4.3.3.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-text-minimessage/4.17.0/adventure-text-minimessage-4.17.0.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-key/4.17.0/adventure-key-4.17.0.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loading 3 libraries... please wait
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/ubuntu/minecraft/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-text-serializer-gson/4.14.0/adventure-text-serializer-gson-4.14.0.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-text-serializer-json/4.14.0/adventure-text-serializer-json-4.14.0.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/ubuntu/minecraft/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.0/adventure-text-serializer-bungeecord-4.3.0.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-text-serializer-legacy/4.13.0/adventure-text-serializer-legacy-4.13.0.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Coins] Loading 1 libraries... please wait
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Coins] Loaded library /home/ubuntu/minecraft/libraries/org/bstats/bstats-bukkit/3.0.2/bstats-bukkit-3.0.2.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Coins] Loaded library /home/ubuntu/minecraft/libraries/org/bstats/bstats-base/3.0.2/bstats-base-3.0.2.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loading 14 libraries... please wait
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-text-minimessage/4.18.0/adventure-text-minimessage-4.18.0.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-api/4.18.0/adventure-api-4.18.0.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-key/4.18.0/adventure-key-4.18.0.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-text-serializer-plain/4.18.0/adventure-text-serializer-plain-4.18.0.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-text-serializer-ansi/4.18.0/adventure-text-serializer-ansi-4.18.0.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/ansi/1.1.1/ansi-1.1.1.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-platform-bukkit/4.3.4/adventure-platform-bukkit-4.3.4.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-platform-api/4.3.4/adventure-platform-api-4.3.4.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.4/adventure-text-serializer-bungeecord-4.3.4.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-platform-facet/4.3.4/adventure-platform-facet-4.3.4.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/net/kyori/adventure-platform-viaversion/4.3.4/adventure-platform-viaversion-4.3.4.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/org/spongepowered/configurate-yaml/4.1.2/configurate-yaml-4.1.2.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/org/spongepowered/configurate-core/4.1.2/configurate-core-4.1.2.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/io/leangen/geantyref/geantyref/1.3.11/geantyref-1.3.11.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/com/google/errorprone/error_prone_annotations/2.6.0/error_prone_annotations-2.6.0.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/org/yaml/snakeyaml/1.28/snakeyaml-1.28.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/org/spongepowered/configurate-extra-kotlin/4.1.2/configurate-extra-kotlin-4.1.2.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.4.20/kotlin-stdlib-jdk8-1.4.20.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/org/jetbrains/kotlin/kotlin-stdlib/1.4.20/kotlin-stdlib-1.4.20.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.4.20/kotlin-stdlib-jdk7-1.4.20.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/org/jetbrains/kotlin/kotlin-reflect/1.4.20/kotlin-reflect-1.4.20.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/org/jetbrains/kotlinx/kotlinx-coroutines-core-jvm/1.4.2/kotlinx-coroutines-core-jvm-1.4.2.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/org/jetbrains/kotlin/kotlin-stdlib-common/1.4.0/kotlin-stdlib-common-1.4.0.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/gs/mclo/java/2.2.1/java-2.2.1.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/commons-io/commons-io/2.14.0/commons-io-2.14.0.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/com/google/code/gson/gson/2.11.0/gson-2.11.0.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/org/apache/httpcomponents/client5/httpclient5/5.4/httpclient5-5.4.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/org/apache/httpcomponents/core5/httpcore5/5.3/httpcore5-5.3.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/org/apache/httpcomponents/core5/httpcore5-h2/5.3/httpcore5-h2-5.3.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/org/springframework/spring-expression/6.0.8/spring-expression-6.0.8.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/org/springframework/spring-core/6.0.8/spring-core-6.0.8.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/org/springframework/spring-jcl/6.0.8/spring-jcl-6.0.8.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/org/glassfish/javax.json/1.1.4/javax.json-1.1.4.jar
[16:49:40] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/ubuntu/minecraft/libraries/org/jetbrains/annotations/26.0.1/annotations-26.0.1.jar
[16:49:41] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loading 1 libraries... please wait
[16:49:41] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/ubuntu/minecraft/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[16:49:41] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/ubuntu/minecraft/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[16:49:41] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/ubuntu/minecraft/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[16:49:41] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/ubuntu/minecraft/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[16:49:41] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/ubuntu/minecraft/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[16:49:41] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/ubuntu/minecraft/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[16:49:42] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.2.1
[16:49:42] [Server thread/INFO]: [ViaVersion] ViaVersion 5.2.1 is now loaded. Registering protocol transformers and injecting...
[16:49:42] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[16:49:42] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[16:49:42] [Server thread/INFO]: [ViaBackwards] Loading translations...
[16:49:43] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[16:49:43] [Server thread/INFO]: [ViaRewind] Registering protocols...
[16:49:43] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.141
[16:49:43] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[16:49:43] [Server thread/INFO]: [floodgate] Loading server plugin floodgate v2.2.3-SNAPSHOT (b114-83fbd6e)
[16:49:44] [Server thread/WARN]: [floodgate] en_ is not a supported Floodgate language.
[16:49:44] [Server thread/INFO]: [floodgate] Took 652ms to boot Floodgate
[16:49:44] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.2.1
[16:49:44] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[16:49:44] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0-dev+115-6157668
[16:49:44] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.12.4-SNAPSHOT-1010;e0db69c
[16:49:46] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@bd5c276]
[16:49:46] [Server thread/INFO]: [Geyser-Spigot] Loading server plugin Geyser-Spigot v2.6.0-SNAPSHOT
[16:49:46] [Server thread/INFO]: [Geyser-Spigot] Loading extensions...
[16:49:46] [Server thread/INFO]: [Geyser-Spigot] Loaded 0 extension(s)
[16:49:46] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.4.0-SNAPSHOT-736
[16:49:46] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.21.3) has not yet been tested! Proceed with caution.
[16:49:47] [Server thread/INFO]: [ViaRewind] Loading server plugin ViaRewind v4.0.4
[16:49:47] [Server thread/INFO]: [PlotSquared] Loading server plugin PlotSquared v7.4.2-SNAPSHOT
[16:49:47] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.6.1+a0fc7f697-SNAPSHOT
[16:49:50] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.11-beta1+a801a9d
[16:49:50] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[16:49:50] [Server thread/INFO]: [LibsDisguises] Loading server plugin LibsDisguises v10.0.44-SNAPSHOT
[16:49:50] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.8.0-SNAPSHOT-2f3fb7f8
[16:49:50] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[16:49:50] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[16:49:50] [Server thread/INFO]: [dynmap] Loading server plugin dynmap v3.7-SNAPSHOT-968
[16:49:50] [Server thread/INFO]: [dynmap] version=1.21.3-82-5a60ffb (MC: 1.21.3)
[16:49:50] [Server thread/INFO]: [dynmap] Mod Support API available
[16:49:50] [Server thread/INFO]: [MythicLib] Loading server plugin MythicLib v1.7.1-SNAPSHOT
[16:49:50] [Server thread/INFO]: [MythicLib] Plugin file is called 'MythicLib-dist-1.7.1-20241204.234330-3.jar'
[16:49:50] [Server thread/INFO]: [MythicLib] Detected Bukkit Version: v1_21_R2
[16:49:50] [Server thread/INFO]: [MythicLib] Hooked onto WorldGuard
[16:49:50] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.37-SNAPSHOT (build 3706)
[16:49:50] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.12
[16:49:50] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.14.0
[16:49:50] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.3! Trying to find NMS support
[16:49:50] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R2' loaded!
[16:49:50] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'NBTAPI' to create a bStats instance!
[16:49:50] [Server thread/INFO]: [GPS] Loading server plugin GPS v2.19.28
[16:49:50] [Server thread/INFO]: [MMOCore] Loading server plugin MMOCore v1.13.1-SNAPSHOT
[16:49:50] [Server thread/INFO]: [MMOCore] Plugin file is called 'MMOCore-1.13.1-SNAPSHOT.jar'
[16:49:50] [Server thread/INFO]: [SCore] Loading server plugin SCore v42.42.42
[16:49:50] [Server thread/INFO]: [Quests] Loading server plugin Quests v5.1.5-b512
[16:49:50] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.9.4
[16:49:50] [Server thread/INFO]: [MMOItems] Loading server plugin MMOItems v6.10.1-SNAPSHOT
[16:49:50] [Server thread/INFO]: [MMOItems] Plugin file is called 'MMOItems-6.10.1-20241204.234611-1.jar'
[16:49:50] [Server thread/INFO]: [MMOItems] Hooked onto WorldEdit
[16:49:50] [Thread-9/WARN]: [NBTAPI] [NBTAPI] The NBT-API in 'NBTAPI' seems to be outdated!
[16:49:50] [Thread-9/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.14.0' Newest Version: 2.14.1'
[16:49:50] [Thread-9/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[16:49:50] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[16:49:50] [Server thread/INFO]: [MMOItems Template Modifiers] Preloading template modifiers, please wait..
[16:49:50] [Server thread/INFO]: [MMOItems Item Templates] Preloading item templates, please wait..
[16:49:50] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR4.0.8
[16:49:50] [Server thread/INFO]: [ExecutableItems] Loading server plugin ExecutableItems v7.25.2.3
[16:49:50] [Server thread/INFO]: [BetonQuest] Loading server plugin BetonQuest v2.2.1
[16:49:50] [Server thread/INFO]: [Coins] Loading server plugin Coins vb1.13.2
[16:49:50] [Server thread/INFO]: [Nexo] Loading server plugin Nexo v0.9-dev
[16:49:50] [Server thread/INFO]: [Nexo] Loading libraries...
[16:49:54] [Server thread/INFO]: [Nexo] Downloaded library https://repo.nexomc.com/snapshots/team/unnamed/creative-api/1.7.6-SNAPSHOT/creative-api-1.7.6-SNAPSHOT.jar
[16:49:56] [Server thread/INFO]: [Nexo] Downloaded library https://repo.nexomc.com/snapshots/team/unnamed/creative-serializer-minecraft/1.7.6-SNAPSHOT/creative-serializer-minecraft-1.7.6-SNAPSHOT.jar
[16:49:56] [Server thread/INFO]: [ExecutableBlocks] Loading server plugin ExecutableBlocks v5.25.2.3
[16:49:56] [Server thread/INFO]: [CustomFishing] Loading server plugin CustomFishing v2.2.33
[16:49:56] [Server thread/INFO]: [LM_Items] Loading server plugin LM_Items v1.3.3
[16:49:56] [Server thread/INFO]: [CForms] Loading server plugin CrossplatForms v1.5.0
[16:49:56] [Server thread/INFO]: [skript-placeholders] Loading server plugin skript-placeholders v1.7.0
[16:49:56] [Server thread/INFO]: [FancyNpcs] Loading server plugin FancyNpcs v2.4.1.230
[16:49:56] [Server thread/INFO]: [Aurora] Loading server plugin Aurora v2.0.5
[16:49:56] [Server thread/INFO]: [Votifier] Loading server plugin Votifier v2.7.3
[16:49:56] [Server thread/INFO]: [PlayerVaults] Loading server plugin PlayerVaults v4.4.0-SNAPSHOT
[16:49:56] [Server thread/INFO]: [TradeSystem] Loading server plugin TradeSystem v2.6.3
[16:49:56] [Server thread/INFO]: [LevelledMobs] Loading server plugin LevelledMobs v4.2.0.1 b93
[16:49:56] [Server thread/INFO]: [LevelledMobs] Loading commands
[16:49:57] [Server thread/INFO]: [BanItem] Loading server plugin BanItem v3.5
[16:49:57] [Server thread/INFO]: [ExecutableLevers] Loading server plugin ExecutableLevers v2.24.11.30
[16:49:57] [Server thread/INFO]: [MythicDungeons] Loading server plugin MythicDungeons v2.0.0-SNAPSHOT
[16:49:57] [Server thread/INFO]: [GPS-Quests] Loading server plugin GPS-Quests v3.0
[16:49:57] [Server thread/INFO]: [uShop] Loading server plugin uShop v2.2.2-SNAPSHOT
[16:49:57] [Server thread/INFO]: [AnimatedScoreboard] Loading server plugin AnimatedScoreboard v0.3.5
[16:49:57] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.1-DEV-null
[16:49:57] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[16:49:57] [Server thread/INFO]: [GSit] Loading server plugin GSit v1.13.0
[16:49:57] [Server thread/INFO]: [XWR] Loading server plugin XenoWorldReset v2.1.6
[16:49:57] [Server thread/INFO]: [DriveBackupV2] Loading server plugin DriveBackupV2 v1.8.0
[16:49:57] [Server thread/INFO]: [AnimationsCore] Loading server plugin AnimationsCore v2.2.1
[16:49:57] [Server thread/INFO]: [BetterHud] Loading server plugin BetterHud v1.11.1
[16:49:57] [Server thread/INFO]: [FancyHolograms] Loading server plugin FancyHolograms v2.4.1
[16:49:57] [Server thread/INFO]: [AuroraCollections] Loading server plugin AuroraCollections v1.4.7
[16:49:57] [FancyLogger/INFO]: [FancyHolograms] (Server thread) INFO: Successfully loaded FancyHolograms version 2.4.1
[16:49:57] [Server thread/INFO]: AuroraCollections | ID: '4_shift_heaven+' doesn't match the required format ^[a-zA-Z0-9_-]+$. Use only english alphabet, numbers, underscores and hyphens. Collection will be loaded, but you may experience issues.
[16:49:57] [Server thread/INFO]: AuroraCollections | ID: '1_activate_home+' doesn't match the required format ^[a-zA-Z0-9_-]+$. Use only english alphabet, numbers, underscores and hyphens. Collection will be loaded, but you may experience issues.
[16:49:57] [Server thread/INFO]: AuroraCollections | ID: '4_shift_flats+' doesn't match the required format ^[a-zA-Z0-9_-]+$. Use only english alphabet, numbers, underscores and hyphens. Collection will be loaded, but you may experience issues.
[16:49:57] [Server thread/INFO]: AuroraCollections | ID: '4_shift_water+' doesn't match the required format ^[a-zA-Z0-9_-]+$. Use only english alphabet, numbers, underscores and hyphens. Collection will be loaded, but you may experience issues.
[16:49:57] [Server thread/INFO]: AuroraCollections | Registered WorldGuard flag aurora-collections-xp-gain
[16:49:57] [Server thread/INFO]: [ExecutableEvents] Loading server plugin ExecutableEvents v3.25.2.3
[16:49:57] [Server thread/INFO]: [PocketGames] Loading server plugin PocketGames v3.25.0
[16:49:57] [Server thread/INFO]: [CleanroomGenerator] Loading server plugin CleanroomGenerator v1.2.1
[16:49:57] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.29.0
[16:49:57] [Server thread/INFO]: [SkQuery] Loading server plugin SkQuery v4.1.10
[16:49:57] [Server thread/INFO]: [VotingPlugin] Loading server plugin VotingPlugin v6.18.2
[16:49:57] [Server thread/INFO]: [Multiverse-Portals] Loading server plugin Multiverse-Portals v4.2.3
[16:49:57] [Server thread/INFO]: [skript-yaml] Loading server plugin skript-yaml v1.5
[16:49:57] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.4-SNAPSHOT
[16:49:57] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.9.0
[16:49:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[16:49:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[16:49:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[16:49:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[16:49:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[16:49:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[16:49:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[16:49:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[16:49:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[16:49:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[16:49:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[16:49:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[16:49:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[16:49:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[16:49:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[16:49:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[16:49:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okhttp
[16:49:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okhttp
[16:49:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio
[16:49:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio
[16:49:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio-jvm
[16:49:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio-jvm
[16:49:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk8
[16:49:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk8
[16:49:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib
[16:49:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib
[16:49:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-common
[16:49:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-common
[16:49:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for annotations
[16:49:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for annotations
[16:49:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk7
[16:49:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk7
[16:49:57] [Server thread/INFO]: [MiniMOTD] Loading server plugin MiniMOTD v2.1.4
[16:49:57] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[16:49:57] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.141
[16:49:58] [Server thread/INFO]:         __    
[16:49:58] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.141
[16:49:58] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[16:49:58] [Server thread/INFO]: 
[16:49:58] [Server thread/INFO]: [LuckPerms] Loading configuration...
[16:49:59] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[16:50:00] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[16:50:00] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[16:50:01] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 3437ms)
[16:50:01] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[16:50:01] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[16:50:01] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[16:50:01] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[16:50:01] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[16:50:01] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.12.4-SNAPSHOT-1010;e0db69c
[16:50:01] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[16:50:01] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[16:50:01] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[16:50:01] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[16:50:01] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_3.PaperweightFaweAdapter as the Bukkit adapter
[16:50:03] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.4.0-SNAPSHOT-736
[16:50:03] [Server thread/INFO]: [ViaRewind] Enabling ViaRewind v4.0.4
[16:50:03] [Server thread/INFO]: [PlotSquared] Enabling PlotSquared v7.4.2-SNAPSHOT
[16:50:03] [Server thread/INFO]: [PlotSquared/PlotSquared] Loaded caption map for namespace 'plotsquared': com.plotsquared.core.configuration.caption.LocalizedCaptionMap
[16:50:03] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: plot-expiry | Value: false
[16:50:03] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: worlds | Value: false
[16:50:03] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-named-road-mobs | Value: false
[16:50:03] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: per-user-locale | Value: false
[16:50:03] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: worldedit-restrictions | Value: true
[16:50:03] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: external-placeholders | Value: true
[16:50:03] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-owned-road-mobs | Value: false
[16:50:03] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: disable-beacon-effect-overflow | Value: true
[16:50:03] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: database | Value: true
[16:50:03] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: component-presets | Value: true
[16:50:03] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: chunk-processor | Value: false
[16:50:03] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: extended-username-completion | Value: true
[16:50:03] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: events | Value: true
[16:50:03] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: commands | Value: true
[16:50:03] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-road-mobs | Value: false
[16:50:03] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-road-items | Value: false
[16:50:03] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: database-purger | Value: true
[16:50:03] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: economy | Value: true
[16:50:03] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: persistent-road-regen | Value: true
[16:50:03] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-road-vehicles | Value: false
[16:50:03] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: default-locale | Value: en
[16:50:03] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: use-mvdwapi | Value: true
[16:50:03] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: persistent-meta | Value: true
[16:50:03] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: tab-completed-aliases | Value: [plot, plots, p, plotsquared, plot2, p2, ps, 2, plotme, plotz, ap]
[16:50:03] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: ban-deleter | Value: false
[16:50:03] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: update-notifications | Value: true
[16:50:03] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: rating-cache | Value: true
[16:50:03] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: comment-notifier | Value: true
[16:50:04] [ForkJoinPool.commonPool-worker-1/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 26 build(s) out of date.
You are running build 1010, the latest version is build 1036.
Update at https://www.spigotmc.org/resources/13932/
[16:50:04] [Server thread/INFO]: [PlotSquared/BukkitPlatform] Couldn't verify purchase :(
[16:50:04] [Server thread/INFO]: [PlotSquared/PlotSquared] Connection to database established. Type: SQLite
[16:50:04] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared hooked into WorldEdit
[16:50:05] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) Using LuckPerms as a complementary UUID service
[16:50:05] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) Using EssentialsX as a complementary UUID service
[16:50:05] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) Using Paper as a complementary UUID service
[16:50:05] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) 20 UUIDs will be cached
[16:50:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: plotsquared [3]
[16:50:05] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared hooked into PlaceholderAPI
[16:50:05] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR4.0.8
[16:50:05] [Server thread/INFO]: [ModelEngine] [S] Loading cache version: R4.0.8
[16:50:05] [Server thread/INFO]: [CleanroomGenerator] Enabling CleanroomGenerator v1.2.1
[16:50:05] [Server thread/INFO]: [CleanroomGenerator] CleanroomGenerator v1.2.1 enabled
[16:50:05] [Server thread/INFO]: Preparing level "world"
[16:50:05] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[16:50:05] [Server thread/INFO]: Time elapsed: 2 ms
[16:50:05] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[16:50:06] [Server thread/INFO]: Preparing spawn area: 100%
[16:50:06] [Paper Common Worker #0/INFO]: [MCTypeRegistry] Initialising converters for DataConverter...
[16:50:06] [Paper Common Worker #0/INFO]: [MCTypeRegistry] Finished initialising converters for DataConverter in 331.8ms
[16:50:06] [Server thread/INFO]: Preparing spawn area: 100%
[16:50:07] [Server thread/INFO]: Preparing spawn area: 100%
[16:50:07] [Server thread/INFO]: Time elapsed: 1328 ms
[16:50:07] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[16:50:07] [Server thread/INFO]: Preparing spawn area: 100%
[16:50:07] [Server thread/INFO]: Time elapsed: 179 ms
[16:50:07] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.2.1
[16:50:07] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21.2-1.21.3 (768)
[16:50:07] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: ViaVersion
[16:50:07] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.3-SNAPSHOT (b114-83fbd6e)
[16:50:07] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.2.1
[16:50:07] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[16:50:08] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[16:50:08] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+115-6157668
[16:50:08] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[16:50:08] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[16:50:08] [Server thread/INFO]: [Essentials] No kits found to migrate.
[16:50:08] [Server thread/INFO]: [Essentials] Loaded 42679 items from items.json.
[16:50:08] [Server thread/INFO]: [Essentials] Using locale en
[16:50:08] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[16:50:09] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[16:50:09] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[16:50:09] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[16:50:09] [Server thread/INFO]: [Geyser-Spigot] Enabling Geyser-Spigot v2.6.0-SNAPSHOT
[16:50:09] [Server thread/INFO]: [packetevents] Enabling packetevents v2.6.1+a0fc7f697-SNAPSHOT
[16:50:09] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[16:50:09] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.11-beta1+a801a9d
[16:50:09] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[16:50:09] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[16:50:09] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[16:50:09] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[16:50:09] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[16:50:09] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[16:50:09] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[16:50:09] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[16:50:09] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[16:50:09] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[16:50:09] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[16:50:09] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[16:50:09] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[16:50:09] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[16:50:09] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[16:50:09] [Server thread/INFO]: [WorldGuard] Loading region data...
[16:50:09] [packetevents-update-check-thread/INFO]: [packetevents] There is an update available for PacketEvents! Your build: (2.6.1+a0fc7f697-SNAPSHOT) | Latest release: (2.7.0)
[16:50:09] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[16:50:09] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[16:50:09] [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.
[16:50:09] [Server thread/WARN]: [Multiverse-Core] Exception while loading value for environment
[16:50:09] [Server thread/WARN]: [Multiverse-Core] Exception while loading value for environment
[16:50:10] [Server thread/INFO]: Preparing start region for dimension minecraft:waterworld
[16:50:10] [Server thread/INFO]: Preparing spawn area: 0%
[16:50:10] [Server thread/INFO]: Time elapsed: 284 ms
[16:50:10] [Server thread/INFO]: [WorldGuard] (waterworld) TNT ignition is PERMITTED.
[16:50:10] [Server thread/INFO]: [WorldGuard] (waterworld) Lighters are PERMITTED.
[16:50:10] [Server thread/INFO]: [WorldGuard] (waterworld) Lava fire is PERMITTED.
[16:50:10] [Server thread/INFO]: [WorldGuard] (waterworld) Fire spread is UNRESTRICTED.
[16:50:10] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'waterworld'
[16:50:10] [Server thread/WARN]: [CleanroomGenerator] Invalid height '0'. Using 64 instead.
[16:50:10] [Server thread/INFO]: Preparing start region for dimension minecraft:corrupted_magika
[16:50:10] [Server thread/INFO]: Preparing spawn area: 0%
[16:50:10] [Server thread/INFO]: Time elapsed: 245 ms
[16:50:10] [Server thread/INFO]: [WorldGuard] (corrupted_magika) TNT ignition is PERMITTED.
[16:50:10] [Server thread/INFO]: [WorldGuard] (corrupted_magika) Lighters are PERMITTED.
[16:50:10] [Server thread/INFO]: [WorldGuard] (corrupted_magika) Lava fire is PERMITTED.
[16:50:10] [Server thread/INFO]: [WorldGuard] (corrupted_magika) Fire spread is UNRESTRICTED.
[16:50:10] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'corrupted_magika'
[16:50:10] [Server thread/WARN]: [CleanroomGenerator] Invalid height '0'. Using 64 instead.
[16:50:10] [Server thread/INFO]: [PlotSquared/PlotSquared] Detected world load for 'test'
[16:50:10] [Server thread/INFO]: [PlotSquared/PlotSquared] - generator: PlotSquared>PlotSquared
[16:50:10] [Server thread/INFO]: [PlotSquared/PlotSquared] - plot world: com.plotsquared.core.generator.HybridPlotWorld
[16:50:10] [Server thread/INFO]: [PlotSquared/PlotSquared] - plot area manager: com.plotsquared.core.generator.HybridPlotManager
[16:50:10] [Server thread/INFO]: [P2] Loading flags for area: test
[16:50:10] [Server thread/INFO]: [P2] Area flags: []
[16:50:10] [Server thread/INFO]: [P2] Road flags: []
[16:50:10] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] - road schematic: false
[16:50:10] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] - Dumping settings for ClassicPlotWorld with name test
[16:50:10] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_schematic_enabled = false
[16:50:10] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_schematic = false
[16:50:10] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_lower = 11
[16:50:10] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_upper = 140
[16:50:10] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- schem_y = 62
[16:50:10] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_height = 62
[16:50:10] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_height = 62
[16:50:10] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_height = 62
[16:50:10] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- main_block = air
[16:50:10] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- top_block = grass_block
[16:50:10] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_block = smooth_stone_slab
[16:50:10] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- claimed_wall_block = minecraft:sandstone_slab
[16:50:10] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_filling = spruce_planks
[16:50:10] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_block = minecraft:quartz_block
[16:50:10] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_bedrock = true
[16:50:10] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- place_top_block = true
[16:50:10] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- component_below_bedrock = false
[16:50:10] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_width = 128
[16:50:10] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_width = 24
[16:50:10] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_x = 0
[16:50:10] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_z = 0
[16:50:10] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- size = 152
[16:50:10] [Server thread/INFO]: Preparing start region for dimension minecraft:test
[16:50:10] [Server thread/INFO]: Preparing spawn area: 0%
[16:50:11] [Server thread/INFO]: Time elapsed: 174 ms
[16:50:11] [Server thread/INFO]: [WorldGuard] (test) TNT ignition is PERMITTED.
[16:50:11] [Server thread/INFO]: [WorldGuard] (test) Lighters are PERMITTED.
[16:50:11] [Server thread/INFO]: [WorldGuard] (test) Lava fire is PERMITTED.
[16:50:11] [Server thread/INFO]: [WorldGuard] (test) Fire spread is UNRESTRICTED.
[16:50:11] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'test'
[16:50:11] [Server thread/INFO]: [PlotSquared/PlotSquared] Detected world load for 'guildplots2'
[16:50:11] [Server thread/INFO]: [PlotSquared/PlotSquared] - generator: PlotSquared>PlotSquared
[16:50:11] [Server thread/INFO]: [PlotSquared/PlotSquared] - plot world: com.plotsquared.core.generator.HybridPlotWorld
[16:50:11] [Server thread/INFO]: [PlotSquared/PlotSquared] - plot area manager: com.plotsquared.core.generator.HybridPlotManager
[16:50:11] [Server thread/INFO]: [P2] Loading flags for area: guildplots2
[16:50:11] [Server thread/INFO]: [P2] Area flags: []
[16:50:11] [Server thread/INFO]: [P2] Road flags: []
[16:50:11] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] - road schematic: false
[16:50:11] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] - Dumping settings for ClassicPlotWorld with name guildplots2
[16:50:11] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_schematic_enabled = false
[16:50:11] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_schematic = false
[16:50:11] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_lower = 11
[16:50:11] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_upper = 140
[16:50:11] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- schem_y = 62
[16:50:11] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_height = 62
[16:50:11] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_height = 62
[16:50:11] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_height = 62
[16:50:11] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- main_block = air
[16:50:11] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- top_block = spruce_slab
[16:50:11] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_block = smooth_stone_slab
[16:50:11] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- claimed_wall_block = minecraft:sandstone_slab
[16:50:11] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_filling = jungle_planks
[16:50:11] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_block = minecraft:quartz_block
[16:50:11] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_bedrock = true
[16:50:11] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- place_top_block = true
[16:50:11] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- component_below_bedrock = false
[16:50:11] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_width = 128
[16:50:11] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_width = 24
[16:50:11] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_x = 0
[16:50:11] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_z = 0
[16:50:11] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- size = 152
[16:50:11] [Server thread/INFO]: Preparing start region for dimension minecraft:guildplots2
[16:50:11] [Server thread/INFO]: Preparing spawn area: 0%
[16:50:11] [Server thread/INFO]: Time elapsed: 155 ms
[16:50:11] [Server thread/INFO]: [WorldGuard] (guildplots2) TNT ignition is PERMITTED.
[16:50:11] [Server thread/INFO]: [WorldGuard] (guildplots2) Lighters are PERMITTED.
[16:50:11] [Server thread/INFO]: [WorldGuard] (guildplots2) Lava fire is PERMITTED.
[16:50:11] [Server thread/INFO]: [WorldGuard] (guildplots2) Fire spread is UNRESTRICTED.
[16:50:11] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'guildplots2'
[16:50:11] [Server thread/INFO]: Preparing start region for dimension minecraft:magika
[16:50:11] [Server thread/INFO]: Preparing spawn area: 0%
[16:50:11] [Server thread/INFO]: Time elapsed: 360 ms
[16:50:11] [Server thread/INFO]: [WorldGuard] (magika) TNT ignition is PERMITTED.
[16:50:11] [Server thread/INFO]: [WorldGuard] (magika) Lighters are PERMITTED.
[16:50:11] [Server thread/INFO]: [WorldGuard] (magika) Lava fire is PERMITTED.
[16:50:11] [Server thread/INFO]: [WorldGuard] (magika) Fire spread is UNRESTRICTED.
[16:50:11] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'magika'
[16:50:11] [Server thread/INFO]: Preparing start region for dimension minecraft:loamap
[16:50:11] [Server thread/INFO]: Preparing spawn area: 0%
[16:50:12] [Server thread/INFO]: Time elapsed: 293 ms
[16:50:12] [Server thread/INFO]: [WorldGuard] (loamap) TNT ignition is PERMITTED.
[16:50:12] [Server thread/INFO]: [WorldGuard] (loamap) Lighters are PERMITTED.
[16:50:12] [Server thread/INFO]: [WorldGuard] (loamap) Lava fire is PERMITTED.
[16:50:12] [Server thread/INFO]: [WorldGuard] (loamap) Fire spread is UNRESTRICTED.
[16:50:12] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'loamap'
[16:50:12] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: world_lumbridge
[16:50:12] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[16:50:12] [Server thread/INFO]: [PlotSquared/PlotSquared] Detected world load for 'guildplots3'
[16:50:12] [Server thread/INFO]: [PlotSquared/PlotSquared] - generator: PlotSquared>PlotSquared
[16:50:12] [Server thread/INFO]: [PlotSquared/PlotSquared] - plot world: com.plotsquared.core.generator.HybridPlotWorld
[16:50:12] [Server thread/INFO]: [PlotSquared/PlotSquared] - plot area manager: com.plotsquared.core.generator.HybridPlotManager
[16:50:12] [Server thread/INFO]: [P2] Loading flags for area: guildplots3
[16:50:12] [Server thread/INFO]: [P2] Area flags: []
[16:50:12] [Server thread/INFO]: [P2] Road flags: []
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] - road schematic: false
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] - Dumping settings for ClassicPlotWorld with name guildplots3
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_schematic_enabled = false
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_schematic = false
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_lower = 11
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_upper = 140
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- schem_y = 62
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_height = 62
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_height = 62
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_height = 62
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- main_block = air
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- top_block = spruce_planks
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_block = smooth_stone_slab
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- claimed_wall_block = minecraft:sandstone_slab
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_filling = jungle_planks
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_block = minecraft:quartz_block
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_bedrock = true
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- place_top_block = true
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- component_below_bedrock = false
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_width = 128
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_width = 24
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_x = 0
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_z = 0
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- size = 152
[16:50:12] [Server thread/INFO]: Preparing start region for dimension minecraft:guildplots3
[16:50:12] [Server thread/INFO]: Preparing spawn area: 0%
[16:50:12] [Server thread/INFO]: Time elapsed: 111 ms
[16:50:12] [Server thread/INFO]: [WorldGuard] (guildplots3) TNT ignition is PERMITTED.
[16:50:12] [Server thread/INFO]: [WorldGuard] (guildplots3) Lighters are PERMITTED.
[16:50:12] [Server thread/INFO]: [WorldGuard] (guildplots3) Lava fire is PERMITTED.
[16:50:12] [Server thread/INFO]: [WorldGuard] (guildplots3) Fire spread is UNRESTRICTED.
[16:50:12] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'guildplots3'
[16:50:12] [Server thread/INFO]: [P2] Loading flags for area: guildplots
[16:50:12] [Server thread/INFO]: [P2] Area flags: []
[16:50:12] [Server thread/INFO]: [P2] Road flags: []
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] - Dumping settings for ClassicPlotWorld with name guildplots
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_schematic_enabled = true
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_schematic = false
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_lower = 11
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_upper = 140
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- schem_y = 62
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_height = 62
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_height = 62
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_height = 62
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- main_block = air
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- top_block = grass_block
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_block = smooth_stone_slab
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- claimed_wall_block = minecraft:sandstone_slab
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_filling = spruce_planks
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_block = minecraft:black_concrete
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_bedrock = true
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- place_top_block = true
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- component_below_bedrock = false
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_width = 128
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_width = 24
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_x = 0
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_z = 0
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- size = 152
[16:50:12] [Server thread/INFO]: [PlotSquared/PlotSquared] Detected world load for 'guildplots'
[16:50:12] [Server thread/INFO]: [PlotSquared/PlotSquared] - generator: PlotSquared>PlotSquared
[16:50:12] [Server thread/INFO]: [PlotSquared/PlotSquared] - plot world: com.plotsquared.core.generator.HybridPlotWorld
[16:50:12] [Server thread/INFO]: [PlotSquared/PlotSquared] - plot area manager: com.plotsquared.core.generator.HybridPlotManager
[16:50:12] [Server thread/INFO]: [P2] Loading flags for area: guildplots
[16:50:12] [Server thread/INFO]: [P2] Area flags: []
[16:50:12] [Server thread/INFO]: [P2] Road flags: []
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] - Dumping settings for ClassicPlotWorld with name guildplots
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_schematic_enabled = true
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_schematic = false
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_lower = 11
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_upper = 140
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- schem_y = 62
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_height = 62
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_height = 62
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_height = 62
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- main_block = air
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- top_block = grass_block
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_block = smooth_stone_slab
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- claimed_wall_block = minecraft:sandstone_slab
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_filling = spruce_planks
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_block = minecraft:black_concrete
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_bedrock = true
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- place_top_block = true
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- component_below_bedrock = false
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_width = 128
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_width = 24
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_x = 0
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_z = 0
[16:50:12] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- size = 152
[16:50:12] [Server thread/INFO]: Preparing start region for dimension minecraft:guildplots
[16:50:12] [Server thread/INFO]: Preparing spawn area: 0%
[16:50:12] [Server thread/INFO]: Time elapsed: 153 ms
[16:50:12] [Server thread/INFO]: [WorldGuard] (guildplots) TNT ignition is PERMITTED.
[16:50:12] [Server thread/INFO]: [WorldGuard] (guildplots) Lighters are PERMITTED.
[16:50:12] [Server thread/INFO]: [WorldGuard] (guildplots) Lava fire is PERMITTED.
[16:50:12] [Server thread/INFO]: [WorldGuard] (guildplots) Fire spread is UNRESTRICTED.
[16:50:12] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'guildplots'
[16:50:12] [Server thread/INFO]: [P2] Loading flags for area: guildplots
[16:50:12] [Server thread/INFO]: [P2] Area flags: []
[16:50:12] [Server thread/INFO]: [P2] Road flags: []
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] - Dumping settings for ClassicPlotWorld with name guildplots
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_schematic_enabled = true
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_schematic = false
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_lower = 11
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_upper = 140
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- schem_y = 62
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_height = 62
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_height = 62
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_height = 62
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- main_block = air
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- top_block = grass_block
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_block = smooth_stone_slab
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- claimed_wall_block = minecraft:sandstone_slab
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_filling = spruce_planks
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_block = minecraft:black_concrete
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_bedrock = true
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- place_top_block = true
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- component_below_bedrock = false
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_width = 128
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_width = 24
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_x = 0
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_z = 0
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- size = 152
[16:50:13] [Server thread/WARN]: [CleanroomGenerator] Invalid height '0'. Using 64 instead.
[16:50:13] [Server thread/INFO]: Preparing start region for dimension minecraft:heaven
[16:50:13] [Server thread/INFO]: Preparing spawn area: 0%
[16:50:13] [Server thread/INFO]: Time elapsed: 89 ms
[16:50:13] [Server thread/INFO]: [WorldGuard] (heaven) TNT ignition is PERMITTED.
[16:50:13] [Server thread/INFO]: [WorldGuard] (heaven) Lighters are PERMITTED.
[16:50:13] [Server thread/INFO]: [WorldGuard] (heaven) Lava fire is PERMITTED.
[16:50:13] [Server thread/INFO]: [WorldGuard] (heaven) Fire spread is UNRESTRICTED.
[16:50:13] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'heaven'
[16:50:13] [Server thread/WARN]: [CleanroomGenerator] Invalid height '0'. Using 64 instead.
[16:50:13] [Server thread/WARN]: [CleanroomGenerator] Invalid height '0'. Using 64 instead.
[16:50:13] [Server thread/INFO]: Preparing start region for dimension minecraft:lumbridge
[16:50:13] [Server thread/INFO]: Preparing spawn area: 0%
[16:50:13] [Server thread/INFO]: Time elapsed: 123 ms
[16:50:13] [Server thread/INFO]: [WorldGuard] (lumbridge) TNT ignition is PERMITTED.
[16:50:13] [Server thread/INFO]: [WorldGuard] (lumbridge) Lighters are PERMITTED.
[16:50:13] [Server thread/INFO]: [WorldGuard] (lumbridge) Lava fire is PERMITTED.
[16:50:13] [Server thread/INFO]: [WorldGuard] (lumbridge) Fire spread is UNRESTRICTED.
[16:50:13] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'lumbridge'
[16:50:13] [Server thread/WARN]: [CleanroomGenerator] Invalid height '0'. Using 64 instead.
[16:50:13] [Server thread/INFO]: [PlotSquared/PlotSquared] Detected world load for 'playerplots'
[16:50:13] [Server thread/INFO]: [PlotSquared/PlotSquared] - generator: PlotSquared>PlotSquared
[16:50:13] [Server thread/INFO]: [PlotSquared/PlotSquared] - plot world: com.plotsquared.core.generator.HybridPlotWorld
[16:50:13] [Server thread/INFO]: [PlotSquared/PlotSquared] - plot area manager: com.plotsquared.core.generator.HybridPlotManager
[16:50:13] [Server thread/INFO]: [P2] Loading flags for area: playerplots
[16:50:13] [Server thread/INFO]: [P2] Area flags: []
[16:50:13] [Server thread/INFO]: [P2] Road flags: []
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] - Dumping settings for ClassicPlotWorld with name playerplots
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_schematic_enabled = true
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_schematic = false
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_lower = 3
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_upper = 46
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- schem_y = 62
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_height = 62
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_height = 62
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_height = 62
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- main_block = magenta_concrete
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- top_block = grass_block
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_block = stone_slab
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- claimed_wall_block = sandstone_slab
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_filling = minecraft:stone
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_block = quartz_block
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_bedrock = true
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- place_top_block = true
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- component_below_bedrock = false
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_width = 42
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_width = 7
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_x = 0
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_z = 0
[16:50:13] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- size = 49
[16:50:13] [Server thread/INFO]: Preparing start region for dimension minecraft:playerplots
[16:50:13] [Server thread/INFO]: Preparing spawn area: 0%
[16:50:13] [Server thread/INFO]: Time elapsed: 237 ms
[16:50:13] [Server thread/INFO]: [WorldGuard] (playerplots) TNT ignition is PERMITTED.
[16:50:13] [Server thread/INFO]: [WorldGuard] (playerplots) Lighters are PERMITTED.
[16:50:13] [Server thread/INFO]: [WorldGuard] (playerplots) Lava fire is PERMITTED.
[16:50:13] [Server thread/INFO]: [WorldGuard] (playerplots) Fire spread is UNRESTRICTED.
[16:50:13] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'playerplots'
[16:50:13] [Server thread/INFO]: Preparing start region for dimension minecraft:creative_world
[16:50:13] [Server thread/INFO]: Preparing spawn area: 0%
[16:50:14] [Server thread/INFO]: Time elapsed: 153 ms
[16:50:14] [Server thread/INFO]: [WorldGuard] (creative_world) TNT ignition is PERMITTED.
[16:50:14] [Server thread/INFO]: [WorldGuard] (creative_world) Lighters are PERMITTED.
[16:50:14] [Server thread/INFO]: [WorldGuard] (creative_world) Lava fire is PERMITTED.
[16:50:14] [Server thread/INFO]: [WorldGuard] (creative_world) Fire spread is UNRESTRICTED.
[16:50:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'creative_world'
[16:50:14] [Server thread/WARN]: [CleanroomGenerator] Invalid height '0'. Using 64 instead.
[16:50:14] [Server thread/INFO]: Preparing start region for dimension minecraft:devworld
[16:50:14] [Server thread/INFO]: Preparing spawn area: 0%
[16:50:14] [Server thread/INFO]: Time elapsed: 189 ms
[16:50:14] [Server thread/INFO]: [WorldGuard] (devworld) TNT ignition is PERMITTED.
[16:50:14] [Server thread/INFO]: [WorldGuard] (devworld) Lighters are PERMITTED.
[16:50:14] [Server thread/INFO]: [WorldGuard] (devworld) Lava fire is PERMITTED.
[16:50:14] [Server thread/INFO]: [WorldGuard] (devworld) Fire spread is UNRESTRICTED.
[16:50:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'devworld'
[16:50:14] [Server thread/WARN]: [CleanroomGenerator] Invalid height '0'. Using 64 instead.
[16:50:14] [Server thread/INFO]: Preparing start region for dimension minecraft:flatlands
[16:50:14] [Server thread/INFO]: Preparing spawn area: 0%
[16:50:14] [Server thread/INFO]: Time elapsed: 133 ms
[16:50:14] [Server thread/INFO]: [WorldGuard] (flatlands) TNT ignition is PERMITTED.
[16:50:14] [Server thread/INFO]: [WorldGuard] (flatlands) Lighters are PERMITTED.
[16:50:14] [Server thread/INFO]: [WorldGuard] (flatlands) Lava fire is PERMITTED.
[16:50:14] [Server thread/INFO]: [WorldGuard] (flatlands) Fire spread is UNRESTRICTED.
[16:50:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'flatlands'
[16:50:14] [Server thread/INFO]: [Multiverse-Core] 17 - World(s) loaded.
[16:50:14] [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.
[16:50:14] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[16:50:14] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v10.0.44-SNAPSHOT
[16:50:14] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises (3).jar
[16:50:14] [Server thread/INFO]: [LibsDisguises] Discovered nms version: (Package: {Not package relocated}) (LD: v1_21_R2) (MC: 1.21.3)
[16:50:14] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1497
[16:50:14] [Server thread/INFO]: [LibsDisguises] Build Date: 30/11/2024 02:25
[16:50:14] [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/
[16:50:14] [Server thread/INFO]: [LibsDisguises] You are running the free version, commands limited to non-players and operators. (Console, Command Blocks, Admins)
[16:50:14] [Server thread/INFO]: [LibsDisguises] Config 'TallSelfDisguises' is set to 'false', LD will hide oversized disguises from self disguise. https://www.spigotmc.org/wiki/lib-s-disguises-faq/#tall-disguises-self-disguises
[16:50:15] [pool-35-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared will fetch UUIDs in groups of 200
[16:50:15] [pool-35-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared has cached 100.0% of UUIDs
[16:50:15] [pool-35-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared has cached all UUIDs
[16:50:17] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[16:50:17] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise DarkKnight
[16:50:17] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise healingtotem
[16:50:17] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise Demon
[16:50:17] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise MushroomGuy
[16:50:17] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise BugDPOrc1
[16:50:17] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise BugDPOrc2
[16:50:17] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise BugDPOrc3
[16:50:17] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise BugDPOrc4
[16:50:17] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise BugDPOrc5
[16:50:17] [Server thread/INFO]: [LibsDisguises] Loaded 10 custom disguises
[16:50:17] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[16:50:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: libsdisguises [1.0.0]
[16:50:17] [Server thread/INFO]: [LibsDisguises] PlaceholderAPI support enabled
[16:50:17] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: LibsDisguises
[16:50:17] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.8.0-SNAPSHOT-2f3fb7f8
[16:50:17] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.21.3)...
[16:50:17] [Server thread/INFO]: [MythicMobs] The server is running Paper; enabled Paper exclusive functionality
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] END_SPAWN_POINT
[16:50:18] [Server thread/WARN]: Nag author(s): '[Lumine]' of 'MythicMobs v5.8.0-SNAPSHOT-2f3fb7f8' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] RAIN_DELAY
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] RAIN_DURATION
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] THUNDER_DELAY
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] THUNDER_DURATION
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] LOGGER
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] EMPTY_TIME_NO_TICK
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] MAX_SCHEDULED_TICKS_PER_TICK
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] players
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] chunkSource
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] server
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] serverLevelData
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] lastSpawnChunkRadius
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] entityTickList
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] gameEventDispatcher
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] noSave
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] sleepStatus
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] emptyTime
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] portalForcer
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] blockTicks
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] fluidTicks
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] pathTypesByPosCache
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] navigatingMobs
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] isUpdatingNavigations
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] raids
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] blockEvents
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] blockEventsToReschedule
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] handlingTick
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] customSpawners
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] dragonFight
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] dragonParts
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] structureManager
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] structureCheck
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] tickTime
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] randomSequences
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] convertable
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] uuid
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] hasPhysicsEvent
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] hasEntityMoveEvent
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] wireHandler
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] viewDistanceHolder
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] chunkLoader
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] entityDataController
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] poiDataController
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] chunkDataController
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] chunkTaskScheduler
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] lastMidTickFailure
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] tickedBlocksOrFluids
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] nearbyPlayers
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] EMPTY_CHUNK_AND_HOLDERS
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] loadedChunks
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] tickingChunks
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] entityTickingChunks
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] EMPTY_PLAYER_CHUNK_HOLDERS
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] playerTickingChunks
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] playerTickingRequests
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] lagCompensationTick
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] simpleRandom
[16:50:18] [Server thread/INFO]: [MythicMobs] [STDOUT] currentlyTickingEntity
[16:50:18] [Server thread/INFO]: [MythicMobs] Mythic Citizens Support has been enabled!
[16:50:18] [Server thread/INFO]: [MythicMobs] Mythic LibsDisguises Support has been enabled!
[16:50:18] [Server thread/INFO]: [MythicMobs] Mythic MMOItems Support has been enabled!
[16:50:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[16:50:18] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[16:50:18] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[16:50:18] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[16:50:19] [Server thread/INFO]: [MythicMobs] Base directory /home/ubuntu/minecraft/plugins/MythicMobs/data
[16:50:19] [Server thread/INFO]: [MythicMobs] Module directory /home/ubuntu/minecraft/plugins/MythicMobs/data/worlds
[16:50:20] [Server thread/INFO]: [MythicMobs] Loading Packs...
[16:50:21] [Server thread/INFO]: [MythicMobs] Loading Items...
[16:50:21] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[16:50:21] [Server thread/INFO]: [MythicMobs] Loading Skills...
[16:50:21] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error: Particle 'snow_shovel' is not supported by this version
[16:50:21] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error: Particle 'snow_shovel' is not supported by this version
[16:50:21] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error: Particle 'snow_shovel' is not supported by this version
[16:50:21] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error: Particle 'snow_shovel' is not supported by this version
[16:50:22] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[16:50:22] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in RandomSpawn RandomTurtle
[16:50:22] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: No valid mob types configured
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in RandomSpawn RandomBee
[16:50:22] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: No valid mob types configured
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in RandomSpawn RandomFrog
[16:50:22] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: No valid mob types configured
[16:50:22] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Skill: PenitentLifesteal | File: /home/ubuntu/minecraft/plugins/MythicMobs/packs/ReliableBeastPack/skills/SpecialSkills.yml
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{type=PenitentLifeSteal;amount=1<&da>2;radius=5}
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Skill: PenitentLifesteal | File: /home/ubuntu/minecraft/plugins/MythicMobs/packs/ReliableBeastPack/skills/SpecialSkills.yml
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{type=PenitentLifeSteal;amount=0<&da>1;radius=5}
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Skill: PenitentLifesteal | File: /home/ubuntu/minecraft/plugins/MythicMobs/packs/ReliableBeastPack/skills/SpecialSkills.yml
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{type=PenitentLifeSteal;amount=1<&da>2;radius=5}
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Skill: PenitentLifesteal | File: /home/ubuntu/minecraft/plugins/MythicMobs/packs/ReliableBeastPack/skills/SpecialSkills.yml
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{type=PenitentLifeSteal;amount=0<&da>1;radius=5}
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Skill: PenitentLifesteal | File: /home/ubuntu/minecraft/plugins/MythicMobs/packs/ReliableBeastPack/skills/SpecialSkills.yml
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{type=PenitentLifeSteal;amount=0<&da>1;radius=5}
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Skill: PenitentLifesteal | File: /home/ubuntu/minecraft/plugins/MythicMobs/packs/ReliableBeastPack/skills/SpecialSkills.yml
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{type=PenitentLifeSteal;amount=0<&da>1;radius=5}
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MobsInRadius{type=PenitentLifeSteal;r=225}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MobsInRadius{type=PenitentLifeSteal;r=225}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MobsInRadius{type=PenitentLifeSteal;r=225}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MobsInRadius{type=PenitentLifeSteal;r=225}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MobsInRadius{type=PenitentLifeSteal;r=225}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MobsInRadius{type=PenitentLifeSteal;r=225}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MobsInRadius{type=PenitentLifeSteal;r=225}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MobsInRadius{type=PenitentLifeSteal;r=225}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MobsInRadius{type=PenitentLifeSteal;r=225}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MobsInRadius{type=PenitentLifeSteal;r=225}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MobsInRadius{type=PenitentLifeSteal;r=300}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Skill: LightningBarrage | File: /home/ubuntu/minecraft/plugins/MythicMobs/packs/ReliableBeastPack/skills/SpecialSkills.yml
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{type=Fade;amount=3;radius=0}
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Skill: LightningBarrage | File: /home/ubuntu/minecraft/plugins/MythicMobs/packs/ReliableBeastPack/skills/SpecialSkills.yml
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{type=Fade;amount=1;radius=6}
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Skill: LightningBarrage | File: /home/ubuntu/minecraft/plugins/MythicMobs/packs/ReliableBeastPack/skills/SpecialSkills.yml
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{type=Fade;amount=1;radius=6}
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Skill: LightningBarrage | File: /home/ubuntu/minecraft/plugins/MythicMobs/packs/ReliableBeastPack/skills/SpecialSkills.yml
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{type=Fade;amount=1;radius=6}
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Skill: ExplosiveBatBarrage | File: /home/ubuntu/minecraft/plugins/MythicMobs/packs/ReliableBeastPack/skills/SpecialSkills.yml
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{type=ExplosiveBat;amount=20;radius=10}
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mob: magma | File: /home/ubuntu/minecraft/plugins/MythicMobs/packs/DungeonPack2-0.2.2/Mobs/BlocksMobs.yml
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill magmaarrow
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=magmaarrow}
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mob: ice | File: /home/ubuntu/minecraft/plugins/MythicMobs/packs/DungeonPack2-0.2.2/Mobs/BlocksMobs.yml
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill icearrow
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=icearrow}
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mob: EliteAnimations-In-MidnightLord | File: /home/ubuntu/minecraft/plugins/MythicMobs/packs/EliteAnimations-v1_Halloween/Mobs/MobsFile_EA-Halloween.yml
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill EA-Play-In-MidnightLord
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{delay=1;s=EA<&da>Play<&da>In<&da>MidnightLord}
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mob: EliteAnimations-In-HellGate | File: /home/ubuntu/minecraft/plugins/MythicMobs/packs/EliteAnimations-v1_Halloween/Mobs/MobsFile_EA-Halloween.yml
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill EA-Play-In-HellGate
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{delay=1;s=EA<&da>Play<&da>In<&da>HellGate}
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mob: EliteAnimations-In-RagdollPossession | File: /home/ubuntu/minecraft/plugins/MythicMobs/packs/EliteAnimations-v1_Halloween/Mobs/MobsFile_EA-Halloween.yml
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill EA-Play-In-RagdollPossession
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{delay=1;s=EA<&da>Play<&da>In<&da>RagdollPossession}
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mob: EliteAnimations-In-CadaverCurse | File: /home/ubuntu/minecraft/plugins/MythicMobs/packs/EliteAnimations-v1_Halloween/Mobs/MobsFile_EA-Halloween.yml
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill EA-Play-In-CadaverCurse
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{delay=1;s=EA<&da>Play<&da>In<&da>CadaverCurse}
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mob: EliteAnimations-In-RisenDread | File: /home/ubuntu/minecraft/plugins/MythicMobs/packs/EliteAnimations-v1_Halloween/Mobs/MobsFile_EA-Halloween.yml
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill EA-Play-In-RisenDread
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{delay=1;s=EA<&da>Play<&da>In<&da>RisenDread}
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mob: EliteAnimations-Out-MidnightLord | File: /home/ubuntu/minecraft/plugins/MythicMobs/packs/EliteAnimations-v1_Halloween/Mobs/MobsFile_EA-Halloween.yml
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill EA-Play-Out-MidnightLord
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{delay=1;s=EA<&da>Play<&da>Out<&da>MidnightLord}
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mob: EliteAnimations-Out-HellGate | File: /home/ubuntu/minecraft/plugins/MythicMobs/packs/EliteAnimations-v1_Halloween/Mobs/MobsFile_EA-Halloween.yml
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill EA-Play-Out-HellGate
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{delay=1;s=EA<&da>Play<&da>Out<&da>HellGate}
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mob: EliteAnimations-Out-RagdollPossession | File: /home/ubuntu/minecraft/plugins/MythicMobs/packs/EliteAnimations-v1_Halloween/Mobs/MobsFile_EA-Halloween.yml
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill EA-Play-Out-RagdollPossession
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{delay=1;s=EA<&da>Play<&da>Out<&da>RagdollPossession}
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mob: EliteAnimations-Out-CadaverCurse | File: /home/ubuntu/minecraft/plugins/MythicMobs/packs/EliteAnimations-v1_Halloween/Mobs/MobsFile_EA-Halloween.yml
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill EA-Play-Out-CadaverCurse
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{delay=1;s=EA<&da>Play<&da>Out<&da>CadaverCurse}
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mob: EliteAnimations-Out-RisenDread | File: /home/ubuntu/minecraft/plugins/MythicMobs/packs/EliteAnimations-v1_Halloween/Mobs/MobsFile_EA-Halloween.yml
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill EA-Play-Out-RisenDread
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{delay=1;s=EA<&da>Play<&da>Out<&da>RisenDread}
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mob: Vinelith | File: /home/ubuntu/minecraft/plugins/MythicMobs/packs/ReliableBeastPack/mobs/NeutralMobs.yml
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill EquipmentRandom_Vinelith
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=EquipmentRandom_Vinelith}
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mob: IceWraith | File: /home/ubuntu/minecraft/plugins/MythicMobs/packs/ReliableBeastPack/mobs/WRAITHMOBS.yml
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill WhiteFlame
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=WhiteFlame}
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mob: IceWraith | File: /home/ubuntu/minecraft/plugins/MythicMobs/packs/ReliableBeastPack/mobs/WRAITHMOBS.yml
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill MagicianIllusionerProjectile
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=MagicianIllusionerProjectile}
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mob: Lich | File: /home/ubuntu/minecraft/plugins/MythicMobs/packs/ReliableBeastPack/mobs/2MediumLevelMobs.yml
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill LichBolt
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=LichBolt}
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mob: Leshen | File: /home/ubuntu/minecraft/plugins/MythicMobs/packs/ReliableBeastPack/mobs/SpecialMobs.yml
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{type=LeshenRoot}
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mob: Penitent | File: /home/ubuntu/minecraft/plugins/MythicMobs/packs/ReliableBeastPack/mobs/SpecialMobs.yml
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{type=Wraith}
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mob: Penitent | File: /home/ubuntu/minecraft/plugins/MythicMobs/packs/ReliableBeastPack/mobs/SpecialMobs.yml
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{type=PenitentSphere}
[16:50:22] [Server thread/WARN]: java.lang.IllegalArgumentException: No enum constant org.bukkit.Material.CACTUS_GREEN
[16:50:22] [Server thread/WARN]:     at java.base/java.lang.Enum.valueOf(Enum.java:293)
[16:50:22] [Server thread/WARN]:     at org.bukkit.Material.valueOf(Material.java:137)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.items.LegacyItemConverter.getMaterialByKey(LegacyItemConverter.java:52)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.items.LegacyItemConverter.getMaterial(LegacyItemConverter.java:61)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.drops.DropExecutor.getDrop(DropExecutor.java:212)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.drops.DropTable.lambda$new$0(DropTable.java:63)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runSecondPass$0(MythicClock.java:108)
[16:50:22] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.runSecondPass(MythicClock.java:105)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.config.ConfigExecutor.load(ConfigExecutor.java:460)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:187)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:81)
[16:50:22] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[16:50:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[16:50:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[16:50:22] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[16:50:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655)
[16:50:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604)
[16:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:768)
[16:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:530)
[16:50:22] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:326)
[16:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1235)
[16:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340)
[16:50:22] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[16:50:22] [Server thread/WARN]: java.lang.IllegalArgumentException: No enum constant org.bukkit.Material.DANDELION_YELLOW
[16:50:22] [Server thread/WARN]:     at java.base/java.lang.Enum.valueOf(Enum.java:293)
[16:50:22] [Server thread/WARN]:     at org.bukkit.Material.valueOf(Material.java:137)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.items.LegacyItemConverter.getMaterialByKey(LegacyItemConverter.java:52)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.items.LegacyItemConverter.getMaterial(LegacyItemConverter.java:61)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.drops.DropExecutor.getDrop(DropExecutor.java:212)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.drops.DropTable.lambda$new$0(DropTable.java:63)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runSecondPass$0(MythicClock.java:108)
[16:50:22] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.runSecondPass(MythicClock.java:105)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.config.ConfigExecutor.load(ConfigExecutor.java:460)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:187)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:81)
[16:50:22] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[16:50:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[16:50:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[16:50:22] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[16:50:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655)
[16:50:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604)
[16:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:768)
[16:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:530)
[16:50:22] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:326)
[16:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1235)
[16:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340)
[16:50:22] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[16:50:22] [Server thread/WARN]: java.lang.IllegalArgumentException: No enum constant org.bukkit.Material.CACTUS_GREEN
[16:50:22] [Server thread/WARN]:     at java.base/java.lang.Enum.valueOf(Enum.java:293)
[16:50:22] [Server thread/WARN]:     at org.bukkit.Material.valueOf(Material.java:137)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.items.LegacyItemConverter.getMaterialByKey(LegacyItemConverter.java:52)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.items.LegacyItemConverter.getMaterial(LegacyItemConverter.java:61)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.drops.DropExecutor.getDrop(DropExecutor.java:212)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.drops.DropTable.lambda$new$0(DropTable.java:63)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runSecondPass$0(MythicClock.java:108)
[16:50:22] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.runSecondPass(MythicClock.java:105)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.config.ConfigExecutor.load(ConfigExecutor.java:460)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:187)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:81)
[16:50:22] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[16:50:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[16:50:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[16:50:22] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[16:50:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655)
[16:50:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604)
[16:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:768)
[16:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:530)
[16:50:22] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:326)
[16:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1235)
[16:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340)
[16:50:22] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[16:50:22] [Server thread/WARN]: java.lang.IllegalArgumentException: No enum constant org.bukkit.Material.CACTUS_GREEN
[16:50:22] [Server thread/WARN]:     at java.base/java.lang.Enum.valueOf(Enum.java:293)
[16:50:22] [Server thread/WARN]:     at org.bukkit.Material.valueOf(Material.java:137)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.items.LegacyItemConverter.getMaterialByKey(LegacyItemConverter.java:52)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.items.LegacyItemConverter.getMaterial(LegacyItemConverter.java:61)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.drops.DropExecutor.getDrop(DropExecutor.java:212)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.drops.DropTable.lambda$new$0(DropTable.java:63)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runSecondPass$0(MythicClock.java:108)
[16:50:22] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.runSecondPass(MythicClock.java:105)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.config.ConfigExecutor.load(ConfigExecutor.java:460)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:187)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:81)
[16:50:22] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[16:50:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[16:50:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[16:50:22] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[16:50:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655)
[16:50:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604)
[16:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:768)
[16:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:530)
[16:50:22] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:326)
[16:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1235)
[16:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340)
[16:50:22] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[16:50:22] [Server thread/WARN]: java.lang.IllegalArgumentException: No enum constant org.bukkit.Material.DANDELION_YELLOW
[16:50:22] [Server thread/WARN]:     at java.base/java.lang.Enum.valueOf(Enum.java:293)
[16:50:22] [Server thread/WARN]:     at org.bukkit.Material.valueOf(Material.java:137)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.items.LegacyItemConverter.getMaterialByKey(LegacyItemConverter.java:52)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.items.LegacyItemConverter.getMaterial(LegacyItemConverter.java:61)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.drops.DropExecutor.getDrop(DropExecutor.java:212)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.drops.DropTable.lambda$new$0(DropTable.java:63)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runSecondPass$0(MythicClock.java:108)
[16:50:22] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.runSecondPass(MythicClock.java:105)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.config.ConfigExecutor.load(ConfigExecutor.java:460)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:187)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:81)
[16:50:22] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[16:50:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[16:50:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[16:50:22] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[16:50:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655)
[16:50:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604)
[16:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:768)
[16:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:530)
[16:50:22] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:326)
[16:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1235)
[16:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340)
[16:50:22] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[16:50:22] [Server thread/WARN]: java.lang.IllegalArgumentException: No enum constant org.bukkit.Material.CACTUS_GREEN
[16:50:22] [Server thread/WARN]:     at java.base/java.lang.Enum.valueOf(Enum.java:293)
[16:50:22] [Server thread/WARN]:     at org.bukkit.Material.valueOf(Material.java:137)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.items.LegacyItemConverter.getMaterialByKey(LegacyItemConverter.java:52)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.items.LegacyItemConverter.getMaterial(LegacyItemConverter.java:61)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.drops.DropExecutor.getDrop(DropExecutor.java:212)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.drops.DropTable.lambda$new$0(DropTable.java:63)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runSecondPass$0(MythicClock.java:108)
[16:50:22] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.clock.MythicClock.runSecondPass(MythicClock.java:105)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.core.config.ConfigExecutor.load(ConfigExecutor.java:460)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:187)
[16:50:22] [Server thread/WARN]:     at MythicMobs-5.8.0-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:81)
[16:50:22] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[16:50:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[16:50:22] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[16:50:22] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[16:50:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655)
[16:50:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604)
[16:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:768)
[16:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:530)
[16:50:22] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:326)
[16:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1235)
[16:50:22] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340)
[16:50:22] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[16:50:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition mobsinradius
[16:50:22] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[16:50:22] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mobsInRadius{types=TrollHorde;amount=0;radius=20}
[16:50:22] [Server thread/INFO]: [MythicMobs] ✓ Loaded 126 mobs.
[16:50:22] [Server thread/INFO]: [MythicMobs] ✓ Loaded 6 vanilla mob overrides.
[16:50:22] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[16:50:22] [Server thread/INFO]: [MythicMobs] ✓ Loaded 301 skills.
[16:50:22] [Server thread/INFO]: [MythicMobs] ✓ Loaded 32 random spawns.
[16:50:22] [Server thread/INFO]: [MythicMobs] ✓ Loaded 19 mythic items.
[16:50:22] [Server thread/INFO]: [MythicMobs] ✓ Loaded 8 drop tables.
[16:50:22] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[16:50:22] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[16:50:22] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[16:50:22] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs Premium v5.8.0 ( build 2f3fb7f8 ) has been successfully loaded!
[16:50:23] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
[16:50:23] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: MythicMobs
[16:50:23] [Server thread/INFO]: [dynmap] Enabling dynmap v3.7-SNAPSHOT-968
[16:50:23] [Server thread/INFO]: [dynmap] Added 20 custom biome mappings
[16:50:23] [Server thread/INFO]: [dynmap] Using LuckPerms 5.4.141 for access control
[16:50:24] [Server thread/INFO]: [dynmap] Mod Support processing completed
[16:50:26] [Server thread/INFO]: [dynmap] Loaded 27 shaders.
[16:50:26] [Server thread/INFO]: [dynmap] Loaded 83 perspectives.
[16:50:26] [Server thread/INFO]: [dynmap] Loaded 22 lightings.
[16:50:26] [Server thread/INFO]: [dynmap] Starting enter/exit processing
[16:50:26] [Dynmap Render Thread/INFO]: [dynmap] Finish marker initialization
[16:50:26] [Server thread/INFO]: [dynmap] Web server started on address 0.0.0.0:8123
[16:50:26] [Server thread/INFO]: [dynmap] version 3.7-SNAPSHOT-968 is enabled - core version 3.7-SNAPSHOT-985
[16:50:26] [Server thread/INFO]: [dynmap] For support, visit our Discord at https://discord.gg/s3rd5qn
[16:50:26] [Server thread/INFO]: [dynmap] For news, visit https://reddit.com/r/Dynmap or follow https://universeodon.com/@dynmap
[16:50:26] [Server thread/INFO]: [dynmap] To report or track bugs, visit https://github.com/webbukkit/dynmap/issues
[16:50:26] [Server thread/INFO]: [dynmap] If you'd like to donate, please visit https://www.patreon.com/dynmap or https://ko-fi.com/michaelprimm
[16:50:26] [Server thread/INFO]: [dynmap] World 'world' disabled
[16:50:26] [Server thread/INFO]: [dynmap] World 'world_nether' disabled
[16:50:26] [Server thread/INFO]: [dynmap] World 'world_the_end' disabled
[16:50:26] [Server thread/INFO]: [dynmap] World 'waterworld' disabled
[16:50:26] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'corrupted_magika'.
[16:50:26] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'test'.
[16:50:26] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'guildplots2'.
[16:50:26] [Server thread/INFO]: [dynmap] Loaded 1315 pending tile renders for world 'guildplots2'
[16:50:26] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'magika'.
[16:50:26] [Server thread/INFO]: [dynmap] World 'loamap' disabled
[16:50:26] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'guildplots3'.
[16:50:26] [Server thread/INFO]: [dynmap] Loaded 1705 pending tile renders for world 'guildplots3'
[16:50:26] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'guildplots'.
[16:50:26] [Server thread/INFO]: [dynmap] Loaded 14782 pending tile renders for world 'guildplots'
[16:50:26] [Server thread/INFO]: [dynmap] World 'heaven' disabled
[16:50:26] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'lumbridge'.
[16:50:26] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'playerplots'.
[16:50:26] [Server thread/INFO]: [dynmap] Loaded 239 pending tile renders for world 'playerplots'
[16:50:26] [Server thread/INFO]: [dynmap] World 'creative_world' disabled
[16:50:26] [Server thread/INFO]: [dynmap] World 'devworld' disabled
[16:50:26] [Server thread/INFO]: [dynmap] World 'flatlands' disabled
[16:50:26] [Server thread/INFO]: [dynmap] Enabled
[16:50:26] [Server thread/INFO]: [MythicLib] Enabling MythicLib v1.7.1-SNAPSHOT
[16:50:27] [Server thread/INFO]: [MythicLib] Hooked onto TextDisplays (holograms)
[16:50:27] [Server thread/INFO]: [MythicMobs] MMO Plugin Support has been enabled!
[16:50:27] [Server thread/INFO]: [MythicLib] Hooked onto MythicMobs
[16:50:27] [Server thread/INFO]: [MythicLib] Hooked onto ProtocolLib
[16:50:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythiclib [1.7.1-SNAPSHOT]
[16:50:27] [Server thread/INFO]: [MythicLib] Hooked onto PlaceholderAPI
[16:50:27] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.37-SNAPSHOT (build 3706)
[16:50:27] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[16:50:27] [Server thread/ERROR]: Error occurred while enabling Citizens v2.0.37-SNAPSHOT (build 3706) (Is it up to date?)
java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_21_R3/boss/CraftBossBar
    at Citizens.jar/net.citizensnpcs.nms.v1_21_R3.util.NMSImpl.<clinit>(NMSImpl.java:2730) ~[Citizens.jar:?]
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:534) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:513) ~[?:?]
    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.3.jar:1.21.3-82-5a60ffb]
    at Citizens.jar/net.citizensnpcs.api.util.SpigotUtil.lambda$getMinecraftPackage$1(SpigotUtil.java:176) ~[Citizens.jar:?]
    at Citizens.jar/net.citizensnpcs.api.util.SpigotUtil.getMinecraftPackage(SpigotUtil.java:181) ~[Citizens.jar:?]
    at Citizens.jar/net.citizensnpcs.Citizens.onEnable(Citizens.java:326) ~[Citizens.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:768) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:530) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:326) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1235) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_21_R3.boss.CraftBossBar
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 21 more
[16:50:27] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.37-SNAPSHOT (build 3706)
[16:50:27] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.12
[16:50:27] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.3! Trying to find NMS support
[16:50:27] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R2' loaded!
[16:50:27] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[16:50:27] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.14.0
[16:50:27] [Server thread/INFO]: [NBTAPI] Checking bindings...
[16:50:28] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[16:50:28] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[16:50:28] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[16:50:29] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[16:50:29] [Server thread/INFO]: [GPS] Enabling GPS v2.19.28
[16:50:29] [Server thread/INFO]: [MMOCore] Enabling MMOCore v1.13.1-SNAPSHOT
[16:50:29] [Server thread/INFO]: [MMOCore] Hooked onto Vault
[16:50:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mmocore [1.13.1-SNAPSHOT]
[16:50:29] [Server thread/INFO]: [MMOCore] Hooked onto PlaceholderAPI
[16:50:29] [Server thread/INFO]: [MMOCore] Hooked onto Citizens
[16:50:29] [Server thread/INFO]: [MMOCore] Hooked onto WorldGuard
[16:50:29] [Server thread/INFO]: [MMOCore] Hooked onto MythicMobs
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a1 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a1 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a1 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a2 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a2 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a2 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a3 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a3 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a3 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a4 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a4 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a4 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a5 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a5 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a5 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a6 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a6 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a6 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a7 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a7 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a7 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a8 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a8 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a8 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a9 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a9 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a9 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a10 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a10 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a10 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a11 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a11 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a11 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a12 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a12 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a12 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a13 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a13 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a13 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a14 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a14 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a14 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a15 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a15 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a15 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a16 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a16 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a16 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a17 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a17 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a17 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a18 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a18 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a18 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a19 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a19 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a19 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a20 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a20 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a20 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b1 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b1 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b1 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b2 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b2 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b2 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b3 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b3 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b3 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b4 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b4 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b4 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b5 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b5 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b5 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b6 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b6 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b6 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b7 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b7 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b7 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b8 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b8 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b8 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b9 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b9 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b9 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b10 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b10 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b10 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b11 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b11 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b11 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b12 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b12 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b12 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b13 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b13 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b13 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b14 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b14 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b14 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b15 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b15 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b15 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b16 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b16 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b16 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b17 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b17 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b17 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b18 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b18 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b18 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b19 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b19 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b19 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b20 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b20 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b20 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c1 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c1 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c1 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c2 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c2 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c2 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c3 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c3 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c3 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c4 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c4 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c4 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c5 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c5 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c5 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c6 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c6 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c6 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c7 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c7 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c7 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c8 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c8 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c8 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c9 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c9 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c9 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c10 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c10 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c10 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c11 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c11 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c11 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c12 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c12 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c12 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c13 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c13 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c13 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c14 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c14 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c14 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c15 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c15 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c15 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c16 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c16 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c16 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c17 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c17 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c17 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c18 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c18 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c18 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c19 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c19 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c19 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c20 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c20 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c20 in tree archer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a1 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a1 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a1 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a2 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a2 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a2 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a3 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a3 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a3 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a4 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a4 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a4 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a5 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a5 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a5 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a6 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a6 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a6 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a7 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a7 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a7 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a8 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a8 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a8 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a9 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a9 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a9 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a10 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a10 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a10 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a11 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a11 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a11 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a12 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a12 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a12 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a13 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a13 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a13 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a14 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a14 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a14 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a15 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a15 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a15 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a16 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a16 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a16 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a17 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a17 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a17 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a18 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a18 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a18 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a19 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a19 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a19 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a20 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a20 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a20 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b1 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b1 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b1 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b2 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b2 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b2 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b3 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b3 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b3 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b4 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b4 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b4 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b5 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b5 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b5 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b6 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b6 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b6 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b7 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b7 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b7 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b8 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b8 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b8 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b9 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b9 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b9 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b10 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b10 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b10 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b11 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b11 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b11 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b12 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b12 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b12 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b13 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b13 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b13 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b14 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b14 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b14 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b15 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b15 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b15 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b16 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b16 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b16 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b17 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b17 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b17 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b18 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b18 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b18 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b19 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b19 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b19 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b20 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b20 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b20 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c1 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c1 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c1 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c2 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c2 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c2 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c3 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c3 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c3 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c4 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c4 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c4 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c5 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c5 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c5 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c6 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c6 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c6 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c7 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c7 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c7 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c8 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c8 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c8 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c9 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c9 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c9 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c10 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c10 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c10 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c11 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c11 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c11 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c12 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c12 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c12 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c13 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c13 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c13 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c14 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c14 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c14 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c15 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c15 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c15 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c16 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c16 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c16 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c17 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c17 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c17 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c18 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c18 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c18 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c19 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c19 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c19 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c20 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c20 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c20 in tree healer. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a1 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a1 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a1 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a2 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a2 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a2 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a3 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a3 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a3 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a4 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a4 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a4 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a5 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a5 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a5 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a6 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a6 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a6 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a7 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a7 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a7 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a8 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a8 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a8 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a9 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a9 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a9 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a10 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a10 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a10 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a11 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a11 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a11 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a12 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a12 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a12 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a13 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a13 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a13 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a14 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a14 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a14 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a15 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a15 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a15 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a16 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a16 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a16 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a17 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a17 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a17 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a18 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a18 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a18 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a19 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a19 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a19 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a20 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a20 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a20 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b1 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b1 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b1 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b2 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b2 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b2 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b3 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b3 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b3 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b4 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b4 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b4 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b5 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b5 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b5 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b6 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b6 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b6 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b7 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b7 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b7 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b8 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b8 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b8 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b9 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b9 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b9 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b10 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b10 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b10 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b11 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b11 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b11 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b12 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b12 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b12 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b13 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b13 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b13 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b14 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b14 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b14 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b15 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b15 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b15 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b16 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b16 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b16 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b17 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b17 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b17 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b18 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b18 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b18 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b19 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b19 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b19 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b20 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b20 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b20 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c1 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c1 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c1 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c2 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c2 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c2 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c3 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c3 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c3 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c4 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c4 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c4 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c5 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c5 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c5 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c6 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c6 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c6 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c7 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c7 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c7 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c8 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c8 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c8 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c9 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c9 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c9 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c10 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c10 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c10 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c11 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c11 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c11 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c12 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c12 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c12 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c13 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c13 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c13 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c14 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c14 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c14 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c15 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c15 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c15 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c16 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c16 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c16 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c17 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c17 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c17 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c18 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c18 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c18 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c19 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c19 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c19 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c20 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c20 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c20 in tree mage. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a1 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a1 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a1 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a2 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a2 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a2 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a3 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a3 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a3 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a4 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a4 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a4 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a5 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a5 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a5 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a6 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a6 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a6 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a7 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a7 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a7 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a8 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a8 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a8 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a9 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a9 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a9 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a10 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a10 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a10 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a11 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a11 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a11 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a12 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a12 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a12 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a13 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a13 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a13 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a14 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a14 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a14 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a15 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a15 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a15 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a16 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a16 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a16 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a17 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a17 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a17 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a18 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a18 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a18 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a19 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a19 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a19 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node a20 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node a20 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node a20 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b1 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b1 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b1 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b2 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b2 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b2 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b3 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b3 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b3 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b4 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b4 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b4 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b5 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b5 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b5 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b6 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b6 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b6 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b7 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b7 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b7 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b8 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b8 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b8 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b9 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b9 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b9 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b10 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b10 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b10 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b11 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b11 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b11 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b12 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b12 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b12 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b13 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b13 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b13 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b14 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b14 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b14 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b15 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b15 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b15 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b16 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b16 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b16 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b17 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b17 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b17 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b18 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b18 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b18 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b19 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b19 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b19 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node b20 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node b20 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node b20 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c1 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c1 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c1 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c2 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c2 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c2 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c3 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c3 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c3 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c4 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c4 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c4 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c5 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c5 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c5 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c6 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c6 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c6 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c7 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c7 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c7 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c8 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c8 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c8 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c9 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c9 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c9 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c10 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c10 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c10 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c11 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c11 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c11 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c12 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c12 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c12 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c13 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c13 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c13 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c14 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c14 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c14 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c15 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c15 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c15 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c16 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c16 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c16 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c17 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c17 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c17 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c18 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c18 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c18 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c19 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c19 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c19 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state unlockable of node c20 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state locked of node c20 in tree warrior. Using default display.
[16:50:29] [Server thread/INFO]: [MMOCore] Could not find node display for state fully-locked of node c20 in tree warrior. Using default display.
[16:50:29] [Server thread/WARN]: [MMOCore] Could not load quest from file 'adv-begins.yml': Cannot invoke "org.bukkit.configuration.ConfigurationSection.getKeys(boolean)" because the return value of "org.bukkit.configuration.ConfigurationSection.getConfigurationSection(String)" is null
[16:50:29] [Server thread/WARN]: [MMOCore] Could not load quest from file 'fetch-mango.yml': Cannot invoke "org.bukkit.configuration.ConfigurationSection.getKeys(boolean)" because the return value of "org.bukkit.configuration.ConfigurationSection.getConfigurationSection(String)" is null
[16:50:29] [Server thread/WARN]: [MMOCore] Could not load quest from file 'tutorial.yml': Cannot invoke "org.bukkit.configuration.ConfigurationSection.getKeys(boolean)" because the return value of "org.bukkit.configuration.ConfigurationSection.getConfigurationSection(String)" is null
[16:50:29] [Server thread/WARN]: [MMOCore] Could not initialize party module: Could not load compatibility with MythicDungeons
[16:50:29] [Server thread/INFO]: [MMOCore] Hooked guilds onto MMOCore
[16:50:29] [Server thread/INFO]: [SCore] Enabling SCore v42.42.42
[16:50:30] [Server thread/INFO]: ================ SCore ================
[16:50:30] [Server thread/INFO]: SCore is running on Folia
[16:50:30] [Server thread/INFO]: SCore is running on Paper or fork
[16:50:30] [Server thread/INFO]: SCore Version of the server 1.21.3-82-5a60ffb (MC: 1.21.3) !
[16:50:30] [Server thread/INFO]: SCore ExecutableItems hooked !  (7.25.2.3) Load After
[16:50:30] [Server thread/INFO]: SCore ExecutableBlocks hooked !  (5.25.2.3) Load After
[16:50:30] [Server thread/INFO]: SCore ExecutableEvents hooked !  (3.25.2.3) Load After
[16:50:30] [Server thread/INFO]: SCore PlaceholderAPI hooked !  (2.11.6)  Load Before
[16:50:30] [Server thread/INFO]: SCore WorldGuard hooked !  (7.0.11-beta1+a801a9d)  Load Before
[16:50:30] [Server thread/INFO]: SCore Vault hooked !  (1.7.3-b131)  Load Before
[16:50:30] [Server thread/INFO]: SCore Multiverse-Core hooked !  (4.3.1-b861)  Load Before
[16:50:30] [Server thread/INFO]: SCore ProtocolLib hooked !
[16:50:30] [Server thread/INFO]: SCore Locale setup: EN
[16:50:30] [Server thread/INFO]: SCore NBTAPI hooked !  (2.14.0)  Load Before
[16:50:30] [Server thread/INFO]: SCore PlotSquared hooked !
[16:50:30] [Server thread/INFO]: SCore MythicMobs hooked !  (5.8.0-SNAPSHOT-2f3fb7f8)  Load Before
[16:50:30] [Server thread/INFO]: SCore DecentHolograms hooked !  (2.8.12)  Load Before
[16:50:30] [Server thread/INFO]: SCore MMOCore hooked !  (1.13.1-SNAPSHOT)  Load Before
[16:50:30] [Server thread/INFO]: SCore WorldEdit hooked !  (2.12.4-SNAPSHOT-1010;e0db69c)  Load Before
[16:50:30] [Server thread/INFO]: SCore Language of the editor setup on EN
[16:50:30] [Server thread/INFO]: SCore Language for in-game messages setup on EN
[16:50:30] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[16:50:30] [Server thread/INFO]: SCore Connection to the db...
[16:50:30] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[16:50:30] [Server thread/INFO]: SCore Creating table SecurityOP if not exists...
[16:50:30] [Server thread/INFO]: SCore Creating table Commands if not exists...
[16:50:30] [Server thread/INFO]: SCore Creating table Cooldowns if not exists...
[16:50:30] [Server thread/INFO]: SCore Creating table Commands Player if not exists...
[16:50:30] [Server thread/INFO]: SCore Creating table Commands Entity if not exists...
[16:50:30] [Server thread/INFO]: SCore Creating table Commands Block if not exists...
[16:50:30] [Server thread/INFO]: SCore Creating table UsePerDay if not exists...
[16:50:30] [Server thread/INFO]: SCore SCore loaded 21 variables from local files !
[16:50:30] [Server thread/INFO]: SCore SCore loaded 0 delayed commands saved
[16:50:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: SCore [1.0.0]
[16:50:30] [Server thread/INFO]: ================ SCore ================
[16:50:30] [Server thread/INFO]: [Quests] Enabling Quests v5.1.5-b512
[16:50:30] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[16:50:42] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.3! Trying to find NMS support
[16:50:42] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R2' loaded!
[16:50:42] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'Quests' to create a bStats instance!
[16:50:42] [Server thread/INFO]: [Quests] Loaded language en-US. Translations via Crowdin
[16:50:42] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[16:50:42] [Server thread/INFO]: [Quests] Loading storage implementation: YAML
[16:50:42] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[16:50:42] [Server thread/INFO]: [Skript] Enabling Skript v2.9.4
[16:50:43] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] A new version of Skript is available: 2.10.1 (you're currently running 2.9.4)
[16:50:43] [ForkJoinPool.commonPool-worker-1/INFO]: Download it at: <aqua><u><link:https://github.com/SkriptLang/Skript/releases/download/2.10.1/Skript-2.10.1.jar>https://github.com/SkriptLang/Skript/releases/download/2.10.1/Skript-2.10.1.jar
[16:50:59] [Server thread/INFO]: [Skript] Loaded 233164 aliases in 17051ms
[16:51:00] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[16:51:00] [Server thread/INFO]: [MMOItems] Enabling MMOItems v6.10.1-SNAPSHOT
[16:51:00] [Server thread/INFO]: [MMOItems] Hooked onto MythicMobs
[16:51:00] [Server thread/INFO]: [MMOItems] Hooked onto MMOCore
[16:51:00] [Server thread/INFO]: [MMOItems] Now using MMOCore as RPG core plugin
[16:51:00] [Server thread/INFO]: [MMOItems LONG_SWORD DUAL_LONGSWORD] Could not load base item data 'item-particles': Particle is missing type or selected particle.
[16:51:00] [Server thread/INFO]: [MMOItems Template Modifiers] Loading template modifiers, please wait..
[16:51:00] [Server thread/INFO]: [MMOItems Item Templates] Loading item templates, please wait...
[16:51:00] [Server thread/INFO]: [MMOItems] Hooked onto Vault
[16:51:00] [Server thread/INFO]: [MMOItems] Loading crafting stations, please wait..
[16:51:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mmoitems [6.10.1-SNAPSHOT]
[16:51:00] [Server thread/INFO]: [MMOItems] Hooked onto PlaceholderAPI
[16:51:00] [Server thread/INFO]: [MMOItems] Loading recipes, please wait...
[16:51:01] [Server thread/INFO]: [ExecutableItems] Enabling ExecutableItems v7.25.2.3
[16:51:01] [Server thread/INFO]: ========*======== ExecutableItems ========*========
[16:51:01] [Server thread/ERROR]: [ExecutableItems] Invalid world: myWorld in the option disableItemsPerWorld
[16:51:01] [Server thread/ERROR]: [ExecutableItems] Invalid world: myWorld2 in the option disableItemsPerWorld
[16:51:03] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the Material + GROUPS value of blocks from config, value: GRASS (Item: Prem_Grass_Cutter).(detailedBlocks) >> Check the wiki if you want the list of materials and groups
[16:51:03] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the Material value of blocks from config, value: ALL_PLANKS (Item: upgradable_axe) >> Materials available: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html
[16:51:03] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the Material value of blocks from config, value: ALL_WOODS (Item: upgradable_axe) >> Materials available: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html
[16:51:03] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the Material value of blocks from config, value: ALL_LOGS (Item: upgradable_axe) >> Materials available: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html
[16:51:03] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the Material value of blocks from config, value: ALL_STRIPPED_WOODS (Item: upgradable_axe) >> Materials available: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html
[16:51:03] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the Material value of blocks from config, value: ALL_STRIPPED_LOGS (Item: upgradable_axe) >> Materials available: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html
[16:51:03] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the Material value of blocks from config, value: ALL_STAIRS (Item: upgradable_axe) >> Materials available: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html
[16:51:03] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the Material value of blocks from config, value: ALL_FENCES (Item: upgradable_axe) >> Materials available: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html
[16:51:03] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the Material value of blocks from config, value: ALL_DOORS (Item: upgradable_axe) >> Materials available: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html
[16:51:03] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the Material value of blocks from config, value: ALL_TRAPDOORS (Item: upgradable_axe) >> Materials available: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html
[16:51:03] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the Material value of blocks from config, value: ALL_BEDS (Item: upgradable_axe) >> Materials available: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html
[16:51:03] [Server thread/INFO]: ExecutableItems ERROR, Invalid command (Command: SETEXECUTABLEBLOCK farmblock %block_x% %block_y% %block_z% %world% true false %player_uuid%)  (ID: (Item: upgradable_hoe)) >> You must have ExecutableBlock for the commandSETEXECUTABLEBLOCK {id} {x} {y} {z} {world} {replace true or false} [bypassProtection true or false] [ownerUUID]
[16:51:03] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the Material + GROUPS value of blocks from config, value: LAPIS_LAZULI_ORE (Item: upgradable_pickaxe).(detailedBlocks) >> Check the wiki if you want the list of materials and groups
[16:51:03] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the Material + GROUPS value of blocks from config, value: DEEPSLATE_LAPIS_LAZULI_ORE (Item: upgradable_pickaxe).(detailedBlocks) >> Check the wiki if you want the list of materials and groups
[16:51:03] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the Material + GROUPS value of blocks from config, value: LAPIS_LAZULI_ORE (Item: upgradable_pickaxe).(detailedBlocks) >> Check the wiki if you want the list of materials and groups
[16:51:03] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the Material + GROUPS value of blocks from config, value: DEEPSLATE_LAPIS_LAZULI_ORE (Item: upgradable_pickaxe).(detailedBlocks) >> Check the wiki if you want the list of materials and groups
[16:51:03] [Server thread/INFO]: ExecutableItems Amount of Executable Items configurations loaded: 283
[16:51:03] [Server thread/INFO]: ExecutableItems Items with display conditions :  
[16:51:03] [Server thread/INFO]: ========*======== ExecutableItems ========*========
[16:51:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ExecutableItems [1.0.0]
[16:51:03] [Server thread/INFO]: [BetonQuest] Enabling BetonQuest v2.2.1
[16:51:03] [Server thread/INFO]: [BetonQuest] Running on JRE 21.0.5 (build 11, optional Ubuntu-1ubuntu124.04, pre-release info N/A) by Ubuntu
[16:51:04] [Server thread/INFO]: [BetonQuest] Using SQLite for storing data!
[16:51:04] [Server thread/INFO]: [BetonQuest] Hooking into LuckPerms
[16:51:04] [Server thread/INFO]: [BetonQuest] Hooking into Vault
[16:51:04] [Server thread/INFO]: [BetonQuest] Hooking into PlaceholderAPI
[16:51:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betonquest [2.2.1]
[16:51:04] [Server thread/INFO]: [BetonQuest] Hooking into FastAsyncWorldEdit
[16:51:04] [Server thread/INFO]: [BetonQuest] Hooking into ProtocolLib
[16:51:04] [Server thread/INFO]: [BetonQuest] Hooking into WorldGuard
[16:51:04] [Server thread/INFO]: [BetonQuest] Hooking into MythicMobs
[16:51:04] [Server thread/INFO]: [BetonQuest] Hooking into MythicLib
[16:51:04] [Server thread/INFO]: [BetonQuest] Hooking into DecentHolograms
[16:51:04] [Server thread/INFO]: [BetonQuest] Hooking into MMOCore
[16:51:04] [Server thread/INFO]: [BetonQuest] Hooking into Quests
[16:51:04] [Server thread/INFO]: [BetonQuest] Hooking into Skript
[16:51:04] [Server thread/INFO]: [BetonQuest] Hooking into MMOItems
[16:51:04] [Server thread/INFO]: [BetonQuest] Using DecentHolograms as dedicated hologram provider!
[16:51:04] [Server thread/INFO]: [BetonQuest] BetonQuest successfully enabled!
[16:51:04] [Server thread/INFO]: [Coins] Enabling Coins vb1.13.2
[16:51:04] [Server thread/INFO]: [Coins] Vault is used as the economy provider.
[16:51:04] [Server thread/WARN]: [Coins] #1: Config file has wrong value at `sound-name`. Using its default value now (ITEM_ARMOR_EQUIP_GOLD).
[16:51:04] [Server thread/WARN]: [Coins] Loaded the config of Coins with 1 warnings. Check above here for details.
[16:51:04] [Server thread/INFO]: [Coins] Initialized in 50ms.
[16:51:04] [Server thread/INFO]: [Nexo] Enabling Nexo v0.9-dev
[16:51:05] [pool-16-thread-1/WARN]: [Coins] ------------------------------------------------------------------
[16:51:05] [pool-16-thread-1/WARN]: [Coins]   Detected an outdated version of Coins (b1.13.2 is installed).
[16:51:05] [pool-16-thread-1/WARN]: [Coins]   The latest version is 1.13.1, released on December 13, 2022.
[16:51:05] [pool-16-thread-1/WARN]: [Coins]   Download: https://www.spigotmc.org/resources/coins.33382/
[16:51:05] [pool-16-thread-1/WARN]: [Coins] ------------------------------------------------------------------
[16:51:05] [Server thread/INFO]: Nexo | Version v1_21_R2 has been detected.
[16:51:05] [Server thread/INFO]: Nexo | Nexo will use the NMSHandler for this version.

[16:51:05] [Server thread/INFO]: Nexo | PackServer set to POLYMATH
[16:51:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: nexo [0.9-dev]
[16:51:05] [Server thread/INFO]: Nexo | Plugin "PlaceholderAPI" detected, enabling hooks
[16:51:05] [Server thread/INFO]: Nexo | Plugin "MythicMobs" detected, enabling hooks
[16:51:05] [Server thread/INFO]: Nexo | Plugin "ModelEngine" detected, enabling hooks
[16:51:05] [Server thread/INFO]: [ExecutableBlocks] Enabling ExecutableBlocks v5.25.2.3
[16:51:05] [Server thread/INFO]: ========*======== ExecutableBlocks ========*========
[16:51:05] [ForkJoinPool.commonPool-worker-2/INFO]: Nexo | Skipped downloading DefaultPack as it is up to date!
[16:51:05] [Server thread/INFO]: ExecutableBlocks ERROR, Couldn't load the Option value of option from config, value: NULL (Block: Free_Hut) >> Options available: https://docs.ssomar.com/
[16:51:05] [Server thread/INFO]: ExecutableBlocks ERROR, Couldn't load the Option value of option from config, value: NULL (Block: Free_Test) >> Options available: https://docs.ssomar.com/
[16:51:05] [Server thread/INFO]: ExecutableBlocks ERROR, Couldn't load the Option value of option from config, value: NULL (Block: Free_Test2) >> Options available: https://docs.ssomar.com/
[16:51:05] [Server thread/INFO]: ExecutableBlocks Amount of Executable Blocks configurations loaded: 16
[16:51:05] [Server thread/INFO]: ExecutableBlocks There are: 753 ExecutableBlock placed configs to load.
[16:51:05] [Server thread/INFO]: ExecutableBlocks 0/753 blocks loaded.
[16:51:05] [Server thread/INFO]: ExecutableBlocks 75/753 blocks loaded.
[16:51:05] [Server thread/INFO]: ExecutableBlocks 150/753 blocks loaded.
[16:51:05] [Server thread/INFO]: ExecutableBlocks 225/753 blocks loaded.
[16:51:05] [Server thread/INFO]: ExecutableBlocks 300/753 blocks loaded.
[16:51:05] [Server thread/INFO]: ExecutableBlocks 375/753 blocks loaded.
[16:51:05] [Server thread/INFO]: ExecutableBlocks 450/753 blocks loaded.
[16:51:05] [Server thread/INFO]: ExecutableBlocks 525/753 blocks loaded.
[16:51:05] [Server thread/INFO]: ExecutableBlocks 600/753 blocks loaded.
[16:51:05] [Server thread/INFO]: ExecutableBlocks 675/753 blocks loaded.
[16:51:05] [Server thread/INFO]: ExecutableBlocks 750/753 blocks loaded.
[16:51:05] [Server thread/INFO]: ExecutableBlocks 753 ExecutableBlock(s)Placed loaded !
[16:51:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ExecutableBlocks [1.0.0]
[16:51:05] [Server thread/INFO]: ========*======== ExecutableBlocks ========*========
[16:51:05] [Server thread/INFO]: [CustomFishing] Enabling CustomFishing v2.2.33
[16:51:06] [Server thread/INFO]: [CustomFishing] MMOItems hooked!
[16:51:06] [Server thread/INFO]: [CustomFishing] ExecutableItems hooked!
[16:51:06] [Server thread/INFO]: [CustomFishing] MythicMobs hooked!
[16:51:06] [Server thread/INFO]: [CustomFishing] MMOCore hooked!
[16:51:06] [Server thread/INFO]: [CustomFishing] Vault hooked!
[16:51:06] [Server thread/INFO]: [CustomFishing] BetonQuest hooked!
[16:51:06] [Server thread/INFO]: [CustomFishing] WorldGuard hooked!
[16:51:06] [Server thread/INFO]: [CustomFishing] PlaceholderAPI hooked!
[16:51:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: customfishing [2.2]
[16:51:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cfcompetition [2.2]
[16:51:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: fishingstats [2.2]
[16:51:07] [Server thread/INFO]: [CustomFishing] Loaded action expansion: particle[1.1] by XiaoMoMi
[16:51:08] [Server thread/INFO]: [LM_Items] Enabling LM_Items v1.3.3
[16:51:08] [Server thread/INFO]: LM_Items: start-up complete, took 2 ms
[16:51:08] [Server thread/INFO]: [CForms] Enabling CrossplatForms v1.5.0
[16:51:08] [customfishing-worker-5/WARN]: [CustomFishing] Update is available: https://polymart.org/resource/2723/
[16:51:08] [Server thread/WARN]: [CForms] Failed to initialize Brigadier support: Could not initialize Brigadier mappings. Reason: paper brigadier initialization failure (null)
[16:51:08] [Server thread/INFO]: [CForms] Version: 1.5.0, Branch: dev, Build: -1, Commit: 4864801
[16:51:09] [Server thread/INFO]: [CForms] Took 689ms to boot CrossplatForms.
[16:51:09] [Server thread/INFO]: [skript-placeholders] Enabling skript-placeholders v1.7.0
[16:51:09] [Server thread/INFO]: [FancyNpcs] Enabling FancyNpcs v2.4.1.230
[16:51:09] [FancyLogger/INFO]: [FancyNpcs] (Server thread) INFO: FancyNpcs (2.4.1.230) has been enabled.
[16:51:09] [Server thread/INFO]: [Aurora] Enabling Aurora v2.0.5
[16:51:09] [Server thread/INFO]: [Aurora] [ACF] Enabled Asynchronous Tab Completion Support!
[16:51:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aurora [1.0]
[16:51:09] [Server thread/INFO]: Aurora | Loaded 2 economy providers. Vault, Essentials
[16:51:09] [Server thread/INFO]: Aurora | Using Essentials as the default economy provider.
[16:51:09] [Server thread/INFO]: [gg.auroramc.aurora.libs.hikari.HikariDataSource] aurora-leaderboard-pool - Starting...
[16:51:09] [Server thread/INFO]: [gg.auroramc.aurora.libs.hikari.pool.HikariPool] aurora-leaderboard-pool - Added connection org.sqlite.jdbc4.JDBC4Connection@40a29b3d
[16:51:09] [Server thread/INFO]: [gg.auroramc.aurora.libs.hikari.HikariDataSource] aurora-leaderboard-pool - Start completed.
[16:51:09] [Server thread/INFO]: [WorldGuard] Registering session handler gg.auroramc.aurora.expansions.worldguard.WorldGuardEntryAndLeaveHandler
[16:51:09] [ForkJoinPool.commonPool-worker-2/WARN]: [FancyNpcs] 
-------------------------------------------------------
You are not using the latest version of the FancyNpcs plugin.
Please update to the newest version (2.4.2).
https://modrinth.com/plugin/FancyNpcs
-------------------------------------------------------

[16:51:09] [FancyLogger/INFO]: [FancyNpcs] (ForkJoinPool.commonPool-worker-2) WARN: You are not using the latest version of the FancyNpcs plugin.
[16:51:09] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[16:51:09] [Server thread/INFO]: [Votifier] Loaded token for website: default
[16:51:10] [Server thread/INFO]: [Votifier] Using NIO transport to accept votes.
[16:51:10] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[16:51:10] [Server thread/INFO]: [PlayerVaults] Enabling PlayerVaults v4.4.0-SNAPSHOT
[16:51:10] [Votifier NIO boss/INFO]: [Votifier] Votifier enabled on socket /[0:0:0:0:0:0:0:0]:8192.
[16:51:10] [Server thread/INFO]: [PlayerVaults] Added EMERALD to list of blocked materials.
[16:51:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playervaults [4.4.0-SNAPSHOT]
[16:51:10] [Server thread/INFO]: [PlayerVaults] Adding placeholders for PlaceholderAPI!
[16:51:10] [Server thread/INFO]: [PlayerVaults] Loaded! Took 360ms
[16:51:10] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.6.3
[16:51:10] [Server thread/INFO]:  
[16:51:10] [Server thread/INFO]: __________________________________________________________
[16:51:10] [Server thread/INFO]:  
[16:51:10] [Server thread/INFO]:                        TradeSystem [2.6.3]
[16:51:10] [Server thread/INFO]:  
[16:51:10] [Server thread/INFO]: Status:
[16:51:10] [Server thread/INFO]:  
[16:51:10] [Server thread/INFO]: MC-Version: Paper (1.21.3)
[16:51:10] [Server thread/INFO]:  
[16:51:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tradesystem [1.2]
[16:51:11] [Server thread/INFO]:   > Loading sounds
[16:51:11] [Server thread/INFO]:   > Loading blacklist
[16:51:11] [Server thread/INFO]:     ...got 3 blocked item(s)
[16:51:11] [Server thread/INFO]:   > Loading layouts
[16:51:11] [Server thread/INFO]:     ...got 5 layout(s)
[16:51:11] [Server thread/INFO]:   > Queuing database initializing task
[16:51:11] [Server thread/INFO]:  
[16:51:11] [Server thread/INFO]: Finished (505ms)
[16:51:11] [Server thread/INFO]:  
[16:51:11] [Server thread/INFO]: __________________________________________________________
[16:51:11] [Server thread/INFO]:  
[16:51:11] [Server thread/INFO]: [LevelledMobs] Enabling LevelledMobs v4.2.0.1 b93
[16:51:11] [Server thread/INFO]: [LevelledMobs] Enabling commands
[16:51:11] [Server thread/INFO]: [LevelledMobs] Building reflection cache, use simple names: true
[16:51:11] [Server thread/INFO]: [LevelledMobs] Using NMS version 1.21.3 for nametag support
[16:51:11] [Server thread/INFO]: [LevelledMobs] File Loader: Loading files...
[16:51:11] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'settings.yml'...
[16:51:11] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'messages.yml'...
[16:51:11] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'externalplugins.yml'...
[16:51:11] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'rules.yml'...
[16:51:11] [Server thread/INFO]: [LevelledMobs] Current rules hash: c1ab9c74b56b9a270f98852c1a3bd1dbd709961e957bd679a970571d36bc9735
[16:51:11] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'customdrops.yml'...
[16:51:11] [Server thread/INFO]: [LevelledMobs] Listeners: Registering event listeners...
[16:51:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: LevelledMobs [4.2.0.1 b93]
[16:51:11] [Server thread/INFO]: [LevelledMobs] Running misc procedures
[16:51:11] [Server thread/INFO]: [LevelledMobs] Tasks: Starting async nametag auto update task...
[16:51:11] [Server thread/INFO]: [LevelledMobs] Start-up complete (took 224ms)
[16:51:11] [Server thread/INFO]: [BanItem] Enabling BanItem v3.5
[16:51:11] [Server thread/INFO]: [ExecutableLevers] Enabling ExecutableLevers v2.24.11.30
[16:51:11] [Server thread/INFO]: ================ ExecutableLevers ================
[16:51:11] [Server thread/INFO]: ================ ExecutableLevers ================
[16:51:11] [Server thread/INFO]: [MythicDungeons] Enabling MythicDungeons v2.0.0-SNAPSHOT
[16:51:11] [Server thread/WARN]: java.lang.NoSuchMethodException: org.bukkit.craftbukkit.inventory.CraftMetaSkull.setProfile(com.mojang.authlib.GameProfile)
[16:51:11] [Server thread/WARN]:     at java.base/java.lang.Class.getDeclaredMethod(Class.java:2848)
[16:51:11] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getDeclaredMethod(AbstractDefaultRulesReflectionProxy.java:95)
[16:51:11] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getDeclaredMethod(Unknown Source)
[16:51:11] [Server thread/WARN]:     at MythicDungeons-2.0.0-SNAPSHOT (2).jar//net.playavalon.mythicdungeons.avngui.Utility.Util.createHeadByTextures(Util.java:32)
[16:51:11] [Server thread/WARN]:     at MythicDungeons-2.0.0-SNAPSHOT (2).jar//net.playavalon.mythicdungeons.avngui.Utility.Util.getPreviousButton(Util.java:21)
[16:51:11] [Server thread/WARN]:     at MythicDungeons-2.0.0-SNAPSHOT (2).jar//net.playavalon.mythicdungeons.avngui.GUI.Buttons.ButtonPrevious.<init>(ButtonPrevious.java:13)
[16:51:11] [Server thread/WARN]:     at MythicDungeons-2.0.0-SNAPSHOT (2).jar//net.playavalon.mythicdungeons.avngui.AvnAPI.<init>(AvnAPI.java:19)
[16:51:11] [Server thread/WARN]:     at MythicDungeons-2.0.0-SNAPSHOT (2).jar//net.playavalon.mythicdungeons.MythicDungeons.onEnable(MythicDungeons.java:212)
[16:51:11] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[16:51:11] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[16:51:11] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[16:51:11] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[16:51:11] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655)
[16:51:11] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604)
[16:51:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:768)
[16:51:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:530)
[16:51:11] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:326)
[16:51:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1235)
[16:51:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340)
[16:51:11] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[16:51:11] [Server thread/WARN]: java.lang.NoSuchMethodException: org.bukkit.craftbukkit.inventory.CraftMetaSkull.setProfile(com.mojang.authlib.GameProfile)
[16:51:11] [Server thread/WARN]:     at java.base/java.lang.Class.getDeclaredMethod(Class.java:2848)
[16:51:11] [Server thread/WARN]:     at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.getDeclaredMethod(AbstractDefaultRulesReflectionProxy.java:95)
[16:51:11] [Server thread/WARN]:     at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.getDeclaredMethod(Unknown Source)
[16:51:11] [Server thread/WARN]:     at MythicDungeons-2.0.0-SNAPSHOT (2).jar//net.playavalon.mythicdungeons.avngui.Utility.Util.createHeadByTextures(Util.java:32)
[16:51:11] [Server thread/WARN]:     at MythicDungeons-2.0.0-SNAPSHOT (2).jar//net.playavalon.mythicdungeons.avngui.Utility.Util.getNextButton(Util.java:16)
[16:51:11] [Server thread/WARN]:     at MythicDungeons-2.0.0-SNAPSHOT (2).jar//net.playavalon.mythicdungeons.avngui.GUI.Buttons.ButtonNext.<init>(ButtonNext.java:13)
[16:51:11] [Server thread/WARN]:     at MythicDungeons-2.0.0-SNAPSHOT (2).jar//net.playavalon.mythicdungeons.avngui.AvnAPI.<init>(AvnAPI.java:20)
[16:51:11] [Server thread/WARN]:     at MythicDungeons-2.0.0-SNAPSHOT (2).jar//net.playavalon.mythicdungeons.MythicDungeons.onEnable(MythicDungeons.java:212)
[16:51:11] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[16:51:11] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[16:51:11] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[16:51:11] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[16:51:11] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655)
[16:51:11] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604)
[16:51:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:768)
[16:51:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:530)
[16:51:11] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:326)
[16:51:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1235)
[16:51:11] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340)
[16:51:11] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[16:51:11] [Server thread/INFO]: [MythicDungeons] Using PaperListener...
[16:51:11] [Server thread/INFO]: [MythicDungeons] [STDOUT] Using default parties! Enabled party support.
[16:51:11] [Server thread/WARN]: Nag author(s): '[MarcatoSound, Aestrus]' of 'MythicDungeons v2.0.0-SNAPSHOT' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[16:51:11] [Server thread/INFO]: [MythicDungeons] MythicMobs plugin found! Enabled MythicMobs support.
[16:51:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: md [2.0.0]
[16:51:11] [Server thread/ERROR]: Error occurred while enabling MythicDungeons v2.0.0-SNAPSHOT (Is it up to date?)
java.lang.NoClassDefFoundError: net/citizensnpcs/Citizens
    at MythicDungeons-2.0.0-SNAPSHOT (2).jar/net.playavalon.mythicdungeons.MythicDungeons.onEnable(MythicDungeons.java:314) ~[MythicDungeons-2.0.0-SNAPSHOT (2).jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:768) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:530) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:326) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1235) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:340) ~[paper-1.21.3.jar:1.21.3-82-5a60ffb]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: net.citizensnpcs.Citizens
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 13 more
[16:51:11] [Server thread/INFO]: [MythicDungeons] Disabling MythicDungeons v2.0.0-SNAPSHOT
[16:51:11] [Server thread/INFO]: [MythicDungeons] Cleaning up dungeons...
[16:51:11] [Server thread/INFO]: [GPS-Quests] Enabling GPS-Quests v3.0
[16:51:11] [Server thread/INFO]: [uShop] Enabling uShop v2.2.2-SNAPSHOT
[16:51:11] [Server thread/INFO]: [AnimatedScoreboard] Enabling AnimatedScoreboard v0.3.5
[16:51:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: animatedscoreboard [0.0.1]
[16:51:11] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.1-DEV-null
[16:51:11] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[16:51:12] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'regularpotion' in menu 'potion_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'splash' in menu 'potion_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'linger' in menu 'potion_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'none' in menu 'cooking_menu3' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'honey_bottle' in menu 'cooking_menu3' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'beetroot' in menu 'cooking_menu3' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'potato' in menu 'cooking_menu3' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'poppy' in menu 'cooking_menu3' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'sugar' in menu 'cooking_menu3' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'bamboo' in menu 'cooking_menu3' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'blaze_rod' in menu 'cooking_menu3' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'ghast_tear' in menu 'cooking_menu3' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'magma_cream' in menu 'cooking_menu3' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'glow_berries' in menu 'cooking_menu3' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'bone' in menu 'cooking_menu3' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'none' in menu 'cooking_menu2' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'carrot' in menu 'cooking_menu2' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'wheat' in menu 'cooking_menu2' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'milk' in menu 'cooking_menu2' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'rabbitfoot' in menu 'cooking_menu2' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'apple' in menu 'cooking_menu2' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'phantom_membrane' in menu 'cooking_menu2' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'spider_eye' in menu 'cooking_menu2' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'glowstone_dust' in menu 'cooking_menu2' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'sweet_berries' in menu 'cooking_menu2' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'chorus_fruit' in menu 'cooking_menu2' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'Raw_Chicken' in menu 'cooking_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'eggs' in menu 'cooking_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'beef' in menu 'cooking_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'porkchop' in menu 'cooking_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'mutton' in menu 'cooking_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'rabbit' in menu 'cooking_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'cod' in menu 'cooking_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'salmon' in menu 'cooking_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'flesh' in menu 'cooking_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'tropical' in menu 'cooking_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'pufferfish' in menu 'cooking_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'melon' in menu 'cooking_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'pumpkin' in menu 'cooking_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'rainbow' in menu 'cooking_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] has item requirement at path: items.rainbow.left_click_requirement.requirements.item_check does not contain a material: entry!
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'radioactive' in menu 'cooking_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] has item requirement at path: items.radioactive.left_click_requirement.requirements.item_check does not contain a material: entry!
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'tuna' in menu 'cooking_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] has item requirement at path: items.tuna.left_click_requirement.requirements.item_check does not contain a material: entry!
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'pike' in menu 'cooking_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] has item requirement at path: items.pike.left_click_requirement.requirements.item_check does not contain a material: entry!
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'goldfish' in menu 'cooking_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] has item requirement at path: items.goldfish.left_click_requirement.requirements.item_check does not contain a material: entry!
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'perch' in menu 'cooking_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] has item requirement at path: items.perch.left_click_requirement.requirements.item_check does not contain a material: entry!
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'mullet' in menu 'cooking_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] has item requirement at path: items.mullet.left_click_requirement.requirements.item_check does not contain a material: entry!
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'sardine' in menu 'cooking_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] has item requirement at path: items.sardine.left_click_requirement.requirements.item_check does not contain a material: entry!
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'carp' in menu 'cooking_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] has item requirement at path: items.carp.left_click_requirement.requirements.item_check does not contain a material: entry!
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'catfish' in menu 'cooking_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] has item requirement at path: items.catfish.left_click_requirement.requirements.item_check does not contain a material: entry!
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'octopus' in menu 'cooking_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] has item requirement at path: items.octopus.left_click_requirement.requirements.item_check does not contain a material: entry!
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'sunfish' in menu 'cooking_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] has item requirement at path: items.sunfish.left_click_requirement.requirements.item_check does not contain a material: entry!
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'redsnapper' in menu 'cooking_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] has item requirement at path: items.redsnapper.left_click_requirement.requirements.item_check does not contain a material: entry!
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'salmonvoid' in menu 'cooking_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] has item requirement at path: items.salmonvoid.left_click_requirement.requirements.item_check does not contain a material: entry!
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'woodskip' in menu 'cooking_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] has item requirement at path: items.woodskip.left_click_requirement.requirements.item_check does not contain a material: entry!
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'IRON_INGOT' in menu 'smelting_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'COPPER_INGOT' in menu 'smelting_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'GOLD_INGOT' in menu 'smelting_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'NETHERITE_SCRAP' in menu 'smelting_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'STONE' in menu 'smelting_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'GLASS' in menu 'smelting_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'NETHER_BRICK' in menu 'smelting_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'BRICK' in menu 'smelting_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'SMOOTH_STONE' in menu 'smelting_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'CRACKED_STONE_BRICKS' in menu 'smelting_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'DEEPSLATE' in menu 'smelting_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'CRACKED_DEEPSLATE_BRICKS' in menu 'smelting_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'CRACKED_DEEPSLATE_TILES' in menu 'smelting_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'SMOOTH_SANDSTONE' in menu 'smelting_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'SMOOTH_RED_SANDSTONE' in menu 'smelting_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'CRACKED_NETHER_BRICKS' in menu 'smelting_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'SMOOTH_BASALT' in menu 'smelting_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'CRACKED_POLISHED_BLACKSTONE_BRICKS' in menu 'smelting_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'SMOOTH_QUARTZ' in menu 'smelting_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'TERRACOTTA' in menu 'smelting_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'SPONGE' in menu 'smelting_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'POPPED_CHORUS_FRUIT' in menu 'smelting_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'LIME_DYE' in menu 'smelting_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'GREEN_DYE' in menu 'smelting_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'cardshop' in menu 'gps' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'magika' in menu 'gps' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'healer' in menu 'gps' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'mages' in menu 'gps' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'archers' in menu 'gps' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'warriors' in menu 'gps' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'bank' in menu 'gps' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'raids' in menu 'gps' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'weapons' in menu 'gps' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_enchantments' of item 'weapons' in menu 'gps' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ENCHANTS].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'forge' in menu 'gps' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'potions' in menu 'gps' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'stopgps' in menu 'gps' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'close' in menu 'gps' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'IRON_HELMET' in menu 'armor_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'IRON_CHESTPLATE' in menu 'armor_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'IRON_LEGGINGS' in menu 'armor_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'IRON_BOOTS' in menu 'armor_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'DIAMOND_HELMET' in menu 'armor_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'DIAMOND_CHESTPLATE' in menu 'armor_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'DIAMOND_LEGGINGS' in menu 'armor_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'DIAMOND_BOOTS' in menu 'armor_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'NETHERITE_HELMET' in menu 'armor_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'NETHERITE_CHESTPLATE' in menu 'armor_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'NETHERITE_LEGGINGS' in menu 'armor_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'NETHERITE_BOOTS' in menu 'armor_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'begginerrod' in menu 'fishing_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'rod2' in menu 'fishing_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'rod3' in menu 'fishing_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'rod4' in menu 'fishing_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'rod5' in menu 'fishing_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'rod6' in menu 'fishing_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'rod7' in menu 'fishing_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'lure1' in menu 'fishing_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'lure2' in menu 'fishing_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'lure3' in menu 'fishing_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'lure4' in menu 'fishing_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'locator' in menu 'fishing_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'WOODEN_SWORD' in menu 'weapons_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'STONE_SWORD' in menu 'weapons_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'IRON_SWORD' in menu 'weapons_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'GOLDEN_SWORD' in menu 'weapons_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'DIAMOND_SWORD' in menu 'weapons_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'NETHERITE_SWORD' in menu 'weapons_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'quiver' in menu 'weapons_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'pearl_dash' in menu 'weapons_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'pearl_jump' in menu 'weapons_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'spellbook_naughty' in menu 'weapons_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'bowofcourage' in menu 'archer_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'shotgun' in menu 'archer_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'impactgrenade' in menu 'archer_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'montager' in menu 'archer_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'makibishi' in menu 'archer_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'aerialpilot' in menu 'archer_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'revolver' in menu 'archer_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'swordgun' in menu 'archer_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'turret' in menu 'archer_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'artillery' in menu 'archer_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'arthursclaymore' in menu 'mage_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'fortifier' in menu 'mage_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'rageconsumer' in menu 'mage_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'death_knight' in menu 'mage_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'heroic_hammer' in menu 'mage_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'hookshot' in menu 'mage_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'siphonshield' in menu 'mage_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'taunt' in menu 'mage_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'thorsaxe' in menu 'mage_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'prisoner' in menu 'mage_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'arthursclaymore' in menu 'warrior_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'fortifier' in menu 'warrior_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'rageconsumer' in menu 'warrior_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'death_knight' in menu 'warrior_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'heroic_hammer' in menu 'warrior_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'hookshot' in menu 'warrior_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'siphonshield' in menu 'warrior_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'taunt' in menu 'warrior_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'thorsaxe' in menu 'warrior_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'prisoner' in menu 'warrior_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'holyrecovery' in menu 'healer_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'healingtotem' in menu 'healer_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'healinggrenade' in menu 'healer_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'harp' in menu 'healer_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'summoningslime' in menu 'healer_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'healingwand' in menu 'healer_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'healingsentry' in menu 'healer_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'undyingspirit' in menu 'healer_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'warp' in menu 'plot_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'warplumby' in menu 'plot_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'buyplotperm' in menu 'plot_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'buyplot' in menu 'plot_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'buyhoe' in menu 'plot_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'buyshovel' in menu 'plot_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'Upgradeable_AXE' in menu 'wood_tool_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'WOODEN_AXE' in menu 'wood_tool_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'STONE_AXE' in menu 'wood_tool_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'IRON_AXE' in menu 'wood_tool_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'DIAMOND_AXE' in menu 'wood_tool_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'NETHERITE_AXE' in menu 'wood_tool_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'STONE_SHOVEL' in menu 'tool_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'STONE_PICKAXE' in menu 'tool_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'STONE_AXE' in menu 'tool_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'STONE_HOE' in menu 'tool_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'STONE_SWORD' in menu 'tool_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'bread' in menu 'general_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'arrows' in menu 'general_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'Upgradeable_PICKAXE' in menu 'ore_tool_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'WOODEN_PICKAXE' in menu 'ore_tool_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'STONE_PICKAXE' in menu 'ore_tool_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'IRON_PICKAXE' in menu 'ore_tool_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'DIAMOND_PICKAXE' in menu 'ore_tool_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'NETHERITE_PICKAXE' in menu 'ore_tool_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'coal' in menu 'ore_recycle' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'ironingot' in menu 'ore_recycle' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'gold' in menu 'ore_recycle' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'netherite' in menu 'ore_recycle' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'diamond' in menu 'ore_recycle' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'emerald' in menu 'ore_recycle' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'coal_64' in menu 'ore_recycle' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'iron_64' in menu 'ore_recycle' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'gold_64' in menu 'ore_recycle' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'netherite_64' in menu 'ore_recycle' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'diamond_64' in menu 'ore_recycle' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'emerald_64' in menu 'ore_recycle' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'acaciawood' in menu 'wood_recycle' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'darkoakwood' in menu 'wood_recycle' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'sprucewood' in menu 'wood_recycle' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'mangrovewood' in menu 'wood_recycle' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'cherrywood' in menu 'wood_recycle' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'bamboowood' in menu 'wood_recycle' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'junglewood' in menu 'recycle_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'oakwood' in menu 'recycle_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'birchwood' in menu 'recycle_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'mushroomblock' in menu 'recycle_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'brownmushroomblock' in menu 'recycle_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'coal' in menu 'recycle_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'ironingot' in menu 'recycle_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'gold' in menu 'recycle_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'netherite' in menu 'recycle_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'diamond' in menu 'recycle_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'emerald' in menu 'recycle_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'wheat' in menu 'recycle_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'carrot' in menu 'recycle_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'potatoes' in menu 'recycle_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'hppotion' in menu 'potion_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'manapotion' in menu 'potion_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'furypotion' in menu 'potion_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'staminapotion' in menu 'potion_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'legendary_booster' in menu 'card_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'mythic_booster' in menu 'card_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'activate_home' in menu 'card_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'activate_lumbridge' in menu 'card_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'starterkit' in menu 'card_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'axolotl' in menu 'card_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'chicken' in menu 'card_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'cow' in menu 'card_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'panda' in menu 'card_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'teleport' in menu 'card_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'baby' in menu 'card_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'transfplayer' in menu 'card_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'transfzombie' in menu 'card_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'subjutsu' in menu 'card_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'enderchest' in menu 'card_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'summonwall' in menu 'card_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'liveordie' in menu 'card_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'summonarena' in menu 'card_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'shadowclone' in menu 'card_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'shiftday' in menu 'card_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'shiftnight' in menu 'card_shop' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'profile' in menu 'quest_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'close' in menu 'quest_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'profile' in menu 'interact_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'tradewith' in menu 'interact_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'party' in menu 'interact_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'guildinv' in menu 'interact_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'friendinv' in menu 'interact_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'collection' in menu 'interact_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'close' in menu 'interact_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'collection' in menu 'player_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'profile' in menu 'player_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'stats' in menu 'player_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'skilltree' in menu 'player_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'party' in menu 'player_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'guild' in menu 'player_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'friends' in menu 'player_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'coins' in menu 'player_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'compass' in menu 'player_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'quests' in menu 'player_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'magika' in menu 'player_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'lumbridge' in menu 'player_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'deck_1' in menu 'player_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'deck_2' in menu 'player_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'deck_add2' in menu 'player_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'deck_3' in menu 'player_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'deck_add3' in menu 'player_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'deck_4' in menu 'player_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'deck_add4' in menu 'player_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'close' in menu 'player_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Found 'data' option for item: teststone in menu: basics_menu. This option is deprecated and will be removed soon. Please use 'damage' instead.
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'example' in menu 'advanced_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'examplecd' in menu 'advanced_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'examplenoperm' in menu 'advanced_menu' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[16:51:12] [Server thread/INFO]: [DeluxeMenus] 29 GUI menus loaded!
[16:51:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.1-DEV-null]
[16:51:12] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[16:51:12] [Server thread/INFO]: [GSit] Enabling GSit v1.13.0
[16:51:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [1.13.0]
[16:51:12] [Server thread/INFO]: [GSit] The plugin was successfully enabled.
[16:51:12] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
[16:51:12] [Server thread/INFO]: [GSit] Link with PlotSquared successful!
[16:51:12] [Server thread/INFO]: [GSit] Link with WorldGuard successful!
[16:51:12] [Server thread/INFO]: [XWR] Enabling XenoWorldReset v2.1.6
[16:51:12] [Server thread/INFO]: [XenoWorldReset] ――――――――――――――――――――――――――――――――――――――――――――――――
[16:51:12] [Server thread/INFO]: [XenoWorldReset] ╭━╮╭━╮╱╱╱╱╱╱╱╱╭╮╭╮╭╮╱╱╱╱╭╮╱╱╭┳━━━╮╱╱╱╱╱╱╱╱╭╮
[16:51:12] [Server thread/INFO]: [XenoWorldReset] ╰╮╰╯╭╯╱╱╱╱╱╱╱╱┃┃┃┃┃┃╱╱╱╱┃┃╱╱┃┃╭━╮┃╱╱╱╱╱╱╱╭╯╰╮
[16:51:12] [Server thread/INFO]: [XenoWorldReset] ╱╰╮╭╯╭━━┳━╮╭━━┫┃┃┃┃┣━━┳━┫┃╭━╯┃╰━╯┣━━┳━━┳━┻╮╭╯
[16:51:12] [Server thread/INFO]: [XenoWorldReset] ╱╭╯╰╮┃┃━┫╭╮┫╭╮┃╰╯╰╯┃╭╮┃╭┫┃┃╭╮┃╭╮╭┫┃━┫━━┫┃━┫┃
[16:51:12] [Server thread/INFO]: [XenoWorldReset] ╭╯╭╮╰┫┃━┫┃┃┃╰╯┣╮╭╮╭┫╰╯┃┃┃╰┫╰╯┃┃┃╰┫┃━╋━━┃┃━┫╰╮
[16:51:12] [Server thread/INFO]: [XenoWorldReset] ╰━╯╰━┻━━┻╯╰┻━━╯╰╯╰╯╰━━┻╯╰━┻━━┻╯╰━┻━━┻━━┻━━┻━╯
[16:51:12] [Server thread/INFO]: [XenoWorldReset] ╱╱╱╱  Author:  Kihsomray
[16:51:12] [Server thread/INFO]: [XenoWorldReset] ╱╱╱╱  Version: 2.1.6
[16:51:12] [Server thread/INFO]: [XenoWorldReset] ――――――――――――――――――――――――――――――――――――――――――――――――
[16:51:12] [Server thread/INFO]: [XenoWorldReset] 
[16:51:12] [Server thread/INFO]: [XenoWorldReset] Loading YAML files...
[16:51:12] [Server thread/INFO]: [XenoWorldReset] Loaded file config.yml.
[16:51:12] [Server thread/INFO]: [XenoWorldReset] Loaded file lang.yml.
[16:51:12] [Server thread/INFO]: [XenoWorldReset] Loaded file plugin-data.yml.
[16:51:12] [Server thread/INFO]: [XenoWorldReset] Loaded file worlds.yml.
[16:51:12] [Server thread/INFO]: [XenoWorldReset] Loaded 4 files in 10ms.
[16:51:12] [Server thread/INFO]: [XenoWorldReset] 
[16:51:12] [Server thread/INFO]: [XenoWorldReset] Loading config.yml values...
[16:51:12] [Server thread/INFO]: [XenoWorldReset] Loaded data for command confirmation settings.
[16:51:12] [Server thread/INFO]: [XenoWorldReset] Loaded data for basic teleport settings.
[16:51:12] [Server thread/INFO]: [XenoWorldReset] Loaded data for RTP saved locations settings.
[16:51:12] [Server thread/INFO]: [XenoWorldReset] Loaded data for chunk loading settings.
[16:51:12] [Server thread/INFO]: [XenoWorldReset] Loaded data for remaining settings.
[16:51:12] [Server thread/INFO]: [XenoWorldReset] Loaded 61 config values in 44ms.
[16:51:12] [Server thread/INFO]: [XenoWorldReset] 
[16:51:12] [Server thread/INFO]: [XenoWorldReset] Loading lang.yml values...
[16:51:12] [Server thread/INFO]: [XenoWorldReset] Loaded data for message strings.
[16:51:12] [Server thread/INFO]: [XenoWorldReset] Loaded data for time strings.
[16:51:12] [Server thread/INFO]: [XenoWorldReset] Loaded data for PlaceholderAPI strings.
[16:51:12] [Server thread/INFO]: [XenoWorldReset] Loaded 69 lang values in 3ms.
[16:51:12] [Server thread/INFO]: [XenoWorldReset] 
[16:51:12] [Server thread/INFO]: [XenoWorldReset] Loading plugin hooks...
[16:51:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: xwr [2.1.6]
[16:51:12] [Server thread/INFO]: [XenoWorldReset] Loaded 4 plugin hooks in 4ms.
[16:51:12] [Server thread/INFO]: [XenoWorldReset] 
[16:51:12] [Server thread/INFO]: [XenoWorldReset] Loading worlds.yml values...
[16:51:12] [Server thread/INFO]: [XenoWorldReset] Loaded data for 'magika'.
[16:51:12] [Server thread/INFO]: [XenoWorldReset] Loaded data for 'heaven'.
[16:51:12] [Server thread/INFO]: [XenoWorldReset] Loaded data for 'world_nether'.
[16:51:12] [Server thread/INFO]: [XenoWorldReset] Loaded data for 'flatlands'.
[16:51:12] [Server thread/INFO]: [XenoWorldReset] Loaded data for 'corrupted_magika'.
[16:51:12] [Server thread/INFO]: [XenoWorldReset] Loaded 5 worlds setups in 26ms.
[16:51:12] [Server thread/INFO]: [XenoWorldReset] 
[16:51:12] [Server thread/INFO]: [XenoWorldReset] Loading listeners...
[16:51:12] [Server thread/INFO]: [XenoWorldReset] Loaded and registered 9 listeners in 6ms.
[16:51:12] [Server thread/INFO]: [XenoWorldReset] 
[16:51:12] [Server thread/INFO]: [XenoWorldReset] Loaded XWR v2.1.6 in 159ms.
[16:51:12] [Server thread/INFO]: [XenoWorldReset] ――――――――――――――――――――――――――――――――――――――――――――――――
[16:51:12] [Server thread/INFO]: [DriveBackupV2] Enabling DriveBackupV2 v1.8.0
[16:51:13] [Server thread/INFO]: [DriveBackupV2] Config loaded!
[16:51:13] [Server thread/INFO]: [DriveBackupV2] Scheduling a backup to run every 480 minutes
[16:51:13] [Server thread/INFO]: [DriveBackupV2] Metrics started
[16:51:13] [Server thread/INFO]: [AnimationsCore] Enabling AnimationsCore v2.2.1
[16:51:13] [Server thread/INFO]: [AnimationsCore] AFK config values reloaded. Timeout: 6000, Default Animation: 
[16:51:13] [Server thread/INFO]: [AnimationsCore] animcore and emote commands registered with executor and completer.
[16:51:13] [Server thread/INFO]: [AnimationsCore] AnimationsCore plugin has been enabled.
[16:51:13] [Server thread/INFO]: [BetterHud] Enabling BetterHud v1.11.1
[16:51:13] [Server thread/INFO]: [BetterHud] BetterHud hooks Nexo.
[16:51:13] [Server thread/INFO]: [BetterHud] Be sure to set 'pack-type' to 'none' in your config.
[16:51:13] [ForkJoinPool.commonPool-worker-2/WARN]: [BetterHud] New version found: 1.11.4
[16:51:13] [ForkJoinPool.commonPool-worker-2/WARN]: [BetterHud] Download: https://www.spigotmc.org/resources/115559
[16:51:13] [Server thread/INFO]: [FancyHolograms] Enabling FancyHolograms v2.4.1
[16:51:13] [FancyLogger/INFO]: [FancyHolograms] (Server thread) INFO: Successfully enabled FancyHolograms version 2.4.1
[16:51:13] [Server thread/INFO]: [AuroraCollections] Enabling AuroraCollections v1.4.7
[16:51:13] [FancyLogger/INFO]: [FancyHolograms] (FancyHolograms-Holograms) INFO: Loaded 9 holograms for all loaded worlds
[16:51:13] [Server thread/INFO]: [AuroraCollections] [ACF] Enabled Asynchronous Tab Completion Support!
[16:51:14] [Server thread/INFO]: AuroraCollections | Hooked into LuckPerms for permission rewards with reward type: 'permission'. Auto reward corrector for permissions is registered.
[16:51:14] [Server thread/INFO]: AuroraCollections | Hooked into MMOItems for block loot collection with namespace 'mmoitems'.
[16:51:14] [Server thread/INFO]: AuroraCollections | Hooked into MythicMobs for entity_kill and entity_loot collections with namespace 'mythicmobs'
[16:51:14] [Server thread/INFO]: AuroraCollections | Hooked into MythicMobs for custom mechanics (addToCollection, progressCollection), conditions (hasCollectionLevel) and "mythic_stat" reward.
[16:51:14] [Server thread/INFO]: AuroraCollections | Hooked into WorldGuard for flags
[16:51:14] [Server thread/INFO]: AuroraCollections | Hooked into CustomFishing for fishing collection with namespace 'customfishing'
[16:51:14] [FancyLogger/INFO]: [FancyHolograms] (ForkJoinPool.commonPool-worker-2) WARN: 
[16:51:14] [FancyLogger/INFO]: -------------------------------------------------------
[16:51:14] [FancyLogger/INFO]: You are not using the latest version of the FancyHolograms plugin.
[16:51:14] [FancyLogger/INFO]: Please update to the newest version (2.4.2).
[16:51:14] [FancyLogger/INFO]: https://modrinth.com/plugin/FancyHolograms
[16:51:14] [FancyLogger/INFO]: -------------------------------------------------------
[16:51:14] [FancyLogger/INFO]: 
[16:51:14] [Server thread/INFO]: [ExecutableEvents] Enabling ExecutableEvents v3.25.2.3
[16:51:14] [Server thread/INFO]: ========*======== ExecutableEvents ========*========
[16:51:14] [Server thread/INFO]: ExecutableEvents Amount of Executable Events configurations loaded: 15
[16:51:14] [Server thread/INFO]: ========*======== ExecutableEvents ========*========
[16:51:14] [Server thread/INFO]: [PocketGames] Enabling PocketGames v3.25.0
[16:51:14] [Server thread/INFO]: [Pocket Games] ViaVersion is enabled and a compatible version was found. (latest API)
[16:51:14] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.29.0
[16:51:14] [Server thread/INFO]: [SkQuery] Enabling SkQuery v4.1.10
[16:51:14] [Server thread/INFO]: [skQuery] Locating classes from SkQuery...
[16:51:14] [Server thread/INFO]: [skQuery] Beginning to process a total of 117 from SkQuery
[16:51:14] [Server thread/INFO]: [skQuery] Out of 117 classes, 117 classes were loaded from SkQuery
[16:51:14] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.18.2
[16:51:14] [Server thread/INFO]: [VotingPlugin] Loaded LuckPerms hook!
[16:51:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: votingplugin [1.6]
[16:51:15] [Server thread/INFO]: [VotingPlugin] Loading PlaceholderAPI expansion
[16:51:15] [pool-165-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (9d4734818ab27069d76f264a4cda74a699806770)
[16:51:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[16:51:15] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[16:51:15] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.18.2
[16:51:15] [Server thread/INFO]: [Multiverse-Portals] Enabling Multiverse-Portals v4.2.3
[16:51:16] [Server thread/INFO]: [Multiverse-Portals] 0 - Portals(s) loaded
[16:51:16] [Server thread/INFO]: [Multiverse-Portals] Found FastAsyncWorldEdit. Using it for selections.
[16:51:16] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[16:51:16] [Server thread/INFO]: [Multiverse-Portals 4.2.3]  Enabled - By Rigby and fernferret
[16:51:16] [Server thread/INFO]: [skript-yaml] Enabling skript-yaml v1.5
[16:51:16] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.4-SNAPSHOT
[16:51:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[16:51:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[16:51:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[16:51:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[16:51:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[16:51:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[16:51:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[16:51:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[16:51:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[16:51:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[16:51:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[16:51:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[16:51:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[16:51:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[16:51:16] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.9.0
[16:51:16] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[16:51:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console forwarding assigned to channel TC:console(1331405815747317801)
[16:51:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Saved linked accounts in 4ms
[16:51:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[16:51:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling dynmap hook
[16:51:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[16:51:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[16:51:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling voice module
[16:51:16] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[16:51:17] [Server thread/INFO]: [ajLeaderboards] Loaded 14 boards
[16:51:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.9.0]
[16:51:17] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[16:51:17] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.9.0 by ajgeiss0702 enabled!
[16:51:17] [Server thread/INFO]: [MiniMOTD] Enabling MiniMOTD v2.1.4
[16:51:17] [Server thread/WARN]: [MiniMOTD] Could not load logo.png: image must be 64x64px
[16:51:17] [Server thread/WARN]: Could not register alias sell because it contains commands that do not exist: economyshopgui:sellall $1-
[16:51:18] [Server thread/INFO]: [spark] Starting background profiler...
[16:51:18] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[16:51:18] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[16:51:18] [Server thread/INFO]: [Geyser-Spigot] 
[16:51:18] [Server thread/INFO]: [Geyser-Spigot] Loading Geyser version 2.6.0-b755 (git-master-0416b55)
[16:51:18] [Server thread/INFO]: [Geyser-Spigot] 
[16:51:18] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[16:51:19] [pool-182-thread-1/INFO]: [ajLeaderboards] You are up to date! (2.9.0)
[16:51:23] [epollEventLoopGroup-4-1/INFO]: [Geyser-Spigot] Started Geyser on UDP port 19132
[16:51:23] [Server thread/INFO]: [Geyser-Spigot] Done (4.454s)! Run /geyser help for help!
[16:51:23] [Server thread/INFO]: [BetterHud] Minecraft version: 1.21.3, NMS version: V1_21_R2
[16:51:23] [Server thread/INFO]: [BetterHud] Plugin enabled.
[16:51:23] [Server thread/INFO]: Done preparing level "world" (77.939s)
[16:51:23] [Server thread/INFO]: Running delayed init tasks
[16:51:23] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[16:51:23] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[16:51:23] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.plotsquared.PlotSquaredFeature] Optimizing PlotSquared
[16:51:23] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Plugin 'PlotSquared' v7 found. Using it now.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] [Importing models]
[16:51:23] [Craft Scheduler Thread - 10 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[16:51:23] [Craft Scheduler Thread - 10 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[16:51:23] [Craft Scheduler Thread - 11 - PlotSquared/INFO]: [PlotSquared/PlotSquared] Incomplete road regeneration found. Restarting in world guildplots with height 0
[16:51:23] [Craft Scheduler Thread - 11 - PlotSquared/INFO]: [PlotSquared/PlotSquared] - Regions: 7
[16:51:23] [Craft Scheduler Thread - 11 - PlotSquared/INFO]: [PlotSquared/PlotSquared] - Chunks: 96
[16:51:23] [Craft Scheduler Thread - 7 - Essentials/INFO]: [Essentials] Fetching version information...
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: Nexo | Awaiting ModelEngine ResourcePack...
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Loading cache version: R4.0.8
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing death_spike.bbmodel.
[16:51:23] [Craft Scheduler Thread - 28 - DriveBackupV2/INFO]: [DriveBackupV2] Checking for updates...
[16:51:23] [Craft Scheduler Thread - 16 - TradeSystem/INFO]: [TradeSystem] Database was started successfully.
[16:51:23] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[16:51:23] [Craft Scheduler Thread - 27 - Vault/INFO]: [Vault] Checking for Updates ... 
[16:51:23] [Craft Scheduler Thread - 37 - AnimatedScoreboard/INFO]: [AnimatedScoreboard] Checking for an update!
[16:51:23] [Craft Scheduler Thread - 13 - Quests/INFO]: [Quests] Update to 5.1.6: https://github.com/PikaMug/Quests
[16:51:23] [Craft Scheduler Thread - 10 - DecentHolograms/INFO]: [DecentHolograms] Loaded 2 holograms!
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing leave_flyaway.bbmodel.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing qmob_firefly.bbmodel.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing warp_pipe.bbmodel.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing desktop.ini.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing 89316ae51a999ff9.png.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing booster_pack.png.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing card.png.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing card_admin.png.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing card_booster.bbmodel.
[16:51:23] [Craft Scheduler Thread - 27 - Vault/INFO]: [Vault] No new version available
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing card_cyan.bbmodel.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[16:51:23] [Craft Scheduler Thread - 37 - AnimatedScoreboard/INFO]: [AnimatedScoreboard] No new versions found for the plugin!
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing card_cyan.png.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing card_exotic.png.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing card_green.bbmodel.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing card_legendary.png.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing card_mythic.png.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing card_pink.bbmodel.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing card_red.bbmodel.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing card_white.bbmodel.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing card_yellow.bbmodel.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing magic_circle_cyan.png.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing magic_circle_green.png.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing magic_circle_pink.png.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing magic_circle_red.png.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing magic_circle_white.png.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing magic_circle_yellow.png.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing sparks_cyan.png.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing sparks_cyan.png.mcmeta.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing sparks_cyan_e.png.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing sparks_cyan_e.png.mcmeta.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing sparks_pink.png.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing sparks_pink.png.mcmeta.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing sparks_pink_e.png.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing sparks_pink_e.png.mcmeta.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing sparks_red.png.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing sparks_red.png.mcmeta.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing sparks_red_e.png.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing sparks_red_e.png.mcmeta.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing sparks_white.png.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing sparks_white.png.mcmeta.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing sparks_white_e.png.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing sparks_white_e.png.mcmeta.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing sparks_yellow.png.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing sparks_yellow.png.mcmeta.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing sparks_yellow_e.png.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing sparks_yellow_e.png.mcmeta.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing sparksgreen.png.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing sparksgreen.png.mcmeta.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing sparksgreen_e.png.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing sparksgreen_e.png.mcmeta.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing test_file.bbmodel.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing book_animation_close.bbmodel.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing book_animation_loop.bbmodel.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing book_animation_open.bbmodel.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing spell_anim.png.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing spell_anim.png.mcmeta.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing spell_book.png.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing anim-in-cadavercurse.bbmodel.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone rightfore_arm_skeleton is rotated in multiple axis. Choosing one axis.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone rightfore_arm_skeleton has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -22.373889923095703 ]
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone leftfore_arm_skeleton is rotated in multiple axis. Choosing one axis.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone leftfore_arm_skeleton has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 22.373889923095703 ]
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing anim-in-hellgate.bbmodel.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing anim-in-midnightlord.bbmodel.
[16:51:23] [Craft Scheduler Thread - 7 - Essentials/WARN]: [Essentials] You're 50 EssentialsX dev build(s) out of date!
[16:51:23] [Craft Scheduler Thread - 7 - Essentials/WARN]: [Essentials] Download it here: https://essentialsx.net/downloads.html
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone dracula is rotated in multiple axis. Choosing one axis.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone dracula has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -22.490646362304688 ]
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone dracula is rotated in multiple axis. Choosing one axis.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone dracula has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 22.490646362304688 ]
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone leftforewing_dracula is rotated in multiple axis. Choosing one axis.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone rightforewing_dracula is rotated in multiple axis. Choosing one axis.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing anim-in-ragdollpossession.bbmodel.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing anim-in-risendread.bbmodel.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing anim-out-cadavercurse.bbmodel.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone rightfore_arm_skeleton is rotated in multiple axis. Choosing one axis.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone rightfore_arm_skeleton has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -22.373889923095703 ]
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone leftfore_arm_skeleton is rotated in multiple axis. Choosing one axis.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone leftfore_arm_skeleton has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 22.373889923095703 ]
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing anim-out-hellgate.bbmodel.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing anim-out-midnightlord.bbmodel.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone dracula is rotated in multiple axis. Choosing one axis.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone dracula has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -22.490646362304688 ]
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone dracula is rotated in multiple axis. Choosing one axis.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone dracula has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 22.490646362304688 ]
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone leftforewing_dracula is rotated in multiple axis. Choosing one axis.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone rightforewing_dracula is rotated in multiple axis. Choosing one axis.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing anim-out-ragdollpossession.bbmodel.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing anim-out-risendread.bbmodel.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Importing desktop.ini.
[16:51:23] [Craft Scheduler Thread - 8 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[16:51:23] [Server thread/INFO]: [Skript] Loading variables...
[16:51:23] [Server thread/INFO]: [Skript] Loaded 6 variables in 0.0 seconds
[16:51:24] [Craft Scheduler Thread - 22 - LevelledMobs/WARN]: [LevelledMobs] LevelledMobs Update Checker Notice:
[16:51:24] [Craft Scheduler Thread - 22 - LevelledMobs/WARN]: [LevelledMobs] Your LevelledMobs version is outdated! Please update to v4.2.0.2 as soon as possible. (You're running v4.2.0.1)
[16:51:24] [Craft Scheduler Thread - 35 - MiniMOTD/INFO]: [MiniMOTD] There is an update available for MiniMOTD!
[16:51:24] [Craft Scheduler Thread - 35 - MiniMOTD/INFO]: [MiniMOTD] This server is running version v2.1.4, which is 1 versions outdated.
[16:51:24] [Craft Scheduler Thread - 35 - MiniMOTD/INFO]: [MiniMOTD] Download the latest version, v2.1.5 from GitHub at the link below:
[16:51:24] [Craft Scheduler Thread - 35 - MiniMOTD/INFO]: [MiniMOTD] https://github.com/jpenilla/MiniMOTD/releases/tag/v2.1.5
[16:51:24] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:51:24] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: [ModelEngine] [A] Resource pack zipped.
[16:51:24] [Craft Scheduler Thread - 8 - ModelEngine/INFO]: Nexo | ModelEngine ResourcePack is ready.
[16:51:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: quests [1.7.0]
[16:51:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: questsec [1.7.0]
[16:51:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: queststime [1.7.0]
[16:51:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: database [1.7.0]
[16:51:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: totallevel [1.7.0]
[16:51:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: avglevel [1.7.0]
[16:51:25] [Server thread/INFO]: Quest data initialized on server start.
[16:51:25] [Server thread/INFO]: [Skript] All scripts loaded without errors.
[16:51:25] [Server thread/INFO]: [Skript] Loaded 1 script with a total of 12 structures in 1.43 seconds
[16:51:25] [Server thread/INFO]: [Skript] Finished loading.
[16:51:25] [Server thread/INFO]: [BetonQuest] Enabled compatibility for LuckPerms, Skript, DecentHolograms, PlaceholderAPI, MythicLib, MMOItems, WorldGuard, ProtocolLib, FastAsyncWorldEdit, MythicMobs, Quests, MMOCore, Vault!
[16:51:25] [Server thread/INFO]: [BetonQuest] There are 4 conditions, 54 events, 3 objectives and 5 conversations loaded from 1 packages.
[16:51:25] [Server thread/INFO]: [BetonQuest] Reloaded 0 menus
[16:51:26] [Server thread/INFO]: Nexo | Furniture table has lights that overlap with the barrierHitboxes at: 0,0,0
[16:51:26] [Server thread/INFO]: Nexo | Nexo will ignore any lights that conflict with a barrier...
[16:51:30] [Server thread/INFO]: [BetterHud] Successfully merged with Nexo: (1937 ms)
[16:51:30] [Server thread/INFO]: LM_Items: Building API classes
[16:51:30] [ForkJoinPool.commonPool-worker-3/INFO]: Nexo | Generating resourcepack...
[16:51:30] [Server thread/INFO]: LM_Items: Discovered Coins
[16:51:30] [Server thread/INFO]: LM_Items: Discovered MMOItems
[16:51:30] [Server thread/INFO]: LM_Items: Discovered ExecutableItems
[16:51:30] [Server thread/INFO]: LM_Items: Discovered MythicMobs
[16:51:30] [ForkJoinPool.commonPool-worker-3/INFO]: Nexo | Importing DefaultPack...
[16:51:30] [ForkJoinPool.commonPool-worker-3/INFO]: Nexo | Importing external-pack eliteanimations-v1...
[16:51:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrv [1.29.0]
[16:51:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[16:51:30] [Server thread/INFO]: [PAPI] [Javascript-Expansion] 4 scripts loaded!
[16:51:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: javascript [2.1.3]
[16:51:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: rng [1.4.0]
[16:51:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: formatter [2.7.0]
[16:51:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: skript [1.0.0]
[16:51:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[16:51:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.7.3]
[16:51:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: progress [2.1]
[16:51:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: parseother [2.0.0]
[16:51:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: string [1.0.6]
[16:51:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[16:51:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: changeoutput [1.2.2]
[16:51:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: otherplayer [2.1.0]
[16:51:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: checkitem [2.7.8]
[16:51:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: math [2.0.2]
[16:51:30] [Server thread/INFO]: 15 placeholder hook(s) registered!
[16:51:30] [ForkJoinPool.commonPool-worker-3/INFO]: Nexo | Removed core-shaders from ModelEngine-ResourcePack...
[16:51:30] [ForkJoinPool.commonPool-worker-3/INFO]: Nexo | Imported ModelEngine pack successfully!
[16:51:31] [User Authenticator #0/INFO]: UUID of player _GodlyReaper_ is 6d3810e9-4014-4256-aa7d-e5f3c8161b58
[16:51:32] [Server thread/INFO]: Done (127.554s)! For help, type "help"
[16:51:32] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 8839ms or 176 ticks behind
[16:51:32] [Craft Scheduler Thread - 11 - GPS/INFO]: [GPS] A new update is available at:
[16:51:32] [Craft Scheduler Thread - 11 - GPS/INFO]: https://www.spigotmc.org/resources/53672/updates
[16:51:32] [Server thread/INFO]: _GodlyReaper_ (/209.121.27.133:5648) lost connection: Disconnected
[16:51:32] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[16:51:32] [Dynmap Render Thread/INFO]: [dynmap] Loading default resource pack
[16:51:32] [ForkJoinPool.commonPool-worker-3/INFO]: Nexo | Converting global lang file to individual language files...
[16:51:32] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[16:51:32] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[16:51:32] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[16:51:32] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[16:51:32] [Server thread/INFO]: [Quests] Loaded 4 Quest(s), 7 Action(s), 1 Condition(s) and 798 Phrase(s)
[16:51:32] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[16:51:33] [ForkJoinPool.commonPool-worker-3/INFO]: Nexo | Validating ResourcePack files...
[16:51:34] [ForkJoinPool.commonPool-worker-2/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[16:51:34] [Server thread/INFO]: [DriveBackupV2] Enabling automatic backups
[16:51:34] [Server thread/INFO]: [VotingPlugin] Login: _GodlyReaper_ (6d3810e9-4014-4256-aa7d-e5f3c8161b58)
[16:51:34] [Server thread/INFO]: _GodlyReaper_ joined the game
[16:51:35] [Server thread/INFO]: _GodlyReaper_[/209.121.27.133:48698] logged in with entity id 1461 at ([playerplots]-13.106660160914535, 63.0, -39.07307393070868)
[16:51:35] [Server thread/INFO]: [AnimationsCore] [AnimationsCore] A new version is available! Current version: 2.2.1, Latest version: 2.2.3
[16:51:38] [Server thread/INFO]: You toggle the scoreboard off for _GodlyReaper_!
[16:51:40] [Server thread/INFO]: [BanItem] Successfully loaded 1020 blacklisted & 0 whitelisted item(s).
[16:51:41] [Craft Scheduler Thread - 11 - BanItem/INFO]: [BanItem] A newer version (v3.6) is available!
[16:51:46] [Craft Scheduler Thread - 6 - PlotSquared/INFO]: [PlotSquared/HybridUtils] Updating .mcr: 1, -2 (approx 1024 chunks)
[16:51:46] [Craft Scheduler Thread - 6 - PlotSquared/INFO]: [PlotSquared/HybridUtils] - Remaining: 6
[16:51:48] [ForkJoinPool.commonPool-worker-3/INFO]: Nexo | Finished generating resourcepack!

[16:51:49] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[16:51:49] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[16:51:49] [Server thread/INFO]: _GodlyReaper_ issued server command: /plugins
[16:51:51] [ForkJoinPool.commonPool-worker-3/INFO]: Nexo | ResourcePack has been uploaded to https://play.departed.gg/pack.zip?id=52f0ce088f6611e07822922e357c306fa3948d74
[16:51:52] [Craft Scheduler Thread - 31 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin is up to date! Version: 6.18.2
[16:51:54] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 7294ms or 145 ticks behind