Paste #109120: Unnamed Server Log Paste

Date: 2023/04/22 02:54:50 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[17:53:06] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[17:53:07] [ServerMain/INFO]: Loaded 7 recipes
[17:53:08] [Server thread/INFO]: Starting minecraft server version 1.19.4
[17:53:08] [Server thread/INFO]: Loading properties
[17:53:08] [Server thread/INFO]: This server is running Paper version git-Paper-516 (MC: 1.19.4) (Implementing API version 1.19.4-R0.1-SNAPSHOT) (Git: f7717c3)
[17:53:08] [Server thread/INFO]: Server Ping Player Sample Count: 12
[17:53:08] [Server thread/INFO]: Using 4 threads for Netty based IO
[17:53:08] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
    For more information please visit: https://github.com/PaperMC/Paper/issues/8948
[17:53:08] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and gen parallelism of 1 threads
[17:53:08] [Server thread/INFO]: Default game type: SURVIVAL
[17:53:08] [Server thread/INFO]: Generating keypair
[17:53:08] [Server thread/INFO]: Starting Minecraft server on *:25565
[17:53:08] [Server thread/INFO]: Using default channel type
[17:53:08] [Server thread/INFO]: Paper: Using Java compression from Velocity.
[17:53:08] [Server thread/INFO]: Paper: Using Java cipher from Velocity.
[17:53:09] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loading 2 libraries... please wait
[17:53:09] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library C:\Users\ming\Desktop\420-2023\libraries\com\zaxxer\HikariCP\5.0.1\HikariCP-5.0.1.jar
[17:53:09] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library C:\Users\ming\Desktop\420-2023\libraries\org\slf4j\slf4j-api\2.0.0-alpha1\slf4j-api-2.0.0-alpha1.jar
[17:53:09] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library C:\Users\ming\Desktop\420-2023\libraries\it\unimi\dsi\fastutil\8.5.11\fastutil-8.5.11.jar
[17:53:10] [Server thread/INFO]: [SpigotLibraryLoader] [SkBee] Loading 2 libraries... please wait
[17:53:10] [Server thread/INFO]: [SpigotLibraryLoader] [SkBee] Loaded library C:\Users\ming\Desktop\420-2023\libraries\commons-io\commons-io\2.11.0\commons-io-2.11.0.jar
[17:53:10] [Server thread/INFO]: [SpigotLibraryLoader] [SkBee] Loaded library C:\Users\ming\Desktop\420-2023\libraries\org\apache\commons\commons-text\1.10.0\commons-text-1.10.0.jar
[17:53:10] [Server thread/INFO]: [SpigotLibraryLoader] [SkBee] Loaded library C:\Users\ming\Desktop\420-2023\libraries\org\apache\commons\commons-lang3\3.12.0\commons-lang3-3.12.0.jar
[17:53:10] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_19_R3.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[17:53:12] [Server thread/WARN]: Legacy plugin WDLCompanion v1.2.0 does not specify an api-version.
[17:53:12] [Server thread/INFO]: [Minepacks] PCGF-PluginLib not installed. Switching to standalone mode!
[17:53:12] [Server thread/WARN]: Legacy plugin JonAPI v1.1-c1 does not specify an api-version.
[17:53:12] [Server thread/WARN]: Legacy plugin shit_do v1.0 does not specify an api-version.
[17:53:12] [Server thread/WARN]: Legacy plugin CMIEInjector v1.0.2.3 does not specify an api-version.
[17:53:12] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.40
[17:53:12] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-CMI
[17:53:12] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.6.0
[17:53:14] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@2a286c3e]
[17:53:14] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.0.0-SNAPSHOT-636
[17:53:15] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.3
[17:53:15] [Server thread/INFO]: [BKCommonLib] Loading server plugin BKCommonLib v1.19.4-v1
[17:53:19] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.7+216b061
[17:53:19] [Server thread/INFO]: [My_Worlds] Loading server plugin My_Worlds v1.19.4-v1
[17:53:19] [Server thread/INFO]: [GriefPrevention] Loading server plugin GriefPrevention v16.18.1
[17:53:19] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.6.4
[17:53:19] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.26.2
[17:53:19] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.2.5.3
[17:53:19] [Server thread/INFO]: [CMI] Loading server plugin CMI v9.5.0.8
[17:53:19] [Server thread/INFO]: [LibsDisguises] Loading server plugin LibsDisguises v10.0.32
[17:53:19] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.2.1-fd1d0777
[17:53:19] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[17:53:19] [Server thread/INFO]: [MythicLib] Loading server plugin MythicLib v1.5.2
[17:53:19] [Server thread/INFO]: [MythicLib] Detected Bukkit Version: v1_19_R3
[17:53:19] [Server thread/INFO]: [MythicLib] Hooked onto WorldGuard
[17:53:19] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.31-SNAPSHOT (build 3043)
[17:53:19] [Server thread/INFO]: [MMOCore] Loading server plugin MMOCore v1.11.3
[17:53:19] [Server thread/INFO]: [NexEngine] Loading server plugin NexEngine v2.2.10 build-18/04/2023
[17:53:19] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v21.3
[17:53:19] [Server thread/INFO]: [ClearLag] Loading server plugin ClearLag v3.2.2
[17:53:19] [Server thread/INFO]: [MMOItems] Loading server plugin MMOItems v6.9.3
[17:53:19] [Server thread/INFO]: [MMOItems] Hooked onto WorldEdit
[17:53:19] [Server thread/INFO]: [PlayerPoints] Loading server plugin PlayerPoints v3.2.5
[17:53:19] [Server thread/INFO]: [SkBee] Loading server plugin SkBee v2.7.4
[17:53:19] [Server thread/INFO]: [EpicPluginLib] Loading server plugin EpicPluginLib v2.2.1
[17:53:19] [Server thread/INFO]: [PCGF_PluginLib] Loading server plugin PCGF_PluginLib v1.0.39-SNAPSHOT
[17:53:19] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR3.1.7
[17:53:19] [Server thread/INFO]: [Sentinel] Loading server plugin Sentinel v2.7.3-SNAPSHOT (build 505)
[17:53:19] [Server thread/INFO]: [WildStacker] Loading server plugin WildStacker v2023.1
[17:53:19] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.1
[17:53:19] [Server thread/INFO]: [WDLCompanion] Loading server plugin WDLCompanion v1.2.0
[17:53:20] [Server thread/INFO]: [UltraBar] Loading server plugin UltraBar v2.3.2
[17:53:20] [Server thread/INFO]: [TreasureChestX] Loading server plugin TreasureChestX v1.0
[17:53:20] [Server thread/INFO]: [TradeSystem] Loading server plugin TradeSystem v2.3.1
[17:53:20] [Server thread/INFO]: [TAB] Loading server plugin TAB v3.3.2
[17:53:20] [Server thread/INFO]: [skript-yaml] Loading server plugin skript-yaml v1.4
[17:53:20] [Server thread/INFO]: [SkQuery] Loading server plugin SkQuery v4.1.9
[17:53:20] [Server thread/INFO]: [ServerSigns] Loading server plugin ServerSigns v4.8.0
[17:53:20] [Server thread/INFO]: [RotatingHeads2] Loading server plugin RotatingHeads2 v1.0.3
[17:53:20] [Server thread/INFO]: [PlayMoreSounds] Loading server plugin PlayMoreSounds v4.2
[17:53:20] [Server thread/INFO]: [PlayerKits] Loading server plugin PlayerKits v2.26.1
[17:53:20] [Server thread/INFO]: [PlaceItemsOnGroundRebuilt] Loading server plugin PlaceItemsOnGroundRebuilt v1.0.6
[17:53:20] [Server thread/INFO]: [NoPlugins] Loading server plugin NoPlugins v8.1
[17:53:20] [Server thread/INFO]: [MythicMobsExtension] Loading server plugin MythicMobsExtension v1.749-SNAPSHOT
[17:53:20] [Server thread/INFO]: [MythicDungeons] Loading server plugin MythicDungeons v1.1.1-SNAPSHOT
[17:53:20] [Server thread/INFO]: [MythicCrucible] Loading server plugin MythicCrucible v1.5.0-SNAPSHOT
[17:53:20] [Server thread/INFO]: [MiniMOTD] Loading server plugin MiniMOTD v2.0.11
[17:53:20] [Server thread/INFO]: [Minepacks] Loading server plugin Minepacks v2.4.18
[17:53:20] [Server thread/INFO]: [MCPets] Loading server plugin MCPets v3.0.2
[17:53:20] [Server thread/INFO]: [MCPets] : mcpets-dismount flag registered successfully !
[17:53:20] [Server thread/INFO]: [MCPets] : mcpets-despawn flag registered successfully !
[17:53:20] [Server thread/INFO]: [MagicCosmetics] Loading server plugin MagicCosmetics v2.2.8
[17:53:20] [Server thread/INFO]: [LPC] Loading server plugin LPC v3.6.0
[17:53:20] [Server thread/INFO]: [LootChest] Loading server plugin LootChest v2.3.4
[17:53:20] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.23
[17:53:20] [Server thread/INFO]: [LiteSignIn] Loading server plugin LiteSignIn v1.7.0.0
[17:53:20] [Server thread/INFO]: [LastLoginAPI] Loading server plugin LastLoginAPI v1.7.4
[17:53:20] [Server thread/INFO]: [LastLoginAPI] Loading libraries of LastLoginAPI v1.7.4, this may take a while
[17:53:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for jar-relocator
[17:53:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for asm
[17:53:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for asm-commons
[17:53:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for gson
[17:53:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for jdbi3-core
[17:53:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for geantyref
[17:53:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for caffeine
[17:53:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for jdbi3-stringtemplate4
[17:53:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for ST4
[17:53:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for antlr-runtime
[17:53:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for jdbi3-sqlobject
[17:53:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for slf4j-api
[17:53:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for slf4j-simple
[17:53:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for HikariCP
[17:53:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for mariadb-java-client
[17:53:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for mysql-connector-j
[17:53:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for postgresql
[17:53:20] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for h2
[17:53:20] [Server thread/INFO]: [JonAPI] Loading server plugin JonAPI v1.1-c1
[17:53:20] [Server thread/INFO]: [ItemJoin] Loading server plugin ItemJoin v5.2.5-RELEASE-b850
[17:53:20] [Server thread/INFO]: [ItemEdit] Loading server plugin ItemEdit v3.0.9
[17:53:20] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.11.2
[17:53:20] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R3! Trying to find NMS support
[17:53:20] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R3' loaded!
[17:53:20] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[17:53:20] [Server thread/INFO]: [shit_do] Loading server plugin shit_do v1.0
[17:53:20] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v4.1.10
[17:53:20] [Server thread/INFO]: [EpicCraftingsPlus] Loading server plugin EpicCraftingsPlus v7.18.1
[17:53:20] [Server thread/INFO]: [EnderContainers] Loading server plugin EnderContainers v2.3.0-dev
[17:53:20] [Server thread/INFO]: [DeluxeTags] Loading server plugin DeluxeTags v1.8.2-Release
[17:53:20] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.13.7-Release
[17:53:20] [Server thread/INFO]: [DeluxeMenus] NMS hook has been setup successfully!
[17:53:20] [Server thread/INFO]: [CMIEInjector] Loading server plugin CMIEInjector v1.0.2.3
[17:53:20] [Server thread/INFO]: [ChatItem] Loading server plugin ChatItem v2.4.6
[17:53:20] [Server thread/INFO]: [CaliComp] Loading server plugin CaliComp v1.1
[17:53:20] [Server thread/INFO]: [BloodInMinecraft] Loading server plugin BloodInMinecraft v9.5
[17:53:20] [Server thread/INFO]: [BeautyQuests] Loading server plugin BeautyQuests v0.20.1
[17:53:20] [Server thread/INFO]: [AuctionMaster] Loading server plugin AuctionMaster v4.1
[17:53:20] [Server thread/INFO]: [AquaticCrates] Loading server plugin AquaticCrates v2.3.9
[17:53:20] [Server thread/INFO]: [AnimatedScoreboard] Loading server plugin AnimatedScoreboard v0.2.7
[17:53:20] [Server thread/INFO]: [AdvancedAchievements] Loading server plugin AdvancedAchievements v7.2.4
[17:53:20] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[17:53:20] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.40
[17:53:20] [Thread-8/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[17:53:21] [Server thread/INFO]:         __    
[17:53:21] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.40
[17:53:21] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[17:53:21] [Server thread/INFO]: 
[17:53:21] [Server thread/INFO]: [LuckPerms] Loading configuration...
[17:53:22] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[17:53:22] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[17:53:23] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[17:53:23] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 3041ms)
[17:53:23] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-CMI
[17:53:23] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[17:53:23] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-CMI
[17:53:23] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[17:53:23] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.6.0
[17:53:23] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[17:53:23] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[17:53:23] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[17:53:23] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[17:53:23] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_19_R3.PaperweightFaweAdapter as the Bukkit adapter
[17:53:25] [Server thread/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] You are using a snapshot or a custom version of FAWE. This is not an official build distributed via https://www.spigotmc.org/resources/13932/
[17:53:25] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0-SNAPSHOT-636
[17:53:25] [Server thread/INFO]: [BKCommonLib] Enabling BKCommonLib v1.19.4-v1
[17:53:25] [Server thread/INFO]: [BKCommonLib] BKCommonLib is running on Paperspigot (git-Paper-516) : v1_19_R3 (Minecraft 1.19.4)
[17:53:25] [Server thread/INFO]: [BKCommonLib.Network] Now using the ProtocolLib library to provide Packet Listener and Monitor support
[17:53:26] [Server thread/INFO]: [BKCommonLib] [RegionChangeTracker] Region block changes will be notified from FastAsyncWorldEdit (>= v1.17)
[17:53:26] [Server thread/INFO]: [BKCommonLib] Have a problem Bukkit can't fix? Write a library!
[17:53:26] [Server thread/INFO]: [BKCommonLib] BKCommonLib version 1.19.4-v1 (build: 1547) enabled! (1.183s)
[17:53:26] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.10 build-18/04/2023
[17:53:26] [Server thread/INFO]: [NexEngine] Seems like we have Paper based fork here...
[17:53:26] [Server thread/INFO]: [NexEngine] Loaded NMS version: V1_19_R3
[17:53:26] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[17:53:26] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[17:53:27] [Server thread/INFO]: [NexEngine] Using 'en' language.
[17:53:27] [Server thread/INFO]: [NexEngine] Plugin loaded in 75 ms!
[17:53:27] [Server thread/INFO]: [PlayerPoints] Enabling PlayerPoints v3.2.5
[17:53:27] [Server thread/INFO]: [PlayerPoints] Initializing using RoseGarden v1.1.0.42-SNAPSHOT
[17:53:27] [Server thread/INFO]: [PlayerPoints] Data handler connected using SQLite.
[17:53:27] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.23
[17:53:27] [Server thread/INFO]: [ItemJoin] Enabling ItemJoin v5.2.5-RELEASE-b850
[17:53:27] [Server thread/INFO]: [CMIEInjector] Enabling CMIEInjector v1.0.2.3*
[17:53:27] [Server thread/INFO]: [CMIEInjector] CMI Economy is disabled in config file
[17:53:27] [Server thread/INFO]: [CMIEInjector] CMI Economy will be enabled automaticaly
[17:53:27] [Server thread/INFO]: [CMIEInjector] Injecting CMI Economy
[17:53:27] [Server thread/INFO]: [NexEngine] Successfully hooked with CMIEconomy economy
[17:53:27] [Server thread/INFO]: [CMIEInjector] [Economy] CMI Economy found: Waiting
[17:53:27] [Server thread/INFO]: Preparing level "world"
[17:53:27] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[17:53:27] [Server thread/INFO]: Time elapsed: 95 ms
[17:53:27] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[17:53:28] [Server thread/INFO]: Time elapsed: 20 ms
[17:53:28] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[17:53:28] [Server thread/INFO]: Time elapsed: 21 ms
[17:53:28] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.3
[17:53:28] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[17:53:28] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.7+216b061
[17:53:28] [Server thread/WARN]: [WorldGuard] Failed to parse the block / item type specified as 'ENDERCHEST'
[17:53:28] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[17:53:28] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[17:53:28] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[17:53:28] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[17:53:28] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[17:53:28] [Server thread/WARN]: [WorldGuard] Failed to parse the block / item type specified as 'ENDERCHEST'
[17:53:28] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[17:53:28] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[17:53:28] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[17:53:28] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[17:53:28] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[17:53:28] [Server thread/WARN]: [WorldGuard] Failed to parse the block / item type specified as 'ENDERCHEST'
[17:53:28] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[17:53:28] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[17:53:28] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[17:53:28] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[17:53:28] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[17:53:28] [Server thread/INFO]: [WorldGuard] Loading region data...
[17:53:28] [Server thread/INFO]: [My_Worlds] Enabling My_Worlds v1.19.4-v1
[17:53:29] [Server thread/INFO]: [My_Worlds] Loading world 'IntroWorld'
[17:53:29] [Server thread/INFO]: Preparing start region for dimension minecraft:introworld
[17:53:29] [Server thread/INFO]: Time elapsed: 17 ms
[17:53:29] [Server thread/WARN]: [WorldGuard] Failed to parse the block / item type specified as 'ENDERCHEST'
[17:53:29] [Server thread/INFO]: [WorldGuard] (IntroWorld) TNT ignition is PERMITTED.
[17:53:29] [Server thread/INFO]: [WorldGuard] (IntroWorld) Lighters are PERMITTED.
[17:53:29] [Server thread/INFO]: [WorldGuard] (IntroWorld) Lava fire is PERMITTED.
[17:53:29] [Server thread/INFO]: [WorldGuard] (IntroWorld) Fire spread is UNRESTRICTED.
[17:53:29] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'IntroWorld'
[17:53:30] [Server thread/INFO]: [My_Worlds] Loading world 'spawnWorld_the_end'
[17:53:30] [Server thread/INFO]: Preparing start region for dimension minecraft:spawnworld_the_end
[17:53:30] [Server thread/INFO]: Time elapsed: 36 ms
[17:53:30] [Server thread/WARN]: [WorldGuard] Failed to parse the block / item type specified as 'ENDERCHEST'
[17:53:30] [Server thread/INFO]: [WorldGuard] (spawnWorld_the_end) TNT ignition is PERMITTED.
[17:53:30] [Server thread/INFO]: [WorldGuard] (spawnWorld_the_end) Lighters are PERMITTED.
[17:53:30] [Server thread/INFO]: [WorldGuard] (spawnWorld_the_end) Lava fire is PERMITTED.
[17:53:30] [Server thread/INFO]: [WorldGuard] (spawnWorld_the_end) Fire spread is UNRESTRICTED.
[17:53:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'spawnWorld_the_end'
[17:53:31] [Server thread/INFO]: [My_Worlds] Loading world 'spawnWorld_nether'
[17:53:31] [Server thread/INFO]: Preparing start region for dimension minecraft:spawnworld_nether
[17:53:31] [Server thread/INFO]: Time elapsed: 182 ms
[17:53:31] [Server thread/WARN]: [WorldGuard] Failed to parse the block / item type specified as 'ENDERCHEST'
[17:53:31] [Server thread/INFO]: [WorldGuard] (spawnWorld_nether) TNT ignition is PERMITTED.
[17:53:31] [Server thread/INFO]: [WorldGuard] (spawnWorld_nether) Lighters are PERMITTED.
[17:53:31] [Server thread/INFO]: [WorldGuard] (spawnWorld_nether) Lava fire is PERMITTED.
[17:53:31] [Server thread/INFO]: [WorldGuard] (spawnWorld_nether) Fire spread is UNRESTRICTED.
[17:53:31] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'spawnWorld_nether'
[17:53:31] [Server thread/INFO]: [My_Worlds] Loading world 'spawnWorld'
[17:53:32] [Server thread/INFO]: Preparing start region for dimension minecraft:spawnworld
[17:53:32] [Server thread/INFO]: Time elapsed: 192 ms
[17:53:32] [Server thread/WARN]: [WorldGuard] Failed to parse the block / item type specified as 'ENDERCHEST'
[17:53:32] [Server thread/INFO]: [WorldGuard] (spawnWorld) TNT ignition is PERMITTED.
[17:53:32] [Server thread/INFO]: [WorldGuard] (spawnWorld) Lighters are PERMITTED.
[17:53:32] [Server thread/INFO]: [WorldGuard] (spawnWorld) Lava fire is PERMITTED.
[17:53:32] [Server thread/INFO]: [WorldGuard] (spawnWorld) Fire spread is UNRESTRICTED.
[17:53:32] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'spawnWorld'
[17:53:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: myworlds [1.19.4-v1]
[17:53:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mw [1.19.4-v1]
[17:53:32] [Server thread/INFO]: [My_Worlds] PlaceholderAPI integration enabled
[17:53:32] [Server thread/INFO]: [My_Worlds] My_Worlds version 1.19.4-v1 (build: 225) enabled! (3.667s)
[17:53:32] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.18.1
[17:53:32] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:104) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:106) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:110) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:112) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:113) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:115) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:116) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:118) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:120) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:121) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:122) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:123) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:124) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:125) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:126) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:132) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:134) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:138) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:139) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:14) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:141) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:142) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:143) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:144) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:146) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:147) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:148) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:150) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:151) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:154) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:18) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:19) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:21) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:23) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:25) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:26) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:28) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:30) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:33) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:34) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:35) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:42) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:43) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:44) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:45) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:46) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:49) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:50) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:53) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:59) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:60) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:63) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:7) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:81) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:85) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:89) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:9) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:94) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:98) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:99) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[17:53:32] [Server thread/INFO]: [GriefPrevention] 0 total claims loaded.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Successfully hooked into WorldGuard.
[17:53:32] [Server thread/INFO]: [GriefPrevention] Finished loading data (File Mode).
[17:53:32] [Server thread/INFO]: [GriefPrevention] Boot finished.
[17:53:32] [Server thread/INFO]: [Skript] Enabling Skript v2.6.4
[17:53:32] [Server thread/INFO]: [Skript] Skript's language file english.lang is outdated, some messages will be english.
[17:53:33] [ForkJoinPool.commonPool-worker-4/INFO]: [Skript] You're currently running the latest stable version of Skript.
[17:53:36] [Server thread/INFO]: [Skript] Loaded 153707 aliases in 3887ms
[17:53:37] [Server thread/INFO]: [Skript]  ~ created by & ? Peter G?ttinger aka Njol ~
[17:53:37] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.26.2
[17:53:37] [Server thread/INFO]: [CMILib] Enabling CMILib v1.2.5.3
[17:53:37] [Server thread/INFO]: Server version: v1_19_R3 - 1.19.4 - paper
[17:53:37] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[17:53:37] [Server thread/INFO]: CMI hooked.
[17:53:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmil [1.2.5.3]
[17:53:37] [Server thread/INFO]: PlaceholderAPI hooked.
[17:53:37] [Server thread/INFO]: Updated (EN) language file. Took 31ms
[17:53:38] [Server thread/INFO]: Updated (ZH) language file. Took 19ms
[17:53:38] [Server thread/INFO]: [CMI] Enabling CMI v9.5.0.8
[17:53:38] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[17:53:38] [Server thread/INFO]: ????? ?????? ????
[17:53:38] [Server thread/INFO]: ????? ? ?? ? ????
[17:53:38] [Server thread/INFO]: ?? ?? ??????  ?? 
[17:53:38] [Server thread/INFO]: ?? ?? ??????  ?? 
[17:53:38] [Server thread/INFO]: ????? ?????? ????
[17:53:38] [Server thread/INFO]: ????? ?????? ????
[17:53:38] [Server thread/INFO]: _______________________________________________________
[17:53:38] [Server thread/INFO]:   Integrating PaperSpigot async methods
[17:53:38] [Server thread/INFO]:   58 Enabled and 0 Disabled modules
[17:53:38] [pool-66-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (767828469573c2f0fa3ed5a44feb0b2f15f2c02d)
[17:53:38] [Server thread/INFO]:   Permission plugin: LuckPerms5.4.40
[17:53:39] [Server thread/INFO]:   Initialized Cipher256 AES
[17:53:39] [Server thread/INFO]:   Loaded (60) regular alias into memory. Took 31ms
[17:53:39] [Server thread/INFO]:   Loaded (1) custom text's into memory. Took 3ms
[17:53:39] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[17:53:39] [Server thread/INFO]:   3.41.0 data base type detected
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] 已找到伺服器 G:熊之奇緣伺服器(874669456922652703)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】內部備忘錄(998856013480468480)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】企劃構思(1090515318813761648)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】怪物開發(1075778232764350524)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】裝備開發(878614315668733982)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】食物開發(878636257083797534)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】贊助構思(881533329256611841)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】伺服器支出收入(999834203099250749)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】警告訊息(998676192355946496)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】加入訊息(884395632452829184)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】moderator-only(884464072786083933)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】bear備忘錄(999121446108401754)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】內部聊天(996416944741822525)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】內部圖片(992440263001788487)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】伺服器聊天(881058831734562876)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】內部指令(1005864460289855488)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】官民合作社團(1056059429990170634)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】平民須知(880311412914814996)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】村莊幫助區(999845433033621634)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】伺服器公告(884465217940127745)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】伺服器規則(884464072786083932)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】伺服器資訊(993461062747820032)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】成為冒險者?(882263300803551242)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】歡迎訊息(874669457413398600)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】離開訊息(997358704368308264)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】加成者訊息(1000420474074955879)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】贊助資訊(881533120501927978)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】乞討成功區(1043079085800312852)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】時裝系統(1049338194648379462)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】回報系統?(882184996394242088)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】回報記錄(992564796174110841)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】建議區(992703226988216350)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】遊戲改動(1003383165940944989)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】基本玩法(998428529316335646)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】拍賣系統(998428626108297228)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】任務教學(1013031147292336178)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】副本教學(1013089941485522954)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】城鎮教學(1013097085282820158)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】職業技能介紹(1016347371992535040)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】領地保護系統(1037655632804859957)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】mcmmo系統教學(1037670521040543784)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】巴哈帖活動(1040964495796871198)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】公海區(992363001187422238)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】宣戰區(1052159731218776094)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】rpg討論分區(1051778110602870784)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】城市與原版討論分區(1051779163842941008)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】交易區(998428270167085177)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】指令區(992708521307152484)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】播歌區(1005874776864215050)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】圖片區(993549481511485480)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】攻略區(998429157505642577)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】黑洞區(1043173656609693807)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】投稿區域(1045926241666072688)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】開車區(1045926910603034624)
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] 錯誤的控制台頻道ID, 並未轉送控制台輸出。
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] 啟用鉤取 LuckPerms
[17:53:39] [DiscordSRV - Initialization/INFO]: [DiscordSRV] 啟用鉤取 PlaceholderAPI
[17:53:39] [Server thread/INFO]:   Started SqLite data base. Took 188ms
[17:53:39] [Server thread/INFO]:   Vault was found - Enabling capabilities. Economy: CMIEconomy
[17:53:39] [Server thread/INFO]:   Loaded (5) warning categories into memory. Took 0ms
[17:53:39] [Server thread/INFO]:   Loaded (3) warning commands into memory. Took 0ms
[17:53:39] [Server thread/INFO]:   Loaded (142) custom mob heads into memory. Took 11ms
[17:53:39] [Server thread/INFO]:   Loaded (0) cooldowns into memory. Took 22ms
[17:53:39] [Server thread/INFO]:   Initializing BungeeCord
[17:53:39] [Server thread/INFO]:   Loaded (5) kits into memory. Took 7ms
[17:53:39] [Server thread/INFO]:   Loaded (7) ranks into memory. Took 12ms
[17:53:39] [Server thread/INFO]:   Loaded (8) playtime rewards into memory. Took 2ms
[17:53:39] [Server thread/INFO]:   Loaded (0) player data into memory. Took 1ms
[17:53:39] [Server thread/INFO]:   Loaded (0) playtime records into memory. Took 1ms
[17:53:39] [Server thread/INFO]:   Loaded (0) playtime reward records into memory. Took 0ms
[17:53:39] [Server thread/INFO]:   Loaded (0) custom alias into memory. Took 3ms
[17:53:39] [Server thread/INFO]:   Registered events. Took 80ms
[17:53:39] [Server thread/INFO]:   Loaded (0) event action commands into memory. Took 4ms
[17:53:39] [Server thread/INFO]:   Updated (EN) language file. Took 108ms
[17:53:39] [Server thread/INFO]:   Loaded (245) worth values into memory. Took 57ms
[17:53:39] [Server thread/INFO]:   Vault permissions was found - Enabling capabilities.
[17:53:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmi [9.5.0.8]
[17:53:39] [Server thread/INFO]:   PlaceholderAPI hooked.
[17:53:39] [Server thread/INFO]:   PlaceholderAPI was found - Enabling capabilities.
[17:53:39] [Server thread/INFO]:   Starting world timer.
[17:53:39] [Server thread/INFO]:   Initializing world manager.
[17:53:39] [Server thread/INFO]:   Loaded (4) schedules into memory. Took 11ms
[17:53:40] [Server thread/INFO]:   Loaded GeoIP
[17:53:40] [Server thread/INFO]:   Loaded (0) skin cache entries into memory. Took 0ms
[17:53:40] [Server thread/INFO]:   Found DiscordSRV
[17:53:40] [Server thread/INFO]: [DiscordSRV] API listener com.Zrips.CMI.Modules.DiscordSRV.DiscordSRVListener 已訂閱 (4 種方案)
[17:53:40] [Server thread/INFO]:   Loaded (0) ArmorStand templates into memory. Took 0ms
[17:53:40] [Server thread/INFO]:   Version 9.5.0.8 has been enabled
[17:53:40] [Server thread/INFO]: ???????????????????????????????????????????????????????
[17:53:40] [Server thread/INFO]: [CMIEInjector][Economy] CMI Economy hooked.
[17:53:40] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v10.0.32
[17:53:40] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises-10.0.32-Premium.jar
[17:53:40] [Server thread/INFO]: [LibsDisguises] Discovered nms version: v1_19_R3 (null)
[17:53:40] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1158
[17:53:40] [Server thread/INFO]: [LibsDisguises] Build Date: 03/02/2023 23:08
[17:53:40] [Server thread/INFO]: [LibsDisguises] Registered to: 814502 (20)
[17:53:40] [Server thread/INFO]: [LibsDisguises] Premium enabled, thank you for supporting Lib's Disguises!
[17:53:40] [Server thread/ERROR]: [LibsDisguises] You're using the wrong version of Lib's Disguises for your server! This is intended for v1.12 & v1.13 & v1.14 & v1.15 & v1.16 & v1.17 & v1.18 & v1.19.R1 & v1.19.R2 & UNSUPPORTED!
[17:53:40] [Server thread/INFO]: [LibsDisguises] Disabling LibsDisguises v10.0.32
[17:53:40] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.2.1-fd1d0777
[17:53:41] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.19.4)...
[17:53:41] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[17:53:41] [Server thread/WARN]: [MythicMobs] --====|||| Mythic ||||====--
[17:53:41] [Server thread/WARN]: [MythicMobs] This version of Mythic is not fully compatible with your version of Bukkit.
[17:53:41] [Server thread/WARN]: [MythicMobs] Some features may be limited or disabled until you use a compatible version.
[17:53:41] [Server thread/WARN]: [MythicMobs] Server NMS Version Detected - v1_19_R3
[17:53:41] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 42 ms to scan 1 urls, producing 4 keys and 14 values 
[17:53:41] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 7 ms to scan 1 urls, producing 4 keys and 14 values 
[17:53:41] [Server thread/INFO]: [MythicMobs] MythicMobs GriefPrevention Support has been enabled!
[17:53:41] [Server thread/WARN]: [MythicMobs] ? Compatibility Error for 'LibsDisguises': Plugin not found/incompatible version
[17:53:41] [Server thread/INFO]: [MythicMobs] MythicMobs MMOItems Support has been enabled!
[17:53:41] [Server thread/INFO]: [MythicMobs] MythicMobs MythicLib Support has been enabled!
[17:53:41] [Server thread/INFO]: [MythicMobs] MythicMobs PlaceholderAPI Support has been enabled!
[17:53:41] [Server thread/INFO]: [MythicMobs] MythicMobs ProtocolLib Support has been enabled!
[17:53:41] [Server thread/INFO]: [MythicMobs] MythicMobs Vault Support has been enabled!
[17:53:41] [Server thread/INFO]: [MythicMobs] MythicMobs WorldGuard Support has been enabled!
[17:53:41] [Server thread/INFO]: [MythicMobs] Base directory C:\Users\ming\Desktop\420-2023\plugins\MythicMobs\SavedData
[17:53:41] [Server thread/INFO]: [MythicMobs] Module directory C:\Users\ming\Desktop\420-2023\plugins\MythicMobs\SavedData\worlds
[17:53:41] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 17 ms to scan 1 urls, producing 11 keys and 445 values 
[17:53:41] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 32 ms to scan 1 urls, producing 29 keys and 885 values 
[17:53:41] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 11 ms to scan 1 urls, producing 9 keys and 152 values 
[17:53:41] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 5 ms to scan 1 urls, producing 2 keys and 11 values 
[17:53:41] [Server thread/INFO]: [MythicMobs] LOADED
[17:53:41] [Server thread/WARN]: Plugin 'MythicMobs' is creating timing 'scheduler: io.lumine.mythic.core.skills.auras.AuraManager$$Lambda$9212/0x00000008029dbab8' - this is deprecated behavior, please report it to the authors: Lumine
[17:53:41] [Server thread/INFO]: [MythicMobs] Loading Packs...
[17:53:41] [Server thread/INFO]: [MythicMobs] PACK C:\Users\ming\Desktop\420-2023\plugins\MythicMobs\Packs\Nocsy\packinfo.yml
[17:53:41] [Server thread/INFO]: [MythicMobs] PACK C:\Users\ming\Desktop\420-2023\plugins\MythicMobs\Packs\PixelBarrel's Library\packinfo.yml
[17:53:41] [Server thread/INFO]: [MythicMobs] PACK C:\Users\ming\Desktop\420-2023\plugins\MythicMobs\Packs\PixelBarrel's RPG Basics Vol.2\packinfo.yml
[17:53:41] [Server thread/INFO]: [MythicMobs] PACK C:\Users\ming\Desktop\420-2023\plugins\MythicMobs\Packs\Voxelspawns_Chieftain_Mount\packinfo.yml
[17:53:41] [Server thread/INFO]: [MythicMobs] Loading Items...
[17:53:41] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Item B2A_weapon
[17:53:41] [Server thread/WARN]: [MythicMobs] Error loading item 'B2A_weapon'. Enable debugging for a stack trace.
[17:53:41] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Item B2A_projectile_weapon
[17:53:41] [Server thread/WARN]: [MythicMobs] Error loading item 'B2A_projectile_weapon'. Enable debugging for a stack trace.
[17:53:41] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Item B2B_weapon
[17:53:41] [Server thread/WARN]: [MythicMobs] Error loading item 'B2B_weapon'. Enable debugging for a stack trace.
[17:53:41] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Item D1_projectile_custom_model1
[17:53:41] [Server thread/WARN]: [MythicMobs] Error loading item 'D1_projectile_custom_model1'. Enable debugging for a stack trace.
[17:53:41] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Item SkeletonKingSword
[17:53:41] [Server thread/WARN]: [MythicMobs] Error loading item 'SkeletonKingSword'. Enable debugging for a stack trace.
[17:53:41] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Item KingsCrown
[17:53:41] [Server thread/WARN]: [MythicMobs] Error loading item 'KingsCrown'. Enable debugging for a stack trace.
[17:53:41] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[17:53:41] [Server thread/INFO]: [MythicMobs] Loading Skills...
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '12.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '18.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '10.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '10.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.EthrodsMeleeAttacksDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '10.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.EthrodsMeleeAttacksDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.EthrodsMeleeAttacksDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '24.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '-1.5707964E-6': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '38.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '18.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.0to4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '50.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '50.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '50.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '50.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '50.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.quetzalcoatlKRUndergroundDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.quetzalcoatlKRBaitAndTailAttackDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '45.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<skill.var.quetzalcoatlSpawnParticleRing>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<skill.var.quetzalcoatlDeathParticleRing>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+3': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+7': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<skill.var.quetzalcoatlSpawnParticleRing>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<skill.var.quetzalcoatlDeathParticleRing>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+3': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+7': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<skill.var.quetzalcoatlSpawnParticleRing>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<skill.var.quetzalcoatlDeathParticleRing>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+3': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+7': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<skill.var.quetzalcoatlBGRuneRemoveDelay>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '40.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '35.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.20to40>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.-10to10>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.-25to25>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.20to40>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.-10to10>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.-25to25>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '38.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '20.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.quetzalcoatlKRUndergroundDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.quetzalcoatlKRUndergroundDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.quetzalcoatlKRUndergroundDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '55.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.0to4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.5to0.9>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.5to0.9>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '22.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '32.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '22.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.2to0.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaCrystalBGGroundImpact>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<skill.var.sintiaBGCrystalFallDelay>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.5to0.9>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.5to0.9>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.5to0.9>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaCrystalBGGroundImpact>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '30.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '35.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '40.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.5to0.9>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.5to0.9>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaBGProdigalRainDamage>*<caster.var.sintiaBGFuryPhase>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.2to0.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '53.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '58.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.2to0.9>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.2to0.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaMagicCircleBGMagicCircles>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '40.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '0,size=0.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1,HitNonPlayers=true': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.mhp>*0.05': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.mhp>*0.02': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.1to5>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.mhp>*0.01': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.mhp>*0.01': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.mhp>*0.2': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.mhp>*0.2': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '20.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '15.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1.0E-4': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1.0E-4': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1.0E-4': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1.0E-4': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1.0E-4': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1.0E-4': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:42] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[17:53:42] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[17:53:43] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[17:53:43] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.EthrodsMeleeAttacksDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:43] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.EthrodsMeleeAttacksDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:43] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.EthrodsMeleeAttacksDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:43] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.EthrodsMeleeAttacksDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:43] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<skill.damage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:43] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<skill.damage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:43] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.EthrodsMeleeAttacksDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:43] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.quetzalcoatlKRBaitAndTailAttackDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:43] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.quetzalcoatlKRBaitAndTailAttackDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:43] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.quetzalcoatlKRElementalRunesProjectileDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:43] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.quetzalcoatlKRElementalRunesProjectileDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:43] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.quetzalcoatlKRElementalRunesProjectileDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:43] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.quetzalcoatlKRTranscendentalMeteorsDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:43] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.quetzalcoatlKRTranscendentalMeteorsDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:43] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaBGThrowPlayerDamage>*<caster.var.sintiaBGFuryPhase>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:43] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaBGThrowPlayerDamage>*<caster.var.sintiaBGFuryPhase>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:43] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaBGBiteDamage>*<caster.var.sintiaBGFuryPhase>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:43] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaBGBiteDamage>*<caster.var.sintiaBGFuryPhase>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:43] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaBGBiteDamage>*<caster.var.sintiaBGFuryPhase>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:43] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaBGBiteDamage>*<caster.var.sintiaBGFuryPhase>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:43] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaBGBiteDamage>*<caster.var.sintiaBGFuryPhase>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:43] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaBGBiteDamage>*<caster.var.sintiaBGFuryPhase>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:43] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaBGBiteDamage>*<caster.var.sintiaBGFuryPhase>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:43] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaBGBiteDamage>*<caster.var.sintiaBGFuryPhase>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:43] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaBGBiteDamage>*<caster.var.sintiaBGFuryPhase>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:43] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaBGMagicalBreathDamage>*<caster.var.sintiaBGFuryPhase>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:43] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaBGStampedeDamage>*<caster.var.sintiaBGFuryPhase>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:43] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.quetzalcoatlKRElementalRunesAttackDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:43] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.quetzalcoatlKRElementalRunesAttackDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[17:53:43] [Server thread/INFO]: [MythicMobs] ? Loaded 173 mobs.
[17:53:43] [Server thread/INFO]: [MythicMobs] ? Loaded 1 vanilla mob overrides.
[17:53:43] [Server thread/INFO]: [MythicMobs] ? Loaded 0 mob stacks.
[17:53:43] [Server thread/INFO]: [MythicMobs] ? Loaded 1282 skills.
[17:53:43] [Server thread/INFO]: [MythicMobs] ? Loaded 18 random spawns.
[17:53:43] [Server thread/INFO]: [MythicMobs] ? Loaded 47 mythic items.
[17:53:43] [Server thread/INFO]: [MythicMobs] ? Loaded 2 drop tables.
[17:53:43] [Server thread/INFO]: [MythicMobs] ? Loaded 36 mob spawners.
[17:53:43] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[17:53:43] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[17:53:43] [Server thread/INFO]: [MythicMobs] ? MythicMobs v5.2.1 ( build fd1d0777 ) has been successfully loaded!
[17:53:43] [Server thread/INFO]: [MythicLib] Enabling MythicLib v1.5.2
[17:53:43] [Server thread/INFO]: [MythicLib] Hooked onto CMI
[17:53:43] [Server thread/INFO]: [MythicLib] Hooked onto MythicMobs
[17:53:43] [Server thread/INFO]: [MythicLib] Hooked onto ProtocolLib
[17:53:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mythiclib [1.5.2]
[17:53:43] [Server thread/INFO]: [MythicLib] Hooked onto PlaceholderAPI
[17:53:43] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.31-SNAPSHOT (build 3043)
[17:53:43] [Server thread/INFO]: [Citizens] Loading external libraries
[17:53:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[17:53:44] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[17:53:44] [Server thread/INFO]: [MMOCore] Enabling MMOCore v1.11.3
[17:53:44] [Server thread/INFO]: [MMOCore] Hooked onto Vault
[17:53:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mmocore [1.11.3]
[17:53:44] [Server thread/INFO]: [MMOCore] Hooked onto PlaceholderAPI
[17:53:44] [Server thread/INFO]: [MMOCore] Hooked onto Citizens
[17:53:44] [Server thread/INFO]: [MMOCore] Hooked onto WorldGuard
[17:53:44] [Server thread/INFO]: [MMOCore] Hooked onto MythicMobs
[17:53:44] [Server thread/WARN]: [MMOCore] Could not load profession config 'on-fish': io.lumine.mythic.lib.gson.stream.MalformedJsonException: Expected ':' at line 1 column 27 path $.second-region
[17:53:45] [Server thread/WARN]: [MMOCore] Could not load trigger 'mmoitem{type=SWORD;id=CUTLASS}' from objective '5': Could not find MMOItem with ID 'CUTLASS'
[17:53:45] [Server thread/WARN]: [MMOCore] An error occured while trying to load loot chest region 'sample-region': Could not find world world_name_here
[17:53:45] [Server thread/WARN]: [MMOCore] Could not load item 'class' from inventory 'class-select': Couldn't find the class associated to: class
[17:53:45] [Server thread/WARN]: [MMOCore] Could not load item 'class' from inventory 'subclass-select': No enum constant org.bukkit.Material.
[17:53:45] [Server thread/WARN]: [MMOCore] Hooked parties onto MMOCore
[17:53:45] [Server thread/WARN]: [MMOCore] Hooked guilds onto MMOCore
[17:53:45] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v21.3
[17:53:45] [Server thread/INFO]: [CoreProtect] Invalid WorldEdit version found.
[17:53:45] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[17:53:45] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[17:53:45] [Server thread/INFO]: --------------------
[17:53:45] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[17:53:45] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[17:53:45] [Server thread/INFO]: --------------------
[17:53:45] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
[17:53:45] [Server thread/INFO]: [ClearLag] Using version-adapter: LatestVersionAdapter
[17:53:45] [Server thread/INFO]: [ClearLag] Loading modules...
[17:53:45] [Server thread/WARN]: [ClearLag] Clearlag failed to use the internal TPS tracker during initialization. Reverted to estimation... (net.minecraft.server.v1_19_R3.MinecraftServer)
[17:53:45] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[17:53:45] [Server thread/WARN]: [ClearLag] Item type 'Boat !isMounted' does not match any Materials found on your Craftbukkit version.
[17:53:45] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[17:53:45] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[17:53:45] [Thread-25/INFO]: [ClearLag] Checking for updates compatible with your bukkit version [1.19]...
[17:53:45] [Server thread/INFO]: [MMOItems] Enabling MMOItems v6.9.3
[17:53:45] [Thread-25/INFO]: [ClearLag] No updates found!
[17:53:46] [Server thread/INFO]: [MMOItems] Hooked onto MythicMobs
[17:53:46] [Server thread/INFO]: [MMOItems] Hooked onto MMOCore
[17:53:46] [Server thread/INFO]: [MMOItems] Now using MMOCore as RPG core plugin
[17:53:46] [Server thread/INFO]: [MMOItems MUSKET HAPPY_NEW_GUN] Could not load base item data 'ability': Ability is missing type or mode
[17:53:46] [Server thread/INFO]: [MMOItems Item Templates] Loading template modifiers, please wait..
[17:53:46] [Server thread/INFO]: [MMOItems Item Templates] Loading item templates, please wait...
[17:53:46] [Server thread/INFO]: [MMOItems Item Templates (ARMOR)] Could not load item template 'BASE': Could not find base item data
[17:53:46] [Server thread/INFO]: [MMOItems Item Templates (CATALYST)] Could not load item template 'BASE': Could not find base item data
[17:53:46] [Server thread/INFO]: [MMOItems] Hooked onto Vault
[17:53:46] [Server thread/INFO]: [MMOItems] Hooked onto Vault
[17:53:46] [Server thread/INFO]: [MMOItems] Loading crafting stations, please wait..
[17:53:46] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'magic-essence' from crafting station 'arcane-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=MAGIC_FRAGMENT,amount=3,display="Magic Fragment"}': Could not find a template with ID 'MAGIC_FRAGMENT'
[17:53:46] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'arcane-helmet' from crafting station 'arcane-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=MAGIC_FRAGMENT,amount=6,display="Magic Fragment"}': Could not find a template with ID 'MAGIC_FRAGMENT'
[17:53:46] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-chestplate' from crafting station 'arcane-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=MAGIC_FRAGMENT,amount=9,display="Magic Fragment"}': Could not find a template with ID 'MAGIC_FRAGMENT'
[17:53:46] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-leggings' from crafting station 'arcane-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=MAGIC_FRAGMENT,amount=8,display="Magic Fragment"}': Could not find a template with ID 'MAGIC_FRAGMENT'
[17:53:46] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-boots' from crafting station 'arcane-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=MAGIC_FRAGMENT,amount=5,display="Magic Fragment"}': Could not find a template with ID 'MAGIC_FRAGMENT'
[17:53:46] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'soulstealer' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MISCELLANEOUS,id=HUMAN_SOUL,amount=8,display="Human Soul"}': Could not find a template with ID 'HUMAN_SOUL'
[17:53:46] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'fire-essence' from crafting station 'mythical-forge': Invalid MMOItem MATERIAL FIRE_ESSENCE: No such MMOItem for Type MATERIAL. 
[17:53:46] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'fire-totem' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=FIRE_ESSENCE,amount=8,display="Fire Essence"}': Could not find a template with ID 'FIRE_ESSENCE'
[17:53:46] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'blaze-soul' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=FIRE_ESSENCE,amount=5,display="Fire Essence"}': Could not find a template with ID 'FIRE_ESSENCE'
[17:53:46] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'hell-bow' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=FIRE_ESSENCE,amount=2,display="Fire Essence"}': Could not find a template with ID 'FIRE_ESSENCE'
[17:53:46] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'fire-greatlance' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=FIRE_ESSENCE,amount=4,display="Fire Essence"}': Could not find a template with ID 'FIRE_ESSENCE'
[17:53:46] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'molten-blade' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=FIRE_ESSENCE,amount=13,display="Fire Essence"}': Could not find a template with ID 'FIRE_ESSENCE'
[17:53:46] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'wither-essence' from crafting station 'mythical-forge': Invalid MMOItem MATERIAL WITHER_ESSENCE: No such MMOItem for Type MATERIAL. 
[17:53:46] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'marking-bow' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=WITHER_ESSENCE,amount=1,display="Wither Essence"}': Could not find a template with ID 'WITHER_ESSENCE'
[17:53:46] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'cursed-wither-skull' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=WITHER_ESSENCE,amount=1,display="Wither Essence"}': Could not find a template with ID 'WITHER_ESSENCE'
[17:53:46] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'dead-pharaoh-helmet' from crafting station 'mythical-forge': Invalid MMOItem ARMOR DEAD_PHARAOH_HELMET: No such MMOItem for Type ARMOR. 
[17:53:46] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'mossy-skeleton-skull' from crafting station 'mythical-forge': Invalid MMOItem ARMOR MOSSY_SKELETON_SKULL: No such MMOItem for Type ARMOR. 
[17:53:46] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-sword' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=4,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[17:53:46] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-sword-upgrade' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=4,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[17:53:46] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'two-handed-steel-sword' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=SWORD,id=STEEL_SWORD,amount=1,display="Steel Sword"}': Could not find a template with ID 'STEEL_SWORD'
[17:53:46] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'katana' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=6,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[17:53:46] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-helmet' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=6,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[17:53:46] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-chestplate' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=9,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[17:53:46] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-leggings' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=8,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[17:53:46] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-boots' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=5,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[17:53:46] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-ingot' from crafting station 'steel-crafting-station': Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[17:53:46] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-dagger' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=4,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[17:53:46] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'hardened-steel-claymore' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=15,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[17:53:46] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'stiff-greatstaff' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=4,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[17:53:46] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-pickaxe' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=4,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[17:53:46] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-shovel' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=2,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[17:53:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mmoitems [6.9.3]
[17:53:46] [Server thread/INFO]: [MMOItems] Hooked onto PlaceholderAPI
[17:53:46] [Server thread/INFO]: [MMOItems] Loading recipes, please wait...
[17:53:46] [Server thread/INFO]: [SkBee] Enabling SkBee v2.7.4
[17:53:46] [Server thread/INFO]: [SkBee] Loading NBTApi...
[17:53:46] [Server thread/INFO]: [SkBee] [NBTAPI] Found Spigot: v1_19_R3! Trying to find NMS support
[17:53:46] [Server thread/INFO]: [SkBee] Failed to load NBTApi!
[17:53:46] [Server thread/INFO]: [SkBee] NBT Elements DISABLED!
[17:53:46] [Server thread/INFO]: [SkBee]  - Your server version [1.19.4] is not currently supported by the NBT-API
[17:53:46] [Server thread/INFO]: [SkBee]  - This is not a bug!
[17:53:46] [Server thread/INFO]: [SkBee]  - NBT elements will resume once the API is updated to work with [1.19.4]
[17:53:46] [Server thread/INFO]: [SkBee] Recipe Elements successfully loaded
[17:53:46] [Server thread/INFO]: [SkBee] Scoreboard Elements successfully loaded
[17:53:46] [Server thread/INFO]: [SkBee] Scoreboard Objective Elements successfully loaded
[17:53:46] [Server thread/INFO]: [SkBee] Team Elements successfully loaded
[17:53:46] [Server thread/INFO]: [SkBee] Bound Elements successfully loaded
[17:53:46] [Server thread/INFO]: [SkBee] Text Component Elements successfully loaded
[17:53:46] [Server thread/INFO]: [SkBee] Pathfinding Elements successfully loaded
[17:53:46] [Server thread/INFO]: [SkBee] Structure Elements successfully loaded
[17:53:46] [Server thread/INFO]: [SkBee] Other Elements successfully loaded
[17:53:46] [Server thread/INFO]: [SkBee] Virtual Furnace Elements disabled via config
[17:53:46] [Server thread/INFO]: [SkBee] World Creator Elements successfully loaded
[17:53:46] [Server thread/INFO]: [SkBee] Game Event Elements successfully loaded
[17:53:46] [Server thread/INFO]: [SkBee] BossBar Elements successfully loaded
[17:53:46] [Server thread/INFO]: [SkBee] Statistic Elements successfully loaded
[17:53:46] [Server thread/INFO]: [SkBee] Villager Elements successfully loaded
[17:53:46] [Server thread/INFO]: [SkBee] Advancement Elements successfully loaded
[17:53:46] [Server thread/INFO]: [SkBee] World Border Elements successfully loaded
[17:53:46] [Server thread/INFO]: [SkBee] Particle Elements successfully loaded
[17:53:46] [Server thread/INFO]: [SkBee] Minecraft Tag elements successfully loaded
[17:53:46] [Server thread/INFO]: [SkBee] RayTrace elements successfully loaded
[17:53:46] [Server thread/INFO]: [SkBee] Loaded elements:
[17:53:46] [Server thread/INFO]: [SkBee]  - 35 events
[17:53:46] [Server thread/INFO]: [SkBee]  - 35 effects
[17:53:46] [Server thread/INFO]: [SkBee]  - 128 expressions
[17:53:46] [Server thread/INFO]: [SkBee]  - 13 conditions
[17:53:46] [Server thread/INFO]: [SkBee]  - 1 section
[17:53:46] [Server thread/INFO]: [SkBee] Checking for update...
[17:53:46] [Server thread/INFO]: [SkBee] Plugin is not up to date!
[17:53:46] [Server thread/INFO]: [SkBee]  - Current version: v2.7.4
[17:53:46] [Server thread/INFO]: [SkBee]  - Available update: v2.8.4
[17:53:46] [Server thread/INFO]: [SkBee]  - Download available at: https://github.com/ShaneBeee/SkBee/releases
[17:53:46] [Server thread/INFO]: [SkBee] Successfully enabled v2.7.4 in 0.64 seconds
[17:53:46] [Server thread/INFO]: [EpicPluginLib] Enabling EpicPluginLib v2.2.1
[17:53:46] [Server thread/INFO]: [EpicPluginLib] Dependency found: PlayMoreSounds.
[17:53:46] [Server thread/INFO]: [EpicPluginLib] Lib enabled successfully.
[17:53:47] [Server thread/INFO]: [EpicPluginLib] EpicPluginLib is using bStats as metrics collector.
[17:53:47] [Server thread/INFO]: [PCGF_PluginLib] Enabling PCGF_PluginLib v1.0.39-SNAPSHOT
[17:53:47] [Server thread/INFO]: [PCGF_PluginLib] Config file successfully loaded.
[17:53:47] [Server thread/INFO]: [PCGF_PluginLib] Item name language file successfully loaded. Language: english  Author: GeorgH93
[17:53:47] [Server thread/INFO]: [PCGF_PluginLib] Loading item translations ...
[17:53:47] [Server thread/INFO]: [PCGF_PluginLib] Finished loading item translations for 828 items.
[17:53:47] [Server thread/INFO]: [PCGF_PluginLib] Language file successfully loaded. Language: english  Author: GeorgH93
[17:53:47] [Server thread/INFO]: [PCGF_PluginLib]  PCGF_PluginLib v1.0.39-SNAPSHOT has been enabled!  :) 
[17:53:47] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR3.1.7
[17:53:47] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
[17:53:47] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: MythicMobs
[17:53:47] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: Citizens
[17:53:47] [Server thread/INFO]: [Sentinel] Enabling Sentinel v2.7.3-SNAPSHOT (build 505)
[17:53:47] [Server thread/INFO]: [Sentinel] Sentinel loading...
[17:53:47] [Server thread/INFO]: [Sentinel] Running on java version: 17.0.6
[17:53:47] [Server thread/INFO]: [Sentinel] Sentinel loaded on a fully supported Minecraft version. If you encounter any issues or need to ask a question, please join our Discord at https://discord.gg/Q6pZGSR and post in the '#sentinel' channel.
[17:53:47] [Server thread/INFO]: [Sentinel] Vault linked! Group targets will work.
[17:53:47] [Server thread/INFO]: [Sentinel] Sentinel found WorldGuard! Adding support for it!
[17:53:47] [Server thread/INFO]: [Sentinel] Sentinel loaded!
[17:53:47] [Server thread/INFO]: [WildStacker] Enabling WildStacker v2023.1
[17:53:47] [Server thread/INFO]: [WildStacker] ******** ENABLE START ********
[17:53:47] [Server thread/INFO]: [WildStacker] Loading configuration started...
[17:53:47] [Server thread/INFO]: [WildStacker]  - Stacking drops is enabled
[17:53:47] [Server thread/INFO]: [WildStacker]  - Stacking entities is enabled
[17:53:47] [Server thread/INFO]: [WildStacker]  - Stacking spawners is enabled
[17:53:47] [Server thread/INFO]: [WildStacker]  - Stacking barrels is enabled
[17:53:47] [Server thread/INFO]: [WildStacker] Loading configuration done (Took 60ms)
[17:53:47] [Server thread/INFO]: [WildStacker] Loading loot-tables started...
[17:53:47] [Server thread/INFO]: [WildStacker] Loading loot-tables done (Took 53ms)
[17:53:47] [Server thread/INFO]: [WildStacker] Loading messages started...
[17:53:47] [Server thread/INFO]: [WildStacker]  - Found 69 messages in lang.yml.
[17:53:47] [Server thread/INFO]: [WildStacker] Loading messages done (Took 3ms)
[17:53:48] [Server thread/INFO]: [WildStacker] ******** ENABLE DONE ********
[17:53:48] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.1
[17:53:48] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[17:53:48] [Server thread/WARN]: Plugin 'WorldGuard' is creating timing 'Third-Party Session Handlers' - this is deprecated behavior, please report it to the authors: 
[17:53:48] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[17:53:48] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'TeleportOnEntryFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[17:53:48] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[17:53:48] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[17:53:48] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'TeleportOnExitFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[17:53:48] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[17:53:48] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[17:53:48] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'CommandOnEntryFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[17:53:48] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[17:53:48] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[17:53:48] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'CommandOnExitFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[17:53:48] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[17:53:48] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[17:53:48] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'ConsoleCommandOnEntryFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[17:53:48] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[17:53:48] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[17:53:48] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'ConsoleCommandOnExitFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[17:53:48] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[17:53:48] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[17:53:48] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'WalkSpeedFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[17:53:48] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[17:53:48] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[17:53:48] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'BlockedEffectsFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[17:53:48] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[17:53:48] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[17:53:48] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'GodmodeFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[17:53:48] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[17:53:48] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[17:53:48] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'GiveEffectsFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[17:53:48] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[17:53:48] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[17:53:48] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'FlyFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[17:53:48] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[17:53:48] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[17:53:48] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'FlySpeedFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[17:53:48] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[17:53:48] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[17:53:48] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'PlaySoundsFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[17:53:48] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[17:53:48] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[17:53:48] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'GlideFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[17:53:48] [Server thread/INFO]: [WDLCompanion] Enabling WDLCompanion v1.2.0*
[17:53:48] [Server thread/INFO]: [UltraBar] Enabling UltraBar v2.3.2
[17:53:48] [Server thread/INFO]: [UltraBar] WorldGuard detected. WorldGuard addon activated.
[17:53:48] [Server thread/INFO]: [UltraBar] PlaceholderAPI detected. PlaceholderAPI addon activated.
[17:53:48] [Server thread/INFO]: [UltraBar] Your server is running version v1_19_R3!
[17:53:48] [Server thread/INFO]: [UltraBar] UltraBar is enabled and running fine! V: 2.3.2
[17:53:48] [Server thread/INFO]: [UltraBar] Bstat metrics is disabled for this plugin.
[17:53:48] [Server thread/INFO]: [TreasureChestX] Enabling TreasureChestX v1.0
[17:53:48] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.3.1
[17:53:48] [Server thread/INFO]:  
[17:53:48] [Server thread/INFO]: __________________________________________________________
[17:53:48] [Server thread/INFO]:  
[17:53:48] [Server thread/INFO]:                        TradeSystem [2.3.1]
[17:53:48] [Server thread/INFO]:  
[17:53:48] [Server thread/INFO]: Status:
[17:53:48] [Server thread/INFO]:  
[17:53:48] [Server thread/INFO]: MC-Version: 1.19.4 (R0.1-SNAPSHOT, Paper)
[17:53:48] [Server thread/INFO]:  
[17:53:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tradesystem [1.2]
[17:53:49] [Server thread/INFO]:   > Loading sounds
[17:53:49] [Server thread/INFO]:   > Loading blacklist
[17:53:49] [Server thread/INFO]:     ...got 3 blocked item(s)
[17:53:49] [Server thread/INFO]:   > Loading layouts
[17:53:49] [Server thread/INFO]:     ...got 3 layout(s)
[17:53:49] [Server thread/INFO]:   > Database logging is disabled
[17:53:49] [Server thread/INFO]:  
[17:53:49] [Server thread/INFO]: Finished (158ms)
[17:53:49] [Server thread/INFO]:  
[17:53:49] [Server thread/INFO]: __________________________________________________________
[17:53:49] [Server thread/INFO]:  
[17:53:49] [Server thread/INFO]: [TAB] Enabling TAB v3.3.2
[17:53:49] [Server thread/INFO]: [TAB] Server version: 1.19.4 (v1_19_R3)
[17:53:49] [Server thread/INFO]: [TAB] Loaded NMS hook in 20ms
[17:53:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tab [3.3.2]
[17:53:49] [Server thread/INFO]: [TAB] Enabled in 66ms
[17:53:49] [Server thread/INFO]: [skript-yaml] Enabling skript-yaml v1.4
[17:53:49] [Server thread/INFO]: [SkQuery] Enabling SkQuery v4.1.9
[17:53:49] [Server thread/INFO]: [skQuery] Locating classes from SkQuery...
[17:53:49] [Server thread/INFO]: [skQuery] Beginning to process a total of 119 from SkQuery
[17:53:49] [Server thread/INFO]: [skQuery] Out of 119 classes, 119 classes were loaded from SkQuery
[17:53:49] [Server thread/INFO]: [ServerSigns] Enabling ServerSigns v4.8.0
[17:53:49] [Server thread/INFO]: [ServerSigns] Version 4.8.0 is now enabled.
[17:53:49] [Server thread/INFO]: [RotatingHeads2] Enabling RotatingHeads2 v1.0.3
[17:53:50] [Server thread/INFO]: [RotatingHeads2] --------------------------------------------------------------------------------------------
[17:53:50] [Server thread/INFO]: [RotatingHeads2] Loading plugin RotatingHeads2 v.1.0.3
[17:53:50] [Server thread/INFO]: [RotatingHeads2] --------------------------------------------------------------------------------------------
[17:53:50] [Server thread/INFO]: [RotatingHeads2] 
[17:53:50] [Server thread/INFO]: [RotatingHeads2]  Successfully loaded: 1 languages
[17:53:50] [Server thread/INFO]: [RotatingHeads2]  Hooked to language: en_GB
[17:53:50] [Server thread/INFO]: [RotatingHeads2] 
[17:53:50] [Server thread/INFO]: [RotatingHeads2] This plugin is running on 1.0.3...
[17:53:50] [Server thread/INFO]: [RotatingHeads2] Current plugin version on polymart is 1.0.3...
[17:53:50] [Server thread/INFO]: [RotatingHeads2] So your plugin is on the latest version...
[17:53:50] [Server thread/INFO]: [RotatingHeads2] 
[17:53:50] [Server thread/INFO]: [RotatingHeads2]  Plugin author: [Gennario]
[17:53:50] [Server thread/INFO]: [RotatingHeads2] 
[17:53:50] [Server thread/INFO]: [RotatingHeads2] Thanks for choosing Gennario's Development...
[17:53:50] [Server thread/INFO]: [RotatingHeads2] --------------------------------------------------------------------------------------------
[17:53:50] [Server thread/INFO]: [PlayMoreSounds] Enabling PlayMoreSounds v4.2
[17:53:50] [Server thread/INFO]: [PlayMoreSounds] -> Configurations loaded.
[17:53:50] [Server thread/INFO]: [PlayMoreSounds] -> 9 listeners loaded.
[17:53:50] [Server thread/INFO]: [PlayMoreSounds] -> Commands loaded.
[17:53:50] [Server thread/INFO]: [PlayMoreSounds] ============================================
[17:53:50] [Server thread/INFO]: [PlayMoreSounds] PlayMoreSounds has been enabled
[17:53:50] [Server thread/INFO]: [PlayMoreSounds] 1202 sounds available on 1.19.4
[17:53:50] [Server thread/INFO]: [PlayMoreSounds] ============================================
[17:53:50] [Server thread/WARN]: [PlayMoreSounds] PlayMoreSounds detected you are on version 1.19.4. This version was not tested and might throw errors.
[17:53:50] [Server thread/INFO]: [PlayMoreSounds] PlayMoreSounds is using bStats as metrics collector.
[17:53:50] [Server thread/INFO]: [PlayMoreSounds] Checking for updates...
[17:53:50] [Server thread/INFO]: [PlayerKits] Enabling PlayerKits v2.26.1
[17:53:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerkits [2.26.1]
[17:53:50] [Server thread/INFO]: [PlayerKits] Has been enabled! Version: 2.26.1
[17:53:50] [Server thread/INFO]: [PlayerKits] Thanks for using my plugin!  ~Ajneb97
[17:53:50] [EPL Update Checker/INFO]: [PlayMoreSounds] No updates available.
[17:53:50] [Server thread/INFO]: [PlaceItemsOnGroundRebuilt] Enabling PlaceItemsOnGroundRebuilt v1.0.6
[17:53:50] [Server thread/INFO]: [NoPlugins] Enabling NoPlugins v8.1
[17:53:50] [Server thread/INFO]: [NoPlugins] Minecraft version: v1_19_R3
[17:53:50] [Server thread/INFO]: [NoPlugins] Loaded assets for newer minecraft (1.13+)
[17:53:50] [Server thread/INFO]: [NoPlugins] Successfully loaded.
[17:53:50] [Server thread/INFO]: [MythicMobsExtension] Enabling MythicMobsExtension v1.749-SNAPSHOT
[17:53:50] [Server thread/ERROR]: [MythicMobsExtension] An unexpected error occurred initializing Magic
java.lang.NoSuchMethodException: org.bukkit.craftbukkit.v1_19_R3.CraftChunk.getHandle()
    at java.lang.Class.getMethod(Class.java:2227) ~[?:?]
    at com.gmail.berndivader.mythicmobsext.compatibilitylib.NMSUtils.initialize(NMSUtils.java:566) ~[MythicMobsExtension-MC-1.19.2-v1.749-SNAPSHOT.jar:?]
    at com.gmail.berndivader.mythicmobsext.NMS.NMSUtils.initialize(NMSUtils.java:70) ~[MythicMobsExtension-MC-1.19.2-v1.749-SNAPSHOT.jar:?]
    at com.gmail.berndivader.mythicmobsext.Main.onEnable(Main.java:98) ~[MythicMobsExtension-MC-1.19.2-v1.749-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192) ~[paper-1.19.4.jar:git-Paper-516]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.19.4.jar:git-Paper-516]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugin(CraftServer.java:555) ~[paper-1.19.4.jar:git-Paper-516]
    at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugins(CraftServer.java:466) ~[paper-1.19.4.jar:git-Paper-516]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:638) ~[paper-1.19.4.jar:git-Paper-516]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:437) ~[paper-1.19.4.jar:git-Paper-516]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.19.4.jar:git-Paper-516]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1104) ~[paper-1.19.4.jar:git-Paper-516]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320) ~[paper-1.19.4.jar:git-Paper-516]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[17:53:50] [Server thread/INFO]: [MythicMobsExtension] enabled externals
[17:53:50] [Server thread/INFO]: [MythicMobsExtension] registered mechanics!
[17:53:50] [Server thread/INFO]: [MythicMobsExtension] registered conditions!
[17:53:50] [Server thread/INFO]: [MythicMobsExtension] registered targeters!
[17:53:50] [Server thread/INFO]: [MythicMobsExtension] enabled javascript!
[17:53:50] [Server thread/INFO]: [MythicMobsExtension] using MythicPlayers
[17:53:50] [Server thread/INFO]: [MythicMobsExtension] using WorldGuard
[17:53:50] [Server thread/WARN]: [MythicMobsExtension] Incompatible ProtocolLib found! Update to 4.4 or heigher.
[17:53:50] [Server thread/ERROR]: Error occurred while enabling MythicMobsExtension v1.749-SNAPSHOT (Is it up to date?)
java.lang.InstantiationError: io.lumine.mythic.core.skills.placeholders.types.MetaPlaceholder
    at com.gmail.berndivader.mythicmobsext.placeholders.MetatagPlaceholder.register(MetatagPlaceholder.java:17) ~[MythicMobsExtension-MC-1.19.2-v1.749-SNAPSHOT.jar:?]
    at com.gmail.berndivader.mythicmobsext.placeholders.CasterMetatagPlaceholder.<init>(CasterMetatagPlaceholder.java:13) ~[MythicMobsExtension-MC-1.19.2-v1.749-SNAPSHOT.jar:?]
    at com.gmail.berndivader.mythicmobsext.placeholders.PlaceholderRegistery.register(PlaceholderRegistery.java:36) ~[MythicMobsExtension-MC-1.19.2-v1.749-SNAPSHOT.jar:?]
    at com.gmail.berndivader.mythicmobsext.placeholders.PlaceholderRegistery.<init>(PlaceholderRegistery.java:26) ~[MythicMobsExtension-MC-1.19.2-v1.749-SNAPSHOT.jar:?]
    at com.gmail.berndivader.mythicmobsext.Main.onEnable(Main.java:166) ~[MythicMobsExtension-MC-1.19.2-v1.749-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192) ~[paper-1.19.4.jar:git-Paper-516]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.19.4.jar:git-Paper-516]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugin(CraftServer.java:555) ~[paper-1.19.4.jar:git-Paper-516]
    at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugins(CraftServer.java:466) ~[paper-1.19.4.jar:git-Paper-516]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:638) ~[paper-1.19.4.jar:git-Paper-516]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:437) ~[paper-1.19.4.jar:git-Paper-516]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.19.4.jar:git-Paper-516]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1104) ~[paper-1.19.4.jar:git-Paper-516]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320) ~[paper-1.19.4.jar:git-Paper-516]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[17:53:50] [Server thread/INFO]: [MythicMobsExtension] Disabling MythicMobsExtension v1.749-SNAPSHOT
[17:53:50] [Server thread/INFO]: [MythicDungeons] Enabling MythicDungeons v1.1.1-SNAPSHOT
[17:53:50] [Server thread/INFO]: [DungeonParties] Loading server plugin DungeonParties v1.0-SNAPSHOT
[17:53:50] [Server thread/INFO]: [DungeonParties] Enabling DungeonParties v1.0-SNAPSHOT
[17:53:50] [Server thread/INFO]: [MythicDungeons] [STDOUT] DungeonParties plugin found! Enabled party support.
[17:53:50] [Server thread/WARN]: Nag author(s): '[MarcatoSound]' of 'MythicDungeons v1.1.1-SNAPSHOT' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[17:53:50] [Server thread/WARN]: [MythicDungeons] [packetevents] We currently do not support the minecraft version 1.19.4, so things might break. PacketEvents will behave as if the minecraft version were 1.19.2!
[17:53:50] [packetevents-update-check-thread/INFO]: [packetevents] Checking for an update, please wait...
[17:53:50] [Server thread/INFO]: [MythicDungeons] [STDOUT] MythicMobs plugin found! Enabled MythicMobs support.
[17:53:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: md [1.1.1]
[17:53:50] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 58 ms to scan 1 urls, producing 11 keys and 137 values
[17:53:50] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 6 ms to scan 1 urls, producing 7 keys and 58 values
[17:53:50] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 2 ms to scan 1 urls, producing 5 keys and 20 values
[17:53:50] [Server thread/INFO]: [MythicDungeons] [STDOUT] * Loaded 28 functions.
[17:53:50] [Server thread/INFO]: [MythicDungeons] [STDOUT] * Loaded 12 triggers.
[17:53:50] [Server thread/INFO]: [MythicDungeons] [STDOUT] * Loaded 4 conditions.
[17:53:51] [packetevents-update-check-thread/INFO]: [packetevents] You are on a dev or pre released build of packetevents. Your build: (2.0.0) | Latest released build: (1.8.4)
[17:53:52] [Server thread/INFO]: [MythicDungeons] [STDOUT] GUI menus initialized!
[17:53:52] [Server thread/INFO]: [MythicDungeons] [STDOUT] Mythic Dungeons v1.1.1 initialized! Happy dungeon-ing!
[17:53:52] [Server thread/INFO]: [MythicCrucible] Enabling MythicCrucible v1.5.0-SNAPSHOT
[17:53:52] [Server thread/INFO]: [MythicMobs] ------------------------------------------------
[17:53:52] [Server thread/INFO]: [MythicMobs] + Loading MythicCrucible for Bukkit
[17:53:52] [Server thread/INFO]: [MythicMobs] ------------------------------------------------
[17:53:52] [Server thread/INFO]: [MythicMobs] Registering Durability Listener
[17:53:52] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[17:53:52] [Server thread/INFO]: [MiniMOTD] Enabling MiniMOTD v2.0.11
[17:53:52] [Server thread/INFO]: [Minepacks] Enabling Minepacks v2.4.18
[17:53:52] [Server thread/INFO]: [Minepacks] Starting Minepacks in standalone mode!
[17:53:52] [Server thread/INFO]: [Minepacks] You do have the PCGF_PluginLib installed. You may consider switching to the default version of the plugin to reduce memory load and unlock additional features.
[17:53:52] [Server thread/INFO]: [Minepacks] Config file successfully loaded.
[17:53:52] [Server thread/INFO]: [Minepacks] Language file successfully loaded. Language: 繁體中文  Author: Specialbase#0428
[17:53:52] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Starting...
[17:53:53] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Start completed.
[17:53:53] [Server thread/INFO]: [Minepacks] Item name language file successfully loaded. Language: english  Author: GeorgH93
[17:53:53] [Server thread/INFO]: [Minepacks] Loading item translations ...
[17:53:53] [Server thread/INFO]: [Minepacks] Finished loading item translations for 828 items.
[17:53:53] [Server thread/INFO]: [Minepacks]  Minepacks has been enabled!  :) 
[17:53:53] [Server thread/INFO]: [MCPets] Enabling MCPets v3.0.2
[17:53:53] [Server thread/INFO]: [MCPets] : Language file reloaded.
[17:53:53] [Server thread/INFO]: [MCPets] : Blacklist file reloaded.
[17:53:53] [Server thread/INFO]: Loading pets... 
[17:53:53] [Server thread/INFO]:   - vs_chieftain loaded succesfully.
[17:53:53] [Server thread/INFO]: [MCPets] : 1 pets registered successfully !
[17:53:53] [Server thread/INFO]: [MCPets] : 0 categories registered successfully !
[17:53:53] [Server thread/ERROR]: [MCPets] Could not reach SQL database. Please configure your database parameters.
[17:53:53] [Server thread/ERROR]: [MCPets] [Database] Can't initialize MySQL.
[17:53:53] [Server thread/ERROR]: [MCPets] [Database] Will be using YAML support instead.
[17:53:53] [Server thread/INFO]: -=-=-=-= MCPets loaded =-=-=-=-
[17:53:53] [Server thread/INFO]:       Plugin made by Nocsy
[17:53:53] [Server thread/INFO]: -=-=-=-= -=-=-=-=-=-=- =-=-=-=-
[17:53:53] [Server thread/INFO]: -=- Launching Flags -=-
[17:53:53] [Server thread/INFO]: [MCPets] : Starting flag mcpets-dismount.
[17:53:53] [Server thread/INFO]: [MCPets] : Starting flag mcpets-despawn.
[17:53:53] [Server thread/INFO]: 2 flags launched.
[17:53:53] [Server thread/INFO]: [MagicCosmetics] Enabling MagicCosmetics v2.2.8
[17:53:53] [Server thread/INFO]: [MagicCosmetics] Version: v1_19_R3 Detected!
[17:53:53] [Server thread/INFO]: [MagicCosmetics] Loading file cosmetic: cosmetics.yml
[17:53:53] [Server thread/INFO]: [MagicCosmetics] Loading file cosmetic: medieval_pack_backpack.yml
[17:53:53] [Server thread/INFO]: [MagicCosmetics] Loading file cosmetic: medieval_pack_ballon.yml
[17:53:53] [Server thread/INFO]: [MagicCosmetics] Loading file cosmetic: medieval_pack_hands.yml
[17:53:53] [Server thread/INFO]: [MagicCosmetics] Loading file cosmetic: medieval_pack_hats.yml
[17:53:53] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[17:53:53] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@2d8ccd57
[17:53:53] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[17:53:53] [Server thread/INFO]: [MagicCosmetics] SQLite table created successfully
[17:53:53] [Server thread/INFO]: [MagicCosmetics] Validating purchase...
[17:53:53] [Server thread/INFO]: [MagicCosmetics]  
[17:53:53] [Server thread/INFO]: [MagicCosmetics] Welcome sktom!
[17:53:53] [Server thread/INFO]: [MagicCosmetics] Thank you for using MagicCosmetics =)!
[17:53:53] [Server thread/INFO]: [MagicCosmetics]  
[17:53:53] [Server thread/INFO]: [MagicCosmetics] ModelEngine 3.0.0 found, using new model engine
[17:53:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: magicosmetics [2.2.8]
[17:53:53] [Server thread/INFO]: [MagicCosmetics] Loading cosmetics from file: cosmetics/medieval_pack_hats.yml
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'medieval_crown'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'medieval_executioner'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'medieval_gold_helmet'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'medieval_helmet_battle'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'medieval_helmet_warrior'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'medieval_queen_crown'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'medieval_defender'
[17:53:53] [Server thread/INFO]: [MagicCosmetics] Registered cosmetics: 0
[17:53:53] [Server thread/INFO]: [MagicCosmetics] Loading cosmetics from file: cosmetics/medieval_pack_backpack.yml
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'medieval_archer_bag'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'medieval_cape'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'medieval_shield'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'medieval_standart_king'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'medieval_shield_warrior'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'medieval_standart_crown'
[17:53:53] [Server thread/INFO]: [MagicCosmetics] Registered cosmetics: 0
[17:53:53] [Server thread/INFO]: [MagicCosmetics] Loading cosmetics from file: cosmetics/cosmetics.yml
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'hat1'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'hat2'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'bag1'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'bag2'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'wstick1'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'balloon1'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'balloon2'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'spray1'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'spray2'
[17:53:53] [Server thread/INFO]: [MagicCosmetics] Registered cosmetics: 0
[17:53:53] [Server thread/INFO]: [MagicCosmetics] Loading cosmetics from file: cosmetics/medieval_pack_ballon.yml
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'medieval_ballon'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'medieval_ballon_flowers'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'medieval_ballon_cow'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'medieval_ballon_pig'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'medieval_kite'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'medieval_machine'
[17:53:53] [Server thread/INFO]: [MagicCosmetics] Registered cosmetics: 0
[17:53:53] [Server thread/INFO]: [MagicCosmetics] Loading cosmetics from file: cosmetics/medieval_pack_hands.yml
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'medieval_lance_warrior'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'medieval_parchment'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'medieval_royal_scepter'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'medieval_royal_trumpet'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'medieval_shield'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'medieval_warrior_scepter'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'medieval_wizard_book'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'medieval_wizard_book_open'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'medieval_basket'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping cosmetic 'medieval_lamp'
[17:53:53] [Server thread/INFO]: [MagicCosmetics] Registered cosmetics: 0
[17:53:53] [Server thread/INFO]: [MagicCosmetics] Registered colors: 9
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping Menu Item 'back-button-template'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping Menu Item 'back-button-cancel-template'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping Menu Item 'next-button-template'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping Menu Item 'next-button-cancel-template'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping Menu Item 'color-template'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping Menu Item 'hat_menu'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping Menu Item 'bag_menu'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping Menu Item 'wstick_menu'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping Menu Item 'balloon_menu'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping Menu Item 'spray_menu'
[17:53:53] [Server thread/INFO]: [MagicCosmetics] Registered items: 7
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping Token Item 'token1'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping Token Item 'token2'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping Token Item 'token3'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping Token Item 'token4'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping Token Item 'token5'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping Token Item 'token6'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping Token Item 'token7'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping Token Item 'token8'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping Token Item 'token9'
[17:53:53] [Server thread/WARN]: [MagicCosmetics] Item Adder plugin Not Found skipping Token Item 'token10'
[17:53:53] [Server thread/INFO]: [MagicCosmetics] Registered tokens: 0
[17:53:53] [Server thread/INFO]: [MagicCosmetics] Sound 'entity.cat.hiss' not Found in Bukkit... Transform custom
[17:53:53] [Server thread/INFO]: [MagicCosmetics] Registered menus: 8
[17:53:53] [Server thread/INFO]: [LPC] Enabling LPC v3.6.0
[17:53:53] [Server thread/INFO]: [LootChest] Enabling LootChest v2.3.4
[17:53:53] [Server thread/INFO]: [LootChest] Server version: 1.19
[17:53:53] [Server thread/INFO]: [LootChest] Loading config files...
[17:53:53] [Server thread/INFO]: [LootChest] Checking for update...
[17:53:53] [Server thread/INFO]: [LootChest] Starting particles...
[17:53:54] [Server thread/INFO]: [LiteSignIn] Enabling LiteSignIn v1.7.0.0
[17:53:54] [Server thread/INFO]: [LiteSignIn] The language information file has been loaded.
[17:53:54] [Server thread/INFO]: [LiteSignIn] Enabled Command Listener .
[17:53:54] [Server thread/INFO]: [LiteSignIn] Enabled Event Listener .
[17:53:54] [Server thread/INFO]: 每日簽到 >>> Successfully connected SQLite server.
[17:53:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: litesignin [1.0.0]
[17:53:54] [Server thread/INFO]: 每日簽到 >>> Find the PlaceholderAPI and get ready.
[17:53:54] [Server thread/INFO]: 每日簽到 >>> Async thread started.
[17:53:54] [Server thread/INFO]: 每日簽到 >>> Plugin are enabled!
[17:53:54] [Server thread/INFO]: [LastLoginAPI] Enabling LastLoginAPI v1.7.4
[17:53:54] [Server thread/INFO]: [LastLoginAPI] Initializing LastLoginAPI v1.7.4
[17:53:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: lastloginapi [1.7.4]
[17:53:54] [Server thread/INFO]: [LastLoginAPI] Hooked into PlaceholderAPI
[17:53:54] [Server thread/INFO]: [LastLoginAPI] LastLoginAPI v1.7.4 enabled
[17:53:54] [Server thread/INFO]: [JonAPI] Enabling JonAPI v1.1-c1*
[17:53:54] [Server thread/INFO]: [JonAPI] Plugin Version: 1.1-c1
[17:53:54] [Server thread/INFO]: [JonAPI] JonAPI ?用成功.    BY JONJS2333
[17:53:54] [Server thread/INFO]: [ItemEdit] Enabling ItemEdit v3.0.9
[17:53:54] [Server thread/INFO]: [ItemEdit] Hooking into Vault
[17:53:54] [Server thread/INFO]: [ItemEdit] Hooking into PlaceholderApi
[17:53:54] [Server thread/INFO]: [ItemEdit] Hooked into PlaceHolderAPI:
[17:53:54] [Server thread/INFO]: [ItemEdit] placeholders:
[17:53:54] [Server thread/INFO]: [ItemEdit]   %itemedit_amount_<{itemid}>_[{slot}]_[{player}]%
[17:53:54] [Server thread/INFO]: [ItemEdit]     shows how many itemid player has on slot
[17:53:54] [Server thread/INFO]: [ItemEdit]     <{itemid}> for item id on serveritem
[17:53:54] [Server thread/INFO]: [ItemEdit]     [{slot}] for the slot where the item should be counted, by default inventory
[17:53:54] [Server thread/INFO]: [ItemEdit]       Values: inventory, equip, inventoryandequip, hand, offhand, head, chest, legs, feet
[17:53:54] [Server thread/INFO]: [ItemEdit]     [{player}] for the player, by default self
[17:53:54] [Server thread/INFO]: [ItemEdit]     example: %itemedit_amount_{my_item_id}_{hand}%
[17:53:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: itemedit [1.0]
[17:53:54] [Server thread/INFO]: [ItemEdit] Hooking into MythicMobs
[17:53:54] [Server thread/INFO]: [ItemEdit] # Enabled (took 66 ms)
[17:53:54] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.11.2
[17:53:54] [Server thread/INFO]: [NBTAPI] Adding listeners...
[17:53:54] [Server thread/INFO]: [NBTAPI] Gson:
[17:53:54] [Server thread/INFO]: [NBTAPI] Checking bindings...
[17:53:54] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[17:53:54] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[17:53:54] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[17:53:54] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[17:53:54] [Server thread/INFO]: [shit_do] Enabling shit_do v1.0*
[17:53:54] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v4.1.10
[17:53:54] [Server thread/INFO]: [ExcellentCrates] Powered by: NexEngine
[17:53:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: excellentcrates [4.1.10]
[17:53:54] [Server thread/INFO]: [ExcellentCrates] Using 'en' language.
[17:53:54] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Starting...
[17:53:54] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-2 - Added connection org.sqlite.jdbc4.JDBC4Connection@390b55ad
[17:53:54] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Start completed.
[17:53:54] [Server thread/INFO]: [ExcellentCrates] Loaded 3 crate keys.
[17:53:55] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[17:53:55] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 218 ms!
[17:53:55] [Server thread/INFO]: [EpicCraftingsPlus] Enabling EpicCraftingsPlus v7.18.1
[17:53:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: epiccraftings [7.18.1]
[17:53:55] [Server thread/INFO]: [EpicCraftings+] Has been enabled! Version: 7.18.1
[17:53:55] [Server thread/INFO]: [EpicCraftings+] Thanks for using my plugin!  ~Ajneb97
[17:53:55] [Server thread/INFO]: [EnderContainers] Enabling EnderContainers v2.3.0-dev
[17:53:55] [Server thread/INFO]: [EnderContainers] Hooked into WorldGuard v7.0.7+216b061
[17:53:55] [Server thread/INFO]: [EnderContainers] MySQL disabled. Using flat system to store data.
[17:53:55] [Server thread/WARN]: [EnderContainers] You have disabled update checking. Please be sure that the plugin is up to date.
[17:53:55] [Server thread/INFO]: [DeluxeTags] Enabling DeluxeTags v1.8.2-Release
[17:53:55] [Server thread/INFO]: [DeluxeTags] Using standard hex colors format: #aaFF00
[17:53:55] [Server thread/INFO]: [DeluxeTags] 13 tags loaded
[17:53:56] [Server thread/INFO]: [DeluxeTags] Loading DeluxeTags messages.yml
[17:53:56] [Server thread/INFO]: [DeluxeTags] PAPI Chat enabled. This means your chat plugin will use placeholders to fetch the tags!
[17:53:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxetags [1.8.2-Release]
[17:53:56] [Server thread/INFO]: [DeluxeTags] ----------------------------
[17:53:56] [Server thread/INFO]: [DeluxeTags]      DeluxeTags Updater
[17:53:56] [Server thread/INFO]: [DeluxeTags]  
[17:53:56] [Server thread/INFO]: [DeluxeTags] You are running 1.8.2-Release
[17:53:56] [Server thread/INFO]: [DeluxeTags] The latest version
[17:53:56] [Server thread/INFO]: [DeluxeTags] of DeluxeTags!
[17:53:56] [Server thread/INFO]: [DeluxeTags]  
[17:53:56] [Server thread/INFO]: [DeluxeTags] ----------------------------
[17:53:56] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.7-Release
[17:53:56] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[17:53:56] [Server thread/ERROR]: [DeluxeMenus] open_command specified for menu: pets already exists for another menu!
Skipping menu: pets
[17:53:56] [Server thread/INFO]: [DeluxeMenus] 23 GUI menus loaded!
[17:53:56] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[17:53:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxemenus [1.13.7-Release]
[17:53:56] [Server thread/INFO]: [ChatItem] Enabling ChatItem v2.4.6
[17:53:56] [Server thread/INFO]: [ChatItem] Detected server version: v1_19
[17:53:56] [Server thread/INFO]: [ChatItem] The plugin ProtocolLib has been detected. Loading Protocollib support ...
[17:53:56] [Server thread/INFO]: [ChatItem] Loaded 4 getter for base components.
[17:53:56] [Server thread/INFO]: [ChatItem] Save method founded: b. Use ComponentBuilder's method.
[17:53:56] [Server thread/INFO]: [ChatItem] Manager automatically chosen: PacketEditing (packet), ChatListener (chat)
[17:53:56] [Server thread/INFO]: [ChatItem] Load DiscordSRV support.
[17:53:56] [Server thread/INFO]: [CaliComp] Enabling CaliComp v1.1
[17:53:56] [Server thread/INFO]: [BloodInMinecraft] Enabling BloodInMinecraft v9.5
[17:53:56] [Server thread/INFO]: ----------------------------------------
[17:53:56] [Server thread/INFO]: BloodInMinecraft By Yanisssch Is On! No error Found ;)! VERSION 9.5
[17:53:56] [Server thread/INFO]: Your server running on:git-Paper-516 (MC: 1.19.4)-!Only work on 1.13 to newer versions!-
[17:53:56] [Server thread/INFO]: ----------------------------------------
[17:53:56] [Server thread/INFO]: [BeautyQuests] Enabling BeautyQuests v0.20.1
[17:53:56] [Server thread/INFO]: [BeautyQuests] ------------ BeautyQuests ------------
[17:53:56] [Server thread/INFO]: [BeautyQuests] Loaded valid Minecraft version 1_19_R3.
[17:53:56] [Server thread/INFO]: [BeautyQuests] Loaded language zh_HK (0.027s)!
[17:53:56] [Server thread/INFO]: [BeautyQuests] Loaded start particles: REDSTONE in shape POINT with color R255 G255 B0
[17:53:56] [Server thread/INFO]: [BeautyQuests] Loaded talk particles: VILLAGER_HAPPY in shape BAR
[17:53:56] [Server thread/INFO]: [BeautyQuests] Loaded next particles: SMOKE_NORMAL in shape SPOT
[17:53:57] [Server thread/INFO]: [WorldGuard] Registering session handler fr.skytasul.quests.utils.compatibility.worldguard.WorldGuardEntryHandler
[17:53:57] [Server thread/WARN]: Plugin 'BeautyQuests' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: SkytAsul
[17:53:57] [Server thread/WARN]: Plugin 'BeautyQuests' is creating timing 'WorldGuardEntryHandler' - this is deprecated behavior, please report it to the authors: SkytAsul
[17:53:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: beautyquests [0.20.1]
[17:53:57] [Server thread/INFO]: [BeautyQuests] Placeholders registered !
[17:53:57] [Server thread/INFO]: [AuctionMaster] Enabling AuctionMaster v4.1
[17:53:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: auctionmaster [1.0.0]
[17:53:57] [Server thread/INFO]: [AuctionMaster] Succesfully connected to the Deliveries SQL.
[17:53:57] [Server thread/WARN]: [AuctionMaster] Auctions database is ready!
[17:53:57] [Server thread/WARN]: [AuctionMaster] AuctionLists database is ready!
[17:53:57] [Server thread/WARN]: [AuctionMaster] PreviewData database is ready!
[17:53:57] [Server thread/INFO]: [AquaticCrates] Enabling AquaticCrates v2.3.9
[17:53:57] [Server thread/INFO]: AquaticCrates | Loading the plugin...
[17:53:57] [Server thread/INFO]: AquaticCrates | Loading NMS Version!
[17:53:57] [Server thread/INFO]: AquaticCrates | Using NMS version v1_19_R4.
[17:53:57] [Server thread/INFO]: AquaticCrates | Loading PlaceholderAPI Hook!
[17:53:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: aquaticcrates [1.0.0]
[17:53:57] [Server thread/INFO]: AquaticCrates | Loading Database!
[17:53:57] [Server thread/INFO]: [AnimatedScoreboard] Enabling AnimatedScoreboard v0.2.7
[17:53:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: animatedscoreboard [0.0.1]
[17:53:57] [Server thread/INFO]: [AdvancedAchievements] Enabling AdvancedAchievements v7.2.4
[17:53:58] [Server thread/INFO]: [AdvancedAchievements] Backing up and loading configuration files...
[17:53:58] [Server thread/WARN]: [AdvancedAchievements] Overriding configuration: disabling PetMasterGive and PetMasterReceive categories.
[17:53:58] [Server thread/WARN]: [AdvancedAchievements] Ensure you have placed Pet Master in your plugins folder or add PetMasterGive and PetMasterReceive to the DisabledCategories list in config.yml.
[17:53:58] [Server thread/WARN]: [AdvancedAchievements] Overriding configuration: disabling JobsReborn category.
[17:53:58] [Server thread/WARN]: [AdvancedAchievements] Ensure you have placed JobsReborn in your plugins folder or add JobsReborn to the DisabledCategories list in config.yml.
[17:53:58] [Server thread/INFO]: [AdvancedAchievements] Loaded 106 achievements in 43 categories.
[17:53:58] [Server thread/INFO]: [AdvancedAchievements] 10 disabled categories: [PetMasterGive, Commands, PlayerCommands, Custom, Riptides, PetMasterReceive, JobsReborn, Connections, EatenItems, AdvancementsCompleted]
[17:53:58] [Server thread/INFO]: [AdvancedAchievements] Registering event listeners...
[17:53:58] [Server thread/INFO]: [AdvancedAchievements] Initialising h2 database...
[17:53:58] [Server thread/INFO]: [AdvancedAchievements] Setting up command executor and custom tab completers...
[17:53:58] [Server thread/INFO]: [AdvancedAchievements] Launching scheduled tasks...
[17:53:58] [Server thread/INFO]: [AdvancedAchievements] Registering permissions...
[17:53:58] [Thread-32/INFO]: [AdvancedAchievements] Checking for plugin update...
[17:53:59] [Thread-32/WARN]: [AdvancedAchievements] Update available: v8.0.2! Download at https://www.spigotmc.org/resources/83466
[17:54:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: aach [7.2.4]
[17:54:00] [Server thread/INFO]: [AdvancedAchievements] Plugin has finished loading and is ready to run! Took 1452ms.
[17:54:00] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[17:54:00] [Server thread/INFO]: Running delayed init tasks
[17:54:00] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[17:54:00] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[17:54:00] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.GriefPreventionFeature] Plugin 'GriefPrevention' found. Using it now.
[17:54:00] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'GriefPrevention'
[17:54:00] [Craft Scheduler Thread - 18 - EpicPluginLib/INFO]: [EpicPluginLib] EpicPluginLib v2.4.2 is available. Please update.
[17:54:00] [Craft Scheduler Thread - 7 - ItemJoin/INFO]: [ItemJoin] Hooked into { My Worlds, WorldGuard, PlaceholderAPI, ProtocolLib, Citizens }
[17:54:00] [Craft Scheduler Thread - 7 - ItemJoin/INFO]: [ItemJoin] 1 Custom item(s) loaded!
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] [Importing models]
[17:54:00] [Craft Scheduler Thread - 29 - AnimatedScoreboard/INFO]: [AnimatedScoreboard] Checking for an update!
[17:54:00] [Craft Scheduler Thread - 8 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Importing bear_trap.bbmodel.
[17:54:00] [Craft Scheduler Thread - 25 - PlaceItemsOnGroundRebuilt/INFO]: [PlaceItemsOnGroundRebuilt] No updates found!
[17:54:00] [Craft Scheduler Thread - 19 - LootChest/INFO]: [LootChest] The plugin seems up to date.
[17:54:00] [Craft Scheduler Thread - 28 - Vault/INFO]: [Vault] Checking for Updates ... 
[17:54:00] [Craft Scheduler Thread - 29 - AnimatedScoreboard/INFO]: [AnimatedScoreboard] No new versions found for the plugin!
[17:54:00] [Craft Scheduler Thread - 28 - Vault/INFO]: [Vault] No new version available
[17:54:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerpoints [3.2.5]
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Importing combat_dummy.bbmodel.
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Importing dark_throne.bbmodel.
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Importing dummy_teemo_blue.bbmodel.
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Importing dummy_teemo_red.bbmodel.
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Importing dungeon_spike.bbmodel.
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Importing dungeon_statue.bbmodel.
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Importing ethrods.bbmodel.
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The bone wing1 is translated too far away from the pivot. Maximum translation is 80x80x80. [ 0.0, -6.400000095367432, 82.44297790527344 ]
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The bone wing2 is translated too far away from the pivot. Maximum translation is 80x80x80. [ 0.0, -6.400000095367432, 82.44297790527344 ]
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Importing ethrods_egg.bbmodel.
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Importing ethrods_larva.bbmodel.
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Importing explosive_barrel.bbmodel.
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Importing forester.bbmodel.
[17:54:00] [Server thread/INFO]: [Skript] Loading variables...
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Importing freemob.bbmodel.
[17:54:00] [Server thread/INFO]: [Skript] Loaded 91 variables in 0.0 seconds
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Importing health_pack.bbmodel.
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Importing kindletronsr.bbmodel.
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_otter_v2.bbmodel.
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Importing quetzalcoatl.bbmodel.
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Importing quetzalcoatl_rune.bbmodel.
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Importing Rocky.bbmodel.
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Importing Shroom.bbmodel.
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Importing ShroomInvis.bbmodel.
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Importing sintia_the_hydra.bbmodel.
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Importing sintia_the_hydra_vfx_crystal.bbmodel.
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Importing sintia_the_hydra_vfx_magic_circle.bbmodel.
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Importing slime_pit.bbmodel.
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Importing Teemo.bbmodel.
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] [Generating assets]
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Generating bear_trap.
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Generating combat_dummy.
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:00] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Generating dark_throne.
[17:54:00] [Server thread/INFO]: [Skript] Line 4: (dct.sk)
[17:54:00] [Server thread/INFO]:     a living entity cannot be saved, i.e. the contents of the variable {sheep} will be lost when the server stops.
[17:54:00] [Server thread/INFO]:     Line: set {sheep} to last spawned sheep
[17:54:00] [Server thread/INFO]:  
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Generating dummy_teemo_blue.
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Generating dummy_teemo_red.
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Generating dungeon_spike.
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Generating dungeon_statue.
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Generating ethrods.
[17:54:01] [Craft Scheduler Thread - 9 - ItemJoin/INFO]: [ItemJoin] You are up to date!
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Generating ethrods_egg.
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Generating ethrods_larva.
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Generating explosive_barrel.
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Generating forester.
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Generating freemob.
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Generating health_pack.
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Generating kindletronsr.
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Generating nocsy_otter_v2.
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Generating quetzalcoatl.
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Generating quetzalcoatl_rune.
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Generating rocky.
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Generating shroom.
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Generating shroominvis.
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Generating sintia_the_hydra.
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Generating sintia_the_hydra_vfx_crystal.
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Generating sintia_the_hydra_vfx_magic_circle.
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Generating slime_pit.
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:01] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Generating teemo.
[17:54:01] [Server thread/INFO]: [Skript] Line 34: (Project.sk)
[17:54:01] [Server thread/INFO]:     List is missing 'and' or 'or', defaulting to 'and': 0,1,2,3,4,5,6,7,8,9,13,15,16,17,18,22,24,26,27,31,32,33,34,35,36,40,44,45,46,47,48,49,50,51,52,53
[17:54:01] [Server thread/INFO]:     Line: set slot 0,1,2,3,4,5,6,7,8,9,13,15,16,17,18,22,24,26,27,31,32,33,34,35,36,40,44,45,46,47,48,49,50,51,52,53 of (metadata value "guiTaoJin.%uuid of player%" of player) to black stained glass pane named "&8玻璃片"
[17:54:01] [Server thread/INFO]:  
[17:54:02] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:54:02] [Craft Scheduler Thread - 22 - ModelEngine/INFO]: [ModelEngine] [A] Resource pack zipped.
[17:54:02] [Server thread/INFO]: [Skript] Line 155: (Project.sk)
[17:54:02] [Server thread/INFO]:     List is missing 'and' or 'or', defaulting to 'and': 10,11,12,19,20,21,28,29,30,37,38,39
[17:54:02] [Server thread/INFO]:     Line: if type of slot 10,11,12,19,20,21,28,29,30,37,38,39 of event-inventory isn't dirt or sand or air:
[17:54:02] [Server thread/INFO]:  
[17:54:02] [Server thread/INFO]: [Skript] Line 164: (Project.sk)
[17:54:02] [Server thread/INFO]:     List is missing 'and' or 'or', defaulting to 'and': 10,11,12,19,20,21,28,29,30,37,38,39
[17:54:02] [Server thread/INFO]:     Line: set {_items::*} to slot 10,11,12,19,20,21,28,29,30,37,38,39 of event-inventory
[17:54:02] [Server thread/INFO]:  
[17:54:02] [Server thread/INFO]: [Skript] Line 186: (Project.sk)
[17:54:02] [Server thread/INFO]:     List is missing 'and' or 'or', defaulting to 'and': 10,11,12,19,20,21,28,29,30,37,38,39
[17:54:02] [Server thread/INFO]:     Line: set slot 10,11,12,19,20,21,28,29,30,37,38,39 of event-inventory to air
[17:54:02] [Server thread/INFO]:  
[17:54:02] [Server thread/INFO]: [Skript] Line 193: (Project.sk)
[17:54:02] [Server thread/INFO]:     List is missing 'and' or 'or', defaulting to 'and': 10,11,12,19,20,21,28,29,30,37,38,39
[17:54:02] [Server thread/INFO]:     Line: set slot 10,11,12,19,20,21,28,29,30,37,38,39 of event-inventory to air
[17:54:02] [Server thread/INFO]:  
[17:54:02] [Server thread/INFO]: [Skript] Line 202: (Project.sk)
[17:54:02] [Server thread/INFO]:     List is missing 'and' or 'or', defaulting to 'and': 10,11,12,19,20,21,28,29,30,37,38,39
[17:54:02] [Server thread/INFO]:     Line: set slot 10,11,12,19,20,21,28,29,30,37,38,39 of event-inventory to air
[17:54:02] [Server thread/INFO]:  
[17:54:02] [Server thread/INFO]: [Skript] Line 238: (Project.sk)
[17:54:02] [Server thread/INFO]:     List is missing 'and' or 'or', defaulting to 'and': 10,11,12,19,20,21,28,29,30,37,38,39,14,23,41,42,43
[17:54:02] [Server thread/INFO]:     Line: set {_items::*} to slot 10,11,12,19,20,21,28,29,30,37,38,39,14,23,41,42,43 of event-inventory
[17:54:02] [Server thread/INFO]:  
[17:54:02] [Server thread/INFO]: [Skript] Line 245: (Project.sk)
[17:54:02] [Server thread/INFO]:     List is missing 'and' or 'or', defaulting to 'and': 0,1,2,3,4,5,6,7,8,9,13,15,16,17,18,22,24,26,27,31,32,33,34,35,36,40,44,45,46,47,48,49,50,51,52,53
[17:54:02] [Server thread/INFO]:     Line: set slot 0,1,2,3,4,5,6,7,8,9,13,15,16,17,18,22,24,26,27,31,32,33,34,35,36,40,44,45,46,47,48,49,50,51,52,53 of (metadata value "guiTaoJin.%uuid of player%" of player) to black stained glass pane named "&8玻璃片"
[17:54:02] [Server thread/INFO]:  
[17:54:03] [Server thread/INFO]: [Skript] All scripts loaded without errors.
[17:54:03] [Server thread/INFO]: [Skript] Loaded 10 scripts with a total of 23 triggers and 7 commands in 2.29 seconds
[17:54:03] [Server thread/INFO]: [Skript] Finished loading.
[17:54:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: discordsrv [1.26.2]
[17:54:03] [Server thread/INFO]: [WildStacker] Loading providers started...
[17:54:03] [Server thread/INFO]: [WildStacker]  - Couldn't find any spawners providers, using default one.
[17:54:03] [Server thread/INFO]: [WildStacker] Using Vault as an economy provider.
[17:54:03] [Server thread/INFO]: [WildStacker] 
[17:54:03] [Server thread/INFO]: [WildStacker] Detected FastAsyncWorldEdit - Disabling ticks limiter for items...
[17:54:03] [Server thread/INFO]: [WildStacker] Loading providers done (Took 38ms)
[17:54:03] [Server thread/INFO]: [PlayMoreSounds] Starting Regions Handler v1.1 addon.
[17:54:03] [Server thread/INFO]: [PlayMoreSounds] Starting WorldGuard Regions v1.0 addon.
[17:54:03] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crates.
[17:54:03] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Mechanic CustomMechanic
[17:54:03] [Server thread/WARN]: [MythicMobs] --| Skill: t1-1 | File: C:\Users\ming\Desktop\420-2023\plugins\MythicMobs\Skills\T1S_moran.yml
[17:54:03] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic CUSTOMRANDOMSKILL
[17:54:03] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: customrandomskill{s=t1<&da>1<&da>1:0.8;t1<&da>1<&da>2:1;rnr=true}
[17:54:03] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Mechanic CustomMechanic
[17:54:03] [Server thread/WARN]: [MythicMobs] --| Skill: t1-2 | File: C:\Users\ming\Desktop\420-2023\plugins\MythicMobs\Skills\T1S_moran.yml
[17:54:03] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic CUSTOMRANDOMSKILL
[17:54:03] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: customrandomskill{s=t1<&da>2<&da>1:0.8;t1<&da>2<&da>2:1;rnr=true}
[17:54:03] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Mechanic CustomMechanic
[17:54:03] [Server thread/WARN]: [MythicMobs] --| Skill: t1-3 | File: C:\Users\ming\Desktop\420-2023\plugins\MythicMobs\Skills\T1S_moran.yml
[17:54:03] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic CUSTOMRANDOMSKILL
[17:54:03] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: customrandomskill{s=t1<&da>3<&da>1:0.8;t1<&da>3<&da>2:1;rnr=true}
[17:54:03] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Mechanic CustomMechanic
[17:54:03] [Server thread/WARN]: [MythicMobs] --| Skill: t1-4 | File: C:\Users\ming\Desktop\420-2023\plugins\MythicMobs\Skills\T1S_moran.yml
[17:54:03] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic CUSTOMRANDOMSKILL
[17:54:03] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: customrandomskill{s=t1<&da>4<&da>1:0.8;t1<&da>4<&da>2:1;rnr=true}
[17:54:03] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Mechanic CustomMechanic
[17:54:03] [Server thread/WARN]: [MythicMobs] --| Skill: t1-5 | File: C:\Users\ming\Desktop\420-2023\plugins\MythicMobs\Skills\T1S_moran.yml
[17:54:03] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic CUSTOMRANDOMSKILL
[17:54:03] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: customrandomskill{s=t1<&da>5<&da>1:0.8;t1<&da>5<&da>2:1;rnr=true}
[17:54:03] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Drop KingsCrown HEAD
[17:54:03] [Server thread/WARN]: [MythicMobs] --| File: C:\Users\ming\Desktop\420-2023\plugins\MythicMobs\Mobs\ExampleMobs.yml
[17:54:03] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[17:54:03] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Drop SkeletonKingSword HAND
[17:54:03] [Server thread/WARN]: [MythicMobs] --| File: C:\Users\ming\Desktop\420-2023\plugins\MythicMobs\Mobs\ExampleMobs.yml
[17:54:03] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[17:54:03] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Drop B2B_weapon:0
[17:54:03] [Server thread/WARN]: [MythicMobs] --| File: C:\Users\ming\Desktop\420-2023\plugins\MythicMobs\Mobs\委托\B1.yml
[17:54:03] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[17:54:03] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Drop KingsCrown 1 0.01
[17:54:03] [Server thread/WARN]: [MythicMobs] --| File: ExampleDropTables.yml
[17:54:03] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[17:54:03] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Drop SkeletonKingSword 0.1
[17:54:03] [Server thread/WARN]: [MythicMobs] --| File: ExampleDropTables.yml
[17:54:03] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 8.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 7.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 6.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 15.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 14.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 13.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 12.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 11.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 10.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 61.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 96.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 95.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 98.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 97.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 102.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 101.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 100.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 99.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 103.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 104.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 111.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 112.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 113.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 128.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 129.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 135.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 134.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 138.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 137.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 159.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 158.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 157.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 156.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 155.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 154.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 160.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 162.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 163.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 167.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 166.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 169.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 172.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 171.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 180.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 194.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 193.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 192.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 191.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 190.
[17:54:03] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 188.
[17:54:04] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 212.
[17:54:04] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 211.
[17:54:04] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 209.
[17:54:04] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 228.
[17:54:04] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 227.
[17:54:04] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 226.
[17:54:04] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 217.
[17:54:04] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 215.
[17:54:04] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 249.
[17:54:04] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 241.
[17:54:04] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 240.
[17:54:04] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 315.
[17:54:04] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 336.
[17:54:04] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 330.
[17:54:04] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 321.
[17:54:04] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 341.
[17:54:04] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 370.
[17:54:04] [Server thread/ERROR]: [Citizens] The trait speech failed to load for NPC ID: 408.
[17:54:04] [Server thread/INFO]: [Citizens] Loaded 227 NPCs.
[17:54:04] [Server thread/INFO]: [WildStacker] Starting to load entities...
[17:54:04] [Server thread/INFO]: [WildStacker] Loading entities done! Took 1 ms.
[17:54:04] [Server thread/INFO]: [WildStacker] Starting to load items...
[17:54:04] [Server thread/INFO]: [WildStacker] Loading items done! Took 0 ms.
[17:54:04] [Server thread/INFO]: [WildStacker] Starting to load spawners...
[17:54:04] [Server thread/INFO]: [WildStacker] Loading spawners done! Took 0 ms.
[17:54:04] [Server thread/INFO]: [WildStacker] Starting to load barrels...
[17:54:04] [Server thread/INFO]: [WildStacker] Loading barrels done! Took 0 ms.
[17:54:04] [Server thread/INFO]: [BeautyQuests] You are using the latest version of BeautyQuests.
[17:54:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: Animations [1.0.5]
[17:54:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: checkitem [2.3.3]
[17:54:04] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion deluxechat due to a missing plugin: DeluxeChat
[17:54:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: localtime [1.2]
[17:54:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: luckperms [5.1-R2]
[17:54:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.3]
[17:54:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerlist [2.1]
[17:54:04] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playerstats due to a missing plugin: PlayerStats
[17:54:04] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playertime due to a missing plugin: PlayerTime
[17:54:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.6.0]
[17:54:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[17:54:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.7.0]
[17:54:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: world [1.2.1]
[17:54:04] [Server thread/INFO]: 10 placeholder hook(s) registered! 7 placeholder hook(s) have an update available.
[17:54:05] [Server thread/INFO]: Done (56.939s)! For help, type "help"
[17:54:05] [Server thread/INFO]: Timings Reset
[17:54:05] [Server thread/ERROR]: [MythicMobs] [SCHEDULER] Exception thrown whilst executing task
[17:54:05] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileSpawningHandler.getSpawnState(io.lumine.mythic.api.adapters.AbstractWorld)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getSpawningHandler()" is null
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.spawning.random.RandomSpawnerManager.spawnMobs(RandomSpawnerManager.java:285)
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runRandomSpawningClock(MythicClock.java:205)
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToConsumer.accept(Delegates.java:93)
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Schedulers$LumineTask.run(Schedulers.java:162)
[17:54:05] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:05] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:05] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:05] [Server thread/ERROR]: [BeautyQuests] Cannot find object creator with id: skillAPILevelRequired
[17:54:05] [Server thread/ERROR]: [BeautyQuests] The quest object for class null has not been deserialized.
[17:54:05] [Server thread/INFO]: [BeautyQuests] Creating single quest backup...
[17:54:05] [Server thread/INFO]: [BeautyQuests] Quest backup created at 15.yml-backup2023-04-22-05-54-05.yml
[17:54:05] [Server thread/ERROR]: [BeautyQuests] Cannot find object creator with id: skillAPILevelRequired
[17:54:05] [Server thread/ERROR]: [BeautyQuests] The quest object for class null has not been deserialized.
[17:54:05] [Server thread/INFO]: [BeautyQuests] Creating single quest backup...
[17:54:05] [Server thread/INFO]: [BeautyQuests] Quest backup created at 16.yml-backup2023-04-22-05-54-05.yml
[17:54:05] [Server thread/ERROR]: [BeautyQuests] Cannot find object creator with id: skillAPILevelRequired
[17:54:05] [Server thread/ERROR]: [BeautyQuests] The quest object for class null has not been deserialized.
[17:54:05] [Server thread/INFO]: [BeautyQuests] Creating single quest backup...
[17:54:05] [Server thread/INFO]: [BeautyQuests] Quest backup created at 17.yml-backup2023-04-22-05-54-05.yml
[17:54:05] [Server thread/ERROR]: [BeautyQuests] Cannot find object creator with id: skillAPILevelRequired
[17:54:05] [Server thread/ERROR]: [BeautyQuests] The quest object for class null has not been deserialized.
[17:54:05] [Server thread/ERROR]: [BeautyQuests] Cannot find object creator with id: classRequired
[17:54:05] [Server thread/ERROR]: [BeautyQuests] The quest object for class null has not been deserialized.
[17:54:05] [Server thread/INFO]: [BeautyQuests] Creating single quest backup...
[17:54:05] [Server thread/INFO]: [BeautyQuests] Quest backup created at 18.yml-backup2023-04-22-05-54-05.yml
[17:54:05] [Server thread/ERROR]: [BeautyQuests] Cannot find object creator with id: skillAPILevelRequired
[17:54:05] [Server thread/ERROR]: [BeautyQuests] The quest object for class null has not been deserialized.
[17:54:05] [Server thread/ERROR]: [BeautyQuests] Cannot find object creator with id: classRequired
[17:54:05] [Server thread/ERROR]: [BeautyQuests] The quest object for class null has not been deserialized.
[17:54:05] [Server thread/INFO]: [BeautyQuests] Creating single quest backup...
[17:54:05] [Server thread/INFO]: [BeautyQuests] Quest backup created at 19.yml-backup2023-04-22-05-54-05.yml
[17:54:05] [Server thread/ERROR]: [BeautyQuests] Cannot find object creator with id: skillAPILevelRequired
[17:54:05] [Server thread/ERROR]: [BeautyQuests] The quest object for class null has not been deserialized.
[17:54:05] [Server thread/ERROR]: [BeautyQuests] Cannot find object creator with id: classRequired
[17:54:05] [Server thread/ERROR]: [BeautyQuests] The quest object for class null has not been deserialized.
[17:54:05] [Server thread/INFO]: [BeautyQuests] Creating single quest backup...
[17:54:05] [Server thread/INFO]: [BeautyQuests] Quest backup created at 20.yml-backup2023-04-22-05-54-05.yml
[17:54:05] [Server thread/INFO]: [BeautyQuests] 18 quests loaded (0.118s)!
[17:54:05] [Server thread/INFO]: [BeautyQuests] Periodic saves task started (18000 ticks). Task ID: 2630
[17:54:05] [Server thread/INFO]: AquaticCrates | Loading Item Database!
[17:54:05] [Server thread/INFO]: AquaticCrates | Loading Crates!
[17:54:05] [Server thread/INFO]: AquaticCrates | Loading Players!
[17:54:05] [Server thread/INFO]: AquaticCrates | Loading Messages!
[17:54:05] [Server thread/INFO]: AquaticCrates | Plugin Loaded!
[17:54:05] [Server thread/ERROR]: [MythicMobs] [SCHEDULER] Exception thrown whilst executing task
[17:54:05] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileSpawningHandler.getSpawnState(io.lumine.mythic.api.adapters.AbstractWorld)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getSpawningHandler()" is null
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.spawning.random.RandomSpawnerManager.spawnMobs(RandomSpawnerManager.java:285)
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runRandomSpawningClock(MythicClock.java:205)
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToConsumer.accept(Delegates.java:93)
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Schedulers$LumineTask.run(Schedulers.java:162)
[17:54:05] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:05] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:05] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:05] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[17:54:05] [Server thread/ERROR]: [MythicMobs] [SCHEDULER] Exception thrown whilst executing task
[17:54:05] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileSpawningHandler.getSpawnState(io.lumine.mythic.api.adapters.AbstractWorld)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getSpawningHandler()" is null
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.spawning.random.RandomSpawnerManager.spawnMobs(RandomSpawnerManager.java:285)
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runRandomSpawningClock(MythicClock.java:205)
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToConsumer.accept(Delegates.java:93)
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Schedulers$LumineTask.run(Schedulers.java:162)
[17:54:05] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:05] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:05] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:05] [Server thread/ERROR]: [MythicMobs] [SCHEDULER] Exception thrown whilst executing task
[17:54:05] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileSpawningHandler.getSpawnState(io.lumine.mythic.api.adapters.AbstractWorld)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getSpawningHandler()" is null
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.spawning.random.RandomSpawnerManager.spawnMobs(RandomSpawnerManager.java:285)
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runRandomSpawningClock(MythicClock.java:205)
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToConsumer.accept(Delegates.java:93)
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Schedulers$LumineTask.run(Schedulers.java:162)
[17:54:05] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:05] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:05] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:05] [Server thread/ERROR]: [MythicMobs] [SCHEDULER] Exception thrown whilst executing task
[17:54:05] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileSpawningHandler.getSpawnState(io.lumine.mythic.api.adapters.AbstractWorld)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getSpawningHandler()" is null
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.spawning.random.RandomSpawnerManager.spawnMobs(RandomSpawnerManager.java:285)
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runRandomSpawningClock(MythicClock.java:205)
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToConsumer.accept(Delegates.java:93)
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Schedulers$LumineTask.run(Schedulers.java:162)
[17:54:05] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:05] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:05] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:05] [Server thread/ERROR]: [MythicMobs] [SCHEDULER] Exception thrown whilst executing task
[17:54:05] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileSpawningHandler.getSpawnState(io.lumine.mythic.api.adapters.AbstractWorld)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getSpawningHandler()" is null
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.spawning.random.RandomSpawnerManager.spawnMobs(RandomSpawnerManager.java:285)
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runRandomSpawningClock(MythicClock.java:205)
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToConsumer.accept(Delegates.java:93)
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Schedulers$LumineTask.run(Schedulers.java:162)
[17:54:05] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:05] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:05] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:05] [Server thread/ERROR]: [MythicMobs] [SCHEDULER] Exception thrown whilst executing task
[17:54:05] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileSpawningHandler.getSpawnState(io.lumine.mythic.api.adapters.AbstractWorld)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getSpawningHandler()" is null
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.spawning.random.RandomSpawnerManager.spawnMobs(RandomSpawnerManager.java:285)
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runRandomSpawningClock(MythicClock.java:205)
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToConsumer.accept(Delegates.java:93)
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Schedulers$LumineTask.run(Schedulers.java:162)
[17:54:05] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:05] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:05] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:05] [Server thread/ERROR]: [MythicMobs] [SCHEDULER] Exception thrown whilst executing task
[17:54:05] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileSpawningHandler.getSpawnState(io.lumine.mythic.api.adapters.AbstractWorld)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getSpawningHandler()" is null
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.spawning.random.RandomSpawnerManager.spawnMobs(RandomSpawnerManager.java:285)
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runRandomSpawningClock(MythicClock.java:205)
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToConsumer.accept(Delegates.java:93)
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Schedulers$LumineTask.run(Schedulers.java:162)
[17:54:05] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:05] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:05] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:05] [Server thread/ERROR]: [MythicMobs] [SCHEDULER] Exception thrown whilst executing task
[17:54:05] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileSpawningHandler.getSpawnState(io.lumine.mythic.api.adapters.AbstractWorld)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getSpawningHandler()" is null
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.spawning.random.RandomSpawnerManager.spawnMobs(RandomSpawnerManager.java:285)
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runRandomSpawningClock(MythicClock.java:205)
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToConsumer.accept(Delegates.java:93)
[17:54:05] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Schedulers$LumineTask.run(Schedulers.java:162)
[17:54:05] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:05] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:05] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:05] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5001ms or 100 ticks behind
[17:54:06] [Server thread/ERROR]: [MythicMobs] [SCHEDULER] Exception thrown whilst executing task
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileSpawningHandler.getSpawnState(io.lumine.mythic.api.adapters.AbstractWorld)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getSpawningHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.spawning.random.RandomSpawnerManager.spawnMobs(RandomSpawnerManager.java:285)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runRandomSpawningClock(MythicClock.java:205)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToConsumer.accept(Delegates.java:93)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Schedulers$LumineTask.run(Schedulers.java:162)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/ERROR]: [MythicMobs] [SCHEDULER] Exception thrown whilst executing task
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileSpawningHandler.getSpawnState(io.lumine.mythic.api.adapters.AbstractWorld)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getSpawningHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.spawning.random.RandomSpawnerManager.spawnMobs(RandomSpawnerManager.java:285)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runRandomSpawningClock(MythicClock.java:205)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToConsumer.accept(Delegates.java:93)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Schedulers$LumineTask.run(Schedulers.java:162)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/ERROR]: [MythicMobs] [SCHEDULER] Exception thrown whilst executing task
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileSpawningHandler.getSpawnState(io.lumine.mythic.api.adapters.AbstractWorld)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getSpawningHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.spawning.random.RandomSpawnerManager.spawnMobs(RandomSpawnerManager.java:285)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runRandomSpawningClock(MythicClock.java:205)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToConsumer.accept(Delegates.java:93)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Schedulers$LumineTask.run(Schedulers.java:162)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/ERROR]: [MythicMobs] [SCHEDULER] Exception thrown whilst executing task
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileSpawningHandler.getSpawnState(io.lumine.mythic.api.adapters.AbstractWorld)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getSpawningHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.spawning.random.RandomSpawnerManager.spawnMobs(RandomSpawnerManager.java:285)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runRandomSpawningClock(MythicClock.java:205)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToConsumer.accept(Delegates.java:93)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Schedulers$LumineTask.run(Schedulers.java:162)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/ERROR]: [MythicMobs] [SCHEDULER] Exception thrown whilst executing task
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileSpawningHandler.getSpawnState(io.lumine.mythic.api.adapters.AbstractWorld)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getSpawningHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.spawning.random.RandomSpawnerManager.spawnMobs(RandomSpawnerManager.java:285)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runRandomSpawningClock(MythicClock.java:205)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToConsumer.accept(Delegates.java:93)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Schedulers$LumineTask.run(Schedulers.java:162)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/ERROR]: [MythicMobs] [SCHEDULER] Exception thrown whilst executing task
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileSpawningHandler.getSpawnState(io.lumine.mythic.api.adapters.AbstractWorld)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getSpawningHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.spawning.random.RandomSpawnerManager.spawnMobs(RandomSpawnerManager.java:285)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runRandomSpawningClock(MythicClock.java:205)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToConsumer.accept(Delegates.java:93)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Schedulers$LumineTask.run(Schedulers.java:162)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/ERROR]: [MythicMobs] [SCHEDULER] Exception thrown whilst executing task
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileSpawningHandler.getSpawnState(io.lumine.mythic.api.adapters.AbstractWorld)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getSpawningHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.spawning.random.RandomSpawnerManager.spawnMobs(RandomSpawnerManager.java:285)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runRandomSpawningClock(MythicClock.java:205)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToConsumer.accept(Delegates.java:93)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Schedulers$LumineTask.run(Schedulers.java:162)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/ERROR]: [MythicMobs] [SCHEDULER] Exception thrown whilst executing task
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileSpawningHandler.getSpawnState(io.lumine.mythic.api.adapters.AbstractWorld)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getSpawningHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.spawning.random.RandomSpawnerManager.spawnMobs(RandomSpawnerManager.java:285)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runRandomSpawningClock(MythicClock.java:205)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToConsumer.accept(Delegates.java:93)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Schedulers$LumineTask.run(Schedulers.java:162)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/ERROR]: [MythicMobs] [SCHEDULER] Exception thrown whilst executing task
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileSpawningHandler.getSpawnState(io.lumine.mythic.api.adapters.AbstractWorld)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getSpawningHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.spawning.random.RandomSpawnerManager.spawnMobs(RandomSpawnerManager.java:285)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runRandomSpawningClock(MythicClock.java:205)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToConsumer.accept(Delegates.java:93)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Schedulers$LumineTask.run(Schedulers.java:162)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/ERROR]: [MythicMobs] [SCHEDULER] Exception thrown whilst executing task
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileSpawningHandler.getSpawnState(io.lumine.mythic.api.adapters.AbstractWorld)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getSpawningHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.spawning.random.RandomSpawnerManager.spawnMobs(RandomSpawnerManager.java:285)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runRandomSpawningClock(MythicClock.java:205)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToConsumer.accept(Delegates.java:93)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Schedulers$LumineTask.run(Schedulers.java:162)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileItemHandler.getNBTData(org.bukkit.inventory.ItemStack)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getItemHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:642)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.generateItemStack(MythicItem.java:612)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.buildItemCache(MythicItem.java:446)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.MythicItem.lambda$loadItem$0(MythicItem.java:385)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:145)
[17:54:06] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:142)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.lambda$enable$1(MythicBukkit.java:217)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Mechanic metaskill
[17:54:06] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[17:54:06] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill 熊之奇旅-三秒爆炸
[17:54:06] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=熊之奇旅<&da>三秒爆炸}
[17:54:06] [Server thread/INFO]: [MythicMobs] Attached traits to items.
[17:54:06] [Server thread/INFO]: [MythicMobs] Loaded 47 items.
[17:54:06] [Server thread/INFO]: [LootChest] Loading chests...
[17:54:06] [Server thread/INFO]: [LootChest] Removed 0 holograms
[17:54:06] [Server thread/INFO]: [LootChest] Loaded 1 Lootchests in 5 miliseconds
[17:54:06] [Server thread/INFO]: [LootChest] Starting LootChest timers asynchronously...
[17:54:06] [Server thread/INFO]: [LootChest] Plugin loaded
[17:54:06] [Server thread/ERROR]: [MythicMobs] [SCHEDULER] Exception thrown whilst executing task
[17:54:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.lumine.mythic.api.volatilecode.handlers.VolatileSpawningHandler.getSpawnState(io.lumine.mythic.api.adapters.AbstractWorld)" because the return value of "io.lumine.mythic.api.volatilecode.VolatileCodeHandler.getSpawningHandler()" is null
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.spawning.random.RandomSpawnerManager.spawnMobs(RandomSpawnerManager.java:285)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runRandomSpawningClock(MythicClock.java:205)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToConsumer.accept(Delegates.java:93)
[17:54:06] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.Schedulers$LumineTask.run(Schedulers.java:162)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[17:54:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1483)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:447)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1174)
[17:54:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320)
[17:54:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:54:06] [Server thread/INFO]: [LootChest] [系?] 尋找藏?圖的?索 ?藏已經生成,位置在:\n[世界] spawnWorld [坐標] 2359.0, 74.0, 2041.0!
[17:54:10] [User Authenticator #0/INFO]: Disconnecting com.mojang.authlib.GameProfile@7f24c346[id=657b7b99-5859-4890-9372-2a2980f4db7f,name=PasserBy_Bear,properties={textures=[com.mojang.authlib.properties.Property@1d877b0a]},legacy=false] (/127.0.0.1:63924): Unable to load your user data.
[17:54:10] [Server thread/INFO]: com.mojang.authlib.GameProfile@7f24c346[id=657b7b99-5859-4890-9372-2a2980f4db7f,name=PasserBy_Bear,properties={textures=[com.mojang.authlib.properties.Property@1d877b0a]},legacy=false] (/127.0.0.1:63924) lost connection: Unable to load your user data.
[17:54:23] [Server thread/INFO]: Server Plugins (75):
[17:54:23] [Server thread/INFO]: Paper Plugins:
[17:54:23] [Server thread/INFO]:  - BKCommonLib, Minepacks, PCGF_PluginLib
[17:54:23] [Server thread/INFO]: Bukkit Plugins:
[17:54:23] [Server thread/INFO]:  - AdvancedAchievements, AnimatedScoreboard, AquaticCrates, AuctionMaster, BeautyQuests, BloodInMinecraft, CaliComp, ChatItem, Citizens, ClearLag
[17:54:23] [Server thread/INFO]:  CMI, *CMIEInjector, CMILib, CoreProtect, DeluxeMenus, DeluxeTags, DiscordSRV, DungeonParties, EnderContainers, EpicCraftingsPlus
[17:54:23] [Server thread/INFO]:  EpicPluginLib, ExcellentCrates, FastAsyncWorldEdit, GriefPrevention, ItemEdit, ItemJoin, *JonAPI, LastLoginAPI, LibsDisguises, LiteSignIn
[17:54:23] [Server thread/INFO]:  LoneLibs, LootChest, LPC, LuckPerms, MagicCosmetics, MCPets, MiniMOTD, MMOCore, MMOItems, ModelEngine
[17:54:23] [Server thread/INFO]:  My_Worlds, MythicCrucible, MythicDungeons, MythicLib, MythicMobs, MythicMobsExtension, NBTAPI, NexEngine, NoPlugins, PlaceholderAPI
[17:54:23] [Server thread/INFO]:  PlaceItemsOnGroundRebuilt, PlayerKits, PlayerPoints, PlayMoreSounds, ProtocolLib, RotatingHeads2, Sentinel, ServerSigns, *shit_do, SkBee
[17:54:23] [Server thread/INFO]:  SkQuery, Skript, skript-yaml, TAB, TradeSystem, TreasureChestX, UltraBar, Vault, *WDLCompanion, WildStacker
[17:54:23] [Server thread/INFO]:  WorldGuard, WorldGuardExtraFlags