Paste #139504: [21:56:52] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.10+7-LTS; Eclipse Adoptium Temurin-21.0.10+7) on Linux 4.18.0-553.40.1.el8_10.x86_64 (amd64) [21:56:52] [Serve

Date: 2026/03/19 01:01:44 UTC+00: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


[21:56:52] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.10+7-LTS; Eclipse Adoptium Temurin-21.0.10+7) on Linux 4.18.0-553.40.1.el8_10.x86_64 (amd64)
[21:56:52] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.1-133-ver/1.21.1@3cb8529 (2025-03-28T16:14:36Z) for Minecraft 1.21.1
[21:56:53] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[21:56:53] [ServerMain/ERROR]: [DirectoryProviderSource] Error preparing plugin context: Directory 'plugins/pv-addon-soundphysics-1.1.2.jar' failed to update!
java.lang.RuntimeException: Directory 'plugins/pv-addon-soundphysics-1.1.2.jar' failed to update!
    at io.papermc.paper.plugin.provider.source.FileProviderSource.prepareContext(FileProviderSource.java:62) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.lambda$prepareContext$1(DirectoryProviderSource.java:33) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184) ~[?:?]
    at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) ~[?:?]
    at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?]
    at java.base/java.util.Iterator.forEachRemaining(Iterator.java:133) ~[?:?]
    at java.base/java.util.Spliterators$IteratorSpliterator.forEachRemaining(Spliterators.java:1939) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]
    at java.base/java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:151) ~[?:?]
    at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:174) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]
    at java.base/java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.walkFiles(DirectoryProviderSource.java:64) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.prepareContext(DirectoryProviderSource.java:31) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.prepareContext(DirectoryProviderSource.java:17) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at io.papermc.paper.plugin.util.EntrypointUtil.registerProvidersFromSource(EntrypointUtil.java:14) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at io.papermc.paper.plugin.PluginInitializerManager.load(PluginInitializerManager.java:113) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.server.Main.main(Main.java:123) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at io.papermc.paper.PaperBootstrap.boot(PaperBootstrap.java:21) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at org.bukkit.craftbukkit.Main.main(Main.java:281) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at io.papermc.paperclip.Paperclip.lambda$main$0(Paperclip.java:42) ~[app:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: org.bukkit.plugin.InvalidPluginException: java.lang.IllegalArgumentException: plugins/pv-addon-soundphysics-1.1.2.jar does not contain a paper-plugin.yml or plugin.yml! Could not determine plugin type, cannot load a plugin from it!
    at io.papermc.paper.plugin.provider.source.FileProviderSource.checkUpdate(FileProviderSource.java:131) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at io.papermc.paper.plugin.provider.source.FileProviderSource.prepareContext(FileProviderSource.java:60) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    ... 22 more
Caused by: java.lang.IllegalArgumentException: plugins/pv-addon-soundphysics-1.1.2.jar does not contain a paper-plugin.yml or plugin.yml! Could not determine plugin type, cannot load a plugin from it!
    at io.papermc.paper.plugin.provider.source.FileProviderSource.getPluginName(FileProviderSource.java:140) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at io.papermc.paper.plugin.provider.source.FileProviderSource.checkUpdate(FileProviderSource.java:112) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at io.papermc.paper.plugin.provider.source.FileProviderSource.prepareContext(FileProviderSource.java:60) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    ... 22 more
[21:56:58] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Remapping plugin 'plugins/Denizen-1.3.0-b1804-REL.jar'...
[21:57:01] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Done remapping plugin 'plugins/Denizen-1.3.0-b1804-REL.jar' in 2767ms.
[21:57:01] [ServerMain/INFO]: [PluginInitializerManager] Initialized 63 plugins
[21:57:01] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (63):
 - BreweryX (3.6.3;HEAD), CMILib (1.5.8.6), ChatDisable (1.0), Citizens (2.0.35-SNAPSHOT (build 3586)), ClearLag (1.0.1), ConditionalEvents (4.75.1), CosmeticsCore (1.3.9), CustomCrafting (4.16.11), CustomCrops (3.6.49), CustomizablePlayerModels (0.6.25a), Denizen (1.3.0-SNAPSHOT (build 1804-REL)), DiscordSRV (1.30.4), Epidemic (1.7.12), Essentials (2.22.0-dev+72-302653a), InteractionVisualizer (1.18.19.0), ItemsAdder (4.0.10-hotfix-1), LoneLibs (1.0.65), LuckPerms (5.5.17), MCPets (4.1.5-SNAPSHOT), MMOCore (1.13.1-SNAPSHOT), MMOInventory (1.9), MMOItems (6.10), ModelEngine (R4.1.0), Multiverse-Core (5.5.2), Multiverse-Portals (5.2.0), Multiverse-SignPortals (5.0.2), MythicCrucible (2.2.0-SNAPSHOT), MythicLib (1.7), MythicMobs (5.11.1-de409cac), NBTAPI (2.15.5), OpeNLogin (1.6.7), Origins-Fantasy (1.1.14), Origins-Magic (1.0.18), Origins-Mobs (1.0.41), Origins-Monsters (1.2.3), Origins-Reborn (2.10.9), PlaceholderAPI (2.12.2), PlasmoVoice (2.1.8), PlayerParticles (8.11), PostPigeon (2.0.0), ProtocolLib (5.4.0), RPProfessions (1.7.0), RealisticSeasons (11.10.3), ReviveMe (0.4.4), ShoobadomChatBubbles (1.1), SkBee (3.13.3), SkinsRestorer (15.11.0), Skript (2.12.2), SkyParticles (3.1), SuperVanish (3.2.3), TAB (5.5.0), WolfyUtilities (4.17-beta.7), WorldEdit (7.3.9+6959-7adf70b), WorldGuard (7.0.12+829a4a4), WorldGuardEvents (1.18.1), WorldGuardExtraFlags (4.2.4-SNAPSHOT), emotecraft (2.4.12), nLogin (2.0.14), packetevents (2.11.2), pv-addon-broadcast (1.1.0), pv-addon-discs (1.1.9), pv-addon-lavaplayer-lib (1.1.10), pv-addon-whisper (1.1.0)
[21:57:08] [ServerMain/WARN]: You specified a resource pack without providing a sha1 hash. Pack will be updated on the client only if you change the name of the pack.
[21:57:08] [ServerMain/WARN]: resource-pack-id missing, using default of e384b84f-985d-3855-973c-e42827c67ca9
[21:57:08] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[21:57:11] [ServerMain/INFO]: Loaded 1290 recipes
[21:57:11] [ServerMain/INFO]: Loaded 1399 advancements
[21:57:12] [Server thread/INFO]: Starting minecraft server version 1.21.1
[21:57:12] [Server thread/INFO]: Loading properties
[21:57:12] [Server thread/INFO]: This server is running Paper version 1.21.1-133-ver/1.21.1@3cb8529 (2025-03-28T16:14:36Z) (Implementing API version 1.21.1-R0.1-SNAPSHOT)
[21:57:13] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[21:57:13] [Server thread/INFO]: Server Ping Player Sample Count: 12
[21:57:13] [Server thread/INFO]: Using 4 threads for Netty based IO
[21:57:14] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and population gen parallelism of 1 threads
[21:57:14] [Server thread/INFO]: Default game type: SURVIVAL
[21:57:14] [Server thread/INFO]: Generating keypair
[21:57:14] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25966
[21:57:14] [Server thread/INFO]: Using epoll channel type
[21:57:14] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[21:57:14] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
[21:57:15] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loading 4 libraries... please wait
[21:57:15] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-api/4.16.0/adventure-api-4.16.0.jar
[21:57:15] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-key/4.16.0/adventure-key-4.16.0.jar
[21:57:15] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[21:57:15] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[21:57:15] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[21:57:15] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-platform-bukkit/4.3.2/adventure-platform-bukkit-4.3.2.jar
[21:57:15] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-platform-api/4.3.2/adventure-platform-api-4.3.2.jar
[21:57:15] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.2/adventure-text-serializer-bungeecord-4.3.2.jar
[21:57:15] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[21:57:15] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[21:57:15] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[21:57:15] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-platform-facet/4.3.2/adventure-platform-facet-4.3.2.jar
[21:57:15] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-platform-viaversion/4.3.2/adventure-platform-viaversion-4.3.2.jar
[21:57:15] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-minimessage/4.16.0/adventure-text-minimessage-4.16.0.jar
[21:57:15] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.16.0/adventure-text-serializer-gson-4.16.0.jar
[21:57:15] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json/4.16.0/adventure-text-serializer-json-4.16.0.jar
[21:57:15] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/option/1.0.0/option-1.0.0.jar
[21:57:15] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[21:57:15] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loading 2 libraries... please wait
[21:57:16] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/mongodb-driver-sync/4.8.1/mongodb-driver-sync-4.8.1.jar
[21:57:16] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/bson/4.8.1/bson-4.8.1.jar
[21:57:16] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/mongodb-driver-core/4.8.1/mongodb-driver-core-4.8.1.jar
[21:57:16] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/bson-record-codec/4.8.1/bson-record-codec-4.8.1.jar
[21:57:16] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/redis/clients/jedis/4.3.1/jedis-4.3.1.jar
[21:57:16] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[21:57:16] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar
[21:57:16] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/json/json/20220320/json-20220320.jar
[21:57:16] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[21:57:16] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loading 3 libraries... please wait
[21:57:16] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
[21:57:16] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
[21:57:16] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[21:57:16] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[21:57:16] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[21:57:16] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.14.0/adventure-text-serializer-gson-4.14.0.jar
[21:57:16] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json/4.14.0/adventure-text-serializer-json-4.14.0.jar
[21:57:16] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[21:57:16] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.0/adventure-text-serializer-bungeecord-4.3.0.jar
[21:57:16] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.13.0/adventure-text-serializer-legacy-4.13.0.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loading 14 libraries... please wait
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/beer/devs/FastNbt-jar/1.4.7/FastNbt-jar-1.4.7.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/httpcomponents/httpmime/4.5.14/httpmime-4.5.14.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/commons-codec/commons-codec/1.11/commons-codec-1.11.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/sourceforge/streamsupport/speedy-math/1.0.0/speedy-math-1.0.0.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-api/4.20.0/adventure-api-4.20.0.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-key/4.20.0/adventure-key-4.20.0.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/jetbrains/annotations/26.0.2/annotations-26.0.2.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.20.0/adventure-text-serializer-gson-4.20.0.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json/4.20.0/adventure-text-serializer-json-4.20.0.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/option/1.1.0/option-1.1.0.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/com/google/auto/service/auto-service-annotations/1.1.1/auto-service-annotations-1.1.1.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-commons/4.20.0/adventure-text-serializer-commons-4.20.0.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.20.0/adventure-text-serializer-gson-legacy-impl-4.20.0.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json-legacy-impl/4.20.0/adventure-text-serializer-json-legacy-impl-4.20.0.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-text-minimessage/4.20.0/adventure-text-minimessage-4.20.0.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-platform-bukkit/4.3.4/adventure-platform-bukkit-4.3.4.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-platform-api/4.3.4/adventure-platform-api-4.3.4.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.4/adventure-text-serializer-bungeecord-4.3.4.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-platform-facet/4.3.4/adventure-platform-facet-4.3.4.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-platform-viaversion/4.3.4/adventure-platform-viaversion-4.3.4.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/com/alibaba/fastjson/2.0.43/fastjson-2.0.43.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/com/alibaba/fastjson2/fastjson2-extension/2.0.43/fastjson2-extension-2.0.43.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/com/alibaba/fastjson2/fastjson2/2.0.43/fastjson2-2.0.43.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/com/jayway/jsonpath/json-path/2.8.0/json-path-2.8.0.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/minidev/json-smart/2.4.10/json-smart-2.4.10.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/minidev/accessors-smart/2.4.9/accessors-smart-2.4.9.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/ow2/asm/asm/9.3/asm-9.3.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/com/jeff-media/armor-equip-event/1.0.3/armor-equip-event-1.0.3.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/fr/skytasul/glowingentities/1.4.3/glowingentities-1.4.3.jar
[21:57:17] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/fr/skytasul/reflection-remapper/1.0.0/reflection-remapper-1.0.0.jar
[21:57:18] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loading 3 libraries... please wait
[21:57:18] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/com/google/inject/guice/5.1.0/guice-5.1.0.jar
[21:57:18] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/javax/inject/javax.inject/1/javax.inject-1.jar
[21:57:18] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/aopalliance/aopalliance/1.0/aopalliance-1.0.jar
[21:57:18] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/com/google/guava/guava/30.1-jre/guava-30.1-jre.jar
[21:57:18] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar
[21:57:18] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar
[21:57:18] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar
[21:57:18] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/org/checkerframework/checker-qual/3.5.0/checker-qual-3.5.0.jar
[21:57:18] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.jar
[21:57:18] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar
[21:57:18] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
[21:57:18] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.6/fastutil-8.5.6.jar
[21:57:20] [Server thread/INFO]: [me.wolfyscript.lib.org.reflections.Reflections] Reflections took 742 ms to scan 1 urls, producing 924 keys and 3724 values
[21:57:21] [Server thread/INFO]: [WolfyUtilities] Register Default StackIdentifiers
[21:57:21] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[21:57:35] [Server thread/WARN]: Legacy plugin SkyParticles v3.1 does not specify an api-version.
[21:57:35] [Server thread/INFO]: [SpigotLibraryLoader] [LoneLibs] Loading 1 libraries... please wait
[21:57:35] [Server thread/INFO]: [SpigotLibraryLoader] [LoneLibs] Loaded library /home/container/libraries/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1.jar
[21:57:36] [Server thread/INFO]: [SpigotLibraryLoader] [BreweryX] Loading 1 libraries... please wait
[21:57:36] [Server thread/INFO]: [SpigotLibraryLoader] [BreweryX] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib/2.0.21/kotlin-stdlib-2.0.21.jar
[21:57:36] [Server thread/INFO]: [SpigotLibraryLoader] [BreweryX] Loaded library /home/container/libraries/org/jetbrains/annotations/13.0/annotations-13.0.jar
[21:57:36] [Server thread/INFO]: [WorldEdit] Loading server plugin WorldEdit v7.3.9+6959-7adf70b
[21:57:38] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@7c2d4d56]
[21:57:38] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.12.2
[21:57:38] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.12+829a4a4
[21:57:38] [Server thread/INFO]: [CoreLogging] Loading server plugin Multiverse-Core v5.5.2
[21:57:38] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.4.0
[21:57:38] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.11.1-de409cac
[21:57:38] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[21:57:38] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[21:57:38] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.35-SNAPSHOT (build 3586)
[21:57:38] [Server thread/INFO]: [MythicLib] Loading server plugin MythicLib v1.7
[21:57:38] [Server thread/INFO]: [MythicLib] Plugin file is called 'MythicLib-1.7.jar'
[21:57:38] [Server thread/INFO]: [MythicLib] Detected Bukkit Version: v1_21_R1
[21:57:38] [Server thread/INFO]: [MythicLib] Hooked onto WorldGuard
[21:57:39] [Server thread/INFO]: [Denizen] Loading server plugin Denizen v1.3.0-SNAPSHOT (build 1804-REL)
[21:57:39] [Server thread/INFO]: [MMOCore] Loading server plugin MMOCore v1.13.1-SNAPSHOT
[21:57:39] [Server thread/INFO]: [MMOCore] Plugin file is called 'MMOCore-1.13.1-SNAPSHOT.jar'
[21:57:39] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.5.17
[21:57:39] [Server thread/INFO]: [LuckPerms] Loading configuration...
[21:57:39] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR4.1.0
[21:57:39] [Server thread/INFO]: [MMOItems] Loading server plugin MMOItems v6.10
[21:57:39] [Server thread/INFO]: [MMOItems] Plugin file is called 'MMOItems-6.10.jar'
[21:57:39] [Server thread/INFO]: [MMOItems] Hooked onto WorldEdit
[21:57:39] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[21:57:40] [Server thread/INFO]: [MMOItems Template Modifiers] Preloading template modifiers, please wait..
[21:57:40] [Server thread/INFO]: [MMOItems Item Templates] Preloading item templates, please wait..
[21:57:40] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.22.0-dev+72-302653a
[21:57:40] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.12.2
[21:57:40] [Server thread/INFO]: [SuperVanish] Loading server plugin SuperVanish v3.2.3
[21:57:40] [Server thread/INFO]: [PlasmoVoice] Loading server plugin PlasmoVoice v2.1.8
[21:57:40] [Server thread/INFO]: [SkinsRestorer] Loading server plugin SkinsRestorer v15.11.0
[21:57:40] [Server thread/INFO]: [ItemsAdder] Loading server plugin ItemsAdder v4.0.10-hotfix-1
[21:57:40] [Server thread/INFO]: [WorldGuardEvents] Loading server plugin WorldGuardEvents v1.18.1
[21:57:40] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.30.4
[21:57:40] [Server thread/INFO]: [MythicCrucible] Loading server plugin MythicCrucible v2.2.0-SNAPSHOT
[21:57:40] [Server thread/INFO]: [RealisticSeasons] Loading server plugin RealisticSeasons v11.10.3
[21:57:40] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.11.2
[21:57:43] [Server thread/INFO]: [pv-addon-lavaplayer-lib] Loading server plugin pv-addon-lavaplayer-lib v1.1.10
[21:57:43] [Server thread/INFO]: [Origins-Reborn] Loading server plugin Origins-Reborn v2.10.9
[21:57:43] [Server thread/INFO]: [WolfyUtilities] Loading server plugin WolfyUtilities v4.17-beta.7
[21:57:43] [Server thread/INFO]: [WolfyUtilities] Register JSON de-/serializers
[21:57:43] [Server thread/INFO]: [WolfyUtilities] Register JSON Operators
[21:57:43] [Server thread/INFO]: [WolfyUtilities] Register JSON Value Providers
[21:57:43] [Server thread/INFO]: [WolfyUtilities] Register CustomItem NBT Checks
[21:57:43] [Server thread/INFO]: [WolfyUtilities] Register CustomItem Actions
[21:57:43] [Server thread/INFO]: [WolfyUtilities] Register CustomItem Events
[21:57:43] [Server thread/INFO]: [WolfyUtilities] Register Particle Animators
[21:57:43] [Server thread/INFO]: [WolfyUtilities] Register Particle Shapes
[21:57:43] [Server thread/INFO]: [WolfyUtilities] Register Particle Timers
[21:57:43] [Server thread/INFO]: [WolfyUtilities] Register Custom Block Data
[21:57:43] [Server thread/INFO]: [WolfyUtilities] Register Custom Player Data
[21:57:43] [Server thread/INFO]: [WolfyUtilities] Register NBT Query Nodes
[21:57:43] [Server thread/INFO]: [nLogin] Loading server plugin nLogin v2.0.14
[21:57:43] [Server thread/INFO]: [ConditionalEvents] Loading server plugin ConditionalEvents v4.75.1
[21:57:43] [Server thread/INFO]: [PlayerParticles] Loading server plugin PlayerParticles v8.11
[21:57:43] [Server thread/INFO]: [emotecraft] Loading server plugin emotecraft v2.4.12
[21:57:43] [Server thread/INFO]: [CosmeticsCore] Loading server plugin CosmeticsCore v1.3.9
[21:57:43] [Server thread/INFO]: [SkyParticles] Loading server plugin SkyParticles v3.1
[21:57:43] [Server thread/INFO]: [CustomCrops] Loading server plugin CustomCrops v3.6.49
[21:57:44] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.4-SNAPSHOT
[21:57:44] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.5.0
[21:57:44] [Server thread/INFO]: [SkBee] Loading server plugin SkBee v3.13.3
[21:57:44] [Server thread/INFO]: [ShoobadomChatBubbles] Loading server plugin ShoobadomChatBubbles v1.1
[21:57:44] [Server thread/INFO]: [RPProfessions] Loading server plugin RPProfessions v1.7.0
[21:57:44] [Server thread/INFO]: [ReviveMe] Loading server plugin ReviveMe v0.4.4
[21:57:44] [Server thread/INFO]: [pv-addon-whisper] Loading server plugin pv-addon-whisper v1.1.0
[21:57:44] [Server thread/INFO]: [pv-addon-discs] Loading server plugin pv-addon-discs v1.1.9
[21:57:44] [Server thread/INFO]: [pv-addon-broadcast] Loading server plugin pv-addon-broadcast v1.1.0
[21:57:44] [Server thread/INFO]: [PostPigeon] Loading server plugin PostPigeon v2.0.0
[21:57:44] [Server thread/INFO]: [Origins-Mobs] Loading server plugin Origins-Mobs v1.0.41
[21:57:44] [Server thread/INFO]: [Origins-Magic] Loading server plugin Origins-Magic v1.0.18
[21:57:44] [Server thread/INFO]: [Origins-Monsters] Loading server plugin Origins-Monsters v1.2.3
[21:57:44] [Server thread/INFO]: [Origins-Fantasy] Loading server plugin Origins-Fantasy v1.1.14
[21:57:44] [Server thread/INFO]: [OpeNLogin] Loading server plugin OpeNLogin v1.6.7
[21:57:44] [Server thread/INFO]: [MVSPLogging] Loading server plugin Multiverse-SignPortals v5.0.2
[21:57:44] [Server thread/INFO]: [Multiverse-Portals] Loading server plugin Multiverse-Portals v5.2.0
[21:57:44] [Server thread/INFO]: [MMOInventory] Loading server plugin MMOInventory v1.9
[21:57:44] [Server thread/INFO]: [MMOInventory] Plugin file is called 'MMOInventory-1.9.jar'
[21:57:44] [Server thread/INFO]: [MCPets] Loading server plugin MCPets v4.1.5-SNAPSHOT
[21:57:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mcpets [1.0.0]
[21:57:44] [Server thread/INFO]: [MCPets] : mcpets-dismount flag registered successfully !
[21:57:44] [Server thread/INFO]: [MCPets] : mcpets-despawn flag registered successfully !
[21:57:44] [Server thread/INFO]: [MCPets] : mcpets-dismount-flying flag registered successfully !
[21:57:44] [Server thread/INFO]: [MCPets] : mcpets-pet-player-damage flag registered successfully !
[21:57:44] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.65
[21:57:44] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.15.5
[21:57:44] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[21:57:44] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[21:57:44] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'NBTAPI' to create a bStats instance!
[21:57:44] [Server thread/INFO]: [InteractionVisualizer] Loading server plugin InteractionVisualizer v1.18.19.0
[21:57:44] [Server thread/INFO]: [Epidemic] Loading server plugin Epidemic v1.7.12
[21:57:44] [Server thread/INFO]: [CustomizablePlayerModels] Loading server plugin CustomizablePlayerModels v0.6.25a
[21:57:44] [Server thread/INFO]: [CustomCrafting] Loading server plugin CustomCrafting v4.16.11
[21:57:44] [Server thread/INFO]: [CustomCrafting] WolfyUtils API: v4.17-beta.7
[21:57:44] [Server thread/INFO]: [CustomCrafting] CustomCrafting: v4.16.11
[21:57:44] [Server thread/INFO]: [CustomCrafting] Environment   : PROD
[21:57:44] [Server thread/INFO]: [CustomCrafting] Registering CustomItem Data
[21:57:44] [Server thread/INFO]: [CustomCrafting] Registering Custom Block Data
[21:57:44] [Server thread/INFO]: [CustomCrafting] Registering Result Extensions
[21:57:44] [Server thread/INFO]: [CustomCrafting] Registering Result Merge Adapters
[21:57:44] [Thread-7/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[21:57:44] [Server thread/INFO]: [CustomCrafting] Registering Recipe Conditions
[21:57:44] [Server thread/INFO]: [CustomCrafting] Registering Recipe Types
[21:57:44] [Server thread/INFO]: [CustomCrafting] Registering Anvil Recipe Tasks
[21:57:44] [Server thread/INFO]: [CustomCrafting] Registering Type Registries
[21:57:44] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.5.8.6
[21:57:44] [Server thread/INFO]: [ClearLag] Loading server plugin ClearLag v1.0.1
[21:57:44] [Server thread/INFO]: [ChatDisable] Loading server plugin ChatDisable v1.0
[21:57:44] [Server thread/INFO]: [BreweryX] Loading server plugin BreweryX v3.6.3;HEAD
[21:57:44] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[21:57:44] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.3.9+6959-7adf70b
[21:57:44] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[21:57:44] [Server thread/INFO]: WEPIF: Using the Bukkit Permissions API.
[21:57:45] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_21.PaperweightAdapter as the Bukkit adapter
[21:57:46] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.4.0
[21:57:46] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.5.17
[21:57:47] [Server thread/INFO]:         __    
[21:57:47] [Server thread/INFO]:   |    |__)   LuckPerms v5.5.17
[21:57:47] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[21:57:47] [Server thread/INFO]: 
[21:57:48] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[21:57:49] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[21:57:49] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[21:57:50] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 3928ms)
[21:57:50] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR4.1.0
[21:57:50] [Server thread/INFO]: [ModelEngine] [S] Loading cache version: R4.0.8
[21:57:50] [Server thread/WARN]: [ModelEngine] [S] Unable to activate MineSkin skin generation: Empty API Key
[21:57:50] [Server thread/INFO]: [ModelEngine] [S] Loading default skin: Steve
[21:57:50] [Server thread/INFO]: [ModelEngine] [S] Registered default skin: Steve
[21:57:50] [Server thread/INFO]: [ModelEngine] [S] Loading default skin: Alex
[21:57:50] [ForkJoinPool.commonPool-worker-1/INFO]: [ModelEngine] [A] Registered default skin: Alex
[21:57:50] [Server thread/INFO]: [PlasmoVoice] Enabling PlasmoVoice v2.1.8
[21:57:50] [Server thread/INFO]: [PlasmoVoice] LuckPerms permissions listener attached
[21:57:51] [Server thread/INFO]: [PlasmoVoice] pv-addon-broadcast v1.1.0 by Apehum loaded
[21:57:51] [Server thread/INFO]: [PlasmoVoice] pv-addon-lavaplayer-lib v1.1.10 by Apehum loaded
[21:57:51] [Server thread/INFO]: [PlasmoVoice] pv-addon-discs v1.1.9 by KPidS, Apehum loaded
[21:57:51] [Server thread/INFO]: [PlasmoVoice] pv-addon-whisper v1.1.0 by Apehum loaded
[21:57:51] [Server thread/INFO]: [PlasmoVoice] EpollDatagramChannel UDP server is started on /[0:0:0:0:0:0:0:0%0]:25966
[21:57:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: plasmovoice [2.1.8]
[21:57:51] [Server thread/ERROR]: [PlasmoVoice] Failed to register events for class su.plo.voice.paper.integration.SuperVanishIntegration because de/myzelyam/api/vanish/PostPlayerHideEvent does not exist.
[21:57:51] [Server thread/INFO]: [PlasmoVoice] SuperVanish event listener attached
[21:57:51] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v15.11.0
[21:57:52] [Server thread/INFO]: [SkinsRestorer] Running on Minecraft 1.21.1.
[21:57:53] [Server thread/INFO]: [SkinsRestorer] Using paper join listener!
[21:57:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: skinsrestorer [15.11.0]
[21:57:53] [Server thread/INFO]: [SkinsRestorer] PlaceholderAPI expansion registered!
[21:57:53] [Server thread/INFO]: [pv-addon-lavaplayer-lib] Enabling pv-addon-lavaplayer-lib v1.1.10
[21:57:53] [Server thread/INFO]: [WolfyUtilities] Enabling WolfyUtilities v4.17-beta.7
[21:57:53] [Server thread/INFO]: [WolfyUtilities] Minecraft version: 1.21.1
[21:57:53] [Server thread/INFO]: [WolfyUtilities] WolfyUtils version: 4.17.0.0
[21:57:53] [Server thread/INFO]: [WolfyUtilities] Environment: PROD
[21:57:53] [Server thread/INFO]: [WolfyUtilities] Loading Plugin integrations: 
[21:57:53] [Server thread/INFO]: [WolfyUtilities]  - PlaceholderAPI
[21:57:53] [Server thread/INFO]: [WolfyUtilities]  - ItemsAdder
[21:57:53] [Server thread/INFO]: [WolfyUtilities]  - Denizen
[21:57:53] [Server thread/INFO]: [WolfyUtilities]  - MythicMobs
[21:57:53] [Server thread/INFO]: [WolfyUtilities]  - MMOItems
[21:57:53] [Server thread/INFO]: [WolfyUtilities] Create & Init Plugin integrations: 
[21:57:53] [Server thread/INFO]: [WolfyUtilities] Register API references
[21:57:53] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[21:57:53] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     +==================+
[21:57:53] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[21:57:53] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |------------------|
[21:57:53] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |  Standalone Mode |
[21:57:53] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     +==================+
[21:57:53] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[21:57:53] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     Version: 15.11.0
[21:57:53] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     Commit: 52f31ab
[21:57:53] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     This is the latest version!
[21:57:53] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[21:57:53] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] Do you have issues? Read our troubleshooting guide: https://skinsrestorer.net/docs/troubleshooting
[21:57:53] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] Want to support SkinsRestorer? Consider donating: https://skinsrestorer.net/donate
[21:57:53] [Server thread/INFO]: [WolfyUtilities] Loading stored Custom Items
[21:57:53] [Server thread/INFO]: [WolfyUtilities] Loading Creative Mode Tabs
[21:57:54] [Server thread/INFO]: [nLogin] Enabling nLogin v2.0.14
[21:57:54] [Server thread/INFO]: [nLogin] Successful plugin core start (took 0.35s)
[21:57:54] [Server thread/INFO]: [nLogin]           __             _       
[21:57:54] [Server thread/INFO]: [nLogin]   _ __   / /  ___   __ _(_)_ __  
[21:57:54] [Server thread/INFO]: [nLogin]  | '_ \ / /  / _ \ / _` | | '_ \ 
[21:57:54] [Server thread/INFO]: [nLogin]  | | | / /__| (_) | (_| | | | | |
[21:57:54] [Server thread/INFO]: [nLogin]  |_| |_\____/\___/ \__, |_|_| |_|
[21:57:54] [Server thread/INFO]: [nLogin]                   |___/            
[21:57:54] [Server thread/INFO]: [nLogin]  By: www.nickuc.com - V 2.0.14
[21:57:54] [Server thread/INFO]: [nLogin]  
[21:57:55] [Server thread/WARN]: [nLogin] The "unsupported-settings.perform-username-validation" option is enabled in config/paper-global.yml
[21:57:55] [Server thread/WARN]: [nLogin] The username-appender feature may fail with an invalid nickname kick message.
[21:57:57] [Server thread/INFO]: [pv-addon-whisper] Enabling pv-addon-whisper v1.1.0
[21:57:57] [Server thread/INFO]: [pv-addon-discs] Enabling pv-addon-discs v1.1.9
[21:57:57] [DefaultDispatcher-worker-3/INFO]: [pv-addon-discs] YouTube clients: [MUSIC, ANDROID_VR, WEB, WEBEMBEDDED, TV]
[21:57:57] [Server thread/INFO]: [pv-addon-broadcast] Enabling pv-addon-broadcast v1.1.0
[21:57:57] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.65
[21:57:57] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[21:57:57] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[21:57:57] [Server thread/WARN]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
[21:57:57] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[21:57:57] [Server thread/INFO]: Preparing level "world"
[21:57:59] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[21:57:59] [DefaultDispatcher-worker-3/INFO]: [su.plo.voice.lavaplayer.libs.dev.lavalink.youtube.http.YoutubeOauth2Handler] YouTube access token refreshed successfully
[21:58:01] [Server thread/INFO]: Time elapsed: 1730 ms
[21:58:01] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[21:58:01] [Server thread/INFO]: Time elapsed: 192 ms
[21:58:01] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.12.2
[21:58:01] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[21:58:01] [Server thread/INFO]: [WolfyUtilities] init PAPI event
[21:58:01] [Server thread/INFO]: [WolfyUtilities] Enabled plugin integration for PlaceholderAPI
[21:58:01] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.12+829a4a4
[21:58:02] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[21:58:02] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[21:58:02] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[21:58:02] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[21:58:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[21:58:02] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[21:58:02] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[21:58:02] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[21:58:02] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[21:58:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[21:58:02] [Server thread/INFO]: [WorldGuard] Loading region data...
[21:58:02] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v5.5.2
[21:58:03] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[21:58:03] [Server thread/INFO]: Time elapsed: 225 ms
[21:58:03] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[21:58:03] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[21:58:03] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[21:58:03] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[21:58:03] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[21:58:03] [Server thread/INFO]: Preparing start region for dimension minecraft:staff
[21:58:04] [Server thread/INFO]: Time elapsed: 481 ms
[21:58:04] [Server thread/INFO]: [WorldGuard] (STAFF) TNT ignition is PERMITTED.
[21:58:04] [Server thread/INFO]: [WorldGuard] (STAFF) Lighters are PERMITTED.
[21:58:04] [Server thread/INFO]: [WorldGuard] (STAFF) Lava fire is PERMITTED.
[21:58:04] [Server thread/INFO]: [WorldGuard] (STAFF) Fire spread is UNRESTRICTED.
[21:58:04] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'STAFF'
[21:58:04] [Server thread/INFO]: Preparing start region for dimension minecraft:purgatorio
[21:58:04] [Server thread/INFO]: Time elapsed: 217 ms
[21:58:04] [Server thread/INFO]: [WorldGuard] (purgatorio) TNT ignition is PERMITTED.
[21:58:04] [Server thread/INFO]: [WorldGuard] (purgatorio) Lighters are PERMITTED.
[21:58:04] [Server thread/INFO]: [WorldGuard] (purgatorio) Lava fire is PERMITTED.
[21:58:04] [Server thread/INFO]: [WorldGuard] (purgatorio) Fire spread is UNRESTRICTED.
[21:58:04] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'purgatorio'
[21:58:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: multiverse-core [5.5.2]
[21:58:05] [Server thread/INFO]: [Multiverse-Core] API service loaded!
[21:58:05] [Server thread/INFO]: [Multiverse-Core] Version 5.5.2 (API v5.5) Enabled - By dumptruckman, Rigby, fernferret, lithium3141, main--, benwoo1110 and Zax71
[21:58:05] [Server thread/INFO]: [Multiverse-Core] Loving Multiverse-Core? Please consider supporting the project with a small donation: https://github.com/sponsors/Multiverse
[21:58:05] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.11.1-de409cac
[21:58:05] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.21.1)...
[21:58:05] [Server thread/INFO]: [MythicMobs] The server is running Paper; enabled Paper exclusive functionality
[21:58:07] [Server thread/INFO]: [MythicMobs] Mythic Citizens Support has been enabled!
[21:58:07] [Server thread/INFO]: [MythicMobs] Mythic MMOItems Support has been enabled!
[21:58:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[21:58:07] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[21:58:07] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[21:58:10] [Server thread/INFO]: [MythicMobs] Loading Packs...
[21:58:11] [Server thread/INFO]: [MythicMobs] Loading Items...
[21:58:11] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[21:58:11] [Server thread/INFO]: [MythicMobs] All items loaded after 335ms!
[21:58:11] [Server thread/INFO]: [MythicMobs] Loading Skills...
[21:58:15] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[21:58:15] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[21:58:15] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[21:58:15] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[21:58:15] [Server thread/WARN]: [MythicMobs] --| Skill: Mirror_Shuriken_Summon | File: /home/container/plugins/MythicMobs/Skills/illusionist_skills_mmocore.yml
[21:58:15] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[21:58:15] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{type=Mirror_Shuriken_Back;amount=1;radius=0;yRadius=0;onSurface=true}
[21:58:15] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MIR{r=80;t=Mirror_Shuriken_Back;target=armorstands}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[21:58:15] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[21:58:15] [Server thread/WARN]: [MythicMobs] --| Skill: Mirror_Shuriken_Summon | File: /home/container/plugins/MythicMobs/Skills/illusionist_skills_mmoitems.yml
[21:58:15] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[21:58:15] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{type=Mirror_Shuriken_Back;amount=1;radius=0;yRadius=0;onSurface=true}
[21:58:15] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MIR{r=80;t=Mirror_Shuriken_Back;target=armorstands}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[21:58:15] [Server thread/INFO]: [MythicMobs] Second passes loaded after 130ms!
[21:58:15] [Server thread/INFO]: [MythicMobs] ✓ Loaded 398 mobs.
[21:58:15] [Server thread/INFO]: [MythicMobs] ✓ Loaded 10 vanilla mob overrides.
[21:58:15] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[21:58:15] [Server thread/INFO]: [MythicMobs] ✓ Loaded 1243 skills.
[21:58:15] [Server thread/INFO]: [MythicMobs] ✓ Loaded 6 random spawns.
[21:58:15] [Server thread/INFO]: [MythicMobs] ✓ Loaded 374 mythic items.
[21:58:15] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[21:58:15] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[21:58:15] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[21:58:16] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[21:58:16] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs Premium v5.11.1 ( build de409cac ) has been successfully loaded!
[21:58:16] [Server thread/INFO]: [WolfyUtilities] Enabled plugin integration for MythicMobs
[21:58:17] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
[21:58:17] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: MythicMobs
[21:58:17] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.35-SNAPSHOT (build 3586)
[21:58:17] [Server thread/INFO]: [Citizens] Loading external libraries
[21:58:18] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[21:58:18] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[21:58:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[21:58:18] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: Citizens
[21:58:18] [Server thread/INFO]: [MythicLib] Enabling MythicLib v1.7
[21:58:19] [Server thread/INFO]: [MythicLib] Hooked onto TextDisplays (holograms)
[21:58:19] [Server thread/INFO]: [MythicMobs] MMO Plugin Support has been enabled!
[21:58:19] [Server thread/INFO]: [MythicLib] Hooked onto MythicMobs
[21:58:19] [Server thread/INFO]: [MythicLib] Hooked onto ProtocolLib
[21:58:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythiclib [1.7]
[21:58:19] [Server thread/INFO]: [MythicLib] Hooked onto PlaceholderAPI
[21:58:19] [Server thread/INFO]: [Denizen] Enabling Denizen v1.3.0-SNAPSHOT (build 1804-REL)
[21:58:19] [Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.91.0-SNAPSHOT (Build 1378), impl for Spigot v1.3.0-SNAPSHOT (build 1804-REL) 
[21:58:20] [Server thread/INFO]: +> [Denizen] Running on java version: 21.0.10 
[21:58:20] [Server thread/INFO]: +> [Denizen] Running on unrecognized (future?) Java version. May or may not work. 
[21:58:20] [Server thread/WARN]: [Denizen] -------------------------------------
[21:58:20] [Server thread/WARN]: [Denizen] This build of Denizen is not compatible with this Spigot version! Deactivating Denizen!
[21:58:20] [Server thread/WARN]: [Denizen] -------------------------------------
[21:58:20] [Server thread/INFO]: [Denizen] Disabling Denizen v1.3.0-SNAPSHOT (build 1804-REL)
[21:58:20] [Server thread/INFO]: [MMOCore] Enabling MMOCore v1.13.1-SNAPSHOT
[21:58:20] [Server thread/INFO]: [MMOCore] [STDOUT] [Spigotunlocked.com] - Hello
[21:58:20] [Server thread/WARN]: Nag author(s): '[Indyuce]' of 'MMOCore v1.13.1-SNAPSHOT' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[21:58:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mmocore [1.13.1-SNAPSHOT]
[21:58:20] [Server thread/INFO]: [MMOCore] Hooked onto PlaceholderAPI
[21:58:20] [Server thread/INFO]: [MMOCore] Hooked onto Citizens
[21:58:20] [Server thread/INFO]: [MMOCore] Hooked onto WorldGuard
[21:58:20] [Server thread/INFO]: [MMOCore] Hooked onto MythicMobs
[21:58:20] [Server thread/ERROR]: Cannot load plugins/MMOCore/skills/creativefly.yml
org.bukkit.configuration.InvalidConfigurationException: while scanning an anchor
 in 'reader', line 5, column 12:
    - &7Custo: &9{mana} Mana
               ^
unexpected character found {(123)
 in 'reader', line 5, column 14:
    - &7Custo: &9{mana} Mana
                 ^

    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:112) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:310) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at MythicLib-1.7.jar/io.lumine.mythic.lib.util.FileUtils.lambda$loadObjectsFromFolder$0(FileUtils.java:58) ~[MythicLib-1.7.jar:?]
    at MythicLib-1.7.jar/io.lumine.mythic.lib.util.FileUtils.exploreFolderRecursively(FileUtils.java:97) ~[MythicLib-1.7.jar:?]
    at MythicLib-1.7.jar/io.lumine.mythic.lib.util.FileUtils.lambda$exploreFolderRecursively$2(FileUtils.java:98) ~[MythicLib-1.7.jar:?]
    at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184) ~[?:?]
    at java.base/java.util.stream.SortedOps$SizedRefSortingSink.end(SortedOps.java:357) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:510) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]
    at java.base/java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:151) ~[?:?]
    at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:174) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]
    at java.base/java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?]
    at MythicLib-1.7.jar/io.lumine.mythic.lib.util.FileUtils.exploreFolderRecursively(FileUtils.java:98) ~[MythicLib-1.7.jar:?]
    at MythicLib-1.7.jar/io.lumine.mythic.lib.util.FileUtils.loadObjectsFromFolder(FileUtils.java:74) ~[MythicLib-1.7.jar:?]
    at MMOCore-1.13.1-SNAPSHOT.jar/net.Indyuce.mmocore.manager.SkillManager.initialize(SkillManager.java:101) ~[MMOCore-1.13.1-SNAPSHOT.jar:?]
    at MMOCore-1.13.1-SNAPSHOT.jar/net.Indyuce.mmocore.MMOCore.initializePlugin(MMOCore.java:306) ~[MMOCore-1.13.1-SNAPSHOT.jar:?]
    at MMOCore-1.13.1-SNAPSHOT.jar/net.Indyuce.mmocore.MMOCore.onEnable(MMOCore.java:213) ~[MMOCore-1.13.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: org.yaml.snakeyaml.scanner.ScannerException: while scanning an anchor
 in 'reader', line 5, column 12:
    - &7Custo: &9{mana} Mana
               ^
unexpected character found {(123)
 in 'reader', line 5, column 14:
    - &7Custo: &9{mana} Mana
                 ^

    at org.yaml.snakeyaml.scanner.ScannerImpl.scanAnchor(ScannerImpl.java:1510) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.scanner.ScannerImpl.fetchAnchor(ScannerImpl.java:968) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.scanner.ScannerImpl.fetchMoreTokens(ScannerImpl.java:401) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(ScannerImpl.java:238) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingValue.produce(ParserImpl.java:669) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:161) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:57) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:43) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:136) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:116) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeScalarNode(Composer.java:241) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:205) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeKeyNode(Composer.java:359) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:344) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:323) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeSequenceNode(Composer.java:277) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:207) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:369) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:348) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:323) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.getNode(Composer.java:131) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:157) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.Yaml.compose(Yaml.java:575) ~[snakeyaml-2.2.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:105) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    ... 31 more
[21:58:20] [Server thread/WARN]: [MMOCore] Could not load skill from file 'creativefly.yml': Could not find skill handler with ID 'CREATIVEFLY'
[21:58:20] [Server thread/WARN]: [MMOCore] Could not load trigger 'mmoitem{type=SWORD;id=CUTLASS}' from objective '5': Could not find MMOItem with ID 'CUTLASS'
[21:58:20] [Server thread/WARN]: [MMOCore] Could not load loot chest region 'sample-region' from file 'default_loot_chests.yml': Could not find world 'world_name_here'
[21:58:20] [Server thread/INFO]: [MMOCore] Hooked parties onto MMOCore
[21:58:20] [Server thread/INFO]: [MMOCore] Hooked guilds onto MMOCore
[21:58:20] [Server thread/INFO]: [MMOItems] Enabling MMOItems v6.10
[21:58:20] [Server thread/INFO]: [MMOItems] [STDOUT] [Spigotunlocked.com] - COSMO
[21:58:20] [Server thread/WARN]: Nag author(s): '[Indyuce]' of 'MMOItems v6.10' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[21:58:20] [Server thread/INFO]: [MMOItems] Hooked onto MythicMobs
[21:58:20] [Server thread/INFO]: [MMOItems] Hooked onto MMOInventory
[21:58:20] [Server thread/INFO]: [MMOItems] Hooked onto MMOCore
[21:58:20] [Server thread/INFO]: [MMOItems] Now using MMOCore as RPG core plugin
[21:58:21] [Server thread/INFO]: [MMOItems BRACELET ESPINHOS_PRATEADOS] Could not load base item data 'item-type': Could not find stat with ID 'ITEM_TYPE'
[21:58:21] [Server thread/INFO]: [MMOItems BRACELET ABRACO_SERPENTE] Could not load base item data 'item-type': Could not find stat with ID 'ITEM_TYPE'
[21:58:21] [Server thread/INFO]: [MMOItems BRACELET ABRACO_SERPENTE] Could not load base item data 'poison-resistance': Could not find stat with ID 'POISON_RESISTANCE'
[21:58:21] [Server thread/INFO]: [MMOItems BRACELET ARO_OBSIDIANA_POLIDA] Could not load base item data 'item-type': Could not find stat with ID 'ITEM_TYPE'
[21:58:21] [Server thread/INFO]: [MMOItems BRACELET GRILHAO_OBSIDIANA_BRUTA] Could not load base item data 'item-type': Could not find stat with ID 'ITEM_TYPE'
[21:58:21] [Server thread/INFO]: [MMOItems BRACELET ANEL_RUBI_SOLAR] Could not load base item data 'item-type': Could not find stat with ID 'ITEM_TYPE'
[21:58:21] [Server thread/INFO]: [MMOItems BRACELET ANEL_RUBI_SOLAR] Could not load base item data 'fire-resistance': Could not find stat with ID 'FIRE_RESISTANCE'
[21:58:21] [Server thread/INFO]: [MMOItems BRACELET ALIANCA_TOPAZIO] Could not load base item data 'item-type': Could not find stat with ID 'ITEM_TYPE'
[21:58:21] [Server thread/INFO]: [MMOItems BRACELET ARO_RUNICO_FOGO] Could not load base item data 'item-type': Could not find stat with ID 'ITEM_TYPE'
[21:58:21] [Server thread/INFO]: [MMOItems BRACELET OLHO_DO_CAOS] Could not load base item data 'item-type': Could not find stat with ID 'ITEM_TYPE'
[21:58:21] [Server thread/INFO]: [MMOItems BRACELET ANEL_SANGUE_ETERNO] Could not load base item data 'item-type': Could not find stat with ID 'ITEM_TYPE'
[21:58:21] [Server thread/INFO]: [MMOItems BRACELET ANEL_REI_ABISSAL] Could not load base item data 'item-type': Could not find stat with ID 'ITEM_TYPE'
[21:58:21] [Server thread/INFO]: [MMOItems Template Modifiers] Loading template modifiers, please wait..
[21:58:21] [Server thread/INFO]: [MMOItems Item Templates] Loading item templates, please wait...
[21:58:21] [Server thread/INFO]: [MMOItems] Loading crafting stations, please wait..
[21:58:21] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'capacete_de_couro_receita' from crafting station 'roupas': Invalid MMOItem ARMOR CAPACETE_DE_COURO: No such MMOItem for Type ARMOR. 
[21:58:21] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'peitoral_de_couro_receita' from crafting station 'roupas': Invalid MMOItem ARMOR PEITORAL_DE_COURO: No such MMOItem for Type ARMOR. 
[21:58:21] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'calca_de_couro_receita' from crafting station 'roupas': Invalid MMOItem ARMOR CALCA_DE_COURO: No such MMOItem for Type ARMOR. 
[21:58:21] [Server thread/ERROR]: [MMOItems] An issue occurred registering recipe 'bota_de_couro_receita' from crafting station 'roupas': Invalid MMOItem ARMOR BOTA_DE_COURO: No such MMOItem for Type ARMOR. 
[21:58:21] [Server thread/INFO]: [MMOItems] Hooked onto RPGInventory
[21:58:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mmoitems [6.10]
[21:58:21] [Server thread/INFO]: [MMOItems] Hooked onto PlaceholderAPI
[21:58:21] [Server thread/INFO]: [MMOItems] Loading recipes, please wait...
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL STEEL_INGOT 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL STEEL_INGOT 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL STEEL_INGOT 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL STEEL_INGOT 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL STEEL_INGOT 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL STEEL_INGOT 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL STEEL_INGOT 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL STEEL_INGOT 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL STEEL_INGOT 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL STEEL_INGOT 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL STEEL_INGOT 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL STEEL_INGOT 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL STEEL_INGOT 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL STEEL_INGOT 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL STEEL_INGOT 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL STEEL_INGOT 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL STEEL_INGOT 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL STEEL_INGOT 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL STEEL_INGOT 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL STEEL_INGOT 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL STEEL_INGOT 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL STEEL_INGOT 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL STEEL_INGOT 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL STEEL_INGOT 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL STEEL_INGOT 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL STEEL_INGOT 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL STEEL_INGOT 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL STEEL_INGOT 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL STEEL_INGOT 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL STEEL_INGOT 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL STEEL_INGOT 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL STEEL_INGOT 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL STEEL_INGOT 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL SILVER_INGOT 1.0..] Invalid MMOItem MATERIAL SILVER_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL SILVER_INGOT 1.0..] Invalid MMOItem MATERIAL SILVER_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL SILVER_INGOT 1.0..] Invalid MMOItem MATERIAL SILVER_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL SILVER_INGOT 1.0..] Invalid MMOItem MATERIAL SILVER_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL SILVER_INGOT 1.0..] Invalid MMOItem MATERIAL SILVER_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL SILVER_INGOT 1.0..] Invalid MMOItem MATERIAL SILVER_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m material steel_ingot 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m material steel_ingot 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m material steel_ingot 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [MythicLib Ingredient m material steel_ingot 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[21:58:21] [Server thread/INFO]: [WolfyUtilities] Enabled plugin integration for MMOItems
[21:58:21] [Server thread/INFO]: [Essentials] Enabling Essentials v2.22.0-dev+72-302653a
[21:58:21] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[21:58:21] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[21:58:21] [Server thread/INFO]: [Essentials] No kits found to migrate.
[21:58:22] [Server thread/INFO]: [Essentials] Selected 1.20.6+ Potion Meta Provider as the provider for PotionMetaProvider
[21:58:22] [Server thread/INFO]: [Essentials] Selected Paper Biome Key Provider as the provider for BiomeKeyProvider
[21:58:22] [Server thread/INFO]: [Essentials] Selected 1.20.5+ Banner Data Provider as the provider for BannerDataProvider
[21:58:22] [Server thread/INFO]: [Essentials] Selected 1.13+ Spawn Egg Provider as the provider for SpawnEggProvider
[21:58:22] [Server thread/INFO]: [Essentials] Selected Paper 1.13+ Tile Entity Provider as the provider for TileEntityProvider
[21:58:22] [Server thread/INFO]: [Essentials] Selected Reflection Sync Commands Provider as the provider for SyncCommandsProvider
[21:58:22] [Server thread/INFO]: [Essentials] Selected Paper Tick Count Provider as the provider for TickCountProvider
[21:58:22] [Server thread/INFO]: [Essentials] Selected 1.11+ Item Unbreakable Provider as the provider for ItemUnbreakableProvider
[21:58:22] [Server thread/INFO]: [Essentials] Selected Paper Material Tag Provider as the provider for MaterialTagProvider
[21:58:22] [Server thread/INFO]: [Essentials] Selected 1.21+ InventoryView Interface ABI Provider as the provider for InventoryViewProvider
[21:58:22] [Server thread/INFO]: [Essentials] Selected 1.14+ Sign Data Provider as the provider for SignDataProvider
[21:58:22] [Server thread/INFO]: [Essentials] Selected Reflection Formatted Command Alias Provider as the provider for FormattedCommandAliasProvider
[21:58:22] [Server thread/INFO]: [Essentials] Selected Paper Known Commands Provider as the provider for KnownCommandsProvider
[21:58:22] [Server thread/INFO]: [Essentials] Selected Paper Serialization Provider as the provider for SerializationProvider
[21:58:22] [Server thread/INFO]: [Essentials] Selected Paper Server State Provider as the provider for ServerStateProvider
[21:58:22] [Server thread/INFO]: [Essentials] Selected 1.12.2+ Player Locale Provider as the provider for PlayerLocaleProvider
[21:58:22] [Server thread/INFO]: [Essentials] Selected Paper Container Provider as the provider for ContainerProvider
[21:58:22] [Server thread/INFO]: [Essentials] Selected 1.17.1+ World Info Provider as the provider for WorldInfoProvider
[21:58:22] [Server thread/INFO]: [Essentials] Selected 1.8.3+ Spawner Item Provider as the provider for SpawnerItemProvider
[21:58:22] [Server thread/INFO]: [Essentials] Selected Legacy Biome Name Provider as the provider for BiomeNameProvider
[21:58:22] [Server thread/INFO]: [Essentials] Selected 1.20.4+ Damage Event Provider as the provider for DamageEventProvider
[21:58:22] [Server thread/INFO]: [Essentials] Selected 1.12+ Spawner Block Provider as the provider for SpawnerBlockProvider
[21:58:22] [Server thread/INFO]: [Essentials] Selected Reflection Online Mode Provider as the provider for OnlineModeProvider
[21:58:22] [Server thread/INFO]: [Essentials] Selected 1.14.4+ Persistent Data Container Provider as the provider for PersistentDataProvider
[21:58:22] [Server thread/INFO]: [Essentials] Loaded 46309 items from items.json.
[21:58:22] [Server thread/INFO]: [Essentials] Using locale en_US
[21:58:22] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[21:58:22] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[21:58:22] [Server thread/WARN]: [Essentials] Detected supported permissions plugin LuckPerms without Vault installed.
[21:58:22] [Server thread/WARN]: [Essentials] Features such as chat prefixes/suffixes and group-related functionality will not work until you install Vault.
[21:58:22] [Server thread/INFO]: [Essentials] Using superperms-based permissions.
[21:58:22] [Server thread/INFO]: [Skript] Enabling Skript v2.12.2
[21:58:23] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] A new version of Skript is available: 2.14.3 (you're currently running 2.12.2)
[21:58:23] [ForkJoinPool.commonPool-worker-1/INFO]: Download it at: https://github.com/SkriptLang/Skript/releases/download/2.14.3/Skript-2.14.3.jar
[21:58:24] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[21:58:24] [Server thread/INFO]: [SuperVanish] Enabling SuperVanish v3.2.3
[21:58:24] [Server thread/INFO]: [SuperVanish] SuperVanish Plugin enabled!
[21:58:24] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v4.0.10-hotfix-1
[21:58:24] [Server thread/WARN]: [ItemsAdder] LoneLibs is enabled. This plugin is not needed anymore and it's recommended to remove it (if you are not using it for other plugins).
[21:58:24] [Server thread/INFO]: [ItemsAdder] 
                                                   ItemsAdder 4.0.10-hotfix-1
  ___  ___        __        __   __   ___  __      ProtocolLib 5.4.0
|  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     Paper 1.21.1-133-3cb8529 (MC: 1.21.1)
|  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     Build Date: 2025-05-05_11.20.26
                                                   Java Version: 21.0.10
                                                   OS: Linux 4.18.0-553.40.1.el8_10.x86_64                                               
[21:58:24] [Server thread/INFO]: [ItemsAdder] Loading GlowingEntities API
[21:58:24] [Server thread/INFO]: [GlowingEntities] [GlowingEntities] Found server version 1.21.1
[21:58:24] [Server thread/INFO]: [GlowingEntities] [GlowingEntities] Loaded transparent mappings.
[21:58:25] [Server thread/INFO]: [ItemsAdder] Registered Skript API
[21:58:25] [Server thread/ERROR]: [ItemsAdder] Error while hooking into Denizen
[21:58:25] [Server thread/WARN]: java.lang.NoClassDefFoundError: com/denizenscript/denizen/objects/ItemTag
[21:58:25] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//dev.lone.itemsadder.Core.OtherPlugins.Denizen.DenizenHook.hook(SourceFile:22)
[21:58:25] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//dev.lone.itemsadder.Main.onEnable(SourceFile:328)
[21:58:25] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[21:58:25] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[21:58:25] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[21:58:25] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[21:58:25] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
[21:58:25] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
[21:58:25] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
[21:58:25] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
[21:58:25] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[21:58:25] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
[21:58:25] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[21:58:25] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:58:25] [Server thread/WARN]: Caused by: java.lang.ClassNotFoundException: com.denizenscript.denizen.objects.ItemTag
[21:58:25] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197)
[21:58:25] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[21:58:25] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[21:58:25] [Server thread/WARN]:     ... 14 more
[21:58:25] [Server thread/INFO]: [ItemsAdder] Registered Citizens NPC Trait: customentity
[21:58:25] [Server thread/ERROR]: [ItemsAdder]  
[21:58:25] [Server thread/ERROR]: [ItemsAdder]  
[21:58:25] [Server thread/ERROR]: [ItemsAdder]  
[21:58:25] [Server thread/ERROR]: [ItemsAdder]  
[21:58:25] [Server thread/ERROR]: [ItemsAdder] [Pack] ERROR: please remove the resource-pack setting from server.properties file. It's in the root folder of the server. Remove it and restart.
[21:58:25] [Server thread/ERROR]: [ItemsAdder]  
[21:58:25] [Server thread/ERROR]: [ItemsAdder]  
[21:58:25] [Server thread/ERROR]: [ItemsAdder]  
[21:58:25] [Server thread/ERROR]: [ItemsAdder]  
[21:58:26] [Server thread/INFO]: [ItemsAdder] [Pack] Extracting internal contents from .jar
[21:58:26] [Server thread/INFO]: [ItemsAdder] [Pack] Extracted 0 default files. No files changes detected.
[21:58:28] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] Loaded 5330 aliases in 3754ms
[21:58:29] [Server thread/WARN]: [ItemsAdder] [Items] 'medieval_set:medieval_helmet'. Warning: Trying to create a custom legacy armor using an incompatible material. 'DIAMOND_HELMET' is not a leather armor material. File: /contents/medieval_set/configs/rjcc_medieval_set.yml
[21:58:29] [Server thread/WARN]: [ItemsAdder] [Items] 'medieval_set:medieval_chestplate'. Warning: Trying to create a custom legacy armor using an incompatible material. 'DIAMOND_CHESTPLATE' is not a leather armor material. File: /contents/medieval_set/configs/rjcc_medieval_set.yml
[21:58:29] [Server thread/WARN]: [ItemsAdder] [Items] 'medieval_set:medieval_leggings'. Warning: Trying to create a custom legacy armor using an incompatible material. 'DIAMOND_LEGGINGS' is not a leather armor material. File: /contents/medieval_set/configs/rjcc_medieval_set.yml
[21:58:29] [Server thread/WARN]: [ItemsAdder] [Items] 'medieval_set:medieval_boots'. Warning: Trying to create a custom legacy armor using an incompatible material. 'DIAMOND_BOOTS' is not a leather armor material. File: /contents/medieval_set/configs/rjcc_medieval_set.yml
[21:58:29] [Server thread/INFO]: [WorldGuardEvents] Enabling WorldGuardEvents v1.18.1
[21:58:29] [Server thread/INFO]: [WorldGuard] Registering session handler net.raidstone.wgevents.Entry
[21:58:29] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.30.4
[21:58:29] [Server thread/INFO]: [MythicCrucible] Enabling MythicCrucible v2.2.0-SNAPSHOT
[21:58:29] [Server thread/INFO]: [MythicCrucible] [STDOUT] [Spigotunlocked.com] - COSMO
[21:58:29] [Server thread/WARN]: Nag author(s): '[Ashijin]' of 'MythicCrucible v2.2.0-SNAPSHOT' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[21:58:29] [Server thread/INFO]: [MythicMobs] ------------------------------------------------
[21:58:29] [Server thread/INFO]: [MythicMobs] + Loading MythicCrucible for Bukkit
[21:58:29] [Server thread/INFO]: [MythicMobs] ------------------------------------------------
[21:58:30] [Server thread/INFO]: [MythicMobs] Registering Durability Listener
[21:58:31] [pool-71-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (3ac35c15e43cb693f68baf05b72a26ebd4d3d78d)
[21:58:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[21:58:31] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[21:58:32] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[21:58:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console channel ID was invalid, not forwarding console output
[21:58:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Saved linked accounts in 5ms
[21:58:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[21:58:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling SuperVanish hook
[21:58:32] [DiscordSRV - Initialization/ERROR]: [DiscordSRV] Failed to register events for class github.scarsz.discordsrv.hooks.vanish.SuperVanishHook because de/myzelyam/api/vanish/PostPlayerHideEvent does not exist.
[21:58:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[21:58:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Multiverse-Core hook
[21:58:32] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[21:58:32] [DiscordSRV - Initialization/ERROR]: [DiscordSRV] Group synchronization failed: Vault classes couldn't be found (did it enable properly?). Vault is required for synchronization to work.
[21:58:42] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[21:58:42] [Server thread/INFO]: [MythicMobs] MythicCrucible Support has been enabled!
[21:58:42] [Server thread/INFO]: [MythicMobs] MythicCrucible WorldEdit support enabled!
[21:58:43] [Server thread/INFO]: [MythicMobs] Attached traits to items.
[21:58:43] [Server thread/INFO]: [MythicMobs] Loaded 374 items.
[21:58:43] [Server thread/INFO]: [MythicMobs] Loaded 2 drop tables.
[21:58:43] [Server thread/INFO]: [MythicMobs] ✓ MythicCrucible  v2.2.0 has been successfully loaded!
[21:58:43] [Server thread/INFO]: [RealisticSeasons] Enabling RealisticSeasons v11.10.3
[21:58:43] [Server thread/INFO]: [RealisticSeasons] [STDOUT] [Spigotunlocked.com] - COSMO
[21:58:43] [Server thread/WARN]: Nag author(s): '[]' of 'RealisticSeasons v11.10.3' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[21:58:43] [Server thread/INFO]: [packetevents] Enabling packetevents v2.11.2
[21:58:43] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[21:58:43] [Server thread/INFO]: [Origins-Reborn] Enabling Origins-Reborn v2.10.9
[21:58:43] [packetevents-update-check-thread/INFO]: [packetevents] You are running the latest release of PacketEvents. Your build: (2.11.2)
[21:58:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: origin [2.6.0]
[21:58:43] [Server thread/INFO]: [ConditionalEvents] Enabling ConditionalEvents v4.75.1
[21:58:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: conditionalevents [4.75.1]
[21:58:43] [Server thread/INFO]: [ConditionalEvents] Has been enabled! Version: 4.75.1
[21:58:43] [Server thread/INFO]: [ConditionalEvents] Thanks for using my plugin!   ~Ajneb97
[21:58:43] [Server thread/INFO]: [PlayerParticles] Enabling PlayerParticles v8.11
[21:58:43] [Server thread/INFO]: [PlayerParticles] Data handler connected using SQLite.
[21:58:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerparticles [8.11]
[21:58:44] [Server thread/INFO]: [emotecraft] Enabling emotecraft v2.4.12
[21:58:44] [Server thread/INFO]: [emotecraft] Loading Emotecraft as a bukkit plugin...
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Enabling CosmeticsCore v1.3.9
[21:58:44] [Server thread/INFO]: [CosmeticsCore] [STDOUT] [Spigotunlocked.com] - COSMO
[21:58:44] [Server thread/WARN]: Nag author(s): '[LoneDev]' of 'CosmeticsCore v1.3.9' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library FastNbt-jar (remapped)...
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library commons-math3...
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-api...
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-key
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library examination-api
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library examination-string
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library annotations
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-text-minimessage...
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-api
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-key
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library examination-api
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library examination-string
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library annotations
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-text-serializer-gson...
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-text-serializer-json
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-api
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-key
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library examination-api
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library examination-string
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library option
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library jspecify
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library gson
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library auto-service-annotations
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-text-serializer-commons
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library annotations
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-text-serializer-gson-legacy-impl...
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-text-serializer-gson
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-text-serializer-json
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library option
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library jspecify
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library gson
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library auto-service-annotations
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-text-serializer-commons
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library annotations
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-text-serializer-json-legacy-impl
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-api
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-key
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library examination-api
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library examination-string
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-nbt
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-platform-bukkit...
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-platform-api
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-api
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-key
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-text-serializer-bungeecord
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-text-serializer-legacy
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-nbt
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library examination-api
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library examination-string
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library annotations
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-text-serializer-gson
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-text-serializer-json
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library option
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library jspecify
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library auto-service-annotations
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-text-serializer-commons
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-text-serializer-gson-legacy-impl
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-text-serializer-json-legacy-impl
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-platform-facet
[21:58:44] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-platform-viaversion
[21:58:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cosmetics [1.0.0]
[21:58:44] [Server thread/WARN]: [CosmeticsCore] LoneLibs is enabled but not needed anymore. You can remove it if not used by other plugins.
[21:58:44] [Server thread/INFO]: [CosmeticsCore] [STDOUT] [Spigotunlocked.com] - COSMO
[21:58:44] [Server thread/INFO]: [SkyParticles] Enabling SkyParticles v3.1*
[21:58:44] [Server thread/INFO]: SkyParticles has been enabled!
[21:58:44] [Server thread/INFO]: [CosmeticsCore] [STDOUT] [Spigotunlocked.com] - COSMO
[21:58:44] [Server thread/INFO]: [CustomCrops] Enabling CustomCrops v3.6.49
[21:58:45] [Server thread/INFO]: [CustomCrops] ItemsAdder hooked!
[21:58:45] [Server thread/INFO]: [CustomCrops] ItemsAdder hooked!
[21:58:45] [Server thread/INFO]: [CustomCrops] RealisticSeasons hooked!
[21:58:45] [Server thread/INFO]: [CustomCrops] PlaceholderAPI hooked!
[21:58:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: customcrops [3.6]
[21:58:45] [Server thread/INFO]: [CustomCrops] WorldGuard hooked!
[21:58:45] [Server thread/INFO]: [CustomCrops] MythicMobs hooked!
[21:58:46] [Server thread/WARN]: [CustomCrops] en_us.yml not exists, using en.yml as default locale.
[21:58:46] [Server thread/INFO]: [CosmeticsCore] [STDOUT] [Spigotunlocked.com] - COSMO
[21:58:46] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.4-SNAPSHOT
[21:58:46] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[21:58:46] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[21:58:46] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[21:58:46] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[21:58:46] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[21:58:46] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[21:58:46] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[21:58:46] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[21:58:46] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[21:58:46] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[21:58:46] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[21:58:46] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[21:58:46] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[21:58:46] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[21:58:46] [Server thread/INFO]: [CosmeticsCore] [STDOUT] [Spigotunlocked.com] - COSMO
[21:58:46] [Server thread/INFO]: [TAB] Enabling TAB v5.5.0
[21:58:46] [customcrops-worker-4/INFO]: [CustomCrops] You are using the latest version.
[21:58:46] [Server thread/INFO]: [TAB] [WARN] [config.yml] placeholder-refresh-intervals: Missing configuration section "placeholder-refresh-intervals.default-refresh-interval" of type Integer, using default value 500.
[21:58:46] [Server thread/INFO]: [TAB] [WARN] [config.yml] proxy-support.redis: Missing configuration section "proxy-support.redis.url" of type String, using default value redis://:password@localhost:6379/0.
[21:58:46] [Server thread/INFO]: [TAB] [WARN] [config.yml] proxy-support.rabbitmq: Missing configuration section "proxy-support.rabbitmq.exchange" of type String, using default value plugin.
[21:58:46] [Server thread/INFO]: [TAB] [WARN] [config.yml] proxy-support.rabbitmq: Missing configuration section "proxy-support.rabbitmq.url" of type String, using default value amqp://guest:guest@localhost:5672/%2F.
[21:58:47] [Server thread/INFO]: [TAB] [WARN] Found a total of 4 issues.
[21:58:47] [Server thread/INFO]: [TAB] Enabled in 342ms
[21:58:47] [Server thread/INFO]: [CosmeticsCore] [STDOUT] [Spigotunlocked.com] - COSMO
[21:58:47] [Server thread/INFO]: [SkBee] Enabling SkBee v3.13.3
[21:58:47] [Server thread/INFO]: [SkBee] Registry Elements successfully loaded
[21:58:47] [Server thread/INFO]: [SkBee] Loading NBTApi...
[21:58:47] [Server thread/INFO]: [SkBee] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[21:58:47] [Server thread/INFO]: [SkBee] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[21:58:47] [Server thread/INFO]: [SkBee] Successfully loaded NBTApi!
[21:58:47] [Server thread/INFO]: [SkBee] NBT Elements successfully loaded
[21:58:47] [Server thread/INFO]: [SkBee] Text Component Elements successfully loaded
[21:58:47] [Server thread/INFO]: [SkBee] Advancement Elements successfully loaded
[21:58:47] [Server thread/INFO]: [SkBee] BossBar Elements successfully loaded
[21:58:47] [Server thread/INFO]: [SkBee] Bound Elements successfully loaded
[21:58:47] [Server thread/INFO]: [SkBee] Damage Source Elements disabled (now in Skript)
[21:58:47] [Server thread/INFO]: [SkBee] Display Entity Elements disabled via config
[21:58:47] [Server thread/INFO]: [SkBee] Fastboard[Adventure] Elements successfully loaded
[21:58:47] [Server thread/INFO]: [SkBee] Fishing Elements successfully loaded
[21:58:47] [Server thread/INFO]: [SkBee] Game Event Elements successfully loaded
[21:58:47] [Server thread/INFO]: [SkBee] Item Component Elements disabled (Requires Paper 1.21.3+)
[21:58:47] [Server thread/INFO]: [SkBee] Particle Elements successfully loaded
[21:58:47] [Server thread/INFO]: [SkBee] Property Elements successfully loaded
[21:58:47] [Server thread/INFO]: [SkBee] RayTrace Elements successfully loaded
[21:58:47] [Server thread/INFO]: [SkBee] Recipe Elements successfully loaded
[21:58:47] [Server thread/INFO]: [SkBee] Scoreboard Elements successfully loaded
[21:58:47] [Server thread/INFO]: [SkBee] Statistic Elements successfully loaded
[21:58:47] [Server thread/INFO]: [SkBee] Structure Elements successfully loaded
[21:58:47] [Server thread/INFO]: [SkBee] SwitchCase Elements successfully loaded
[21:58:47] [Server thread/INFO]: [SkBee] Tick Manager Elements successfully loaded
[21:58:47] [Server thread/INFO]: [SkBee] Villager Elements successfully loaded
[21:58:47] [Server thread/INFO]: [SkBee] Virtual Furnace Elements disabled via config
[21:58:47] [Server thread/INFO]: [SkBee] World Border Elements disabled (now in Skript)
[21:58:47] [Server thread/INFO]: [SkBee] World Creator Elements successfully loaded
[21:58:47] [Server thread/INFO]: [SkBee] Chunk Generator Elements successfully loaded
[21:58:47] [Server thread/INFO]: [SkBee] Loaded (391) elements:
[21:58:47] [Server thread/INFO]: [SkBee]  - 55 events
[21:58:47] [Server thread/INFO]: [SkBee]  - 67 effects
[21:58:47] [Server thread/INFO]: [SkBee]  - 228 expressions
[21:58:47] [Server thread/INFO]: [SkBee]  - 25 conditions
[21:58:47] [Server thread/INFO]: [SkBee]  - 16 sections
[21:58:47] [Server thread/INFO]: [SkBee]  - 10 properties
[21:58:47] [Server thread/INFO]: [SkBee] Checking for update...
[21:58:48] [Server thread/INFO]: [SkBee] Plugin is not up to date!
[21:58:48] [Server thread/INFO]: [SkBee]  - Current version: v3.13.3
[21:58:48] [Server thread/INFO]: [SkBee]  - Available update: v3.18.0
[21:58:48] [Server thread/INFO]: [SkBee]  - Your server version (1.21.1) does not support this update.
[21:58:48] [Server thread/INFO]: [SkBee]  - Supported Versions:
[21:58:48] [Server thread/INFO]: [SkBee]    - 1.21.8
[21:58:48] [Server thread/INFO]: [SkBee]    - 1.21.9
[21:58:48] [Server thread/INFO]: [SkBee]    - 1.21.10
[21:58:48] [Server thread/INFO]: [SkBee]    - 1.21.11
[21:58:48] [Server thread/INFO]: [SkBee] Successfully enabled v3.13.3 in 1.17 seconds
[21:58:48] [Server thread/INFO]: [CosmeticsCore] [STDOUT] [Spigotunlocked.com] - COSMO
[21:58:48] [Server thread/INFO]: [ShoobadomChatBubbles] Enabling ShoobadomChatBubbles v1.1
[21:58:48] [Server thread/INFO]: [CosmeticsCore] [STDOUT] [Spigotunlocked.com] - COSMO
[21:58:48] [Server thread/INFO]: [RPProfessions] Enabling RPProfessions v1.7.0
[21:58:48] [Server thread/INFO]: Loading RPProfessions...
[21:58:48] [Server thread/INFO]: [RPProfessions] Loading dependencies...
[21:58:48] [Server thread/INFO]: [RPProfessions] Hooked onto MMOItems.
[21:58:48] [Server thread/INFO]: [RPProfessions] Hooked onto MythicMobs.
[21:58:48] [Server thread/INFO]: [RPProfessions] Hooked onto ItemsAdder.
[21:58:48] [Server thread/INFO]: [RPProfessions] Oraxen not found.
[21:58:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rpprofessions [1.0.0]
[21:58:48] [Server thread/INFO]: [RPProfessions] Hooked onto PlaceholderAPI.
[21:58:48] [Server thread/INFO]: [RPProfessions] Done!
[21:58:49] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 1026 ms to scan 1 urls, producing 1830 keys and 10318 values
[21:58:49] [Server thread/INFO]: [RPProfessions] Registering rpprofession as a main command.
[21:58:49] [Server thread/INFO]: [RPProfessions] Registering recipes as a main command.
[21:58:49] [Server thread/INFO]: [RPProfessions] Registering professions as a main command.
[21:58:50] [Server thread/INFO]: [RPProfessions] Loading category.ies...
[21:58:50] [Server thread/INFO]: [RPProfessions] Loaded 0 category.ies
[21:58:50] [Server thread/INFO]: [RPProfessions] Loading workstation.s...
[21:58:50] [Server thread/INFO]: [RPProfessions] Loaded 0 workstation.s
[21:58:50] [Server thread/INFO]: [RPProfessions] Loading profession.s...
[21:58:51] [Server thread/INFO]: [RPProfessions] Loaded 1 profession.s
[21:58:51] [Server thread/INFO]: [RPProfessions] Loading effect.s...
[21:58:51] [Server thread/INFO]: [RPProfessions] Loaded 0 effect.s
[21:58:51] [Server thread/INFO]: [RPProfessions] Loading item.s...
[21:58:51] [Server thread/INFO]: [RPProfessions] Loaded 0 item.s
[21:58:51] [Server thread/INFO]: [RPProfessions] Loading recipe.s...
[21:58:51] [Server thread/INFO]: [RPProfessions] Loaded 0 recipe.s
[21:58:51] [Server thread/INFO]: [RPProfessions] Loading pattern.s...
[21:58:51] [Server thread/INFO]: [RPProfessions] Loaded 0 pattern.s
[21:58:51] [Server thread/INFO]: [RPProfessions] Loading drop.s...
[21:58:51] [Server thread/INFO]: [RPProfessions] Loaded 0 drop.s
[21:58:51] [Server thread/INFO]: [RPProfessions] Loading villager trade set.s...
[21:58:51] [Server thread/INFO]: [RPProfessions] Loaded 0 villager trade set.s
[21:58:51] [Server thread/INFO]: [RPProfessions] Done!
[21:58:51] [Server thread/INFO]: [CosmeticsCore] [STDOUT] [Spigotunlocked.com] - COSMO
[21:58:51] [Server thread/INFO]: [ReviveMe] Enabling ReviveMe v0.4.4
[21:58:51] [Server thread/INFO]: ReviveMe enable
[21:58:51] [Server thread/INFO]: [CosmeticsCore] [STDOUT] [Spigotunlocked.com] - COSMO
[21:58:51] [Server thread/INFO]: [PostPigeon] Enabling PostPigeon v2.0.0
[21:58:51] [Server thread/INFO]: [CosmeticsCore] [STDOUT] [Spigotunlocked.com] - COSMO
[21:58:51] [Server thread/INFO]: [Origins-Mobs] Enabling Origins-Mobs v1.0.41
[21:58:51] [Server thread/INFO]: [CosmeticsCore] [STDOUT] [Spigotunlocked.com] - COSMO
[21:58:51] [Server thread/INFO]: [Origins-Magic] Enabling Origins-Magic v1.0.18
[21:58:51] [Server thread/INFO]: [CosmeticsCore] [STDOUT] [Spigotunlocked.com] - COSMO
[21:58:51] [Server thread/INFO]: [Origins-Monsters] Enabling Origins-Monsters v1.2.3
[21:58:52] [Server thread/INFO]: [CosmeticsCore] [STDOUT] [Spigotunlocked.com] - COSMO
[21:58:52] [Server thread/INFO]: [Origins-Fantasy] Enabling Origins-Fantasy v1.1.14
[21:58:52] [Server thread/INFO]: [CosmeticsCore] [STDOUT] [Spigotunlocked.com] - COSMO
[21:58:52] [Server thread/INFO]: [OpeNLogin] Enabling OpeNLogin v1.6.7
[21:58:52] [Server thread/INFO]: [OpeNLogin] nLogin was detected, turning off plugin...
[21:58:52] [Server thread/INFO]: [OpeNLogin] Disabling OpeNLogin v1.6.7
[21:58:52] [Server thread/INFO]: [CosmeticsCore] [STDOUT] [Spigotunlocked.com] - COSMO
[21:58:52] [Server thread/INFO]: [Multiverse-SignPortals] Enabling Multiverse-SignPortals v5.0.2
[21:58:52] [Server thread/INFO]: [Multiverse-SignPortals] Version 5.0.2 (API v5.0) Enabled - By Rigby and fernferret
[21:58:52] [Server thread/INFO]: [CosmeticsCore] [STDOUT] [Spigotunlocked.com] - COSMO
[21:58:52] [Server thread/INFO]: [Multiverse-Portals] Enabling Multiverse-Portals v5.2.0
[21:58:52] [Server thread/INFO]: [Multiverse-Portals] 4 - Portals(s) loaded
[21:58:52] [Server thread/INFO]: [Multiverse-Portals] Found WorldEdit. Using it for selections.
[21:58:52] [Server thread/INFO]: [Multiverse-Portals] Version 5.2.0 (API v5.2) Enabled - By Rigby, fernferret and benwoo1110
[21:58:52] [Server thread/INFO]: [CosmeticsCore] [STDOUT] [Spigotunlocked.com] - COSMO
[21:58:52] [Server thread/INFO]: [MMOInventory] Enabling MMOInventory v1.9
[21:58:52] [Server thread/INFO]: [MMOInventory] [STDOUT] [Spigotunlocked.com] - COSMO
[21:58:52] [Server thread/WARN]: Nag author(s): '[Indyuce]' of 'MMOInventory v1.9' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[21:58:52] [Server thread/INFO]: [MMOInventory] Successfully registered 13 inventory slots.
[21:58:52] [Server thread/INFO]: [MMOInventory] Hooked onto MMOItems
[21:58:52] [Server thread/INFO]: [MMOInventory] Hooked onto PlaceholderAPI
[21:58:52] [Server thread/INFO]: [CosmeticsCore] [STDOUT] [Spigotunlocked.com] - COSMO
[21:58:52] [Server thread/INFO]: [MCPets] Enabling MCPets v4.1.5-SNAPSHOT
[21:58:52] [Server thread/INFO]: [MCPets] : Language file reloaded.
[21:58:52] [Server thread/INFO]: [MCPets] : Blacklist file reloaded.
[21:58:52] [Server thread/INFO]: Loading pets... 
[21:58:52] [Server thread/INFO]:   - Basilisk_Wild loaded succesfully.
[21:58:52] [Server thread/INFO]:   - Capybara_Mount loaded succesfully.
[21:58:52] [Server thread/INFO]:   - Celestial_Thunderlord_Mount loaded succesfully.
[21:58:52] [Server thread/INFO]:   - Dragon_Sculk loaded succesfully.
[21:58:52] [Server thread/INFO]:   - Flarewing_Dragon_Mount loaded succesfully.
[21:58:52] [Server thread/INFO]:   - Jellyfish_Blue loaded succesfully.
[21:58:52] [Server thread/INFO]:   - Frog_Green loaded succesfully.
[21:58:52] [Server thread/INFO]:   - Golem_Arcane loaded succesfully.
[21:58:52] [Server thread/INFO]:   - Hippogryph_Common loaded succesfully.
[21:58:52] [Server thread/INFO]:   - Horncrier_Forest loaded succesfully.
[21:58:52] [Server thread/INFO]:   - Horse_Pegasus loaded succesfully.
[21:58:52] [Server thread/INFO]:   - Horse_Spartan loaded succesfully.
[21:58:52] [Server thread/INFO]:   - Kitsune_Normal loaded succesfully.
[21:58:52] [Server thread/INFO]:   - Lizard_Aqua loaded succesfully.
[21:58:52] [Server thread/INFO]:   - Manticore_Venom loaded succesfully.
[21:58:53] [Server thread/INFO]:   - Mob_Throne_Zombie loaded succesfully.
[21:58:53] [Server thread/INFO]:   - Ogres_Prisoner_Mossy loaded succesfully.
[21:58:53] [Server thread/INFO]:   - Panda loaded succesfully.
[21:58:53] [Server thread/INFO]:   - Phantom_Ghost loaded succesfully.
[21:58:53] [Server thread/INFO]:   - Phoenix_Flame loaded succesfully.
[21:58:53] [Server thread/INFO]:   - Raptor_Red loaded succesfully.
[21:58:53] [Server thread/INFO]:   - Sabertooth_Savanna loaded succesfully.
[21:58:53] [Server thread/INFO]:   - Skywhisper_Wyvern_Mount loaded succesfully.
[21:58:53] [Server thread/INFO]:   - Sky_Serpent_Jade loaded succesfully.
[21:58:53] [Server thread/INFO]:   - Stag_Rune loaded succesfully.
[21:58:53] [Server thread/INFO]:   - Talonstrider_Desert loaded succesfully.
[21:58:53] [Server thread/INFO]:   - Terravore_Drake_Mount loaded succesfully.
[21:58:53] [Server thread/INFO]:   - Tusker_Forest loaded succesfully.
[21:58:53] [Server thread/INFO]:   - Wolfhawk_Dire loaded succesfully.
[21:58:53] [Server thread/INFO]:   - Wyvern_Green loaded succesfully.
[21:58:53] [Server thread/INFO]:   - Pet_Cacti_Desert loaded succesfully.
[21:58:53] [Server thread/INFO]:   - Pet_Fire_Dragon_Fire loaded succesfully.
[21:58:53] [Server thread/INFO]:   - Pet_Frog_Green loaded succesfully.
[21:58:53] [Server thread/INFO]:   - Pet_Knight_Castle loaded succesfully.
[21:58:53] [Server thread/INFO]:   - Pet_Unicorn_Heavenly loaded succesfully.
[21:58:53] [Server thread/INFO]: [MCPets] : 35 pets registered successfully !
[21:58:53] [Server thread/INFO]: [MCPets] : 0 categories registered successfully !
[21:58:53] [Server thread/ERROR]: [MCPets] Could not reach SQL database. Please configure your database parameters.
[21:58:53] [Server thread/INFO]: [MCPets] [Database] Can't initialize MySQL.
[21:58:53] [Server thread/INFO]: [MCPets] [Database] Will be using YAML support instead (no worry it's not a bug).
[21:58:53] [Server thread/INFO]: -=-=-=-= MCPets loaded =-=-=-=-
[21:58:53] [Server thread/INFO]:       Plugin made by Nocsy     
[21:58:53] [Server thread/INFO]: -=-=-=-= -=-=-=-=-=-=- =-=-=-=-
[21:58:53] [Server thread/INFO]: -=- Launching Flags -=-
[21:58:53] [Server thread/INFO]: [MCPets] : Starting flag mcpets-dismount.
[21:58:53] [Server thread/INFO]: [MCPets] : Starting flag mcpets-despawn.
[21:58:53] [Server thread/INFO]: [MCPets] : Starting flag mcpets-dismount-flying.
[21:58:53] [Server thread/INFO]: 3 flags launched.
[21:58:53] [Server thread/INFO]: [CosmeticsCore] [STDOUT] [Spigotunlocked.com] - COSMO
[21:58:53] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.15.5
[21:58:53] [Server thread/INFO]: [NBTAPI] Checking bindings...
[21:58:53] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[21:58:53] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[21:58:53] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[21:58:53] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[21:58:53] [Server thread/INFO]: [CosmeticsCore] [STDOUT] [Spigotunlocked.com] - COSMO
[21:58:53] [Server thread/INFO]: [InteractionVisualizer] Enabling InteractionVisualizer v1.18.19.0
[21:59:06] [Server thread/INFO]: [InteractionVisualizer] Opened Sqlite database successfully
[21:59:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactionvisualizer [2.0.0]
[21:59:07] [Server thread/INFO]: [InteractionVisualizer] InteractionVisualizer has been enabled!
[21:59:07] [Server thread/INFO]: [CosmeticsCore] [STDOUT] [Spigotunlocked.com] - COSMO
[21:59:07] [Server thread/INFO]: [Epidemic] Enabling Epidemic v1.7.12
[21:59:07] [Server thread/INFO]: [Epidemic][>] =========================================[<]
[21:59:07] [Server thread/INFO]: [Epidemic][]                  Epidemic
[21:59:07] [Server thread/INFO]: [Epidemic][]   Bringing real survival to your server
[21:59:07] [Server thread/INFO]: [Epidemic][>] =========================================[<]
[21:59:07] [Server thread/INFO]: [Epidemic][Startup] Added Ailments: Broken Leg, Bubonic Plague, Burn, Common Cold, Gangrene, Rabies, Radiation Sickness, Sepsis, Typhus, Wound
[21:59:08] [Server thread/INFO]: [Epidemic][Startup] Added Remedies: Bandage, Antibiotico, Boiled Water, Bubonic Plague Cure, Cane, Cold Remedy, Cooling Compress, Miracle Goop (tm), Health Bar, Potassium Iodide, Rabies Cure, Snow Melt Water, Splint, Typhus Cure
[21:59:08] [Server thread/INFO]: [ERROR]
Error Code: GasMask.load.001
Source: Epidemic
Function: load()
Severity: Critical
Summary: Unexpected Error
Detail: Can not set net.minecraft.world.item.component.ResolvableProfile field org.bukkit.craftbukkit.inventory.CraftMetaSkull.profile to com.mojang.authlib.GameProfile
############################################################
Stack Trace
Please include this in any bug reports submitted!
############################################################
java.base/jdk.internal.reflect.FieldAccessorImpl.throwSetIllegalArgumentException(FieldAccessorImpl.java:228)
java.base/jdk.internal.reflect.FieldAccessorImpl.throwSetIllegalArgumentException(FieldAccessorImpl.java:232)
java.base/jdk.internal.reflect.MethodHandleObjectFieldAccessorImpl.set(MethodHandleObjectFieldAccessorImpl.java:115)
java.base/java.lang.reflect.Field.set(Field.java:836)
epidemic-1.7.12.jar//com.ibexmc.epidemic.util.SkullCreator.mutateItemMeta(SkullCreator.java:298)
epidemic-1.7.12.jar//com.ibexmc.epidemic.util.SkullCreator.itemWithBase64(SkullCreator.java:161)
epidemic-1.7.12.jar//com.ibexmc.epidemic.util.SkullCreator.itemFromBase64(SkullCreator.java:91)
epidemic-1.7.12.jar//com.ibexmc.epidemic.equipment.GasMask.load(GasMask.java:139)
epidemic-1.7.12.jar//com.ibexmc.epidemic.equipment.GasMask.<init>(GasMask.java:41)
epidemic-1.7.12.jar//com.ibexmc.epidemic.equipment.EquipmentManager.load(EquipmentManager.java:509)
epidemic-1.7.12.jar//com.ibexmc.epidemic.Epidemic.loadEquipment(Epidemic.java:454)
epidemic-1.7.12.jar//com.ibexmc.epidemic.Epidemic.onEnable(Epidemic.java:304)
org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
java.base/java.lang.Thread.run(Thread.java:1583)
############################################################
[21:59:08] [Server thread/INFO]: [ERROR]
Error Code: HazmatSuit.load.001
Source: Epidemic
Function: load()
Severity: Critical
Summary: Unexpected Error
Detail: Can not set net.minecraft.world.item.component.ResolvableProfile field org.bukkit.craftbukkit.inventory.CraftMetaSkull.profile to com.mojang.authlib.GameProfile
############################################################
Stack Trace
Please include this in any bug reports submitted!
############################################################
java.base/jdk.internal.reflect.FieldAccessorImpl.throwSetIllegalArgumentException(FieldAccessorImpl.java:228)
java.base/jdk.internal.reflect.FieldAccessorImpl.throwSetIllegalArgumentException(FieldAccessorImpl.java:232)
java.base/jdk.internal.reflect.MethodHandleObjectFieldAccessorImpl.set(MethodHandleObjectFieldAccessorImpl.java:115)
java.base/java.lang.reflect.Field.set(Field.java:836)
epidemic-1.7.12.jar//com.ibexmc.epidemic.util.SkullCreator.mutateItemMeta(SkullCreator.java:298)
epidemic-1.7.12.jar//com.ibexmc.epidemic.util.SkullCreator.itemWithBase64(SkullCreator.java:161)
epidemic-1.7.12.jar//com.ibexmc.epidemic.util.SkullCreator.itemFromBase64(SkullCreator.java:91)
epidemic-1.7.12.jar//com.ibexmc.epidemic.equipment.HazmatSuit.load(HazmatSuit.java:216)
epidemic-1.7.12.jar//com.ibexmc.epidemic.equipment.HazmatSuit.<init>(HazmatSuit.java:42)
epidemic-1.7.12.jar//com.ibexmc.epidemic.equipment.EquipmentManager.load(EquipmentManager.java:518)
epidemic-1.7.12.jar//com.ibexmc.epidemic.Epidemic.loadEquipment(Epidemic.java:454)
epidemic-1.7.12.jar//com.ibexmc.epidemic.Epidemic.onEnable(Epidemic.java:304)
org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641)
org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590)
net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753)
net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515)
net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214)
net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
java.base/java.lang.Thread.run(Thread.java:1583)
############################################################
[21:59:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: epidemic [1.7.12]
[21:59:08] [Server thread/INFO]: [Epidemic][Epidemic-Domain] Domain dependency not found - Domain checking for affliction/symptoms will not function
[21:59:08] [Server thread/INFO]: [Epidemic][Epidemic-WorldGuard] WorldGuard dependency found
[21:59:08] [Server thread/INFO]: [CosmeticsCore] [STDOUT] [Spigotunlocked.com] - COSMO
[21:59:08] [Server thread/INFO]: [CustomizablePlayerModels] Enabling CustomizablePlayerModels v0.6.25a
[21:59:08] [Server thread/WARN]: [CustomizablePlayerModels] Command API not found, using fallback command system.
[21:59:08] [Server thread/WARN]: [CustomizablePlayerModels] Attributes not found
java.lang.IncompatibleClassChangeError: Method 'org.bukkit.attribute.Attribute[] org.bukkit.attribute.Attribute.values()' must be Methodref constant
    at CustomPlayerModels-Bukkit-0.6.25a.jar/com.tom.cpm.bukkit.Network.<init>(Network.java:51) ~[CustomPlayerModels-Bukkit-0.6.25a.jar:?]
    at CustomPlayerModels-Bukkit-0.6.25a.jar/com.tom.cpm.bukkit.CPMBukkitPlugin.onEnable(CPMBukkitPlugin.java:176) ~[CustomPlayerModels-Bukkit-0.6.25a.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[21:59:08] [Server thread/INFO]: [CustomizablePlayerModels] Customizable Player Models Initialized
[21:59:08] [Server thread/INFO]: [CosmeticsCore] [STDOUT] [Spigotunlocked.com] - COSMO
[21:59:08] [Server thread/INFO]: [CustomCrafting] Enabling CustomCrafting v4.16.11
[21:59:08] [Server thread/INFO]: [CustomCrafting] Loaded fallback language "en_US" v6.1.0 translated by WolfyScript
[21:59:08] [Server thread/INFO]: [CustomCrafting] Loaded active language "en_US" v6.1.0 translated by WolfyScript
[21:59:08] [Server thread/INFO]: [CustomCrafting] ____ _  _ ____ ___ ____ _  _ ____ ____ ____ ____ ___ _ _  _ ____ 
[21:59:08] [Server thread/INFO]: [CustomCrafting] |    |  | [__   |  |  | |\/| |    |__/ |__| |___  |  | |\ | | __ 
[21:59:08] [Server thread/INFO]: [CustomCrafting] |___ |__| ___]  |  |__| |  | |___ |  \ |  | |     |  | | \| |__]
[21:59:08] [Server thread/INFO]: [CustomCrafting]     Version      | v4.16.11
[21:59:08] [Server thread/INFO]: [CustomCrafting]     WolfyUtils   | v4.17-beta.7
[21:59:08] [Server thread/INFO]: [CustomCrafting]     Bukkit       | 1.21.1-133-3cb8529 (MC: 1.21.1)(API: 1.21.1-R0.1-SNAPSHOT)
[21:59:08] [Server thread/INFO]: [CustomCrafting] 
[21:59:08] [Server thread/INFO]: [CustomCrafting] Special thanks to my Patrons for supporting this project: 
[21:59:08] [Server thread/INFO]: [CustomCrafting] Omarlatif, Nat R, Obsidian_Sword, LiveJunye, Mithran, Teddy
[21:59:08] [Server thread/INFO]: [CustomCrafting] Invictus_Vulpes , Luuk Musch, fioxu, JorshStark, Perny Dev, Charlie
[21:59:08] [Server thread/INFO]: [CustomCrafting] iachen, whja t, Green Masks, lance fector, Jack Snellings, MineHouse Server
[21:59:08] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[21:59:08] [Server thread/INFO]: [CustomCrafting] Detected ProtocolLib... initiating additional features.
[21:59:09] [Server thread/INFO]: [CustomCrafting] Registering PlaceHolder
[21:59:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: customcrafting [4.16.11]
[21:59:09] [Server thread/INFO]: [CustomCrafting] Data destination: LOCAL
[21:59:09] [Server thread/INFO]: [CustomCrafting] Initiating Inventory GUIs
[21:59:09] [Server thread/INFO]: [CustomCrafting] Register ItemCreator Tabs
[21:59:10] [Server thread/INFO]: [CustomCrafting] Loading Recipes & Items
[21:59:10] [Server thread/INFO]: [CustomCrafting] - - - - [Local Storage] - - - -
[21:59:10] [Server thread/INFO]: [CustomCrafting] [LOCAL] Using 3 threads
[21:59:10] [Server thread/INFO]: [CustomCrafting] [LOCAL] Looking through data folder...
[21:59:10] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loading Items
[21:59:10] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loading Recipes
[21:59:10] [ForkJoinPool-6-worker-3/WARN]: [CustomCrafting] [LOCAL] [Error] Invalid Recipe: "customcrafting:customcrafting/eferro": GenerateLoreEvent may only be triggered synchronously.
[21:59:10] [ForkJoinPool-6-worker-3/WARN]: [CustomCrafting] [LOCAL] [Error]   Caused by: GenerateLoreEvent may only be triggered synchronously.
[21:59:10] [ForkJoinPool-6-worker-3/WARN]: [CustomCrafting] ------------------[StackTrace]-------------------
[21:59:10] [ForkJoinPool-6-worker-3/WARN]: [CustomCrafting] 
me.wolfyscript.lib.com.fasterxml.jackson.databind.JsonMappingException: GenerateLoreEvent may only be triggered synchronously.
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.JsonMappingException.from(JsonMappingException.java:276) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.SettableBeanProperty._throwAsIOE(SettableBeanProperty.java:623) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.SettableBeanProperty._throwAsIOE(SettableBeanProperty.java:611) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.SettableBeanProperty._throwAsIOE(SettableBeanProperty.java:634) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.impl.MethodProperty.set(MethodProperty.java:185) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.impl.PropertyValue$Regular.assign(PropertyValue.java:60) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.impl.PropertyBasedCreator.build(PropertyBasedCreator.java:211) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.BeanDeserializer._deserializeUsingPropertyBased(BeanDeserializer.java:518) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.BeanDeserializerBase.deserializeFromObjectUsingNonDefault(BeanDeserializerBase.java:1405) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.BeanDeserializer.deserializeFromObject(BeanDeserializer.java:351) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.BeanDeserializer._deserializeOther(BeanDeserializer.java:219) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:186) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.jsontype.impl.AsPropertyTypeDeserializer._deserializeTypedForId(AsPropertyTypeDeserializer.java:144) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.jsontype.impl.AsPropertyTypeDeserializer.deserializeTypedFromObject(AsPropertyTypeDeserializer.java:110) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.AbstractDeserializer.deserializeWithType(AbstractDeserializer.java:263) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.impl.TypeWrappedDeserializer.deserialize(TypeWrappedDeserializer.java:74) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.DefaultDeserializationContext.readRootValue(DefaultDeserializationContext.java:323) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.ObjectReader._bindAndClose(ObjectReader.java:2051) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.ObjectReader.readValue(ObjectReader.java:1599) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at customcrafting-spigot-4.16.11 .jar/me.wolfyscript.customcrafting.handlers.LocalStorageLoader$NewDataLoader.lambda$loadRecipesInNamespace$0(LocalStorageLoader.java:483) ~[customcrafting-spigot-4.16.11 .jar:?]
    at java.base/java.util.concurrent.ForkJoinTask$RunnableExecuteAction.exec(ForkJoinTask.java:1423) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:387) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1312) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1843) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1808) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188) ~[?:?]
Caused by: java.lang.IllegalStateException: GenerateLoreEvent may only be triggered synchronously.
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:42) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at MMOItems-6.10.jar/net.Indyuce.mmoitems.api.item.build.ItemStackBuilder.buildNBT(ItemStackBuilder.java:230) ~[MMOItems-6.10.jar:?]
    at MMOItems-6.10.jar/net.Indyuce.mmoitems.api.item.build.ItemStackBuilder.buildNBT(ItemStackBuilder.java:131) ~[MMOItems-6.10.jar:?]
    at MMOItems-6.10.jar/net.Indyuce.mmoitems.api.item.build.ItemStackBuilder.buildSilently(ItemStackBuilder.java:281) ~[MMOItems-6.10.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.utilities.compatibility.plugins.mmoitems.MMOItemsStackIdentifier.stack(MMOItemsStackIdentifier.java:71) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/com.wolfyscript.utilities.bukkit.world.items.reference.StackReference$Deserializer.convert(StackReference.java:374) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/com.wolfyscript.utilities.bukkit.world.items.reference.StackReference$Deserializer.convert(StackReference.java:346) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.std.StdNodeBasedDeserializer.deserialize(StdNodeBasedDeserializer.java:73) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.std.CollectionDeserializer._deserializeFromArray(CollectionDeserializer.java:355) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(CollectionDeserializer.java:244) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/com.wolfyscript.jackson.dataformat.hocon.deserialization.ModifiedCollectionDeserializer.deserialize(ModifiedCollectionDeserializer.java:31) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/com.wolfyscript.jackson.dataformat.hocon.deserialization.ModifiedCollectionDeserializer.deserialize(ModifiedCollectionDeserializer.java:15) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.SettableBeanProperty.deserialize(SettableBeanProperty.java:542) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.BeanDeserializer._deserializeWithErrorWrapping(BeanDeserializer.java:563) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.BeanDeserializer._deserializeUsingPropertyBased(BeanDeserializer.java:438) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.BeanDeserializerBase.deserializeFromObjectUsingNonDefault(BeanDeserializerBase.java:1405) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.BeanDeserializer.deserializeFromObject(BeanDeserializer.java:351) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:184) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.DefaultDeserializationContext.readRootValue(DefaultDeserializationContext.java:323) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.ObjectReader._bindAndClose(ObjectReader.java:2051) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.ObjectReader.readValue(ObjectReader.java:1670) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.ObjectReader.readValue(ObjectReader.java:1685) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at customcrafting-spigot-4.16.11 .jar/me.wolfyscript.customcrafting.utils.ItemLoader.loadResult(ItemLoader.java:169) ~[customcrafting-spigot-4.16.11 .jar:?]
    at customcrafting-spigot-4.16.11 .jar/me.wolfyscript.customcrafting.recipes.CustomRecipe.setResult(CustomRecipe.java:285) ~[customcrafting-spigot-4.16.11 .jar:?]
    at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]
    at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.impl.MethodProperty.set(MethodProperty.java:182) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    ... 21 more
[21:59:10] [ForkJoinPool-6-worker-1/WARN]: [CustomCrafting] [LOCAL] [Error] Invalid Recipe: "customcrafting:customcrafting/eferrow": GenerateLoreEvent may only be triggered synchronously. (through reference chain: me.wolfyscript.customcrafting.recipes.CustomRecipeAnvil["repairTask"]->me.wolfyscript.customcrafting.recipes.anvil.RepairTaskResult["result"]->me.wolfyscript.customcrafting.recipes.items.Result["items"]->java.util.ArrayList[0])
[21:59:10] [ForkJoinPool-6-worker-1/WARN]: [CustomCrafting] [LOCAL] [Error]   Caused by: GenerateLoreEvent may only be triggered synchronously.
[21:59:10] [ForkJoinPool-6-worker-1/WARN]: [CustomCrafting] ------------------[StackTrace]-------------------
[21:59:10] [ForkJoinPool-6-worker-1/WARN]: [CustomCrafting] 
me.wolfyscript.lib.com.fasterxml.jackson.databind.JsonMappingException: GenerateLoreEvent may only be triggered synchronously. (through reference chain: me.wolfyscript.customcrafting.recipes.CustomRecipeAnvil["repairTask"]->me.wolfyscript.customcrafting.recipes.anvil.RepairTaskResult["result"]->me.wolfyscript.customcrafting.recipes.items.Result["items"]->java.util.ArrayList[0])
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.JsonMappingException.wrapWithPath(JsonMappingException.java:392) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.JsonMappingException.wrapWithPath(JsonMappingException.java:363) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.std.CollectionDeserializer._deserializeFromArray(CollectionDeserializer.java:371) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(CollectionDeserializer.java:244) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/com.wolfyscript.jackson.dataformat.hocon.deserialization.ModifiedCollectionDeserializer.deserialize(ModifiedCollectionDeserializer.java:31) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/com.wolfyscript.jackson.dataformat.hocon.deserialization.ModifiedCollectionDeserializer.deserialize(ModifiedCollectionDeserializer.java:15) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.SettableBeanProperty.deserialize(SettableBeanProperty.java:542) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.BeanDeserializer._deserializeWithErrorWrapping(BeanDeserializer.java:563) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.BeanDeserializer._deserializeUsingPropertyBased(BeanDeserializer.java:438) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.BeanDeserializerBase.deserializeFromObjectUsingNonDefault(BeanDeserializerBase.java:1405) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.BeanDeserializer.deserializeFromObject(BeanDeserializer.java:351) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:184) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.impl.MethodProperty.deserializeAndSet(MethodProperty.java:129) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.BeanDeserializer.vanillaDeserialize(BeanDeserializer.java:313) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.BeanDeserializer._deserializeOther(BeanDeserializer.java:214) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:186) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.jsontype.impl.AsPropertyTypeDeserializer._deserializeTypedForId(AsPropertyTypeDeserializer.java:144) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.jsontype.impl.AsPropertyTypeDeserializer.deserializeTypedFromObject(AsPropertyTypeDeserializer.java:110) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.AbstractDeserializer.deserializeWithType(AbstractDeserializer.java:263) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.SettableBeanProperty.deserialize(SettableBeanProperty.java:539) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.BeanDeserializer._deserializeWithErrorWrapping(BeanDeserializer.java:563) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.BeanDeserializer._deserializeUsingPropertyBased(BeanDeserializer.java:470) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.BeanDeserializerBase.deserializeFromObjectUsingNonDefault(BeanDeserializerBase.java:1405) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.BeanDeserializer.deserializeFromObject(BeanDeserializer.java:351) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.BeanDeserializer._deserializeOther(BeanDeserializer.java:219) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:186) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.jsontype.impl.AsPropertyTypeDeserializer._deserializeTypedForId(AsPropertyTypeDeserializer.java:144) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.jsontype.impl.AsPropertyTypeDeserializer.deserializeTypedFromObject(AsPropertyTypeDeserializer.java:110) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.AbstractDeserializer.deserializeWithType(AbstractDeserializer.java:263) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.impl.TypeWrappedDeserializer.deserialize(TypeWrappedDeserializer.java:74) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.DefaultDeserializationContext.readRootValue(DefaultDeserializationContext.java:323) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.ObjectReader._bindAndClose(ObjectReader.java:2051) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.ObjectReader.readValue(ObjectReader.java:1599) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at customcrafting-spigot-4.16.11 .jar/me.wolfyscript.customcrafting.handlers.LocalStorageLoader$NewDataLoader.lambda$loadRecipesInNamespace$0(LocalStorageLoader.java:483) ~[customcrafting-spigot-4.16.11 .jar:?]
    at java.base/java.util.concurrent.ForkJoinTask$RunnableExecuteAction.exec(ForkJoinTask.java:1423) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:387) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1312) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1843) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1808) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188) ~[?:?]
Caused by: java.lang.IllegalStateException: GenerateLoreEvent may only be triggered synchronously.
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:42) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at MMOItems-6.10.jar/net.Indyuce.mmoitems.api.item.build.ItemStackBuilder.buildNBT(ItemStackBuilder.java:230) ~[MMOItems-6.10.jar:?]
    at MMOItems-6.10.jar/net.Indyuce.mmoitems.api.item.build.ItemStackBuilder.buildNBT(ItemStackBuilder.java:131) ~[MMOItems-6.10.jar:?]
    at MMOItems-6.10.jar/net.Indyuce.mmoitems.api.item.build.ItemStackBuilder.buildSilently(ItemStackBuilder.java:281) ~[MMOItems-6.10.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.utilities.compatibility.plugins.mmoitems.MMOItemsStackIdentifier.stack(MMOItemsStackIdentifier.java:71) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/com.wolfyscript.utilities.bukkit.world.items.reference.StackReference$Deserializer.convert(StackReference.java:374) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/com.wolfyscript.utilities.bukkit.world.items.reference.StackReference$Deserializer.convert(StackReference.java:346) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.std.StdNodeBasedDeserializer.deserialize(StdNodeBasedDeserializer.java:73) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    at wolfyutils-spigot-4.17-beta.7.jar/me.wolfyscript.lib.com.fasterxml.jackson.databind.deser.std.CollectionDeserializer._deserializeFromArray(CollectionDeserializer.java:355) ~[wolfyutils-spigot-4.17-beta.7.jar:?]
    ... 37 more
[21:59:10] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loaded 6 recipes in 195ms
[21:59:10] [Server thread/WARN]: [CustomCrafting] [LOCAL] Failed to load 2 recipes
[21:59:10] [Server thread/INFO]: [CustomCrafting] [LOCAL] 2 recipes are invalid!
[21:59:10] [Server thread/INFO]: [CustomCrafting] [LOCAL] |--------------------------------------------------------------
[21:59:10] [Server thread/INFO]: [CustomCrafting] [LOCAL] |
[21:59:10] [Server thread/INFO]: [CustomCrafting] [LOCAL] |   Shaped Crafting Recipe [customcrafting:customcrafting/teste2]
[21:59:10] [Server thread/INFO]: [CustomCrafting] [LOCAL] |   Result
[21:59:10] [Server thread/INFO]: [CustomCrafting] [LOCAL] |      ! Must have either valid items or valid tags!
[21:59:10] [Server thread/INFO]: [CustomCrafting] [LOCAL] |      Items
[21:59:10] [Server thread/INFO]: [CustomCrafting] [LOCAL] |         StackReference
[21:59:10] [Server thread/INFO]: [CustomCrafting] [LOCAL] |            ! Item could not be loaded!
[21:59:10] [Server thread/INFO]: [CustomCrafting] [LOCAL] |      Tags
[21:59:10] [Server thread/INFO]: [CustomCrafting] [LOCAL] |
[21:59:10] [Server thread/INFO]: [CustomCrafting] [LOCAL] |--------------------------------------------------------------
[21:59:10] [Server thread/INFO]: [CustomCrafting] [LOCAL] |
[21:59:10] [Server thread/INFO]: [CustomCrafting] [LOCAL] |   Shaped Crafting Recipe [customcrafting:customcrafting/teste]
[21:59:10] [Server thread/INFO]: [CustomCrafting] [LOCAL] |   Result
[21:59:10] [Server thread/INFO]: [CustomCrafting] [LOCAL] |      ! Must have either valid items or valid tags!
[21:59:10] [Server thread/INFO]: [CustomCrafting] [LOCAL] |      Items
[21:59:10] [Server thread/INFO]: [CustomCrafting] [LOCAL] |         StackReference
[21:59:10] [Server thread/INFO]: [CustomCrafting] [LOCAL] |            ! Item could not be loaded!
[21:59:10] [Server thread/INFO]: [CustomCrafting] [LOCAL] |      Tags
[21:59:10] [Server thread/INFO]: [CustomCrafting] [LOCAL] |
[21:59:10] [Server thread/INFO]: [CustomCrafting] [LOCAL] ----------------------------
[21:59:10] [Server thread/INFO]: [CustomCrafting] Indexing Recipe Book...
[21:59:10] [Server thread/INFO]: [CustomCrafting] Indexed Recipe Book!
[21:59:10] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[21:59:10] [Server thread/INFO]: [CosmeticsCore] [STDOUT] [Spigotunlocked.com] - COSMO
[21:59:10] [Server thread/INFO]: [CMILib] Enabling CMILib v1.5.8.6
[21:59:11] [Server thread/INFO]: Server version: v1_21_R1 - 1.21.1 - paper  1.21.1-133-3cb8529 (MC: 1.21.1)
[21:59:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.5.8.6]
[21:59:11] [Server thread/INFO]: PlaceholderAPI hooked.
[21:59:11] [Server thread/INFO]: Updated (EN) language file. Took 38ms
[21:59:11] [Server thread/INFO]: [CosmeticsCore] [STDOUT] [Spigotunlocked.com] - COSMO
[21:59:11] [Server thread/INFO]: [ClearLag] Enabling ClearLag v1.0.1
[21:59:11] [Server thread/WARN]: [ClearLag] Could not save config.yml to plugins/ClearLag/config.yml because config.yml already exists.
[21:59:11] [Server thread/WARN]: [ClearLag] Could not save messages.yml to plugins/ClearLag/messages.yml because messages.yml already exists.
[21:59:11] [Server thread/INFO]: [ClearLag] PlaceholderAPI enabled
[21:59:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: clearlag [1.0.1]
[21:59:11] [Server thread/INFO]: [ClearLag] ClearLag setup complete! Next clear is in 600 seconds.
[21:59:11] [Server thread/INFO]: [CosmeticsCore] [STDOUT] [Spigotunlocked.com] - COSMO
[21:59:11] [Server thread/INFO]: [ChatDisable] Enabling ChatDisable v1.0
[21:59:11] [Server thread/INFO]: [ChatDisable] ChatDisablePlugin has been enabled!
[21:59:11] [Server thread/INFO]: [CosmeticsCore] [STDOUT] [Spigotunlocked.com] - COSMO
[21:59:11] [Server thread/INFO]: [BreweryX] Enabling BreweryX v3.6.3;HEAD
[21:59:12] [Server thread/INFO]: [BreweryX] Using language: en.yml
[21:59:12] [Server thread/INFO]: [BreweryX] Minecraft version: 1.21
[21:59:12] [Server thread/INFO]: [BreweryX] DataManager created: SQLite
[21:59:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: breweryx [3.6.3;HEAD]
[21:59:12] [Server thread/INFO]: [BreweryX] Using scheduler: PaperScheduler
[21:59:12] [Server thread/INFO]: [BreweryX] Environment: Paper
[21:59:12] [Server thread/INFO]: [BreweryX] BreweryX enabled!
[21:59:12] [Server thread/INFO]: [CosmeticsCore] [STDOUT] [Spigotunlocked.com] - COSMO
[21:59:13] [Server thread/INFO]: [spark] Starting background profiler...
[21:59:13] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[21:59:13] [Server thread/INFO]: Done preparing level "world" (76.234s)
[21:59:13] [Server thread/INFO]: Running delayed init tasks
[21:59:13] [Craft Scheduler Thread - 6 - Essentials/INFO]: [Essentials] Fetching version information...
[21:59:13] [Craft Scheduler Thread - 4 - CosmeticsCore/INFO]: [CosmeticsCore] [License] Licensed to user: SU (1)
[21:59:13] [Craft Scheduler Thread - 16 - InteractionVisualizer/INFO]: [InteractionVisualizer] Downloading and extracting latest Language files...
[21:59:13] [Craft Scheduler Thread - 10 - ItemsAdder/INFO]: [ItemsAdder] [License] Spigot product licensed to: Alias_art (1188567)
[21:59:13] [Craft Scheduler Thread - 31 - CMILib/INFO]: New version of CMILib was detected. Please update it (1.5.8.6 -> 1.5.8.9)
[21:59:13] [Craft Scheduler Thread - 18 - ReviveMe/INFO]: [ReviveMe] There is not a new update available.
[21:59:14] [Craft Scheduler Thread - 11 - ItemsAdder/INFO]: [ItemsAdder]  
[21:59:14] [Craft Scheduler Thread - 11 - ItemsAdder/INFO]: [ItemsAdder] 🚀 New version available!
[21:59:14] [Craft Scheduler Thread - 11 - ItemsAdder/INFO]: [ItemsAdder] - Released on: 2025-11-07 14:15:38
[21:59:14] [Craft Scheduler Thread - 11 - ItemsAdder/INFO]: [ItemsAdder] - Version: 4.0.15
[21:59:14] [Craft Scheduler Thread - 11 - ItemsAdder/INFO]: [ItemsAdder] - You are 5 versions behind.
[21:59:14] [Craft Scheduler Thread - 11 - ItemsAdder/INFO]: [ItemsAdder]  
[21:59:14] [Craft Scheduler Thread - 12 - ItemsAdder/ERROR]: [ItemsAdder] Solid hitbox too big (max 4) for furniture 'medieval_rpg:makeshift_hut'. File /contents/medieval_rpg/config/medieval_rpg.yml
[21:59:14] [Craft Scheduler Thread - 12 - ItemsAdder/ERROR]: [ItemsAdder] Solid hitbox too big (max 4) for furniture 'medieval_rpg:announcement_board'. File /contents/medieval_rpg/config/medieval_rpg.yml
[21:59:14] [ForkJoinPool.commonPool-worker-2/INFO]: [ModelEngine] [A] 
[21:59:14] [ForkJoinPool.commonPool-worker-2/INFO]: [ModelEngine] [A] [Importing models]
[21:59:14] [ForkJoinPool.commonPool-worker-2/INFO]: [ModelEngine] [A] Loading cache version: R4.0.8
[21:59:14] [Craft Scheduler Thread - 6 - Essentials/WARN]: [Essentials] You're 2 EssentialsX dev build(s) out of date!
[21:59:14] [Craft Scheduler Thread - 6 - Essentials/WARN]: [Essentials] Download it here: https://essentialsx.net/downloads.html
[21:59:14] [pool-22-thread-2/INFO]: [ModelEngine] [A] Importing barrel_poison.bbmodel.
[21:59:14] [pool-22-thread-6/INFO]: [ModelEngine] [A] Importing blacksmith_bellows.bbmodel.
[21:59:14] [pool-22-thread-1/INFO]: [ModelEngine] [A] Importing barrel_explosive.bbmodel.
[21:59:14] [pool-22-thread-7/INFO]: [ModelEngine] [A] Importing boulder.bbmodel.
[21:59:14] [pool-22-thread-8/INFO]: [ModelEngine] [A] Importing cactus.bbmodel.
[21:59:14] [pool-22-thread-9/INFO]: [ModelEngine] [A] Importing capybara.bbmodel.
[21:59:14] [pool-22-thread-7/INFO]: [ModelEngine] [A] Importing chest_golden.bbmodel.
[21:59:14] [pool-22-thread-8/INFO]: [ModelEngine] [A] Importing chest_ice.bbmodel.
[21:59:14] [pool-22-thread-2/INFO]: [ModelEngine] [A] Importing chest_aqua.bbmodel.
[21:59:14] [pool-22-thread-9/INFO]: [ModelEngine] [A] Importing chest_light.bbmodel.
[21:59:14] [pool-22-thread-6/INFO]: [ModelEngine] [A] Importing chest_bone.bbmodel.
[21:59:14] [pool-22-thread-1/INFO]: [ModelEngine] [A] Importing chest_forest.bbmodel.
[21:59:14] [Craft Scheduler Thread - 16 - InteractionVisualizer/INFO]: [InteractionVisualizer] Sucessfully downloaded the latest Language files!
[21:59:14] [pool-22-thread-2/INFO]: [ModelEngine] [A] Importing chest_wind.bbmodel.
[21:59:14] [pool-22-thread-9/INFO]: [ModelEngine] [A] Importing chest_wooden.bbmodel.
[21:59:14] [pool-22-thread-7/INFO]: [ModelEngine] [A] Importing chest_magma.bbmodel.
[21:59:14] [pool-22-thread-6/INFO]: [ModelEngine] [A] Importing deathbloom.bbmodel.
[21:59:14] [pool-22-thread-8/INFO]: [ModelEngine] [A] Importing chest_shadow.bbmodel.
[21:59:14] [Server thread/INFO]: [Skript] Loading variables...
[21:59:14] [pool-22-thread-6/INFO]: [ModelEngine] [A] Importing flame_trap.bbmodel.
[21:59:14] [pool-22-thread-6/INFO]: [ModelEngine] [A] Importing four_leaf_clover.bbmodel.
[21:59:15] [Server thread/INFO]: [Skript] Loaded 15 variables in 0.1 seconds
[21:59:15] [pool-22-thread-3/INFO]: [ModelEngine] [A] Importing basilisk_obsidian.bbmodel.
[21:59:15] [pool-22-thread-5/INFO]: [ModelEngine] [A] Importing basilisk_wild.bbmodel.
[21:59:15] [pool-22-thread-6/INFO]: [ModelEngine] [A] Importing frog_green.bbmodel.
[21:59:15] [pool-22-thread-4/INFO]: [ModelEngine] [A] Importing basilisk_snowstorm.bbmodel.
[21:59:15] [pool-22-thread-4/INFO]: [ModelEngine] [A] 
[21:59:15] [pool-22-thread-4/INFO]: [ModelEngine] [A] Importing fx_card_throw.bbmodel.
[21:59:15] [pool-22-thread-4/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:15] [pool-22-thread-6/INFO]: [ModelEngine] [A] 
[21:59:15] [pool-22-thread-6/INFO]: [ModelEngine] [A] Importing fx_card_orbital.bbmodel.
[21:59:15] [pool-22-thread-6/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:15] [pool-22-thread-6/INFO]: [ModelEngine] [A] 
[21:59:15] [pool-22-thread-6/INFO]: [ModelEngine] [A] Importing fx_mirror.bbmodel.
[21:59:15] [pool-22-thread-6/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:15] [pool-22-thread-6/INFO]: [ModelEngine] [A] 
[21:59:15] [pool-22-thread-6/INFO]: [ModelEngine] [A] Importing fx_mirror_needle.bbmodel.
[21:59:15] [pool-22-thread-6/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:15] [pool-22-thread-6/INFO]: [ModelEngine] [A] 
[21:59:15] [pool-22-thread-6/INFO]: [ModelEngine] [A] Importing fx_mirror_shuriken.bbmodel.
[21:59:15] [pool-22-thread-6/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:15] [pool-22-thread-4/INFO]: [ModelEngine] [A] 
[21:59:15] [pool-22-thread-4/INFO]: [ModelEngine] [A] Importing fx_clone.bbmodel.
[21:59:15] [pool-22-thread-4/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:15] [Server thread/INFO]: [Skript] Line 153: (Vampiro.sk)
[21:59:15] [Server thread/INFO]:     Can't understand this structure: on eat of any food
[21:59:15] [Server thread/INFO]:     Line: on eat of any food:
[21:59:15] [Server thread/INFO]:  
[21:59:15] [pool-22-thread-3/INFO]: [ModelEngine] [A] Importing frog_permafrost.bbmodel.
[21:59:15] [pool-22-thread-1/INFO]: [ModelEngine] [A] Importing dragon_desert.bbmodel.
[21:59:15] [pool-22-thread-5/INFO]: [ModelEngine] [A] Importing frog_royal.bbmodel.
[21:59:15] [pool-22-thread-9/INFO]: [ModelEngine] [A] Importing dragon_nether.bbmodel.
[21:59:15] [pool-22-thread-2/INFO]: [ModelEngine] [A] Importing dragon_glacial.bbmodel.
[21:59:15] [pool-22-thread-9/INFO]: [ModelEngine] [A] Importing healing_crystal.bbmodel.
[21:59:15] [pool-22-thread-7/INFO]: [ModelEngine] [A] Importing dragon_sculk.bbmodel.
[21:59:15] [pool-22-thread-4/INFO]: [ModelEngine] [A] Importing golem_arcane.bbmodel.
[21:59:15] [pool-22-thread-3/INFO]: [ModelEngine] [A] Importing golem_corrupted.bbmodel.
[21:59:15] [pool-22-thread-1/INFO]: [ModelEngine] [A] Importing golem_magma.bbmodel.
[21:59:15] [pool-22-thread-5/INFO]: [ModelEngine] [A] Importing golem_royal.bbmodel.
[21:59:15] [pool-22-thread-6/INFO]: [ModelEngine] [A] Importing ghoul.bbmodel.
[21:59:15] [pool-22-thread-3/INFO]: [ModelEngine] [A] Importing horncrier_crimsonwood.bbmodel.
[21:59:16] [pool-22-thread-1/INFO]: [ModelEngine] [A] Importing horncrier_forest.bbmodel.
[21:59:16] [pool-22-thread-5/INFO]: [ModelEngine] [A] Importing horncrier_frozen.bbmodel.
[21:59:16] [pool-22-thread-3/INFO]: [ModelEngine] [A] Importing horse_glacial.bbmodel.
[21:59:16] [pool-22-thread-6/INFO]: [ModelEngine] [A] Importing horncrier_sculk.bbmodel.
[21:59:16] [pool-22-thread-7/INFO]: [ModelEngine] [A] Importing hippogryph_fallen.bbmodel.
[21:59:16] [pool-22-thread-4/INFO]: [ModelEngine] [A] Importing hippogryph_royal.bbmodel.
[21:59:16] [pool-22-thread-1/INFO]: [ModelEngine] [A] Importing horse_magma.bbmodel.
[21:59:16] [pool-22-thread-7/INFO]: [ModelEngine] [A] Importing jellyfish_abyss.bbmodel.
[21:59:16] [pool-22-thread-3/INFO]: [ModelEngine] [A] Importing horse_spartan.bbmodel.
[21:59:16] [pool-22-thread-4/INFO]: [ModelEngine] [A] Importing jellyfish_aether.bbmodel.
[21:59:16] [pool-22-thread-1/INFO]: [ModelEngine] [A] Importing jellyfish_blue.bbmodel.
[21:59:16] [pool-22-thread-6/INFO]: [ModelEngine] [A] Importing horse_unicorn.bbmodel.
[21:59:16] [pool-22-thread-9/INFO]: [ModelEngine] [A] Importing hippogryph_crystal.bbmodel.
[21:59:16] [pool-22-thread-7/INFO]: [ModelEngine] [A] Importing jellyfish_nether.bbmodel.
[21:59:16] [pool-22-thread-2/INFO]: [ModelEngine] [A] Importing hippogryph_common.bbmodel.
[21:59:16] [pool-22-thread-3/INFO]: [ModelEngine] [A] Importing jellyfish_obsidian.bbmodel.
[21:59:16] [pool-22-thread-7/INFO]: [ModelEngine] [A] Importing kobold_warrior.bbmodel.
[21:59:16] [pool-22-thread-2/INFO]: [ModelEngine] [A] Importing lava_salamander.bbmodel.
[21:59:16] [pool-22-thread-2/INFO]: [ModelEngine] [A] Importing log.bbmodel.
[21:59:16] [pool-22-thread-2/INFO]: [ModelEngine] [A] Importing magical_herb.bbmodel.
[21:59:16] [pool-22-thread-5/INFO]: [ModelEngine] [A] Importing horse_pegasus.bbmodel.
[21:59:16] [pool-22-thread-9/INFO]: [ModelEngine] [A] Importing kobold_archer.bbmodel.
[21:59:17] [pool-22-thread-8/INFO]: [ModelEngine] [A] Importing flarewing_dragon.bbmodel.
[21:59:17] [pool-22-thread-3/INFO]: [ModelEngine] [A] Importing lizard_aqua.bbmodel.
[21:59:17] [pool-22-thread-3/INFO]: [ModelEngine] [A] Importing mimic.bbmodel.
[21:59:17] [pool-22-thread-7/INFO]: [ModelEngine] [A] Importing lizard_lava.bbmodel.
[21:59:17] [pool-22-thread-1/INFO]: [ModelEngine] [A] Importing kitsune_inferno.bbmodel.
[21:59:17] [pool-22-thread-6/INFO]: [ModelEngine] [A] Importing kitsune_normal.bbmodel.
[21:59:17] [pool-22-thread-4/INFO]: [ModelEngine] [A] Importing kitsune_demonic.bbmodel.
[21:59:17] [pool-22-thread-4/INFO]: [ModelEngine] [A] Importing mob_ward.bbmodel.
[21:59:17] [pool-22-thread-4/INFO]: [ModelEngine] [A] Importing mushroom_glowing.bbmodel.
[21:59:17] [pool-22-thread-4/INFO]: [ModelEngine] [A] Importing mushroom_red.bbmodel.
[21:59:17] [pool-22-thread-3/INFO]: [ModelEngine] [A] Importing mob_throne_enderman.bbmodel.
[21:59:17] [pool-22-thread-7/INFO]: [ModelEngine] [A] Importing mob_throne_skeleton.bbmodel.
[21:59:17] [pool-22-thread-7/INFO]: [ModelEngine] [A] Importing npc_blacksmith.bbmodel.
[21:59:17] [pool-22-thread-6/INFO]: [ModelEngine] [A] Importing mob_throne_zombie.bbmodel.
[21:59:17] [pool-22-thread-1/INFO]: [ModelEngine] [A] Importing mob_throne_slime.bbmodel.
[21:59:17] [pool-22-thread-2/INFO]: [ModelEngine] [A] Importing manticore_aether.bbmodel.
[21:59:17] [pool-22-thread-6/INFO]: [ModelEngine] [A] Importing npc_farmer.bbmodel.
[21:59:17] [pool-22-thread-9/INFO]: [ModelEngine] [A] Importing manticore_soul.bbmodel.
[21:59:17] [pool-22-thread-7/INFO]: [ModelEngine] [A] Importing npc_cook.bbmodel.
[21:59:17] [pool-22-thread-1/INFO]: [ModelEngine] [A] Importing npc_guard.bbmodel.
[21:59:17] [pool-22-thread-2/INFO]: [ModelEngine] [A] Importing npc_healer.bbmodel.
[21:59:17] [pool-22-thread-5/INFO]: [ModelEngine] [A] Importing manticore_dusk.bbmodel.
[21:59:17] [pool-22-thread-8/INFO]: [ModelEngine] [A] Importing manticore_venom.bbmodel.
[21:59:17] [pool-22-thread-9/INFO]: [ModelEngine] [A] Importing npc_merchant_black.bbmodel.
[21:59:17] [pool-22-thread-7/INFO]: [ModelEngine] [A] Importing npc_merchant_blue.bbmodel.
[21:59:17] [pool-22-thread-2/INFO]: [ModelEngine] [A] Importing npc_merchant_purple.bbmodel.
[21:59:17] [pool-22-thread-1/INFO]: [ModelEngine] [A] Importing npc_merchant_green.bbmodel.
[21:59:17] [pool-22-thread-6/INFO]: [ModelEngine] [A] Importing npc_librarian.bbmodel.
[21:59:17] [pool-22-thread-8/INFO]: [ModelEngine] [A] Importing npc_merchant_yellow.bbmodel.
[21:59:17] [pool-22-thread-5/INFO]: [ModelEngine] [A] Importing npc_merchant_red.bbmodel.
[21:59:17] [pool-22-thread-8/INFO]: [ModelEngine] [A] Importing ore_copper.bbmodel.
[21:59:17] [pool-22-thread-5/INFO]: [ModelEngine] [A] Importing ore_diamond.bbmodel.
[21:59:17] [pool-22-thread-8/INFO]: [ModelEngine] [A] Importing ore_dragonite.bbmodel.
[21:59:17] [pool-22-thread-9/INFO]: [ModelEngine] [A] Importing npc_miner.bbmodel.
[21:59:17] [pool-22-thread-5/INFO]: [ModelEngine] [A] Importing ore_emerald.bbmodel.
[21:59:17] [pool-22-thread-8/INFO]: [ModelEngine] [A] Importing ore_gold.bbmodel.
[21:59:17] [pool-22-thread-9/INFO]: [ModelEngine] [A] Importing ore_iron.bbmodel.
[21:59:17] [pool-22-thread-5/INFO]: [ModelEngine] [A] Importing ore_ruby.bbmodel.
[21:59:17] [pool-22-thread-8/INFO]: [ModelEngine] [A] Importing ore_sapphire.bbmodel.
[21:59:17] [pool-22-thread-9/INFO]: [ModelEngine] [A] Importing ore_topaz.bbmodel.
[21:59:18] [pool-22-thread-10/INFO]: [ModelEngine] [A] Importing celestial_thunderlord.bbmodel.
[21:59:18] [pool-22-thread-10/INFO]: [ModelEngine] [A] 
[21:59:18] [pool-22-thread-10/INFO]: [ModelEngine] [A] Importing pbws_marker.bbmodel.
[21:59:18] [pool-22-thread-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:18] [pool-22-thread-5/INFO]: [ModelEngine] [A] Importing panda_normal.bbmodel.
[21:59:18] [pool-22-thread-2/INFO]: [ModelEngine] [A] Importing ogres_prisoner_fiery.bbmodel.
[21:59:18] [pool-22-thread-7/INFO]: [ModelEngine] [A] Importing ogres_prisoner_cyclops.bbmodel.
[21:59:18] [pool-22-thread-9/INFO]: [ModelEngine] [A] Importing pbws_grav.bbmodel.
[21:59:18] [pool-22-thread-7/INFO]: [ModelEngine] [A] 
[21:59:18] [pool-22-thread-7/INFO]: [ModelEngine] [A] Importing pbws_vfx_shield_smash.bbmodel.
[21:59:18] [pool-22-thread-7/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:18] [pool-22-thread-6/INFO]: [ModelEngine] [A] Importing ogres_prisoner_undead.bbmodel.
[21:59:18] [pool-22-thread-6/INFO]: [ModelEngine] [A] Importing pebbles_1.bbmodel.
[21:59:18] [pool-22-thread-2/INFO]: [ModelEngine] [A] 
[21:59:18] [pool-22-thread-2/INFO]: [ModelEngine] [A] Importing pbws_vfx_discharge.bbmodel.
[21:59:18] [pool-22-thread-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:18] [pool-22-thread-6/INFO]: [ModelEngine] [A] Importing pebbles_2.bbmodel.
[21:59:18] [pool-22-thread-1/INFO]: [ModelEngine] [A] Importing ogres_prisoner_mossy.bbmodel.
[21:59:18] [pool-22-thread-10/INFO]: [ModelEngine] [A] 
[21:59:18] [pool-22-thread-10/INFO]: [ModelEngine] [A] Importing pbws_shield_smash.bbmodel.
[21:59:18] [pool-22-thread-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:18] [pool-22-thread-10/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/shield_main already exists. Using alternative texture name modelengine:entity/a60564b6-7d81-3416-9fb5-19c5558aa61b.
[21:59:18] [pool-22-thread-9/INFO]: [ModelEngine] [A] 
[21:59:18] [pool-22-thread-9/INFO]: [ModelEngine] [A] Importing pbws_vfx_ult_charging.bbmodel.
[21:59:18] [pool-22-thread-9/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:18] [pool-22-thread-6/INFO]: [ModelEngine] [A] Importing pet_cacti_frozen.bbmodel.
[21:59:18] [pool-22-thread-2/INFO]: [ModelEngine] [A] Importing pet_cacti_desert.bbmodel.
[21:59:18] [pool-22-thread-1/INFO]: [ModelEngine] [A] Importing pet_cacti_sculk.bbmodel.
[21:59:18] [pool-22-thread-7/INFO]: [ModelEngine] [A] 
[21:59:18] [pool-22-thread-7/INFO]: [ModelEngine] [A] Importing pbws_vfx_ult_unleashed.bbmodel.
[21:59:18] [pool-22-thread-7/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:18] [pool-22-thread-8/INFO]: [ModelEngine] [A] 
[21:59:18] [pool-22-thread-8/INFO]: [ModelEngine] [A] Importing pbws_blaster.bbmodel.
[21:59:18] [pool-22-thread-8/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:18] [pool-22-thread-8/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/shield_main already exists. Using alternative texture name modelengine:entity/bc3b9396-2e7c-3ec0-8b4a-ede558635e97.
[21:59:18] [Craft Scheduler Thread - 12 - ItemsAdder/INFO]: [ItemsAdder] [Content] Loaded 1270 items
[21:59:18] [Craft Scheduler Thread - 12 - ItemsAdder/INFO]: [ItemsAdder] Used Blocks IDs:
[21:59:18] [Craft Scheduler Thread - 12 - ItemsAdder/INFO]: [ItemsAdder]  - REAL 0/188
[21:59:18] [Craft Scheduler Thread - 12 - ItemsAdder/INFO]: [ItemsAdder]  - REAL_NOTE 2/750
[21:59:18] [Craft Scheduler Thread - 12 - ItemsAdder/INFO]: [ItemsAdder]  - REAL_TRANSPARENT 4/63
[21:59:18] [Craft Scheduler Thread - 12 - ItemsAdder/INFO]: [ItemsAdder] Used Font Images: 72/6608
[21:59:18] [pool-22-thread-1/INFO]: [ModelEngine] [A] Importing pet_frog_golden.bbmodel.
[21:59:19] [pool-22-thread-7/INFO]: [ModelEngine] [A] Importing pet_frog_green.bbmodel.
[21:59:19] [pool-22-thread-2/INFO]: [ModelEngine] [A] Importing pet_fire_dragon_soulfire.bbmodel.
[21:59:19] [pool-22-thread-6/INFO]: [ModelEngine] [A] Importing pet_fire_dragon_shadowflame.bbmodel.
[21:59:19] [pool-22-thread-8/INFO]: [ModelEngine] [A] Importing pet_frog_mushroom.bbmodel.
[21:59:19] [pool-22-thread-10/INFO]: [ModelEngine] [A] Importing pet_fire_dragon_fire.bbmodel.
[21:59:19] [pool-22-thread-9/INFO]: [ModelEngine] [A] Importing pet_fire_dragon_holyfire.bbmodel.
[21:59:19] [pool-22-thread-7/INFO]: [ModelEngine] [A] Importing pet_frog_stone.bbmodel.
[21:59:19] [pool-22-thread-1/INFO]: [ModelEngine] [A] Importing pet_frog_nether.bbmodel.
[21:59:19] [pool-22-thread-2/INFO]: [ModelEngine] [A] Importing pet_knight_castle.bbmodel.
[21:59:19] [pool-22-thread-6/INFO]: [ModelEngine] [A] Importing pet_knight_ender.bbmodel.
[21:59:19] [pool-22-thread-9/INFO]: [ModelEngine] [A] Importing pet_unicorn_heavenly.bbmodel.
[21:59:19] [pool-22-thread-7/INFO]: [ModelEngine] [A] Importing pet_unicorn_nature.bbmodel.
[21:59:19] [pool-22-thread-10/INFO]: [ModelEngine] [A] Importing pet_knight_holy.bbmodel.
[21:59:19] [pool-22-thread-8/INFO]: [ModelEngine] [A] Importing pet_knight_glacial.bbmodel.
[21:59:19] [pool-22-thread-5/INFO]: [ModelEngine] [A] 
[21:59:19] [pool-22-thread-5/INFO]: [ModelEngine] [A] Importing pbws_shield_suit.bbmodel.
[21:59:19] [pool-22-thread-5/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:19] [pool-22-thread-5/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/shield_main already exists. Using alternative texture name modelengine:entity/8c3ed88d-58f5-3739-82c3-ee7dd67489af.
[21:59:19] [pool-22-thread-1/INFO]: [ModelEngine] [A] Importing pet_unicorn_rainbow.bbmodel.
[21:59:19] [pool-22-thread-3/INFO]: [ModelEngine] [A] Importing nightharrow_wendigo_ghost.bbmodel.
[21:59:19] [pool-22-thread-1/INFO]: [ModelEngine] [A] Importing plant_monster.bbmodel.
[21:59:19] [pool-22-thread-2/INFO]: [ModelEngine] [A] Importing pet_unicorn_undead.bbmodel.
[21:59:19] [pool-22-thread-4/INFO]: [ModelEngine] [A] Importing nightharrow_wendigo.bbmodel.
[21:59:19] [pool-22-thread-3/INFO]: [ModelEngine] [A] Importing portal.bbmodel.
[21:59:19] [pool-22-thread-6/INFO]: [ModelEngine] [A] Importing phantom_ender.bbmodel.
[21:59:19] [pool-22-thread-1/INFO]: [ModelEngine] [A] Importing portal_round.bbmodel.
[21:59:19] [pool-22-thread-6/INFO]: [ModelEngine] [A] Importing runestone_heal.bbmodel.
[21:59:19] [pool-22-thread-1/INFO]: [ModelEngine] [A] Importing runestone_resistance.bbmodel.
[21:59:19] [pool-22-thread-9/INFO]: [ModelEngine] [A] Importing phantom_ghost.bbmodel.
[21:59:19] [pool-22-thread-6/INFO]: [ModelEngine] [A] Importing runestone_speed.bbmodel.
[21:59:19] [pool-22-thread-1/INFO]: [ModelEngine] [A] Importing runestone_strength.bbmodel.
[21:59:19] [pool-22-thread-3/INFO]: [ModelEngine] [A] Importing raptor_undead.bbmodel.
[21:59:19] [pool-22-thread-4/INFO]: [ModelEngine] [A] Importing raptor_red.bbmodel.
[21:59:19] [pool-22-thread-4/INFO]: [ModelEngine] [A] Importing sawblade_trap_long.bbmodel.
[21:59:19] [pool-22-thread-2/INFO]: [ModelEngine] [A] Importing raptor_nightmare.bbmodel.
[21:59:19] [pool-22-thread-4/INFO]: [ModelEngine] [A] Importing sawblade_trap_short.bbmodel.
[21:59:19] [pool-22-thread-2/INFO]: [ModelEngine] [A] Importing shamrock.bbmodel.
[21:59:19] [pool-22-thread-3/INFO]: [ModelEngine] [A] Importing salamander.bbmodel.
[21:59:19] [pool-22-thread-6/INFO]: [ModelEngine] [A] Importing sabertooth_midnight.bbmodel.
[21:59:20] [pool-22-thread-1/INFO]: [ModelEngine] [A] Importing sabertooth_savanna.bbmodel.
[21:59:20] [pool-22-thread-9/INFO]: [ModelEngine] [A] Importing sabertooth_arctic.bbmodel.
[21:59:20] [pool-22-thread-4/INFO]: [ModelEngine] [A] Importing sky_serpent_jade.bbmodel.
[21:59:20] [pool-22-thread-9/INFO]: [ModelEngine] [A] Importing snail.bbmodel.
[21:59:20] [pool-22-thread-9/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-9/INFO]: [ModelEngine] [A] Importing spike_ball_trap.bbmodel.
[21:59:20] [pool-22-thread-9/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-6/INFO]: [ModelEngine] [A] Importing sky_serpent_spectral.bbmodel.
[21:59:20] [pool-22-thread-2/INFO]: [ModelEngine] [A] Importing sky_serpent_magma.bbmodel.
[21:59:20] [pool-22-thread-6/INFO]: [ModelEngine] [A] Importing spike_trap_still.bbmodel.
[21:59:20] [pool-22-thread-9/INFO]: [ModelEngine] [A] Importing spike_trap_pop_up.bbmodel.
[21:59:20] [pool-22-thread-8/INFO]: [ModelEngine] [A] Importing phoenix_light.bbmodel.
[21:59:20] [pool-22-thread-7/INFO]: [ModelEngine] [A] Importing phoenix_darkflame.bbmodel.
[21:59:20] [pool-22-thread-5/INFO]: [ModelEngine] [A] Importing phoenix_thunder.bbmodel.
[21:59:20] [pool-22-thread-10/INFO]: [ModelEngine] [A] Importing phoenix_flame.bbmodel.
[21:59:20] [pool-22-thread-3/INFO]: [ModelEngine] [A] Importing sky_serpent_solar.bbmodel.
[21:59:20] [pool-22-thread-10/INFO]: [ModelEngine] [A] Importing summoning_totem.bbmodel.
[21:59:20] [pool-22-thread-5/INFO]: [ModelEngine] [A] Importing stone_minion.bbmodel.
[21:59:20] [pool-22-thread-7/INFO]: [ModelEngine] [A] Importing stone_golem.bbmodel.
[21:59:20] [pool-22-thread-6/INFO]: [ModelEngine] [A] Importing stag_heavenly.bbmodel.
[21:59:20] [pool-22-thread-3/INFO]: [ModelEngine] [A] Importing talonstrider_arctic.bbmodel.
[21:59:20] [pool-22-thread-2/INFO]: [ModelEngine] [A] Importing stag_demonic.bbmodel.
[21:59:20] [pool-22-thread-9/INFO]: [ModelEngine] [A] Importing stag_rune.bbmodel.
[21:59:20] [pool-22-thread-10/INFO]: [ModelEngine] [A] Importing talonstrider_desert.bbmodel.
[21:59:20] [pool-22-thread-7/INFO]: [ModelEngine] [A] Importing talonstrider_sculk.bbmodel.
[21:59:20] [pool-22-thread-5/INFO]: [ModelEngine] [A] Importing talonstrider_ender.bbmodel.
[21:59:20] [pool-22-thread-8/INFO]: [ModelEngine] [A] Importing stag_void.bbmodel.
[21:59:20] [pool-22-thread-7/INFO]: [ModelEngine] [A] Importing vase_small.bbmodel.
[21:59:20] [pool-22-thread-7/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-7/INFO]: [ModelEngine] [A] Importing vfx_air_pulse.bbmodel.
[21:59:20] [pool-22-thread-7/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-10/INFO]: [ModelEngine] [A] Importing vase_common.bbmodel.
[21:59:20] [pool-22-thread-4/INFO]: [ModelEngine] [A] Importing specter.bbmodel.
[21:59:20] [pool-22-thread-5/INFO]: [ModelEngine] [A] Importing vase_tall.bbmodel.
[21:59:20] [pool-22-thread-4/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-4/INFO]: [ModelEngine] [A] Importing vfx_chi_hit.bbmodel.
[21:59:20] [pool-22-thread-4/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-7/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-7/INFO]: [ModelEngine] [A] Importing vfx_chi_blast.bbmodel.
[21:59:20] [pool-22-thread-7/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-10/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-10/INFO]: [ModelEngine] [A] Importing vfx_chi_heal.bbmodel.
[21:59:20] [pool-22-thread-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-8/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-8/INFO]: [ModelEngine] [A] Importing vfx_absorb_shield.bbmodel.
[21:59:20] [pool-22-thread-8/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-7/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-7/INFO]: [ModelEngine] [A] Importing vfx_flame_shot_fire.bbmodel.
[21:59:20] [pool-22-thread-7/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-10/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-10/INFO]: [ModelEngine] [A] Importing vfx_flame_shot_holyfire.bbmodel.
[21:59:20] [pool-22-thread-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-7/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-7/INFO]: [ModelEngine] [A] Importing vfx_flame_shot_soulfire.bbmodel.
[21:59:20] [pool-22-thread-7/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-8/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-8/INFO]: [ModelEngine] [A] Importing vfx_flame_shot_shadowflame.bbmodel.
[21:59:20] [pool-22-thread-8/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-8/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-8/INFO]: [ModelEngine] [A] Importing vfx_monk_impact_1.bbmodel.
[21:59:20] [pool-22-thread-8/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-5/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-5/INFO]: [ModelEngine] [A] Importing vfx_chi_wave.bbmodel.
[21:59:20] [pool-22-thread-5/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-4/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-4/INFO]: [ModelEngine] [A] Importing vfx_dragon_totem.bbmodel.
[21:59:20] [pool-22-thread-4/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-8/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-8/INFO]: [ModelEngine] [A] Importing vfx_monk_impact_2.bbmodel.
[21:59:20] [pool-22-thread-8/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-5/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-5/INFO]: [ModelEngine] [A] Importing vfx_monk_impact_3.bbmodel.
[21:59:20] [pool-22-thread-5/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-8/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-8/INFO]: [ModelEngine] [A] Importing vfx_monk_impact_5.bbmodel.
[21:59:20] [pool-22-thread-8/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-4/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-4/INFO]: [ModelEngine] [A] Importing vfx_monk_impact_4.bbmodel.
[21:59:20] [pool-22-thread-4/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-5/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-5/INFO]: [ModelEngine] [A] Importing vfx_monk_impact_6.bbmodel.
[21:59:20] [pool-22-thread-5/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-10/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-10/INFO]: [ModelEngine] [A] Importing vfx_meditation_beads.bbmodel.
[21:59:20] [pool-22-thread-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-8/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-8/INFO]: [ModelEngine] [A] Importing vfx_pet_pierce_1.bbmodel.
[21:59:20] [pool-22-thread-8/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-5/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-5/INFO]: [ModelEngine] [A] Importing vfx_pet_pierce_3.bbmodel.
[21:59:20] [pool-22-thread-5/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-4/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-4/INFO]: [ModelEngine] [A] Importing vfx_pet_pierce_2.bbmodel.
[21:59:20] [pool-22-thread-4/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-10/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-10/INFO]: [ModelEngine] [A] Importing vfx_pet_pierce_4.bbmodel.
[21:59:20] [pool-22-thread-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-8/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-8/INFO]: [ModelEngine] [A] Importing vfx_pet_pierce_5.bbmodel.
[21:59:20] [pool-22-thread-8/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-5/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-5/INFO]: [ModelEngine] [A] Importing vfx_pet_pierce_6.bbmodel.
[21:59:20] [pool-22-thread-5/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-10/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-10/INFO]: [ModelEngine] [A] Importing vfx_pet_pierce_8.bbmodel.
[21:59:20] [pool-22-thread-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-4/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-4/INFO]: [ModelEngine] [A] Importing vfx_pet_pierce_7.bbmodel.
[21:59:20] [pool-22-thread-4/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-3/INFO]: [ModelEngine] [A] Importing tusker_demonic.bbmodel.
[21:59:20] [pool-22-thread-2/INFO]: [ModelEngine] [A] Importing tusker_dreamlight.bbmodel.
[21:59:20] [pool-22-thread-8/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-8/INFO]: [ModelEngine] [A] Importing vfx_spike_shield_desert.bbmodel.
[21:59:20] [pool-22-thread-8/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-10/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-10/INFO]: [ModelEngine] [A] Importing vfx_spike_shield_sculk.bbmodel.
[21:59:20] [pool-22-thread-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-9/INFO]: [ModelEngine] [A] Importing tusker_forest.bbmodel.
[21:59:20] [pool-22-thread-3/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-3/INFO]: [ModelEngine] [A] Importing vfx_swift_strikes_2.bbmodel.
[21:59:20] [pool-22-thread-3/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-5/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-5/INFO]: [ModelEngine] [A] Importing vfx_spike_shield_frozen.bbmodel.
[21:59:20] [pool-22-thread-5/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-4/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-4/INFO]: [ModelEngine] [A] Importing vfx_swift_strikes_1.bbmodel.
[21:59:20] [pool-22-thread-4/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-2/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-2/INFO]: [ModelEngine] [A] Importing vfx_swift_strikes_3.bbmodel.
[21:59:20] [pool-22-thread-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-8/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-8/INFO]: [ModelEngine] [A] Importing vfx_swift_strikes_4.bbmodel.
[21:59:20] [pool-22-thread-8/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-3/INFO]: [ModelEngine] [A] Importing waystone.bbmodel.
[21:59:20] [pool-22-thread-5/INFO]: [ModelEngine] [A] Importing wild_berry.bbmodel.
[21:59:20] [pool-22-thread-9/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-9/INFO]: [ModelEngine] [A] Importing vfx_swift_strikes_6.bbmodel.
[21:59:20] [pool-22-thread-9/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:20] [pool-22-thread-10/INFO]: [ModelEngine] [A] 
[21:59:20] [pool-22-thread-10/INFO]: [ModelEngine] [A] Importing vfx_swift_strikes_5.bbmodel.
[21:59:20] [pool-22-thread-10/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:21] [pool-22-thread-7/INFO]: [ModelEngine] [A] 
[21:59:21] [pool-22-thread-7/INFO]: [ModelEngine] [A] Importing vfx_monk_dragon_fists.bbmodel.
[21:59:21] [pool-22-thread-7/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[21:59:21] [pool-22-thread-5/INFO]: [ModelEngine] [A] Importing wraith.bbmodel.
[21:59:21] [pool-22-thread-1/INFO]: [ModelEngine] [A] Importing skywhisper_wyvern.bbmodel.
[21:59:21] [Server thread/INFO]: [Skript] Line 33: (Vampiro.sk)
[21:59:21] [Server thread/INFO]:     Can't understand this expression: 'nbt compound from "{SkullOwner:{Id:[I;1990068899,-476296413,-1496631002,-1811130145],Properties:{textures:[{Value:"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYWM3MzFjM2M3MjNmNjdkMmNmYjFhMTE5MmI5NDcwODZmYmEzMmFlYTQ3MmQzNDdhNWVkNWQ3NjQyZjczYiJ9fX0="}]}}}"'
[21:59:21] [Server thread/INFO]:     Line: set {_n} to nbt compound from "{SkullOwner:{Id:[I;1990068899,-476296413,-1496631002,-1811130145],Properties:{textures:[{Value:"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYWM3MzFjM2M3MjNmNjdkMmNmYjFhMTE5MmI5NDcwODZmYmEzMmFlYTQ3MmQzNDdhNWVkNWQ3NjQyZjczYiJ9fX0="}]}}}"
[21:59:21] [Server thread/INFO]:  
[21:59:21] [Server thread/INFO]: [Skript] Line 35: (Vampiro.sk)
[21:59:21] [Server thread/INFO]:     Can't understand this expression: 'nbt compound from "{SkullOwner:{Id:[I;1853478284,-165524975,-2007856225,507422412],Properties:{textures:[{Value:"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNGU0YjhiOGQyMzYyYzg2NGUwNjIzMDE0ODdkOTRkMzI3MmE2YjU3MGFmYmY4MGMyYzViMTQ4Yzk1NDU3OWQ0NiJ9fX0="}]}}}"'
[21:59:21] [Server thread/INFO]:     Line: set {_n} to nbt compound from "{SkullOwner:{Id:[I;1853478284,-165524975,-2007856225,507422412],Properties:{textures:[{Value:"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNGU0YjhiOGQyMzYyYzg2NGUwNjIzMDE0ODdkOTRkMzI3MmE2YjU3MGFmYmY4MGMyYzViMTQ4Yzk1NDU3OWQ0NiJ9fX0="}]}}}"
[21:59:21] [Server thread/INFO]:  
[21:59:21] [Server thread/INFO]: [Skript] Line 37: (Vampiro.sk)
[21:59:21] [Server thread/INFO]:     Can't understand this expression: 'nbt compound from "{SkullOwner:{Id:[I;814066396,129454053,-1503892554,1009742687],Properties:{textures:[{Value:"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODBhMzA2NjgwMGFkMTQ5YTdjY2FhMTJkNzE1MzM1M2MwNTU3NmE3YWFiYzQ4ZDRjNjAxZDg5YjRlMWE4YjhjMSJ9fX0="}]}}}"'
[21:59:21] [Server thread/INFO]:     Line: set {_n} to nbt compound from "{SkullOwner:{Id:[I;814066396,129454053,-1503892554,1009742687],Properties:{textures:[{Value:"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODBhMzA2NjgwMGFkMTQ5YTdjY2FhMTJkNzE1MzM1M2MwNTU3NmE3YWFiYzQ4ZDRjNjAxZDg5YjRlMWE4YjhjMSJ9fX0="}]}}}"
[21:59:21] [Server thread/INFO]:  
[21:59:21] [Server thread/INFO]: [Skript] Line 39: (Vampiro.sk)
[21:59:21] [Server thread/INFO]:     Can't understand this expression: 'nbt compound from "{SkullOwner:{Id:[I;83801695,-439074246,-2078819339,1011729717],Properties:{textures:[{Value:"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzFkNDlhNjBmNWQyOTNhMGViNzRmODA4MjU3MzQ2NDU2MjY0MGU3NDdlY2Y0Y2U4ZDc5YzQwMTg3OTljOTAyYyJ9fX0="}]}}}"'
[21:59:21] [Server thread/INFO]:     Line: set {_n} to nbt compound from "{SkullOwner:{Id:[I;83801695,-439074246,-2078819339,1011729717],Properties:{textures:[{Value:"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzFkNDlhNjBmNWQyOTNhMGViNzRmODA4MjU3MzQ2NDU2MjY0MGU3NDdlY2Y0Y2U4ZDc5YzQwMTg3OTljOTAyYyJ9fX0="}]}}}"
[21:59:21] [Server thread/INFO]:  
[21:59:21] [Server thread/INFO]: [Skript] Line 42: (Vampiro.sk)
[21:59:21] [Server thread/INFO]:     Can't understand this expression: 'nbt compound from "{SkullOwner:{Id:[I;149764491,1312311750,-1188912605,-1564921635],Properties:{textures:[{Value:"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODRjY2M2YTkzNDgzZTkxNjQ1N2U5NzRlZTgwNjA0YzA5OGE2MDUxZWY4YzdmNGQ4YjhjOTEzNGRmN2ExYmMwMSJ9fX0="}]}}}"'
[21:59:21] [Server thread/INFO]:     Line: set {_n} to nbt compound from "{SkullOwner:{Id:[I;149764491,1312311750,-1188912605,-1564921635],Properties:{textures:[{Value:"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODRjY2M2YTkzNDgzZTkxNjQ1N2U5NzRlZTgwNjA0YzA5OGE2MDUxZWY4YzdmNGQ4YjhjOTEzNGRmN2ExYmMwMSJ9fX0="}]}}}"
[21:59:21] [Server thread/INFO]:  
[21:59:21] [Server thread/INFO]: [Skript] Line 44: (Vampiro.sk)
[21:59:21] [Server thread/INFO]:     Can't understand this expression: 'nbt compound from "{SkullOwner:{Id:[I;-709304510,1706512471,-1405851705,-616804001],Properties:{textures:[{Value:"e3RleHR1cmVzOntTS0lOOnt1cmw6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNzIzZGFlODZjNTA1OTk4M2RhZGMxNDZjZjI3ZjU0ZTkxOGQ4ODNjY2FlYjE0NzQxOGMxYmMxNjhlNzI2Njg4YiJ9fX0="}]}}}"'
[21:59:21] [Server thread/INFO]:     Line: set {_n} to nbt compound from "{SkullOwner:{Id:[I;-709304510,1706512471,-1405851705,-616804001],Properties:{textures:[{Value:"e3RleHR1cmVzOntTS0lOOnt1cmw6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNzIzZGFlODZjNTA1OTk4M2RhZGMxNDZjZjI3ZjU0ZTkxOGQ4ODNjY2FlYjE0NzQxOGMxYmMxNjhlNzI2Njg4YiJ9fX0="}]}}}"
[21:59:21] [Server thread/INFO]:  
[21:59:21] [Server thread/INFO]: [Skript] Line 46: (Vampiro.sk)
[21:59:21] [Server thread/INFO]:     Can't understand this expression: 'nbt compound from "{SkullOwner:{Id:[I;1197019177,-770880911,-2108113361,227213279],Properties:{textures:[{Value:"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZjBmNGNmYzg3MDU2MjQ3YThmZjJjODNiNjBmNTlmZGRlYzlmOGZkMjUzMTFlNmExYjcyNjE2YTBkYTk1NTZlOSJ9fX0="}]}}}"'
[21:59:21] [Server thread/INFO]:     Line: set {_n} to nbt compound from "{SkullOwner:{Id:[I;1197019177,-770880911,-2108113361,227213279],Properties:{textures:[{Value:"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZjBmNGNmYzg3MDU2MjQ3YThmZjJjODNiNjBmNTlmZGRlYzlmOGZkMjUzMTFlNmExYjcyNjE2YTBkYTk1NTZlOSJ9fX0="}]}}}"
[21:59:21] [Server thread/INFO]:  
[21:59:21] [pool-22-thread-2/INFO]: [ModelEngine] [A] Importing wolfhawk_fallen.bbmodel.
[21:59:21] [pool-22-thread-2/INFO]: [ModelEngine] [A] Importing internal_fire.bbmodel.
[21:59:21] [pool-22-thread-7/INFO]: [ModelEngine] [A] Importing wyvern_inferno.bbmodel.
[21:59:21] [pool-22-thread-5/INFO]: [ModelEngine] [A] Importing wyvern_undead.bbmodel.
[21:59:21] [pool-22-thread-3/INFO]: [ModelEngine] [A] Importing wolfhawk_stormcloud.bbmodel.
[21:59:21] [pool-22-thread-6/INFO]: [ModelEngine] [A] Importing terravore_drake.bbmodel.
[21:59:21] [pool-22-thread-9/INFO]: [ModelEngine] [A] Importing wyvern_ender.bbmodel.
[21:59:21] [pool-22-thread-5/INFO]: [ModelEngine] [A] Importing vfx-ec-leviathan-bullet.bbmodel.
[21:59:21] [pool-22-thread-4/INFO]: [ModelEngine] [A] Importing wolfhawk_dire.bbmodel.
[21:59:21] [pool-22-thread-8/INFO]: [ModelEngine] [A] Importing wolfhawk_fullmoon.bbmodel.
[21:59:21] [pool-22-thread-10/INFO]: [ModelEngine] [A] Importing wyvern_green.bbmodel.
[21:59:21] [pool-22-thread-1/INFO]: [ModelEngine] [A] Importing zombie_brute.bbmodel.
[21:59:21] [Craft Scheduler Thread - 12 - ItemsAdder/INFO]: [ItemsAdder] [Content] Loaded 31 categories
[21:59:21] [Craft Scheduler Thread - 12 - ItemsAdder/INFO]: [ItemsAdder] [Content] Contents loaded successfully!
[21:59:21] [Craft Scheduler Thread - 12 - ItemsAdder/INFO]:  
[21:59:21] [Craft Scheduler Thread - 12 - ItemsAdder/INFO]:  
[21:59:21] [Craft Scheduler Thread - 12 - ItemsAdder/INFO]: Welcome! Thanks for buying ItemsAdder! <3
[21:59:21] [Craft Scheduler Thread - 12 - ItemsAdder/INFO]: Before using the plugin you have to finish installation (it's easy).
[21:59:21] [Craft Scheduler Thread - 12 - ItemsAdder/INFO]: Resourcepack hosting: https://a.devs.beer/ia-host-pack
[21:59:21] [Craft Scheduler Thread - 12 - ItemsAdder/INFO]: Have fun! :D
[21:59:21] [Craft Scheduler Thread - 12 - ItemsAdder/INFO]:  
[21:59:21] [Craft Scheduler Thread - 12 - ItemsAdder/INFO]:  
[21:59:21] [pool-22-thread-2/INFO]: [ModelEngine] [A] Importing ec-leviathan_seg.bbmodel.
[21:59:22] [pool-22-thread-7/INFO]: [ModelEngine] [A] Importing ec-leviathan.bbmodel.
[21:59:25] [Server thread/INFO]: [Skript] Line 162: (Vampiro.sk)
[21:59:25] [Server thread/INFO]:     Can't understand this expression: 'potion with nbt "{Potion:{CustomPotionEffects:[{Id:5b,Duration:1,Amplifier:1}],CustomPotionColor:11546150},display:{Name:'{\"text\":\"Sangue Engarrafado\",\"color\":\"'
[21:59:25] [Server thread/INFO]:     Line: set {vampire_blood} to potion with nbt "{Potion:{CustomPotionEffects:[{Id:5b,Duration:1,Amplifier:1}],CustomPotionColor:11546150},display:{Name:'{\"text\":\"Sangue Engarrafado\",\"color\":\"#ff0000\",\"italic\":false}'}}"
[21:59:25] [Server thread/INFO]:  
[21:59:26] [Server thread/INFO]: [Skript] Line 185: (Vampiro.sk)
[21:59:26] [Server thread/INFO]:     There are multiple command senders in an on click event. You must define which command sender to use.
[21:59:26] [Server thread/INFO]:     Line: send "%{vampiro_prefixo}%&r Você encheu uma garrafa com sangue!"
[21:59:26] [Server thread/INFO]:  
[21:59:28] [Server thread/INFO]: [Skript] Loaded 1 script with a total of 9 structures in 13.6 seconds
[21:59:28] [Server thread/INFO]: [Skript] Finished loading.
[21:59:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrv [1.30.4]
[21:59:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rs [1.0.0]
[21:59:30] [Server thread/INFO]: [RealisticSeasons] Total biomes registered on server: 248
[21:59:30] [Server thread/INFO]: [CustomCrops] Registry access has been frozen
[21:59:30] [Server thread/INFO]: [CustomCrops] MMOCore hooked!
[21:59:30] [Server thread/INFO]: [CustomCrops] MMOItems hooked!
[21:59:31] [Server thread/INFO]: [Citizens] Loaded 10 NPCs.
[21:59:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: img [1.0.1]
[21:59:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iaplayerstat [1.0.1]
[21:59:32] [Server thread/INFO]: [WolfyUtilities] Enabled plugin integration for ItemsAdder
[21:59:32] [Server thread/INFO]: [ItemsAdder] Reloading ItemsAdder Custom Entities Citizens NPCs...
[21:59:32] [Server thread/INFO]: [ItemsAdder] Reloaded 0 ItemsAdder Custom Entities Citizens NPCs.
[21:59:32] [Server thread/INFO]: [Mythic] Reloading plugin...
[21:59:32] [Server thread/INFO]: [MythicMobs] Saving plugin data...
[21:59:32] [Server thread/INFO]: [MythicMobs] ✓Saving Finished
[21:59:32] [Server thread/INFO]: [MythicMobs] Loading Packs...
[21:59:32] [Server thread/INFO]: [MythicMobs] Loading Items...
[21:59:32] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[21:59:32] [Server thread/INFO]: [MythicMobs] All items loaded after 265ms!
[21:59:32] [Server thread/INFO]: [MythicMobs] Loading Skills...
[21:59:32] [pool-22-thread-6/INFO]: [ModelEngine] [A] 
[21:59:32] [pool-22-thread-6/INFO]: [ModelEngine] [A] Resource pack zipped.
[21:59:32] [pool-22-thread-6/INFO]: [ModelEngine] [A] Generator Profiled:
[21:59:32] [pool-22-thread-6/INFO]: [ModelEngine] [A]  - Import Phase: 8,042.0ms
[21:59:32] [pool-22-thread-6/INFO]: [ModelEngine] [A]  - Assets Phase: 8,275.4ms
[21:59:32] [pool-22-thread-6/INFO]: [ModelEngine] [A]  - Zipping Phase: 2,383.0ms
[21:59:35] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[21:59:35] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[21:59:35] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[21:59:35] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[21:59:35] [Server thread/WARN]: [MythicMobs] --| Skill: Mirror_Shuriken_Summon | File: /home/container/plugins/MythicMobs/Skills/illusionist_skills_mmocore.yml
[21:59:35] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[21:59:35] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{type=Mirror_Shuriken_Back;amount=1;radius=0;yRadius=0;onSurface=true}
[21:59:35] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MIR{r=80;t=Mirror_Shuriken_Back;target=armorstands}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[21:59:35] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[21:59:35] [Server thread/WARN]: [MythicMobs] --| Skill: Mirror_Shuriken_Summon | File: /home/container/plugins/MythicMobs/Skills/illusionist_skills_mmoitems.yml
[21:59:35] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[21:59:35] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{type=Mirror_Shuriken_Back;amount=1;radius=0;yRadius=0;onSurface=true}
[21:59:35] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MIR{r=80;t=Mirror_Shuriken_Back;target=armorstands}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[21:59:35] [Server thread/INFO]: [MythicMobs] Second passes loaded after 73ms!
[21:59:35] [Server thread/INFO]: [MythicMobs] ✓ Loaded 398 mobs.
[21:59:35] [Server thread/INFO]: [MythicMobs] ✓ Loaded 10 vanilla mob overrides.
[21:59:35] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[21:59:35] [Server thread/INFO]: [MythicMobs] ✓ Loaded 1243 skills.
[21:59:35] [Server thread/INFO]: [MythicMobs] ✓ Loaded 6 random spawns.
[21:59:35] [Server thread/INFO]: [MythicMobs] ✓ Loaded 374 mythic items.
[21:59:35] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[21:59:35] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[21:59:36] [Server thread/INFO]: [MythicMobs] Attached traits to items.
[21:59:36] [Server thread/INFO]: [MythicMobs] Loaded 2 drop tables.
[21:59:36] [Server thread/ERROR]: Cannot load plugins/MMOCore/skills/creativefly.yml
org.bukkit.configuration.InvalidConfigurationException: while scanning an anchor
 in 'reader', line 5, column 12:
    - &7Custo: &9{mana} Mana
               ^
unexpected character found {(123)
 in 'reader', line 5, column 14:
    - &7Custo: &9{mana} Mana
                 ^

    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:112) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:310) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at MythicLib-1.7.jar/io.lumine.mythic.lib.util.FileUtils.lambda$loadObjectsFromFolder$0(FileUtils.java:58) ~[MythicLib-1.7.jar:?]
    at MythicLib-1.7.jar/io.lumine.mythic.lib.util.FileUtils.exploreFolderRecursively(FileUtils.java:97) ~[MythicLib-1.7.jar:?]
    at MythicLib-1.7.jar/io.lumine.mythic.lib.util.FileUtils.lambda$exploreFolderRecursively$2(FileUtils.java:98) ~[MythicLib-1.7.jar:?]
    at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184) ~[?:?]
    at java.base/java.util.stream.SortedOps$SizedRefSortingSink.end(SortedOps.java:357) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:510) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]
    at java.base/java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:151) ~[?:?]
    at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:174) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]
    at java.base/java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?]
    at MythicLib-1.7.jar/io.lumine.mythic.lib.util.FileUtils.exploreFolderRecursively(FileUtils.java:98) ~[MythicLib-1.7.jar:?]
    at MythicLib-1.7.jar/io.lumine.mythic.lib.util.FileUtils.loadObjectsFromFolder(FileUtils.java:74) ~[MythicLib-1.7.jar:?]
    at MMOCore-1.13.1-SNAPSHOT.jar/net.Indyuce.mmocore.manager.SkillManager.initialize(SkillManager.java:101) ~[MMOCore-1.13.1-SNAPSHOT.jar:?]
    at MMOCore-1.13.1-SNAPSHOT.jar/net.Indyuce.mmocore.MMOCore.initializePlugin(MMOCore.java:306) ~[MMOCore-1.13.1-SNAPSHOT.jar:?]
    at MMOCore-1.13.1-SNAPSHOT.jar/net.Indyuce.mmocore.comp.mythicmobs.MythicHook.b(MythicHook.java:45) ~[MMOCore-1.13.1-SNAPSHOT.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor401.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-133-3cb8529]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at MythicMobs-5.11.1.jar/io.lumine.mythic.bukkit.commands.ReloadCommand.doReloadPart2(ReloadCommand.java:170) ~[MythicMobs-5.11.1.jar:?]
    at MythicMobs-5.11.1.jar/io.lumine.mythic.bukkit.commands.ReloadCommand.onCommand(ReloadCommand.java:79) ~[MythicMobs-5.11.1.jar:?]
    at MythicMobs-5.11.1.jar/io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:64) ~[MythicMobs-5.11.1.jar:?]
    at MythicMobs-5.11.1.jar/io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:55) ~[MythicMobs-5.11.1.jar:?]
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:165) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:1001) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at org.bukkit.Bukkit.dispatchCommand(Bukkit.java:1114) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at ItemsAdder_4.0.10-hotfix-1..jar/dev.lone.itemsadder.Core.OtherPlugins.MythicMobs.MythicMobsHook.reload(SourceFile:47) ~[ItemsAdder_4.0.10-hotfix-1..jar:?]
    at ItemsAdder_4.0.10-hotfix-1..jar/itemsadder.m.bc.a(SourceFile:433) ~[ItemsAdder_4.0.10-hotfix-1..jar:?]
    at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:44) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-133-3cb8529]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at ItemsAdder_4.0.10-hotfix-1..jar/itemsadder.m.ahi.a(SourceFile:75) ~[ItemsAdder_4.0.10-hotfix-1..jar:?]
    at ItemsAdder_4.0.10-hotfix-1..jar/itemsadder.m.a.e(SourceFile:966) ~[ItemsAdder_4.0.10-hotfix-1..jar:?]
    at ItemsAdder_4.0.10-hotfix-1..jar/itemsadder.m.afb.f(SourceFile:130) ~[ItemsAdder_4.0.10-hotfix-1..jar:?]
    at ItemsAdder_4.0.10-hotfix-1..jar/itemsadder.m.a.a(SourceFile:964) ~[ItemsAdder_4.0.10-hotfix-1..jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1225) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: org.yaml.snakeyaml.scanner.ScannerException: while scanning an anchor
 in 'reader', line 5, column 12:
    - &7Custo: &9{mana} Mana
               ^
unexpected character found {(123)
 in 'reader', line 5, column 14:
    - &7Custo: &9{mana} Mana
                 ^

    at org.yaml.snakeyaml.scanner.ScannerImpl.scanAnchor(ScannerImpl.java:1510) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.scanner.ScannerImpl.fetchAnchor(ScannerImpl.java:968) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.scanner.ScannerImpl.fetchMoreTokens(ScannerImpl.java:401) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(ScannerImpl.java:238) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingValue.produce(ParserImpl.java:669) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:161) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:57) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:43) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:136) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:116) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeScalarNode(Composer.java:241) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:205) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeKeyNode(Composer.java:359) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:344) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:323) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeSequenceNode(Composer.java:277) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:207) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:369) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:348) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:323) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.getNode(Composer.java:131) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:157) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.Yaml.compose(Yaml.java:575) ~[snakeyaml-2.2.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:105) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    ... 51 more
[21:59:36] [Server thread/WARN]: [MMOCore] Could not load skill from file 'creativefly.yml': Could not find skill handler with ID 'CREATIVEFLY'
[21:59:36] [Server thread/WARN]: [MMOCore] Could not load trigger 'mmoitem{type=SWORD;id=CUTLASS}' from objective '5': Could not find MMOItem with ID 'CUTLASS'
[21:59:36] [Server thread/WARN]: [MMOCore] Could not load loot chest region 'sample-region' from file 'default_loot_chests.yml': Could not find world 'world_name_here'
[21:59:37] [Server thread/WARN]: java.lang.IllegalArgumentException: Could not adapt item stack of invalid custom drop type 'key_wooden'
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.BukkitBootstrap.createItem(BukkitBootstrap.java:377)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.parse(BukkitItemMatcher.java:110)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.lambda$new$0(BukkitItemMatcher.java:45)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:154)
[21:59:37] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:151)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.doReloadPart2(ReloadCommand.java:184)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.onCommand(ReloadCommand.java:79)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:64)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:55)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:165)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:1001)
[21:59:37] [Server thread/WARN]:     at org.bukkit.Bukkit.dispatchCommand(Bukkit.java:1114)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//dev.lone.itemsadder.Core.OtherPlugins.MythicMobs.MythicMobsHook.reload(SourceFile:47)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.bc.a(SourceFile:433)
[21:59:37] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:44)
[21:59:37] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.ahi.a(SourceFile:75)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.e(SourceFile:966)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.afb.f(SourceFile:130)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.a(SourceFile:964)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1225)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[21:59:37] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:59:37] [Server thread/WARN]: java.lang.IllegalArgumentException: Could not adapt item stack of invalid custom drop type 'key_golden'
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.BukkitBootstrap.createItem(BukkitBootstrap.java:377)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.parse(BukkitItemMatcher.java:110)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.lambda$new$0(BukkitItemMatcher.java:45)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:154)
[21:59:37] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:151)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.doReloadPart2(ReloadCommand.java:184)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.onCommand(ReloadCommand.java:79)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:64)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:55)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:165)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:1001)
[21:59:37] [Server thread/WARN]:     at org.bukkit.Bukkit.dispatchCommand(Bukkit.java:1114)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//dev.lone.itemsadder.Core.OtherPlugins.MythicMobs.MythicMobsHook.reload(SourceFile:47)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.bc.a(SourceFile:433)
[21:59:37] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:44)
[21:59:37] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.ahi.a(SourceFile:75)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.e(SourceFile:966)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.afb.f(SourceFile:130)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.a(SourceFile:964)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1225)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[21:59:37] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:59:37] [Server thread/WARN]: java.lang.IllegalArgumentException: Could not adapt item stack of invalid custom drop type 'key_aqua'
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.BukkitBootstrap.createItem(BukkitBootstrap.java:377)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.parse(BukkitItemMatcher.java:110)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.lambda$new$0(BukkitItemMatcher.java:45)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:154)
[21:59:37] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:151)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.doReloadPart2(ReloadCommand.java:184)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.onCommand(ReloadCommand.java:79)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:64)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:55)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:165)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:1001)
[21:59:37] [Server thread/WARN]:     at org.bukkit.Bukkit.dispatchCommand(Bukkit.java:1114)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//dev.lone.itemsadder.Core.OtherPlugins.MythicMobs.MythicMobsHook.reload(SourceFile:47)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.bc.a(SourceFile:433)
[21:59:37] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:44)
[21:59:37] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.ahi.a(SourceFile:75)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.e(SourceFile:966)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.afb.f(SourceFile:130)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.a(SourceFile:964)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1225)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[21:59:37] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:59:37] [Server thread/WARN]: java.lang.IllegalArgumentException: Could not adapt item stack of invalid custom drop type 'key_bone'
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.BukkitBootstrap.createItem(BukkitBootstrap.java:377)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.parse(BukkitItemMatcher.java:110)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.lambda$new$0(BukkitItemMatcher.java:45)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:154)
[21:59:37] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:151)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.doReloadPart2(ReloadCommand.java:184)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.onCommand(ReloadCommand.java:79)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:64)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:55)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:165)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:1001)
[21:59:37] [Server thread/WARN]:     at org.bukkit.Bukkit.dispatchCommand(Bukkit.java:1114)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//dev.lone.itemsadder.Core.OtherPlugins.MythicMobs.MythicMobsHook.reload(SourceFile:47)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.bc.a(SourceFile:433)
[21:59:37] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:44)
[21:59:37] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.ahi.a(SourceFile:75)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.e(SourceFile:966)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.afb.f(SourceFile:130)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.a(SourceFile:964)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1225)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[21:59:37] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:59:37] [Server thread/WARN]: java.lang.IllegalArgumentException: Could not adapt item stack of invalid custom drop type 'key_forest'
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.BukkitBootstrap.createItem(BukkitBootstrap.java:377)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.parse(BukkitItemMatcher.java:110)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.lambda$new$0(BukkitItemMatcher.java:45)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:154)
[21:59:37] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:151)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.doReloadPart2(ReloadCommand.java:184)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.onCommand(ReloadCommand.java:79)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:64)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:55)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:165)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:1001)
[21:59:37] [Server thread/WARN]:     at org.bukkit.Bukkit.dispatchCommand(Bukkit.java:1114)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//dev.lone.itemsadder.Core.OtherPlugins.MythicMobs.MythicMobsHook.reload(SourceFile:47)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.bc.a(SourceFile:433)
[21:59:37] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:44)
[21:59:37] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.ahi.a(SourceFile:75)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.e(SourceFile:966)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.afb.f(SourceFile:130)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.a(SourceFile:964)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1225)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[21:59:37] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:59:37] [Server thread/WARN]: java.lang.IllegalArgumentException: Could not adapt item stack of invalid custom drop type 'key_ice'
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.BukkitBootstrap.createItem(BukkitBootstrap.java:377)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.parse(BukkitItemMatcher.java:110)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.lambda$new$0(BukkitItemMatcher.java:45)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:154)
[21:59:37] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:151)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.doReloadPart2(ReloadCommand.java:184)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.onCommand(ReloadCommand.java:79)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:64)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:55)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:165)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:1001)
[21:59:37] [Server thread/WARN]:     at org.bukkit.Bukkit.dispatchCommand(Bukkit.java:1114)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//dev.lone.itemsadder.Core.OtherPlugins.MythicMobs.MythicMobsHook.reload(SourceFile:47)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.bc.a(SourceFile:433)
[21:59:37] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:44)
[21:59:37] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.ahi.a(SourceFile:75)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.e(SourceFile:966)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.afb.f(SourceFile:130)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.a(SourceFile:964)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1225)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[21:59:37] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:59:37] [Server thread/WARN]: java.lang.IllegalArgumentException: Could not adapt item stack of invalid custom drop type 'key_light'
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.BukkitBootstrap.createItem(BukkitBootstrap.java:377)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.parse(BukkitItemMatcher.java:110)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.lambda$new$0(BukkitItemMatcher.java:45)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:154)
[21:59:37] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:151)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.doReloadPart2(ReloadCommand.java:184)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.onCommand(ReloadCommand.java:79)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:64)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:55)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:165)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:1001)
[21:59:37] [Server thread/WARN]:     at org.bukkit.Bukkit.dispatchCommand(Bukkit.java:1114)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//dev.lone.itemsadder.Core.OtherPlugins.MythicMobs.MythicMobsHook.reload(SourceFile:47)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.bc.a(SourceFile:433)
[21:59:37] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:44)
[21:59:37] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.ahi.a(SourceFile:75)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.e(SourceFile:966)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.afb.f(SourceFile:130)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.a(SourceFile:964)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1225)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[21:59:37] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:59:37] [Server thread/WARN]: java.lang.IllegalArgumentException: Could not adapt item stack of invalid custom drop type 'key_magma'
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.BukkitBootstrap.createItem(BukkitBootstrap.java:377)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.parse(BukkitItemMatcher.java:110)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.lambda$new$0(BukkitItemMatcher.java:45)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:154)
[21:59:37] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:151)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.doReloadPart2(ReloadCommand.java:184)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.onCommand(ReloadCommand.java:79)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:64)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:55)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:165)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:1001)
[21:59:37] [Server thread/WARN]:     at org.bukkit.Bukkit.dispatchCommand(Bukkit.java:1114)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//dev.lone.itemsadder.Core.OtherPlugins.MythicMobs.MythicMobsHook.reload(SourceFile:47)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.bc.a(SourceFile:433)
[21:59:37] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:44)
[21:59:37] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.ahi.a(SourceFile:75)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.e(SourceFile:966)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.afb.f(SourceFile:130)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.a(SourceFile:964)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1225)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[21:59:37] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:59:37] [Server thread/WARN]: java.lang.IllegalArgumentException: Could not adapt item stack of invalid custom drop type 'key_shadow'
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.BukkitBootstrap.createItem(BukkitBootstrap.java:377)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.parse(BukkitItemMatcher.java:110)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.lambda$new$0(BukkitItemMatcher.java:45)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:154)
[21:59:37] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:151)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.doReloadPart2(ReloadCommand.java:184)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.onCommand(ReloadCommand.java:79)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:64)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:55)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:165)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:1001)
[21:59:37] [Server thread/WARN]:     at org.bukkit.Bukkit.dispatchCommand(Bukkit.java:1114)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//dev.lone.itemsadder.Core.OtherPlugins.MythicMobs.MythicMobsHook.reload(SourceFile:47)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.bc.a(SourceFile:433)
[21:59:37] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:44)
[21:59:37] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.ahi.a(SourceFile:75)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.e(SourceFile:966)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.afb.f(SourceFile:130)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.a(SourceFile:964)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1225)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[21:59:37] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:59:37] [Server thread/WARN]: java.lang.IllegalArgumentException: Could not adapt item stack of invalid custom drop type 'key_wind'
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.BukkitBootstrap.createItem(BukkitBootstrap.java:377)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.parse(BukkitItemMatcher.java:110)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.lambda$new$0(BukkitItemMatcher.java:45)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:154)
[21:59:37] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:151)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.doReloadPart2(ReloadCommand.java:184)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.onCommand(ReloadCommand.java:79)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:64)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:55)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:165)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:1001)
[21:59:37] [Server thread/WARN]:     at org.bukkit.Bukkit.dispatchCommand(Bukkit.java:1114)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//dev.lone.itemsadder.Core.OtherPlugins.MythicMobs.MythicMobsHook.reload(SourceFile:47)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.bc.a(SourceFile:433)
[21:59:37] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:44)
[21:59:37] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.ahi.a(SourceFile:75)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.e(SourceFile:966)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.afb.f(SourceFile:130)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.a(SourceFile:964)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1225)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[21:59:37] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:59:37] [Server thread/WARN]: java.lang.IllegalArgumentException: Could not adapt item stack of invalid custom drop type 'key_wooden'
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.BukkitBootstrap.createItem(BukkitBootstrap.java:377)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.parse(BukkitItemMatcher.java:110)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.lambda$new$0(BukkitItemMatcher.java:45)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:154)
[21:59:37] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:151)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.doReloadPart2(ReloadCommand.java:184)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.onCommand(ReloadCommand.java:79)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:64)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:55)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:165)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:1001)
[21:59:37] [Server thread/WARN]:     at org.bukkit.Bukkit.dispatchCommand(Bukkit.java:1114)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//dev.lone.itemsadder.Core.OtherPlugins.MythicMobs.MythicMobsHook.reload(SourceFile:47)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.bc.a(SourceFile:433)
[21:59:37] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:44)
[21:59:37] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.ahi.a(SourceFile:75)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.e(SourceFile:966)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.afb.f(SourceFile:130)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.a(SourceFile:964)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1225)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[21:59:37] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:59:37] [Server thread/WARN]: java.lang.IllegalArgumentException: Could not adapt item stack of invalid custom drop type 'key_golden'
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.BukkitBootstrap.createItem(BukkitBootstrap.java:377)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.parse(BukkitItemMatcher.java:110)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.lambda$new$0(BukkitItemMatcher.java:45)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:154)
[21:59:37] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:151)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.doReloadPart2(ReloadCommand.java:184)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.onCommand(ReloadCommand.java:79)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:64)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:55)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:165)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:1001)
[21:59:37] [Server thread/WARN]:     at org.bukkit.Bukkit.dispatchCommand(Bukkit.java:1114)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//dev.lone.itemsadder.Core.OtherPlugins.MythicMobs.MythicMobsHook.reload(SourceFile:47)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.bc.a(SourceFile:433)
[21:59:37] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:44)
[21:59:37] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.ahi.a(SourceFile:75)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.e(SourceFile:966)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.afb.f(SourceFile:130)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.a(SourceFile:964)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1225)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[21:59:37] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:59:37] [Server thread/WARN]: java.lang.IllegalArgumentException: Could not adapt item stack of invalid custom drop type 'key_aqua'
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.BukkitBootstrap.createItem(BukkitBootstrap.java:377)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.parse(BukkitItemMatcher.java:110)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.lambda$new$0(BukkitItemMatcher.java:45)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:154)
[21:59:37] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:151)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.doReloadPart2(ReloadCommand.java:184)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.onCommand(ReloadCommand.java:79)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:64)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:55)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:165)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:1001)
[21:59:37] [Server thread/WARN]:     at org.bukkit.Bukkit.dispatchCommand(Bukkit.java:1114)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//dev.lone.itemsadder.Core.OtherPlugins.MythicMobs.MythicMobsHook.reload(SourceFile:47)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.bc.a(SourceFile:433)
[21:59:37] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:44)
[21:59:37] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.ahi.a(SourceFile:75)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.e(SourceFile:966)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.afb.f(SourceFile:130)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.a(SourceFile:964)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1225)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[21:59:37] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:59:37] [Server thread/WARN]: java.lang.IllegalArgumentException: Could not adapt item stack of invalid custom drop type 'key_bone'
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.BukkitBootstrap.createItem(BukkitBootstrap.java:377)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.parse(BukkitItemMatcher.java:110)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.lambda$new$0(BukkitItemMatcher.java:45)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:154)
[21:59:37] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:151)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.doReloadPart2(ReloadCommand.java:184)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.onCommand(ReloadCommand.java:79)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:64)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:55)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:165)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:1001)
[21:59:37] [Server thread/WARN]:     at org.bukkit.Bukkit.dispatchCommand(Bukkit.java:1114)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//dev.lone.itemsadder.Core.OtherPlugins.MythicMobs.MythicMobsHook.reload(SourceFile:47)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.bc.a(SourceFile:433)
[21:59:37] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:44)
[21:59:37] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.ahi.a(SourceFile:75)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.e(SourceFile:966)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.afb.f(SourceFile:130)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.a(SourceFile:964)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1225)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[21:59:37] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:59:37] [Server thread/WARN]: java.lang.IllegalArgumentException: Could not adapt item stack of invalid custom drop type 'key_forest'
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.BukkitBootstrap.createItem(BukkitBootstrap.java:377)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.parse(BukkitItemMatcher.java:110)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.lambda$new$0(BukkitItemMatcher.java:45)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:154)
[21:59:37] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:151)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.doReloadPart2(ReloadCommand.java:184)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.onCommand(ReloadCommand.java:79)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:64)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:55)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:165)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:1001)
[21:59:37] [Server thread/WARN]:     at org.bukkit.Bukkit.dispatchCommand(Bukkit.java:1114)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//dev.lone.itemsadder.Core.OtherPlugins.MythicMobs.MythicMobsHook.reload(SourceFile:47)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.bc.a(SourceFile:433)
[21:59:37] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:44)
[21:59:37] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.ahi.a(SourceFile:75)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.e(SourceFile:966)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.afb.f(SourceFile:130)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.a(SourceFile:964)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1225)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[21:59:37] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:59:37] [Server thread/WARN]: java.lang.IllegalArgumentException: Could not adapt item stack of invalid custom drop type 'key_ice'
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.BukkitBootstrap.createItem(BukkitBootstrap.java:377)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.parse(BukkitItemMatcher.java:110)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.lambda$new$0(BukkitItemMatcher.java:45)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:154)
[21:59:37] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:151)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.doReloadPart2(ReloadCommand.java:184)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.onCommand(ReloadCommand.java:79)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:64)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:55)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:165)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:1001)
[21:59:37] [Server thread/WARN]:     at org.bukkit.Bukkit.dispatchCommand(Bukkit.java:1114)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//dev.lone.itemsadder.Core.OtherPlugins.MythicMobs.MythicMobsHook.reload(SourceFile:47)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.bc.a(SourceFile:433)
[21:59:37] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:44)
[21:59:37] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.ahi.a(SourceFile:75)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.e(SourceFile:966)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.afb.f(SourceFile:130)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.a(SourceFile:964)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1225)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[21:59:37] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:59:37] [Server thread/WARN]: java.lang.IllegalArgumentException: Could not adapt item stack of invalid custom drop type 'key_light'
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.BukkitBootstrap.createItem(BukkitBootstrap.java:377)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.parse(BukkitItemMatcher.java:110)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.lambda$new$0(BukkitItemMatcher.java:45)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:154)
[21:59:37] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:151)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.doReloadPart2(ReloadCommand.java:184)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.onCommand(ReloadCommand.java:79)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:64)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:55)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:165)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:1001)
[21:59:37] [Server thread/WARN]:     at org.bukkit.Bukkit.dispatchCommand(Bukkit.java:1114)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//dev.lone.itemsadder.Core.OtherPlugins.MythicMobs.MythicMobsHook.reload(SourceFile:47)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.bc.a(SourceFile:433)
[21:59:37] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:44)
[21:59:37] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.ahi.a(SourceFile:75)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.e(SourceFile:966)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.afb.f(SourceFile:130)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.a(SourceFile:964)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1225)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[21:59:37] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:59:37] [Server thread/WARN]: java.lang.IllegalArgumentException: Could not adapt item stack of invalid custom drop type 'key_magma'
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.BukkitBootstrap.createItem(BukkitBootstrap.java:377)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.parse(BukkitItemMatcher.java:110)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.lambda$new$0(BukkitItemMatcher.java:45)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:154)
[21:59:37] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:151)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.doReloadPart2(ReloadCommand.java:184)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.onCommand(ReloadCommand.java:79)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:64)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:55)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:165)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:1001)
[21:59:37] [Server thread/WARN]:     at org.bukkit.Bukkit.dispatchCommand(Bukkit.java:1114)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//dev.lone.itemsadder.Core.OtherPlugins.MythicMobs.MythicMobsHook.reload(SourceFile:47)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.bc.a(SourceFile:433)
[21:59:37] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:44)
[21:59:37] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.ahi.a(SourceFile:75)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.e(SourceFile:966)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.afb.f(SourceFile:130)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.a(SourceFile:964)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1225)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[21:59:37] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:59:37] [Server thread/WARN]: java.lang.IllegalArgumentException: Could not adapt item stack of invalid custom drop type 'key_shadow'
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.BukkitBootstrap.createItem(BukkitBootstrap.java:377)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.parse(BukkitItemMatcher.java:110)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.lambda$new$0(BukkitItemMatcher.java:45)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:154)
[21:59:37] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:151)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.doReloadPart2(ReloadCommand.java:184)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.onCommand(ReloadCommand.java:79)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:64)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:55)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:165)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:1001)
[21:59:37] [Server thread/WARN]:     at org.bukkit.Bukkit.dispatchCommand(Bukkit.java:1114)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//dev.lone.itemsadder.Core.OtherPlugins.MythicMobs.MythicMobsHook.reload(SourceFile:47)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.bc.a(SourceFile:433)
[21:59:37] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:44)
[21:59:37] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.ahi.a(SourceFile:75)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.e(SourceFile:966)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.afb.f(SourceFile:130)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.a(SourceFile:964)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1225)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[21:59:37] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:59:37] [Server thread/WARN]: java.lang.IllegalArgumentException: Could not adapt item stack of invalid custom drop type 'key_wind'
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.BukkitBootstrap.createItem(BukkitBootstrap.java:377)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.parse(BukkitItemMatcher.java:110)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.adapters.BukkitItemMatcher.lambda$new$0(BukkitItemMatcher.java:45)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.lambda$runPostReload$1(MythicClock.java:154)
[21:59:37] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.clock.MythicClock.runPostReload(MythicClock.java:151)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.doReloadPart2(ReloadCommand.java:184)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.commands.ReloadCommand.onCommand(ReloadCommand.java:79)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:64)
[21:59:37] [Server thread/WARN]:     at MythicMobs-5.11.1.jar//io.lumine.mythic.bukkit.utils.commands.Command.onCommand(Command.java:55)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[21:59:37] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:165)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:1001)
[21:59:37] [Server thread/WARN]:     at org.bukkit.Bukkit.dispatchCommand(Bukkit.java:1114)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//dev.lone.itemsadder.Core.OtherPlugins.MythicMobs.MythicMobsHook.reload(SourceFile:47)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.bc.a(SourceFile:433)
[21:59:37] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:44)
[21:59:37] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[21:59:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[21:59:37] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.ahi.a(SourceFile:75)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.e(SourceFile:966)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.afb.f(SourceFile:130)
[21:59:37] [Server thread/WARN]:     at ItemsAdder_4.0.10-hotfix-1..jar//itemsadder.m.a.a(SourceFile:964)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[21:59:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1225)
[21:59:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[21:59:37] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:59:37] [Server thread/INFO]: [Mythic] Mythic has finished reloading!
[21:59:37] [Server thread/INFO]: [MythicMobs] Mythic has finished reloading!
[21:59:37] [Server thread/INFO]: Done (166.168s)! For help, type "help"
[21:59:37] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 23931ms or 478 ticks behind
[21:59:37] [Server thread/INFO]: Timings Reset
[21:59:37] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[21:59:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.9]
[21:59:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[21:59:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: checkitem [2.7.9]
[21:59:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: worldguard [1.4.2]
[21:59:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[21:59:38] [Server thread/INFO]: 5 placeholder hook(s) registered!
[21:59:38] [Server thread/INFO]: /200.7.121.141:13514 lost connection: Disconnected
[21:59:38] [Server thread/INFO]: [MythicMobs] Loaded 0 skill commands
[21:59:38] [Server thread/INFO]: [MythicMobs] Loaded 0 skill commands
[21:59:38] [Server thread/INFO]: [MythicMobs] Loading ProtocolLib listeners...
[21:59:42] [Craft Scheduler Thread - 6 - MythicMobs/INFO]: [Generation] Starting Pack Generator...
[21:59:42] [Craft Scheduler Thread - 6 - MythicMobs/INFO]: [Generation] Processing ModelEngine Pack...
[21:59:43] [Craft Scheduler Thread - 6 - MythicMobs/INFO]: [Generation] Generating Custom Blocks...
[21:59:43] [Craft Scheduler Thread - 6 - MythicMobs/INFO]: [Generation] Generating Items...
[21:59:43] [Craft Scheduler Thread - 6 - MythicMobs/INFO]: [Generation] Assigning Legacy CMD Materials...
[21:59:43] [Craft Scheduler Thread - 6 - MythicMobs/INFO]: [Generation] Generating Legacy Definitions...
[21:59:43] [Craft Scheduler Thread - 6 - MythicMobs/INFO]: [Generation] Generating Sounds...
[21:59:43] [Craft Scheduler Thread - 6 - MythicMobs/INFO]: [Generation] Linking Custom Blocks...
[21:59:43] [Craft Scheduler Thread - 6 - MythicMobs/INFO]: [Generation] Generating Atlas...
[21:59:43] [Craft Scheduler Thread - 6 - MythicMobs/INFO]: [Generation] Zipping Pack...
[21:59:45] [Craft Scheduler Thread - 6 - MythicMobs/INFO]: [Generation] Generation Completed in 2860ms
[21:59:59] [User Authenticator #0/INFO]: UUID of player Rique___ is cec8f11d-a05c-36f9-8275-d9710be6ff1a
[21:59:59] [Server thread/INFO]: [ItemsAdder] Another plugin sent a resourcepack. URL: https://lobfile.com/file/uFxcUgmT.zip
[22:00:58] [Server thread/INFO]: [ItemsAdder] [Pack] Failed to apply resourcepack to player Rique___.
[22:00:58] [Server thread/INFO]: [ItemsAdder] You have to setup the resourcepack hosting before using the plugin: https://a.devs.beer/ia-host-pack
[22:00:58] [Server thread/ERROR]: Could not pass event PlayerJoinEvent to DiscordSRV v1.30.4
java.lang.NoClassDefFoundError: de/myzelyam/api/vanish/VanishAPI
    at DiscordSRV-Build-1.30.4.jar/github.scarsz.discordsrv.hooks.vanish.SuperVanishHook.isVanished(SuperVanishHook.java:109) ~[DiscordSRV-Build-1.30.4.jar:?]
    at DiscordSRV-Build-1.30.4.jar/github.scarsz.discordsrv.util.PlayerUtil.isVanished(PlayerUtil.java:160) ~[DiscordSRV-Build-1.30.4.jar:?]
    at DiscordSRV-Build-1.30.4.jar/github.scarsz.discordsrv.listeners.PlayerJoinLeaveListener.onPlayerJoin(PlayerJoinLeaveListener.java:67) ~[DiscordSRV-Build-1.30.4.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor617.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-133-3cb8529]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.players.PlayerList.placeNewPlayer(PlayerList.java:347) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.handleConfigurationFinished(ServerConfigurationPacketListenerImpl.java:173) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:22) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:13) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:56) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:151) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1535) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:201) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:125) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1512) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1505) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:135) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1464) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1471) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1316) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: de.myzelyam.api.vanish.VanishAPI
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 29 more
[22:00:58] [Server thread/INFO]: Rique___ joined the game
[22:00:58] [Server thread/INFO]: Rique___[/200.7.121.141:14815] logged in with entity id 90 at ([world]-4.880480246202283, 102.15814676123665, -8677.559472618539)
[22:01:00] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2625ms or 52 ticks behind
[22:01:09] [Server thread/INFO]: [ItemsAdder] Another plugin sent a resourcepack. URL: https://github.com/cometcake575/Origins-Reborn/raw/refs/heads/main/OriginsPack.zip
[22:01:11] [Server thread/INFO]: Server Plugins (63):
[22:01:11] [Server thread/INFO]: Bukkit Plugins:
[22:01:11] [Server thread/INFO]:  - BreweryX, ChatDisable, Citizens, ClearLag, CMILib, ConditionalEvents, CosmeticsCore, CustomCrafting, CustomCrops, CustomizablePlayerModels
[22:01:11] [Server thread/INFO]:  Denizen, DiscordSRV, emotecraft, Epidemic, Essentials, InteractionVisualizer, ItemsAdder, LoneLibs, LuckPerms, MCPets
[22:01:11] [Server thread/INFO]:  MMOCore, MMOInventory, MMOItems, ModelEngine, Multiverse-Core, Multiverse-Portals, Multiverse-SignPortals, MythicCrucible, MythicLib, MythicMobs
[22:01:11] [Server thread/INFO]:  NBTAPI, nLogin, OpeNLogin, Origins-Fantasy, Origins-Magic, Origins-Mobs, Origins-Monsters, Origins-Reborn, packetevents, PlaceholderAPI
[22:01:11] [Server thread/INFO]:  PlasmoVoice, PlayerParticles, PostPigeon, ProtocolLib, pv-addon-broadcast, pv-addon-discs, pv-addon-lavaplayer-lib, pv-addon-whisper, RealisticSeasons, ReviveMe
[22:01:11] [Server thread/INFO]:  RPProfessions, ShoobadomChatBubbles, SkBee, SkinsRestorer, Skript, *SkyParticles, SuperVanish, TAB, WolfyUtilities, WorldEdit
[22:01:11] [Server thread/INFO]:  WorldGuard, WorldGuardEvents, WorldGuardExtraFlags