Paste #132293: sa

Date: 2025/03/31 14:31:55 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[21:28:20] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.6+7-Ubuntu-122.04.1; Ubuntu null) on Linux 5.15.0-135-generic (amd64)
[21:28:20] [ServerMain/INFO]: [bootstrap] Loading Leaf 1.21.1-DEV-main@d9b03b0 (2024-12-15T13:17:17Z) for Minecraft 1.21.1
[21:28:21] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[21:28:28] [ServerMain/INFO]: [FileProviderSource] The spark plugin will not be loaded as this server bundles the spark profiler.
[21:28:28] [ServerMain/INFO]: [PluginInitializerManager] Initialized 86 plugins
[21:28:28] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (2):
 - HuskHomes (4.9.5), HuskSync (3.7.3)
[21:28:28] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (84):
 - AFKPlus (3.4.9), AFKPlusPAPI (1.0.6), AquaticCrates (2.7.5), BattlePass (4.7.0), CMILib (1.5.3.5), ChatControl (11.2.7), CinematicWarp (1.0), Citizens (2.0.35-SNAPSHOT (build 3598)), CommandBlocks (1.4.0), CommandRegions (1.2.1), ConditionalEvents (4.61.1), CustomCrops (3.6.31), CustomFishing (2.3.6), CustomNameplates (3.0.24), DecentHolograms (2.8.15), DeluxeMenus (1.14.0-Release), DisableJoinMessage (1.0), DriveBackupV2 (1.6.1), EpicHeist (1.0.0), EpicPluginLib (2.6.1), FastAsyncWorldEdit (2.13.1-SNAPSHOT-1063;7fa7c6f), FlyPlus (2.5), FortuneWheel (RELEASE-1.0.3), GLeaderOS (1.0.0), GSit (2.2.0), GrimAC (2.3.69), HuskHomesGUI (2.3), HyanseExchange (1.0), HyronicFriends (1.3.12), ItemEdit (3.7.0), ItemTag (3.7.1), ItemsAdder (4.0.9), Jobs (5.2.4.6), LitLibs (1.1.5), LiteBans (2.15.1), LoneLibs (1.0.65), LuckPerms (5.4.156), LushRewards (3.2.0), MFurniture (1.1.5.1), ModelEngine (R4.0.8), MyCommand (5.7.4), MythicMobs (5.8.1-${CI_COMMIT_SHORT_SHA}), NBTAPI (2.14.1), ODailyQuests (2.3.0), PlaceholderAPI (2.11.6), PlayMoreSounds (4.2), PlayerKits2 (1.17.1), PlayerProfile (1.3.0), Playtimes (1.6.1), PlugManX (2.4.1), ProtocolLib (5.3.0), RFriend (1.0), RHaber (1.0), RLevel (1.0), RSound (1.0), RedisEconomy (4.3.8-SNAPSHOT), RotatingHeads2 (1.2.0), RunicCore (1.0-SNAPSHOT), ScreenEffects (1.0.18), SilkSpawners (8.2.0), SkinsRestorer (15.6.1), Sudo (1), SupremeTags (2.0.7.1), TAB-Bridge (6.0.1), VanillaMinimaps (1.0.1), Vault (1.7.3-b131), ViaVersion (5.2.1), WBlackSmith (1.0-SNAPSHOT), WCop (1.0), WDeath (1.0-SNAPSHOT), WLook (1.0.1), WPlaceholderAPI (1.0-SNAPSHOT), WQuest (1.0), WStart (1.0), WStorage (1.0-SNAPSHOT), WTrade (1.0), WorldGuard (7.0.12+829a4a4), WorldGuardExtraFlags (4.2.4-SNAPSHOT), Wtimer (1.0), ajLeaderboards (2.9.0), ajQueue (2.7.0), zAuctionHouseRedis (2.0.2), zAuctionHouseV3 (3.2.3.1), zMenu (1.0.3.8)
[21:28:38] [ServerMain/INFO]: [LeafConfig] Loading config...
[21:28:38] [ServerMain/INFO]: [LeafConfig] Successfully loaded config in 138ms.
[21:28:38] [ServerMain/WARN]: [Leaf] You are running Leaf on Linux with Ubuntu
[21:28:38] [ServerMain/WARN]: [Leaf] It's better to switch to GraalVM, you can download it in https://www.graalvm.org/downloads/
[21:28:38] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[21:28:41] [ServerMain/INFO]: Loaded 1290 recipes
[21:28:42] [ServerMain/INFO]: Loaded 1399 advancements
[21:28:42] [Server thread/INFO]: Starting minecraft server version 1.21.1
[21:28:42] [Server thread/WARN]: ****************************
[21:28:42] [Server thread/WARN]: YOU ARE RUNNING THIS SERVER AS AN ADMINISTRATIVE OR ROOT USER. THIS IS NOT ADVISED.
[21:28:42] [Server thread/WARN]: YOU ARE OPENING YOURSELF UP TO POTENTIAL RISKS WHEN DOING THIS.
[21:28:42] [Server thread/WARN]: FOR MORE INFORMATION, SEE https://madelinemiller.dev/blog/root-minecraft-server/
[21:28:42] [Server thread/WARN]: ****************************
[21:28:42] [Server thread/INFO]: Loading properties
[21:28:42] [Server thread/INFO]: This server is running Leaf version 1.21.1-DEV-main@d9b03b0 (2024-12-15T13:17:17Z) (Implementing API version 1.21.1-R0.1-SNAPSHOT)
[21:28:45] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[21:28:45] [Server thread/INFO]: Server Ping Player Sample Count: 12
[21:28:45] [Server thread/INFO]: Using 4 threads for Netty based IO
[21:28:45] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 2 worker threads, and population gen parallelism of 2 threads
[21:28:46] [Server thread/INFO]: Default game type: SURVIVAL
[21:28:46] [Server thread/INFO]: Generating keypair
[21:28:46] [Server thread/INFO]: Starting Minecraft server on *:11255
[21:28:46] [Server thread/INFO]: Using epoll channel type
[21:28:46] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[21:28:46] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
[21:28:47] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loading 4 libraries... please wait
[21:28:47] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-api/4.16.0/adventure-api-4.16.0.jar
[21:28:47] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-key/4.16.0/adventure-key-4.16.0.jar
[21:28:47] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /root/spawn1211/spawn/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[21:28:47] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /root/spawn1211/spawn/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[21:28:47] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /root/spawn1211/spawn/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[21:28:47] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-platform-bukkit/4.3.2/adventure-platform-bukkit-4.3.2.jar
[21:28:47] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-platform-api/4.3.2/adventure-platform-api-4.3.2.jar
[21:28:47] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.2/adventure-text-serializer-bungeecord-4.3.2.jar
[21:28:47] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[21:28:47] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[21:28:47] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[21:28:47] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-platform-facet/4.3.2/adventure-platform-facet-4.3.2.jar
[21:28:47] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-platform-viaversion/4.3.2/adventure-platform-viaversion-4.3.2.jar
[21:28:47] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-text-minimessage/4.16.0/adventure-text-minimessage-4.16.0.jar
[21:28:47] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-text-serializer-gson/4.16.0/adventure-text-serializer-gson-4.16.0.jar
[21:28:47] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-text-serializer-json/4.16.0/adventure-text-serializer-json-4.16.0.jar
[21:28:47] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /root/spawn1211/spawn/libraries/net/kyori/option/1.0.0/option-1.0.0.jar
[21:28:47] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /root/spawn1211/spawn/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[21:28:47] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loading 3 libraries... please wait
[21:28:47] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
[21:28:47] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
[21:28:47] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /root/spawn1211/spawn/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[21:28:47] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /root/spawn1211/spawn/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[21:28:47] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /root/spawn1211/spawn/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[21:28:47] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-text-serializer-gson/4.14.0/adventure-text-serializer-gson-4.14.0.jar
[21:28:47] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-text-serializer-json/4.14.0/adventure-text-serializer-json-4.14.0.jar
[21:28:47] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /root/spawn1211/spawn/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[21:28:47] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.0/adventure-text-serializer-bungeecord-4.3.0.jar
[21:28:47] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-text-serializer-legacy/4.13.0/adventure-text-serializer-legacy-4.13.0.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loading 14 libraries... please wait
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/beer/devs/FastNbt-jar/1.4.2/FastNbt-jar-1.4.2.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/org/apache/httpcomponents/httpmime/4.5.14/httpmime-4.5.14.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/commons-codec/commons-codec/1.11/commons-codec-1.11.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/net/sourceforge/streamsupport/speedy-math/1.0.0/speedy-math-1.0.0.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-api/4.18.0/adventure-api-4.18.0.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-key/4.18.0/adventure-key-4.18.0.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/org/jetbrains/annotations/26.0.1/annotations-26.0.1.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-text-serializer-gson/4.18.0/adventure-text-serializer-gson-4.18.0.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-text-serializer-json/4.18.0/adventure-text-serializer-json-4.18.0.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/net/kyori/option/1.0.0/option-1.0.0.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/com/google/auto/service/auto-service-annotations/1.1.1/auto-service-annotations-1.1.1.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.18.0/adventure-text-serializer-gson-legacy-impl-4.18.0.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-text-serializer-json-legacy-impl/4.18.0/adventure-text-serializer-json-legacy-impl-4.18.0.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-platform-bukkit/4.3.4/adventure-platform-bukkit-4.3.4.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-platform-api/4.3.4/adventure-platform-api-4.3.4.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.4/adventure-text-serializer-bungeecord-4.3.4.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-platform-facet/4.3.4/adventure-platform-facet-4.3.4.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-platform-viaversion/4.3.4/adventure-platform-viaversion-4.3.4.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-text-minimessage/4.18.0/adventure-text-minimessage-4.18.0.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/com/alibaba/fastjson/2.0.43/fastjson-2.0.43.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/com/alibaba/fastjson2/fastjson2-extension/2.0.43/fastjson2-extension-2.0.43.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/com/alibaba/fastjson2/fastjson2/2.0.43/fastjson2-2.0.43.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/com/jayway/jsonpath/json-path/2.8.0/json-path-2.8.0.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/net/minidev/json-smart/2.4.10/json-smart-2.4.10.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/net/minidev/accessors-smart/2.4.9/accessors-smart-2.4.9.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/org/ow2/asm/asm/9.3/asm-9.3.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/com/jeff-media/armor-equip-event/1.0.3/armor-equip-event-1.0.3.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/fr/skytasul/glowingentities/1.4.3/glowingentities-1.4.3.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /root/spawn1211/spawn/libraries/fr/skytasul/reflection-remapper/1.0.0/reflection-remapper-1.0.0.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [BattlePass] Loading 3 libraries... please wait
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [BattlePass] Loaded library /root/spawn1211/spawn/libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [BattlePass] Loaded library /root/spawn1211/spawn/libraries/com/zaxxer/HikariCP/3.4.5/HikariCP-3.4.5.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [BattlePass] Loaded library /root/spawn1211/spawn/libraries/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [LoneLibs] Loading 1 libraries... please wait
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [LoneLibs] Loaded library /root/spawn1211/spawn/libraries/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1.jar
[21:28:48] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loading 5 libraries... please wait
[21:28:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-api/4.16.0/adventure-api-4.16.0.jar
[21:28:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-key/4.16.0/adventure-key-4.16.0.jar
[21:28:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /root/spawn1211/spawn/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[21:28:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /root/spawn1211/spawn/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[21:28:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /root/spawn1211/spawn/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[21:28:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-platform-bukkit/4.3.2/adventure-platform-bukkit-4.3.2.jar
[21:28:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-platform-api/4.3.2/adventure-platform-api-4.3.2.jar
[21:28:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.2/adventure-text-serializer-bungeecord-4.3.2.jar
[21:28:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[21:28:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[21:28:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-platform-facet/4.3.2/adventure-platform-facet-4.3.2.jar
[21:28:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-platform-viaversion/4.3.2/adventure-platform-viaversion-4.3.2.jar
[21:28:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-text-minimessage/4.16.0/adventure-text-minimessage-4.16.0.jar
[21:28:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-text-serializer-gson/4.16.0/adventure-text-serializer-gson-4.16.0.jar
[21:28:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-text-serializer-json/4.16.0/adventure-text-serializer-json-4.16.0.jar
[21:28:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /root/spawn1211/spawn/libraries/net/kyori/option/1.0.0/option-1.0.0.jar
[21:28:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /root/spawn1211/spawn/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[21:28:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-text-serializer-legacy/4.16.0/adventure-text-serializer-legacy-4.16.0.jar
[21:28:49] [Server thread/INFO]: [SpigotLibraryLoader] [ScreenEffects] Loading 4 libraries... please wait
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [ScreenEffects] Loaded library /root/spawn1211/spawn/libraries/beer/devs/FastNbt-jar/1.4.2/FastNbt-jar-1.4.2.jar
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [ScreenEffects] Loaded library /root/spawn1211/spawn/libraries/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1.jar
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [ScreenEffects] Loaded library /root/spawn1211/spawn/libraries/commons-io/commons-io/2.18.0/commons-io-2.18.0.jar
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [ScreenEffects] Loaded library /root/spawn1211/spawn/libraries/org/jetbrains/annotations/17.0.0/annotations-17.0.0.jar
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [GLeaderOS] Loading 2 libraries... please wait
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [GLeaderOS] Loaded library /root/spawn1211/spawn/libraries/org/mariadb/jdbc/mariadb-java-client/3.5.0/mariadb-java-client-3.5.0.jar
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [GLeaderOS] Loaded library /root/spawn1211/spawn/libraries/com/github/waffle/waffle-jna/3.3.0/waffle-jna-3.3.0.jar
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [GLeaderOS] Loaded library /root/spawn1211/spawn/libraries/net/java/dev/jna/jna/5.13.0/jna-5.13.0.jar
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [GLeaderOS] Loaded library /root/spawn1211/spawn/libraries/net/java/dev/jna/jna-platform/5.13.0/jna-platform-5.13.0.jar
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [GLeaderOS] Loaded library /root/spawn1211/spawn/libraries/org/slf4j/jcl-over-slf4j/2.0.7/jcl-over-slf4j-2.0.7.jar
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [GLeaderOS] Loaded library /root/spawn1211/spawn/libraries/com/github/ben-manes/caffeine/caffeine/2.9.3/caffeine-2.9.3.jar
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [GLeaderOS] Loaded library /root/spawn1211/spawn/libraries/com/google/errorprone/error_prone_annotations/2.10.0/error_prone_annotations-2.10.0.jar
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [GLeaderOS] Loaded library /root/spawn1211/spawn/libraries/org/checkerframework/checker-qual/3.32.0/checker-qual-3.32.0.jar
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [GLeaderOS] Loaded library /root/spawn1211/spawn/libraries/com/zaxxer/HikariCP/6.0.0/HikariCP-6.0.0.jar
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [GLeaderOS] Loaded library /root/spawn1211/spawn/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [HyronicFriends] Loading 5 libraries... please wait
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [HyronicFriends] Loaded library /root/spawn1211/spawn/libraries/com/zaxxer/HikariCP/5.1.0/HikariCP-5.1.0.jar
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [HyronicFriends] Loaded library /root/spawn1211/spawn/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [HyronicFriends] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-api/4.16.0/adventure-api-4.16.0.jar
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [HyronicFriends] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-key/4.16.0/adventure-key-4.16.0.jar
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [HyronicFriends] Loaded library /root/spawn1211/spawn/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [HyronicFriends] Loaded library /root/spawn1211/spawn/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [HyronicFriends] Loaded library /root/spawn1211/spawn/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [HyronicFriends] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-platform-bukkit/4.3.2/adventure-platform-bukkit-4.3.2.jar
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [HyronicFriends] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-platform-api/4.3.2/adventure-platform-api-4.3.2.jar
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [HyronicFriends] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.2/adventure-text-serializer-bungeecord-4.3.2.jar
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [HyronicFriends] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [HyronicFriends] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [HyronicFriends] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [HyronicFriends] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [HyronicFriends] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-platform-facet/4.3.2/adventure-platform-facet-4.3.2.jar
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [HyronicFriends] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-platform-viaversion/4.3.2/adventure-platform-viaversion-4.3.2.jar
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [HyronicFriends] Loaded library /root/spawn1211/spawn/libraries/net/kyori/adventure-text-minimessage/4.16.0/adventure-text-minimessage-4.16.0.jar
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [HyronicFriends] Loaded library /root/spawn1211/spawn/libraries/joda-time/joda-time/2.12.7/joda-time-2.12.7.jar
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [AquaticCrates] Loading 1 libraries... please wait
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [AquaticCrates] Loaded library /root/spawn1211/spawn/libraries/org/jetbrains/kotlin/kotlin-stdlib/2.0.0/kotlin-stdlib-2.0.0.jar
[21:28:50] [Server thread/INFO]: [SpigotLibraryLoader] [AquaticCrates] Loaded library /root/spawn1211/spawn/libraries/org/jetbrains/annotations/13.0/annotations-13.0.jar
[21:29:10] [Server thread/WARN]: Legacy plugin Playtimes v1.6.1 does not specify an api-version.
[21:29:10] [Server thread/INFO]: [SpigotLibraryLoader] [O'DailyQuests] Loading 2 libraries... please wait
[21:29:10] [Server thread/INFO]: [SpigotLibraryLoader] [O'DailyQuests] Loaded library /root/spawn1211/spawn/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[21:29:10] [Server thread/INFO]: [SpigotLibraryLoader] [O'DailyQuests] Loaded library /root/spawn1211/spawn/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[21:29:10] [Server thread/INFO]: [SpigotLibraryLoader] [O'DailyQuests] Loaded library /root/spawn1211/spawn/libraries/com/h2database/h2/2.1.214/h2-2.1.214.jar
[21:29:10] [Server thread/WARN]: Legacy plugin DisableJoinMessage v1.0 does not specify an api-version.
[21:29:11] [Server thread/WARN]: Legacy plugin RedisEconomy v4.3.8-SNAPSHOT does not specify an api-version.
[21:29:11] [Server thread/INFO]: [SpigotLibraryLoader] [RedisEconomy] Loading 1 libraries... please wait
[21:29:11] [Server thread/INFO]: [SpigotLibraryLoader] [RedisEconomy] Loaded library /root/spawn1211/spawn/libraries/io/lettuce/lettuce-core/6.2.4.RELEASE/lettuce-core-6.2.4.RELEASE.jar
[21:29:11] [Server thread/INFO]: [SpigotLibraryLoader] [RedisEconomy] Loaded library /root/spawn1211/spawn/libraries/io/netty/netty-common/4.1.91.Final/netty-common-4.1.91.Final.jar
[21:29:11] [Server thread/INFO]: [SpigotLibraryLoader] [RedisEconomy] Loaded library /root/spawn1211/spawn/libraries/io/netty/netty-handler/4.1.91.Final/netty-handler-4.1.91.Final.jar
[21:29:11] [Server thread/INFO]: [SpigotLibraryLoader] [RedisEconomy] Loaded library /root/spawn1211/spawn/libraries/io/netty/netty-resolver/4.1.91.Final/netty-resolver-4.1.91.Final.jar
[21:29:11] [Server thread/INFO]: [SpigotLibraryLoader] [RedisEconomy] Loaded library /root/spawn1211/spawn/libraries/io/netty/netty-buffer/4.1.91.Final/netty-buffer-4.1.91.Final.jar
[21:29:11] [Server thread/INFO]: [SpigotLibraryLoader] [RedisEconomy] Loaded library /root/spawn1211/spawn/libraries/io/netty/netty-transport-native-unix-common/4.1.91.Final/netty-transport-native-unix-common-4.1.91.Final.jar
[21:29:11] [Server thread/INFO]: [SpigotLibraryLoader] [RedisEconomy] Loaded library /root/spawn1211/spawn/libraries/io/netty/netty-codec/4.1.91.Final/netty-codec-4.1.91.Final.jar
[21:29:11] [Server thread/INFO]: [SpigotLibraryLoader] [RedisEconomy] Loaded library /root/spawn1211/spawn/libraries/io/netty/netty-transport/4.1.91.Final/netty-transport-4.1.91.Final.jar
[21:29:11] [Server thread/INFO]: [SpigotLibraryLoader] [RedisEconomy] Loaded library /root/spawn1211/spawn/libraries/io/projectreactor/reactor-core/3.4.29/reactor-core-3.4.29.jar
[21:29:11] [Server thread/INFO]: [SpigotLibraryLoader] [RedisEconomy] Loaded library /root/spawn1211/spawn/libraries/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar
[21:29:11] [Server thread/INFO]: [SpigotLibraryLoader] [zAuctionHouseRedis] Loading 1 libraries... please wait
[21:29:11] [Server thread/INFO]: [SpigotLibraryLoader] [zAuctionHouseRedis] Loaded library /root/spawn1211/spawn/libraries/redis/clients/jedis/5.2.0/jedis-5.2.0.jar
[21:29:11] [Server thread/INFO]: [SpigotLibraryLoader] [zAuctionHouseRedis] Loaded library /root/spawn1211/spawn/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[21:29:11] [Server thread/INFO]: [SpigotLibraryLoader] [zAuctionHouseRedis] Loaded library /root/spawn1211/spawn/libraries/org/apache/commons/commons-pool2/2.12.0/commons-pool2-2.12.0.jar
[21:29:11] [Server thread/INFO]: [SpigotLibraryLoader] [zAuctionHouseRedis] Loaded library /root/spawn1211/spawn/libraries/org/json/json/20240303/json-20240303.jar
[21:29:11] [Server thread/INFO]: [SpigotLibraryLoader] [zAuctionHouseRedis] Loaded library /root/spawn1211/spawn/libraries/com/google/code/gson/gson/2.11.0/gson-2.11.0.jar
[21:29:11] [Server thread/INFO]: [SpigotLibraryLoader] [zAuctionHouseRedis] Loaded library /root/spawn1211/spawn/libraries/com/google/errorprone/error_prone_annotations/2.27.0/error_prone_annotations-2.27.0.jar
[21:29:11] [Server thread/WARN]: Legacy plugin CommandRegions v1.2.1 does not specify an api-version.
[21:29:11] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.2.1
[21:29:11] [Server thread/INFO]: [ViaVersion] ViaVersion 5.2.1 is now loaded. Registering protocol transformers and injecting...
[21:29:12] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[21:29:12] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[21:29:13] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.156
[21:29:14] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[21:29:14] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.13.1-SNAPSHOT-1063;7fa7c6f
[21:29:17] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@73325e2f]
[21:29:17] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.3.0
[21:29:18] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.12+829a4a4
[21:29:18] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[21:29:18] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.35-SNAPSHOT (build 3598)
[21:29:18] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.8.1-${CI_COMMIT_SHORT_SHA}
[21:29:18] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[21:29:18] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[21:29:18] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR4.0.8
[21:29:18] [Server thread/INFO]: [ItemsAdder] Loading server plugin ItemsAdder v4.0.9
[21:29:18] [Server thread/INFO]: [BattlePass] Loading server plugin BattlePass v4.7.0
[21:29:18] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.5.3.5
[21:29:18] [Server thread/INFO]: [CustomFishing] Loading server plugin CustomFishing v2.3.6
[21:29:18] [Server thread/INFO]: [Jobs] Loading server plugin Jobs v5.2.4.6
[21:29:18] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.15
[21:29:18] [Server thread/INFO]: [zMenu] Loading server plugin zMenu v1.0.3.8
[21:29:18] [Server thread/INFO]: [EpicPluginLib] Loading server plugin EpicPluginLib v2.6.1
[21:29:18] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.65
[21:29:18] [Server thread/INFO]: [LitLibs] Loading server plugin LitLibs v1.1.5
[21:29:18] [Server thread/INFO]: [SkinsRestorer] Loading server plugin SkinsRestorer v15.6.1
[21:29:18] [Server thread/INFO]: [ItemEdit] Loading server plugin ItemEdit v3.7.0
[21:29:18] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.14.1
[21:29:18] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[21:29:18] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[21:29:18] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'NBTAPI' to create a bStats instance!
[21:29:18] [Server thread/INFO]: [HuskHomes] Loading server plugin HuskHomes v4.9.5
[21:29:18] [Thread-7/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[21:29:19] [Server thread/INFO]: [HuskHomes] Registered 'on_load' hooks
[21:29:19] [Server thread/INFO]: [HuskHomes] Successfully loaded HuskHomes v4.9.5
[21:29:19] [Server thread/INFO]: [CustomCrops] Loading server plugin CustomCrops v3.6.31
[21:29:19] [Server thread/INFO]: [LiteBans] Loading server plugin LiteBans v2.15.1
[21:29:19] [Server thread/INFO]: [zAuctionHouseV3] Loading server plugin zAuctionHouseV3 v3.2.3.1
[21:29:19] [Server thread/INFO]: [AFKPlus] Loading server plugin AFKPlus v3.4.9
[21:29:19] [Server thread/INFO]: [SilkSpawners] Loading server plugin SilkSpawners v8.2.0
[21:29:19] [Server thread/INFO]: [LushRewards] Loading server plugin LushRewards v3.2.0
[21:29:19] [Server thread/INFO]: [LushRewards] Successfully enabled LushLib
[21:29:19] [Server thread/INFO]: [PlayMoreSounds] Loading server plugin PlayMoreSounds v4.2
[21:29:19] [Server thread/INFO]: [RunicCore] Loading server plugin RunicCore v1.0-SNAPSHOT
[21:29:19] [Server thread/INFO]: [CommandBlocks] Loading server plugin CommandBlocks v1.4.0
[21:29:19] [Server thread/INFO]: [CustomNameplates] Loading server plugin CustomNameplates v3.0.24
[21:29:20] [Server thread/INFO]: [ScreenEffects] Loading server plugin ScreenEffects v1.0.18
[21:29:20] [Server thread/INFO]: [RFriend] Loading server plugin RFriend v1.0
[21:29:20] [Server thread/INFO]: [GLeaderOS] Loading server plugin GLeaderOS v1.0.0
[21:29:20] [Server thread/INFO]: [HyanseExchange] Loading server plugin HyanseExchange v1.0
[21:29:20] [Server thread/INFO]: [DriveBackupV2] Loading server plugin DriveBackupV2 v1.6.1
[21:29:20] [Server thread/INFO]: [WStart] Loading server plugin WStart v1.0
[21:29:20] [Server thread/INFO]: [RHaber] Loading server plugin RHaber v1.0
[21:29:20] [Server thread/INFO]: [CinematicWarp] Loading server plugin CinematicWarp v1.0
[21:29:20] [Server thread/INFO]: [HyronicFriends] Loading server plugin HyronicFriends v1.3.12
[21:29:20] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.9.0
[21:29:20] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[21:29:20] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[21:29:20] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[21:29:20] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[21:29:20] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[21:29:20] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[21:29:20] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[21:29:20] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[21:29:20] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[21:29:20] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[21:29:20] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[21:29:20] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[21:29:20] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[21:29:20] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[21:29:20] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[21:29:20] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[21:29:20] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okhttp
[21:29:20] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okhttp
[21:29:20] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio
[21:29:20] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio
[21:29:20] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio-jvm
[21:29:20] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio-jvm
[21:29:20] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk8
[21:29:20] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk8
[21:29:20] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib
[21:29:20] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib
[21:29:20] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-common
[21:29:20] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-common
[21:29:20] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for annotations
[21:29:20] [Server thread/INFO]: [ajLeaderboards] Checksum matched for annotations
[21:29:20] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk7
[21:29:20] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk7
[21:29:20] [Server thread/INFO]: [FlyPlus] Loading server plugin FlyPlus v2.5
[21:29:20] [Server thread/INFO]: [WLook] Loading server plugin WLook v1.0.1
[21:29:21] [Server thread/INFO]: [TAB-Bridge] Loading server plugin TAB-Bridge v6.0.1
[21:29:21] [Server thread/INFO]: [AquaticCrates] Loading server plugin AquaticCrates v2.7.5
[21:29:21] [Server thread/INFO]: Loading the plugin...
[21:29:21] [Server thread/INFO]: [Playtimes] Loading server plugin Playtimes v1.6.1
[21:29:21] [Server thread/INFO]: [ItemTag] Loading server plugin ItemTag v3.7.1
[21:29:21] [Server thread/INFO]: [WPlaceholderAPI] Loading server plugin WPlaceholderAPI v1.0-SNAPSHOT
[21:29:21] [Server thread/INFO]: [RotatingHeads2] Loading server plugin RotatingHeads2 v1.2.0
[21:29:21] [Server thread/INFO]: [HuskHomesGUI] Loading server plugin HuskHomesGUI v2.3
[21:29:21] [Server thread/INFO]: [GSit] Loading server plugin GSit v2.2.0
[21:29:21] [Server thread/INFO]: [O'DailyQuests] Loading server plugin ODailyQuests v2.3.0
[21:29:21] [Server thread/INFO]: [PlayerProfile] Loading server plugin PlayerProfile v1.3.0
[21:29:21] [Server thread/INFO]: [ajQueue] Loading server plugin ajQueue v2.7.0
[21:29:21] [Server thread/INFO]: [DisableJoinMessage] Loading server plugin DisableJoinMessage v1.0
[21:29:21] [Server thread/INFO]: [WStorage] Loading server plugin WStorage v1.0-SNAPSHOT
[21:29:21] [Server thread/INFO]: [FortuneWheel] Loading server plugin FortuneWheel vRELEASE-1.0.3
[21:29:21] [Server thread/INFO]: [WDeath] Loading server plugin WDeath v1.0-SNAPSHOT
[21:29:21] [Server thread/INFO]: [WBlackSmith] Loading server plugin WBlackSmith v1.0-SNAPSHOT
[21:29:21] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.4-SNAPSHOT
[21:29:21] [Server thread/INFO]: [GrimAC] Loading server plugin GrimAC v2.3.69
[21:29:21] [Server thread/INFO]: [GrimAC] Loading PacketEvents...
[21:29:27] [Server thread/INFO]: [ChatControl] Loading server plugin ChatControl v11.2.7
[21:29:29] [Server thread/INFO]: [SupremeTags] Loading server plugin SupremeTags v2.0.7.1
[21:29:29] [Server thread/INFO]: [HuskSync] Loading server plugin HuskSync v3.7.3
[21:29:29] [Server thread/INFO]: [HuskSync] Initializing plugin config & locale files...
[21:29:29] [Server thread/INFO]: [HuskSync] Successfully initialized plugin config & locale files
[21:29:29] [Server thread/INFO]: [RSound] Loading server plugin RSound v1.0
[21:29:29] [Server thread/INFO]: [PlugManX] Loading server plugin PlugManX v2.4.1
[21:29:29] [Server thread/INFO]: [ConditionalEvents] Loading server plugin ConditionalEvents v4.61.1
[21:29:29] [Server thread/INFO]: [RedisEconomy] Loading server plugin RedisEconomy v4.3.8-SNAPSHOT
[21:29:30] [Server thread/INFO]: [RedisEconomy] Connecting to redis server redis://**************************************@localhost?clientName=RedisEconomy&timeout=2s...
[21:29:31] [Server thread/INFO]: [RedisEconomy] Redis server connected!
[21:29:31] [Server thread/INFO]: [RedisEconomy] Hooked into Vault!
[21:29:31] [Server thread/INFO]: [MFurniture] Loading server plugin MFurniture v1.1.5.1
[21:29:32] [Server thread/INFO]: [WQuest] Loading server plugin WQuest v1.0
[21:29:32] [Server thread/INFO]: [MyCommand] Loading server plugin MyCommand v5.7.4
[21:29:32] [Server thread/INFO]: [WTrade] Loading server plugin WTrade v1.0
[21:29:32] [Server thread/INFO]: [PlayerKits2] Loading server plugin PlayerKits2 v1.17.1
[21:29:32] [Server thread/INFO]: [zAuctionHouseRedis] Loading server plugin zAuctionHouseRedis v2.0.2
[21:29:32] [Server thread/INFO]: [AFKPlusPAPI] Loading server plugin AFKPlusPAPI v1.0.6
[21:29:32] [Server thread/INFO]: [CommandRegions] Loading server plugin CommandRegions v1.2.1
[21:29:32] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.0-Release
[21:29:32] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[21:29:32] [Server thread/INFO]: [VanillaMinimaps] Loading server plugin VanillaMinimaps v1.0.1
[21:29:32] [Server thread/INFO]: [Sudo] Loading server plugin Sudo v1
[21:29:32] [Server thread/INFO]: [WCop] Loading server plugin WCop v1.0
[21:29:32] [Server thread/INFO]: [Wtimer] Loading server plugin Wtimer v1.0
[21:29:32] [Server thread/INFO]: [EpicHeist] Loading server plugin EpicHeist v1.0.0
[21:29:32] [Server thread/INFO]: [RLevel] Loading server plugin RLevel v1.0
[21:29:32] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[21:29:32] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.156
[21:29:35] [Server thread/INFO]:         __    
[21:29:35] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.156
[21:29:35] [Server thread/INFO]:   |___ |      Running on Bukkit - Leaf
[21:29:35] [Server thread/INFO]: 
[21:29:35] [Server thread/INFO]: [LuckPerms] Loading configuration...
[21:29:36] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MYSQL]
[21:29:37] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[21:29:37] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[21:29:40] [Server thread/INFO]: [LuckPerms] Loading messaging service... [REDIS]
[21:29:43] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[21:29:44] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[21:29:45] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 13760ms)
[21:29:45] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[21:29:46] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[21:29:46] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[21:29:46] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[21:29:46] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.13.1-SNAPSHOT-1063;7fa7c6f
[21:29:46] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
[21:29:46] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!                                                                !!!
[21:29:46] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    Using history database whilst deleting disk history!        !!!
[21:29:46] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    You will not be able to rollback edits after a user logs    !!!
[21:29:46] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    out, recommended to disable delete-disk-on-logout if you    !!!
[21:29:46] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    you want to have full history rollback functionality.       !!!
[21:29:46] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    Disable use-database if you do not need to have rollback    !!!
[21:29:46] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    functionality and wish to disable this warning.             !!!
[21:29:46] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!                                                                !!!
[21:29:46] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
[21:29:46] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[21:29:46] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[21:29:46] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[21:29:47] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[21:29:47] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_R1.PaperweightFaweAdapter as the Bukkit adapter
[21:29:48] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.3.0
[21:29:48] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR4.0.8
[21:29:49] [ForkJoinPool.commonPool-worker-2/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 12 build(s) out of date.
You are running build 1063, the latest version is build 1075.
Update at https://ci.athion.net/job/FastAsyncWorldEdit
[21:29:49] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.65
[21:29:49] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v15.6.1
[21:29:50] [Server thread/WARN]: [SkinsRestorer] You must agree to the rules at 'commands.perSkinPermissionsConsent' in the config to use per skin permissions.
[21:29:50] [Server thread/INFO]: [SkinsRestorer] -------------------------/Warning\-------------------------
[21:29:50] [Server thread/INFO]: [SkinsRestorer] This plugin is running in PROXY mode!
[21:29:50] [Server thread/INFO]: [SkinsRestorer] You have to do all configuration at config file
[21:29:50] [Server thread/INFO]: [SkinsRestorer] inside your BungeeCord/Velocity server.
[21:29:50] [Server thread/INFO]: [SkinsRestorer] (<proxy>/plugins/SkinsRestorer/)
[21:29:50] [Server thread/INFO]: [SkinsRestorer] -------------------------\Warning/-------------------------
[21:29:50] [Server thread/INFO]: [SkinsRestorer] Running on Minecraft 1.21.1.
[21:29:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: skinsrestorer [15.6.1]
[21:29:51] [Server thread/INFO]: [SkinsRestorer] PlaceholderAPI expansion registered!
[21:29:51] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.4.1
[21:29:51] [Server thread/WARN]: [PlugManX] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[21:29:51] [Server thread/WARN]: [PlugManX] It seems like you're running on paper.
[21:29:51] [Server thread/WARN]: [PlugManX] PlugManX cannot interact with paper-plugins, yet.
[21:29:51] [Server thread/WARN]: [PlugManX] Also, if you encounter any issues, please join my discord: https://discord.gg/GxEFhVY6ff
[21:29:51] [Server thread/WARN]: [PlugManX] Or create an issue on GitHub: https://github.com/TheBlackEntity/PlugMan
[21:29:51] [Server thread/WARN]: [PlugManX] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[21:29:51] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer] ----------------------------------------------
[21:29:51] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     +==================+
[21:29:51] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[21:29:51] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     |------------------|
[21:29:51] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     |    Proxy Mode    |
[21:29:51] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     +==================+
[21:29:51] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer] ----------------------------------------------
[21:29:51] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     Version: 15.6.1
[21:29:51] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     Commit: 8687003
[21:29:51] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     This is the latest version!
[21:29:51] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer] ----------------------------------------------
[21:29:51] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer] Do you have issues? Read our troubleshooting guide: https://skinsrestorer.net/docs/troubleshooting
[21:29:51] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer] Want to support SkinsRestorer? Consider donating: https://skinsrestorer.net/donate
[21:29:52] [Server thread/INFO]: [RedisEconomy] Enabling RedisEconomy v4.3.8-SNAPSHOT*
[21:29:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rediseco [1.0.0]
[21:29:53] [Server thread/INFO]: Preparing level "lobi"
[21:29:53] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[21:29:54] [Server thread/INFO]: Time elapsed: 74 ms
[21:29:54] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.2.1
[21:29:54] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21-1.21.1 (767)
[21:29:54] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.12+829a4a4
[21:29:54] [Server thread/INFO]: No TreeType mapping for TreeGenerator.TreeType.PALE_OAK
[21:29:54] [Server thread/INFO]: The above message is displayed because your FAWE version is newer than 1.21.1-DEV-d9b03b0 (MC: 1.21.1) and contains features of future minecraft versions which do not exist in 1.21.1-DEV-d9b03b0 (MC: 1.21.1) hence the tree type PALE_OAK is not available. This is not an error. This version of FAWE will work on your version of  Minecraft. This is an informative message only.
[21:29:54] [Server thread/INFO]: No TreeType mapping for TreeGenerator.TreeType.PALE_OAK_CREAKING
[21:29:54] [Server thread/INFO]: The above message is displayed because your FAWE version is newer than 1.21.1-DEV-d9b03b0 (MC: 1.21.1) and contains features of future minecraft versions which do not exist in 1.21.1-DEV-d9b03b0 (MC: 1.21.1) hence the tree type PALE_OAK_CREAKING is not available. This is not an error. This version of FAWE will work on your version of  Minecraft. This is an informative message only.
[21:29:54] [Server thread/INFO]: [WorldGuard] (lobi) TNT ignition is PERMITTED.
[21:29:54] [Server thread/INFO]: [WorldGuard] (lobi) Lighters are PERMITTED.
[21:29:54] [Server thread/INFO]: [WorldGuard] (lobi) Lava fire is PERMITTED.
[21:29:54] [Server thread/INFO]: [WorldGuard] (lobi) Fire spread is UNRESTRICTED.
[21:29:54] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'lobi'
[21:29:54] [Server thread/INFO]: [WorldGuard] Loading region data...
[21:29:55] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[21:29:55] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[21:29:56] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.35-SNAPSHOT (build 3598)
[21:29:56] [Server thread/INFO]: [Citizens] Loading external libraries
[21:29:56] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[21:29:57] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[21:29:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[21:29:57] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[21:29:57] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.8.1-${CI_COMMIT_SHORT_SHA}
[21:29:59] [Server thread/INFO]: [MythicMobs] Failed to parse class io.lumine.mythic.core.volatilecode.v1_21_R1.ai.goals.CreeperSwellGoal$MythicSwellGoal
[21:29:59] [Server thread/INFO]: [MythicMobs] Failed to parse class io.lumine.mythic.core.volatilecode.v1_21_R1.ai.goals.LookAtTargetGoal$LookAtTarget
[21:29:59] [Server thread/INFO]: [MythicMobs] Failed to parse class io.lumine.mythic.core.volatilecode.v1_21_R1.ai.goals.MeleeAttackGoal$ModifiedMeleeAttackGoal
[21:29:59] [Server thread/INFO]: [MythicMobs] Failed to parse class io.lumine.mythic.core.volatilecode.v1_21_R1.ai.goals.MoveToBlockGoal$GoToBlockGoal
[21:29:59] [Server thread/INFO]: [MythicMobs] Failed to parse class io.lumine.mythic.core.volatilecode.v1_21_R1.ai.goals.MoveToLavaGoal$StriderGoToLavaGoal
[21:29:59] [Server thread/INFO]: [MythicMobs] Failed to parse class io.lumine.mythic.core.volatilecode.v1_21_R1.ai.goals.MoveToWaterGoal$TurtleGoToWaterGoal
[21:29:59] [Server thread/INFO]: [MythicMobs] Failed to parse class io.lumine.mythic.core.volatilecode.v1_21_R1.ai.goals.SpiderAttackGoal$SpiderMeleeAttackGoal
[21:29:59] [Server thread/INFO]: [MythicMobs] Failed to parse class io.lumine.mythic.core.volatilecode.v1_21_R1.ai.goals.ZombieAttackGoal$ZombieMeleeAttackGoal
[21:30:00] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.21.1)...
[21:30:00] [Server thread/INFO]: [MythicMobs] The server is running Paper; enabled Paper exclusive functionality
[21:30:00] [Server thread/INFO]: [MythicMobs] Mythic Citizens Support has been enabled!
[21:30:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[21:30:01] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[21:30:01] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[21:30:01] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[21:30:01] [Server thread/INFO]: [MythicMobs] Base directory /root/spawn1211/spawn/plugins/MythicMobs/data
[21:30:01] [Server thread/INFO]: [MythicMobs] Module directory /root/spawn1211/spawn/plugins/MythicMobs/data/worlds
[21:30:05] [Server thread/INFO]: [MythicMobs] Loading Packs...
[21:30:06] [Server thread/INFO]: [MythicMobs] Loading Items...
[21:30:06] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[21:30:06] [Server thread/INFO]: [MythicMobs] Loading Skills...
[21:30:07] [Server thread/WARN]: [MythicMobs] Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<caster.hp><&fs><caster.mhp>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<caster.hp><&fs><caster.mhp>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<caster.hp><&fs><caster.mhp>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<caster.hp><&fs><caster.mhp>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error: Particle 'snow_shovel' is not supported by this version
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<target.itemstack_amount>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<target.itemstack_amount>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<random.float.0.8to1.2>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<random.float.0.8to1.2>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<random.float.0.8to1.2>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<random.float.0.8to1.2>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.eichpee>+20*<skill.var.amount_targets>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.1to15>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.19to26>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.9to12>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.3to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.20to24>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.20to24>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.3to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.20to24>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.15>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.25to35>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.25to35>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.25to35>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.15>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.3to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.25to35>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.25to35>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.25to35>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.35to65>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.3to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.3to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.0to2': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.8to2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.5to1.9>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.0to3': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.8>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.0to1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.9to2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.5to1.9>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.5.0to5.5>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.eichpee>+15*<skill.var.amount_targets>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.7to1.>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.5to65.>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.4to1.7>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.4to1.7>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.4to1.7>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.5to6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.3to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.6to1.9>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.4to1.7>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.eichpee>+20*<skill.var.amount_targets>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.19to26>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.9to12>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.3to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.20to24>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.20to24>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.3to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.20to24>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.15>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.25to35>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.25to35>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.25to35>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.15>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.3to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.25to35>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.25to35>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.25to35>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.35to65>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.15>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.7to2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.3to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.3to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.5to1.9>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.3to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.3to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.0to2': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.8to2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.5to1.9>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.0to3': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.8>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.0to1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.9to2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.5to1.9>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.15>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.3to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:09] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[21:30:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.7to1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.7to1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.7to1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.7to1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.1to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.6to1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.4to0.6': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.1to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.6to1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.4to0.6': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.1to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.6to1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.4to0.6': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:10] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[21:30:10] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[21:30:10] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in RandomSpawn sniffer_randomspawn
[21:30:10] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[21:30:10] [Server thread/WARN]: [MythicMobs] --| Error Message: No valid mob types configured
[21:30:10] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in RandomSpawn big_sniffer_randomspawn
[21:30:10] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[21:30:10] [Server thread/WARN]: [MythicMobs] --| Error Message: No valid mob types configured
[21:30:10] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in RandomSpawn sniffer_randomspawn
[21:30:10] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[21:30:10] [Server thread/WARN]: [MythicMobs] --| Error Message: No valid mob types configured
[21:30:10] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in RandomSpawn big_sniffer_randomspawn
[21:30:10] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[21:30:10] [Server thread/WARN]: [MythicMobs] --| Error Message: No valid mob types configured
[21:30:10] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[21:30:10] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[21:30:10] [Server thread/WARN]: [MythicMobs] --| Skill: MEGAWARDEN_stun_handler | File: /root/spawn1211/spawn/plugins/MythicMobs/Skills/littleroom/mega_warden.yml
[21:30:10] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill MEGAWARDEN_stun_hit
[21:30:10] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=MEGAWARDEN_stun_hit}
[21:30:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.3to0.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:10] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[21:30:10] [Server thread/WARN]: [MythicMobs] --| Mob: MEGAWARDEN_soul | File: /root/spawn1211/spawn/plugins/MythicMobs/Mobs/littleroom/mega_warden.yml
[21:30:10] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill MEGAWARDEN_soul_consume
[21:30:10] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=MEGAWARDEN_soul_consume}
[21:30:10] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[21:30:10] [Server thread/WARN]: [MythicMobs] --| Mob: MEGAWARDEN_soul | File: /root/spawn1211/spawn/plugins/MythicMobs/Mobs/littleroom/mega_warden.yml
[21:30:10] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill MEGAWARDEN_soul_pull
[21:30:10] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=MEGAWARDEN_soul_pull}
[21:30:10] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[21:30:10] [Server thread/WARN]: [MythicMobs] --| Mob: MEGAWARDEN_soul | File: /root/spawn1211/spawn/plugins/MythicMobs/Mobs/littleroom/mega_warden.yml
[21:30:10] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill MEGAWARDEN_soul_decay
[21:30:10] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=MEGAWARDEN_soul_decay}
[21:30:10] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[21:30:10] [Server thread/WARN]: [MythicMobs] --| Mob: KUR_GROUNDROCKS | File: /root/spawn1211/spawn/plugins/MythicMobs/Mobs/littleroom/kur_rot.yml
[21:30:10] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill kurrot_groundrocks
[21:30:10] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=kurrot_groundrocks}
[21:30:11] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.5to1.9>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:30:11] [Server thread/INFO]: [MythicMobs] ✓ Loaded 178 mobs.
[21:30:11] [Server thread/INFO]: [MythicMobs] ✓ Loaded 4 vanilla mob overrides.
[21:30:11] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[21:30:11] [Server thread/INFO]: [MythicMobs] ✓ Loaded 1035 skills.
[21:30:11] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[21:30:11] [Server thread/INFO]: [MythicMobs] ✓ Loaded 23 mythic items.
[21:30:11] [Server thread/INFO]: [MythicMobs] ✓ Loaded 23 drop tables.
[21:30:11] [Server thread/INFO]: [MythicMobs] ✓ Loaded 17 mob spawners.
[21:30:11] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[21:30:11] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[21:30:11] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs v5.8.1 ( build ${CI_COMMIT_SHORT_SHA} ) has been successfully loaded!
[21:30:13] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
[21:30:13] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v4.0.9
[21:30:13] [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:30:13] [Server thread/WARN]: [ItemsAdder] 'allow_other_plugins_resourcepacks' enabled. Do not report resourcepack loading issues.
[21:30:13] [Server thread/INFO]: [ItemsAdder] 
                                                   ItemsAdder 4.0.9
  ___  ___        __        __   __   ___  __      ProtocolLib 5.3.0
|  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     Leaf 1.21.1-DEV-d9b03b0 (MC: 1.21.1)
|  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     Build Date: 2025-03-03_12.32.24
                                                   Java Version: 21.0.6
                                                   OS: Linux 5.15.0-135-generic                                               
[21:30:13] [Server thread/INFO]: [GlowingEntities] [GlowingEntities] Found server version 1.21.1
[21:30:13] [Server thread/INFO]: [GlowingEntities] [GlowingEntities] Loaded transparent mappings.
[21:30:13] [Server thread/INFO]: [ItemsAdder] ViaVersion detected. Do not report glitches when joining using game versions different than the server version.
[21:30:13] [Server thread/INFO]: [ItemsAdder] More info: https://github.com/PluginBugs/Issues-ItemsAdder/issues/3683
[21:30:13] [Server thread/INFO]: [ItemsAdder] Registered Citizens NPC Trait: customentity
[21:30:14] [Server thread/INFO]: [ItemsAdder] [Host] Starting self-host webserver on port: 8163
[21:30:14] [Server thread/INFO]: [ItemsAdder] [SelfHost] Rate limiter: max 3 requests / 2s.
[21:30:14] [Server thread/INFO]: [ItemsAdder] [SelfHost] Clients exceeding 5 times will be blocked for 30m.
[21:30:15] [Server thread/INFO]: [ItemsAdder] [Pack] Extracting internal contents from .jar
[21:30:15] [Server thread/INFO]: [ItemsAdder] [Pack] Done extracting internal contents from .jar
[21:30:16] [Server thread/ERROR]: [ItemsAdder] Missing namespace in file: /contents/runiccraft/configs/runiccraft_ozel_blocklar/craft.yml
[21:30:17] [Server thread/ERROR]: [ItemsAdder] Unknown slot: 'durability' for item warden_set:warden_axe
[21:30:17] [Server thread/ERROR]: [ItemsAdder] Unknown slot: 'durability' for item warden_set:warden_hammer
[21:30:17] [Server thread/ERROR]: [ItemsAdder] Unknown slot: 'durability' for item warden_set:warden_hoe
[21:30:17] [Server thread/ERROR]: [ItemsAdder] Unknown slot: 'durability' for item warden_set:warden_pickaxe
[21:30:17] [Server thread/ERROR]: [ItemsAdder] Unknown slot: 'durability' for item warden_set:warden_shovel
[21:30:17] [Server thread/ERROR]: [ItemsAdder] Unknown slot: 'durability' for item warden_set:warden_staff
[21:30:17] [Server thread/ERROR]: [ItemsAdder] Unknown slot: 'durability' for item warden_set:warden_sword
[21:30:18] [Server thread/WARN]: [ItemsAdder] [Items] 'lunar_studios:ares_helmet'. Warning: Trying to create a custom legacy armor using an incompatible material. 'PAPER' is not a leather armor material. File: /contents/armors/configs/ares_set/ls_ares.yml
[21:30:18] [Server thread/ERROR]: [ItemsAdder] Unknown slot: 'durability' for item elitecreatures:thanks_giving_2023_v1-axe
[21:30:18] [Server thread/ERROR]: [ItemsAdder] Unknown slot: 'durability' for item elitecreatures:thanks_giving_2023_v1-axe
[21:30:18] [Server thread/ERROR]: [ItemsAdder] Unknown slot: 'durability' for item elitecreatures:thanks_giving_2023_v1-hoe
[21:30:18] [Server thread/ERROR]: [ItemsAdder] Unknown slot: 'durability' for item elitecreatures:thanks_giving_2023_v1-hoe
[21:30:18] [Server thread/ERROR]: [ItemsAdder] Unknown slot: 'durability' for item elitecreatures:thanks_giving_2023_v1-pickaxe
[21:30:18] [Server thread/ERROR]: [ItemsAdder] Unknown slot: 'durability' for item elitecreatures:thanks_giving_2023_v1-pickaxe
[21:30:20] [Server thread/INFO]: [BattlePass] Enabling BattlePass v4.7.0
[21:30:20] [Server thread/INFO]: [BattlePass] Finished loading the week-2 quests. All quests loaded successfully.
[21:30:20] [Server thread/INFO]: [BattlePass] Finished loading the week-1 quests. All quests loaded successfully.
[21:30:20] [Server thread/INFO]: [BattlePass] Finished loading the week-7 quests. All quests loaded successfully.
[21:30:20] [Server thread/INFO]: [BattlePass] Finished loading the week-6 quests. All quests loaded successfully.
[21:30:20] [Server thread/INFO]: [BattlePass] Finished loading the week-4 quests. All quests loaded successfully.
[21:30:20] [Server thread/INFO]: [BattlePass] Finished loading the week-5 quests. All quests loaded successfully.
[21:30:20] [Server thread/INFO]: [BattlePass] Finished loading the daily quests. All quests loaded successfully.
[21:30:20] [Server thread/INFO]: [Citizens] Hooked into Citizens
[21:30:20] [Server thread/INFO]: [MythicMobs] Using internal version as PluginVersion{major=5, minor=8, bugfix=1} for loading MythicMobs.
[21:30:20] [Server thread/INFO]: [MythicMobs] Hooked into MythicMobs
[21:30:20] [Server thread/INFO]: [BattlePass] Successfully loaded the pass type with the id: premium
[21:30:20] [Server thread/INFO]: [BattlePass] Successfully loaded the pass type with the id: free
[21:30:21] [Server thread/INFO]: [BattlePass] Register PlaceholderAPI placeholders
[21:30:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: battlepass [1.1]
[21:30:21] [Server thread/INFO]: [CMILib] Enabling CMILib v1.5.3.5
[21:30:23] [Server thread/INFO]: Server version: v1_21_R1 - 1.21.1 - leaf  1.21.1-DEV-d9b03b0 (MC: 1.21.1)
[21:30:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.5.3.5]
[21:30:24] [Server thread/INFO]: PlaceholderAPI hooked.
[21:30:24] [Server thread/INFO]: Updated (EN) language file. Took 86ms
[21:30:24] [Server thread/INFO]: [CustomFishing] Enabling CustomFishing v2.3.6
[21:30:25] [Server thread/INFO]: [CustomFishing] ItemsAdder hooked!
[21:30:25] [Server thread/INFO]: [CustomFishing] MythicMobs hooked!
[21:30:25] [Server thread/INFO]: [CustomFishing] Jobs hooked!
[21:30:25] [Server thread/INFO]: [CustomFishing] CustomCrops hooked!
[21:30:25] [Server thread/INFO]: [CustomFishing] Vault hooked!
[21:30:25] [Server thread/INFO]: [CustomFishing] BattlePass hooked!
[21:30:25] [Server thread/INFO]: [CustomFishing] Hooked into customfishing
[21:30:25] [Server thread/INFO]: [CustomFishing] WorldGuard hooked!
[21:30:25] [Server thread/INFO]: [CustomFishing] PlaceholderAPI hooked!
[21:30:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: customfishing [2.2]
[21:30:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cfcompetition [2.2]
[21:30:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: fishingstats [2.2]
[21:30:27] [Server thread/INFO]: [Jobs] Enabling Jobs v5.2.4.6
[21:30:27] [Server thread/INFO]: ------------- Jobs -------------
[21:30:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: jobsr [5.2.4.6]
[21:30:27] [Server thread/INFO]: PlaceholderAPI hooked.
[21:30:27] [Server thread/INFO]: Connected to database (MySQL)
[21:30:28] [Server thread/INFO]: Loaded 9 titles
[21:30:28] [Server thread/WARN]: java.lang.IndexOutOfBoundsException: Index (1) is greater than or equal to list size (1)
[21:30:28] [Server thread/WARN]:     at it.unimi.dsi.fastutil.objects.ObjectArrayList.get(ObjectArrayList.java:382)
[21:30:28] [Server thread/WARN]:     at Jobs5.2.4.6.jar//com.gamingmesh.jobs.config.RestrictedAreaManager.load(RestrictedAreaManager.java:242)
[21:30:28] [Server thread/WARN]:     at Jobs5.2.4.6.jar//com.gamingmesh.jobs.config.GeneralConfigManager.reload(GeneralConfigManager.java:294)
[21:30:28] [Server thread/WARN]:     at Jobs5.2.4.6.jar//com.gamingmesh.jobs.Jobs.reload(Jobs.java:881)
[21:30:28] [Server thread/WARN]:     at Jobs5.2.4.6.jar//com.gamingmesh.jobs.Jobs.startup(Jobs.java:553)
[21:30:28] [Server thread/WARN]:     at Jobs5.2.4.6.jar//com.gamingmesh.jobs.Jobs.onEnable(Jobs.java:767)
[21:30:28] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[21:30:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[21:30:28] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[21:30:28] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:519)
[21:30:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:658)
[21:30:28] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:607)
[21:30:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:742)
[21:30:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:504)
[21:30:28] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:375)
[21:30:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1217)
[21:30:28] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[21:30:28] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:30:28] [Server thread/INFO]: Loaded 119 protected blocks timers
[21:30:28] [Server thread/INFO]: Loaded 1481 custom item names
[21:30:28] [Server thread/INFO]: Loaded 84 custom entity names
[21:30:28] [Server thread/INFO]: Loaded 2 custom MythicMobs names
[21:30:28] [Server thread/INFO]: Loaded 42 custom enchant names
[21:30:28] [Server thread/INFO]: Loaded 46 custom enchant names
[21:30:28] [Server thread/INFO]: Loaded 16 custom color names
[21:30:28] [Server thread/INFO]: Update shops items icon section and use 'ItemStack' instead
[21:30:28] [Server thread/INFO]: Loaded 9 shop items
[21:30:28] [Server thread/INFO]: Update Ciftci jobs gui item section to use `ItemStack` instead of `Item` sections format. More information inside _EXAMPLE job file
[21:30:28] [Server thread/ERROR]: Cannot load configuration from stream
org.bukkit.configuration.InvalidConfigurationException: while parsing a block mapping
 in 'reader', line 53, column 5:
        LEVELUP:
        ^
expected <block end>, but found '<block mapping start>'
 in 'reader', line 66, column 7:
          levelFrom: 2
          ^

    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.YamlConfiguration.loadConfiguration(YamlConfiguration.java:339) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at Jobs5.2.4.6.jar/com.gamingmesh.jobs.config.YmlMaker.reloadConfig(YmlMaker.java:41) ~[Jobs5.2.4.6.jar:?]
    at Jobs5.2.4.6.jar/com.gamingmesh.jobs.config.YmlMaker.getConfig(YmlMaker.java:49) ~[Jobs5.2.4.6.jar:?]
    at Jobs5.2.4.6.jar/com.gamingmesh.jobs.config.ConfigManager.reload(ConfigManager.java:965) ~[Jobs5.2.4.6.jar:?]
    at Jobs5.2.4.6.jar/com.gamingmesh.jobs.Jobs.reload(Jobs.java:883) ~[Jobs5.2.4.6.jar:?]
    at Jobs5.2.4.6.jar/com.gamingmesh.jobs.Jobs.startup(Jobs.java:553) ~[Jobs5.2.4.6.jar:?]
    at Jobs5.2.4.6.jar/com.gamingmesh.jobs.Jobs.onEnable(Jobs.java:767) ~[Jobs5.2.4.6.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) ~[tramontane-1.21.1.jar:1.21.1-DEV-d9b03b0]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[tramontane-1.21.1.jar:1.21.1-DEV-d9b03b0]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:519) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:658) ~[tramontane-1.21.1.jar:1.21.1-DEV-d9b03b0]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:607) ~[tramontane-1.21.1.jar:1.21.1-DEV-d9b03b0]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:742) ~[tramontane-1.21.1.jar:1.21.1-DEV-d9b03b0]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:504) ~[tramontane-1.21.1.jar:1.21.1-DEV-d9b03b0]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:375) ~[tramontane-1.21.1.jar:1.21.1-DEV-d9b03b0]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1217) ~[tramontane-1.21.1.jar:1.21.1-DEV-d9b03b0]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[tramontane-1.21.1.jar:1.21.1-DEV-d9b03b0]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: org.yaml.snakeyaml.parser.ParserException: while parsing a block mapping
 in 'reader', line 53, column 5:
        LEVELUP:
        ^
expected <block end>, but found '<block mapping start>'
 in 'reader', line 66, column 7:
          levelFrom: 2
          ^

    at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingKey.produce(ParserImpl.java:654) ~[snakeyaml-2.3.jar:?]
    at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:161) ~[snakeyaml-2.3.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:57) ~[snakeyaml-2.3.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:43) ~[snakeyaml-2.3.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:136) ~[snakeyaml-2.3.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:116) ~[snakeyaml-2.3.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeScalarNode(Composer.java:249) ~[snakeyaml-2.3.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:214) ~[snakeyaml-2.3.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:396) ~[snakeyaml-2.3.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:361) ~[snakeyaml-2.3.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:329) ~[snakeyaml-2.3.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:218) ~[snakeyaml-2.3.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:396) ~[snakeyaml-2.3.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:361) ~[snakeyaml-2.3.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:329) ~[snakeyaml-2.3.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:218) ~[snakeyaml-2.3.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:396) ~[snakeyaml-2.3.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:361) ~[snakeyaml-2.3.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:329) ~[snakeyaml-2.3.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:218) ~[snakeyaml-2.3.jar:?]
    at org.yaml.snakeyaml.composer.Composer.getNode(Composer.java:141) ~[snakeyaml-2.3.jar:?]
    at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:167) ~[snakeyaml-2.3.jar:?]
    at org.yaml.snakeyaml.Yaml.compose(Yaml.java:589) ~[snakeyaml-2.3.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:105) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    ... 20 more
[21:30:28] [Server thread/INFO]: Loaded 18 jobs
[21:30:28] [Server thread/INFO]: Loaded 0 boosted items
[21:30:28] [Server thread/INFO]: Loaded 1 furnace for reassigning.
[21:30:28] [Server thread/INFO]: Loaded 21 blastfurnace for reassigning.
[21:30:28] [Server thread/INFO]: Loaded 1 smoker for reassigning.
[21:30:29] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
[21:30:29] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
[21:30:29] [Server thread/INFO]: Preloaded 1180 players data in 0.07
[21:30:29] [Server thread/INFO]: Registering listeners...
[21:30:29] [Server thread/INFO]: Listeners registered successfully
[21:30:29] [Server thread/INFO]: Plugin has been enabled successfully.
[21:30:29] [Server thread/INFO]: ------------------------------------
[21:30:29] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.15
[21:30:29] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[21:30:29] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[21:30:29] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[21:30:29] [Server thread/INFO]: [zMenu] Enabling zMenu v1.0.3.8
[21:30:29] [Server thread/INFO]: [zMenu v1.0.3.8] === ENABLE START ===
[21:30:29] [Server thread/INFO]: [zMenu v1.0.3.8] Plugin Version V1.0.3.8
[21:30:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: zmenu [1.0.3.8]
[21:30:30] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zMenu/patterns/pattern_example.yml loaded successfully !
[21:30:30] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zMenu/inventories/pro_inventory.yml loaded successfully !
[21:30:30] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zMenu/inventories/advanced_inventory.yml loaded successfully !
[21:30:30] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zMenu/inventories/example_punish.yml loaded successfully !
[21:30:30] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zMenu/inventories/basic_inventory.yml loaded successfully !
[21:30:30] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zMenu/website/inventories.yml loaded successfully !
[21:30:30] [Server thread/INFO]: [zMenu v1.0.3.8] Command /basic_command successfully register.
[21:30:30] [Server thread/INFO]: [zMenu v1.0.3.8] Command /advanced_command successfully register.
[21:30:30] [Server thread/INFO]: [zMenu v1.0.3.8] Command /pro_command successfully register.
[21:30:30] [Server thread/INFO]: [zMenu v1.0.3.8] Command /openbook successfully register.
[21:30:30] [Server thread/INFO]: [zMenu v1.0.3.8] Command /punish successfully register.
[21:30:30] [Server thread/INFO]: [zMenu v1.0.3.8] 
[21:30:30] [Server thread/INFO]: [zMenu v1.0.3.8] You can support zMenu by upgrading your account here: https://minecraft-inventory-builder.com/account-upgrade
[21:30:30] [Server thread/INFO]: [zMenu v1.0.3.8] zMenu’s site includes an inventory editor (under development), a marketplace (already available) is a forum (under development)
[21:30:30] [Server thread/INFO]: [zMenu v1.0.3.8] 
[21:30:30] [Server thread/INFO]: [zMenu v1.0.3.8] Use ComponentMeta
[21:30:30] [Server thread/INFO]: [zMenu v1.0.3.8] Loading 6 commands
[21:30:30] [Server thread/INFO]: [zMenu v1.0.3.8] === ENABLE DONE (579ms) ===
[21:30:30] [Server thread/INFO]: [EpicPluginLib] Enabling EpicPluginLib v2.6.1
[21:30:30] [Server thread/INFO]: [EpicPluginLib] Dependency found: PlayMoreSounds.
[21:30:30] [Server thread/INFO]: [EpicPluginLib] Lib enabled successfully.
[21:30:30] [Server thread/INFO]: [EpicPluginLib] EpicPluginLib is using bStats as metrics collector.
[21:30:30] [Server thread/INFO]: [LitLibs] Enabling LitLibs v1.1.5
[21:30:30] [Server thread/INFO]: [LitLibs] Version found: 1.21
[21:30:30] [Server thread/INFO]: [LitLibs] LitLibs enabled version v1.1.5
[21:30:30] [Server thread/INFO]: [ItemEdit] Enabling ItemEdit v3.7.0
[21:30:30] [Server thread/INFO]: [ItemEdit] Hooking into MiniMessageAPI see https://webui.advntr.dev/
[21:30:30] [Server thread/INFO]: [ItemEdit] Selected Storage Type: YAML
[21:30:30] [Server thread/INFO]: [ItemEdit] Hooking into Vault
[21:30:30] [Server thread/INFO]: [ItemEdit] Hooking into PlaceHolderAPI
[21:30:30] [Server thread/INFO]: [ItemEdit] placeholders:
[21:30:30] [Server thread/INFO]: [ItemEdit]   %itemedit_amount_<{itemid}>_[{slot}]_[{player}]%
[21:30:30] [Server thread/INFO]: [ItemEdit]     shows how many itemid player has on slot
[21:30:30] [Server thread/INFO]: [ItemEdit]     <{itemid}> for item id on serveritem
[21:30:30] [Server thread/INFO]: [ItemEdit]     [{slot}] for the slot where the item should be counted, by default inventory
[21:30:30] [Server thread/INFO]: [ItemEdit]       Values: inventory (include offhand), equip (include offhand), inventoryandequip (include offhand), hand, offhand, head, chest, legs, feet
[21:30:30] [Server thread/INFO]: [ItemEdit]     [{player}] for the player, by default self
[21:30:30] [Server thread/INFO]: [ItemEdit]     example: %itemedit_amount_{my_item_id}_{hand}%
[21:30:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: itemedit [1.0]
[21:30:30] [Server thread/INFO]: [ItemEdit] Hooking into MythicMobs
[21:30:30] [Server thread/INFO]: [ItemEdit] # Enabled (took 263 ms)
[21:30:30] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.14.1
[21:30:30] [Server thread/INFO]: [NBTAPI] Checking bindings...
[21:30:30] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[21:30:30] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[21:30:30] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[21:30:31] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[21:30:31] [Server thread/INFO]: [HuskHomes] Enabling HuskHomes v4.9.5
[21:30:31] [Server thread/INFO]: [net.william278.huskhomes.libraries.hikari.HikariDataSource] HuskHomesHikariPool - Starting...
[21:30:31] [Server thread/INFO]: [net.william278.huskhomes.libraries.hikari.pool.HikariPool] HuskHomesHikariPool - Added connection com.mysql.cj.jdbc.ConnectionImpl@c17777
[21:30:31] [Server thread/INFO]: [net.william278.huskhomes.libraries.hikari.HikariDataSource] HuskHomesHikariPool - Start completed.
[21:30:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: huskhomes [4.9.5]
[21:30:31] [Server thread/INFO]: [HuskHomes] Registered 'on_enable' hooks
[21:30:31] [Server thread/INFO]: [HuskHomes] Successfully enabled HuskHomes v4.9.5
[21:30:32] [Server thread/INFO]: [CustomCrops] Enabling CustomCrops v3.6.31
[21:30:33] [Server thread/WARN]: [CustomCrops] "CustomCrops v3.6.31" has registered a listener for dev.lone.itemsadder.api.Events.FurniturePlaceSuccessEvent on method "public void net.momirealms.customcrops.bukkit.integration.custom.itemsadder_r1.ItemsAdderListener.onPlaceFurniture(dev.lone.itemsadder.api.Events.FurniturePlaceSuccessEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [XiaoMoMi].
[21:30:33] [Server thread/INFO]: [CustomCrops] ItemsAdder hooked!
[21:30:33] [Server thread/INFO]: [CustomCrops] ItemsAdder hooked!
[21:30:33] [Server thread/INFO]: [CustomCrops] CustomFishing hooked!
[21:30:33] [Server thread/INFO]: [CustomCrops] MythicMobs hooked!
[21:30:33] [Server thread/INFO]: [CustomCrops] Jobs hooked!
[21:30:33] [Server thread/INFO]: [CustomCrops] Vault hooked!
[21:30:33] [Server thread/INFO]: [CustomCrops] PlaceholderAPI hooked!
[21:30:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: customcrops [3.6]
[21:30:33] [Server thread/INFO]: [CustomCrops] BattlePass hooked!
[21:30:33] [Server thread/INFO]: [CustomCrops] Hooked into customcrops
[21:30:33] [Server thread/INFO]: [CustomCrops] WorldGuard hooked!
[21:30:35] [Server thread/WARN]: [CustomCrops] en_us.yml not exists, using en.yml as default locale.
[21:30:35] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.15.1
[21:30:35] [Server thread/INFO]: [LiteBans] Using system locale (en)
[21:30:35] [customcrops-worker-3/WARN]: [CustomCrops] Update is available: https://polymart.org/resource/2625/
[21:30:35] [Server thread/INFO]: [LiteBans] Loaded 2 templates from templates.yml!
[21:30:35] [Server thread/INFO]: [LiteBans] Loading SQL driver: mysql 8.0.29 (com.mysql.cj.jdbc.Driver)
[21:30:35] [Server thread/INFO]: [LiteBans] Connecting to database...
[21:30:35] [Server thread/INFO]: [LiteBans] litebans-pool - Starting...
[21:30:36] [Server thread/INFO]: [LiteBans] litebans-pool - Start completed.
[21:30:36] [Server thread/INFO]: [LiteBans] Connected to MySQL database successfully (225.4 ms).
[21:30:36] [Server thread/INFO]: [LiteBans] Database connection fully initialized (303.6 ms).
[21:30:36] [Server thread/INFO]: [LiteBans] v2.15.1 enabled. Startup took 976 ms.
[21:30:36] [Server thread/INFO]: [zAuctionHouseV3] Enabling zAuctionHouseV3 v3.2.3.1
[21:30:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: zauctionhouse [3.2.3.1]
[21:30:36] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] === ENABLE START ===
[21:30:36] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Plugin Version V3.2.3.1
[21:30:36] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading of 4 price items
[21:30:36] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] /root/spawn1211/spawn/plugins/zAuctionHouseV3/blacklistplayers.json loaded successfully !
[21:30:36] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loaded config.yml
[21:30:36] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading of 3 tax items
[21:30:36] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loaded 4 blacklist items
[21:30:36] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loaded 0 whitelist items
[21:30:36] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading the Examples category with 0 materials
[21:30:36] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading the Blocks category with 0 materials
[21:30:36] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading the Potions category with 0 materials
[21:30:36] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading the Tools category with 0 materials
[21:30:36] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading the Weapons category with 0 materials
[21:30:36] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading 3 inventories
[21:30:36] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading 0 commands
[21:30:36] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Load SQL...
[21:30:36] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] sarah-0 - Starting...
[21:30:36] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] sarah-0 - Start completed.
[21:30:37] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/patterns/auction.yml loaded successfully !
[21:30:37] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/patterns/decoration.yml loaded successfully !
[21:30:37] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/patterns/back.yml loaded successfully !
[21:30:37] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/patterns/pagination.yml loaded successfully !
[21:30:37] [Server thread/WARN]: fr.maxlego08.menu.exceptions.InventoryTypeException: Type Inventory PAGINATED is not valid for inventory /root/spawn1211/spawn/plugins/zAuctionHouseV3/inventories/auction.yml
[21:30:37] [Server thread/WARN]:     at zmenu-1.0.3.8.jar//fr.maxlego08.menu.loader.InventoryLoader.load(InventoryLoader.java:60)
[21:30:37] [Server thread/WARN]:     at zmenu-1.0.3.8.jar//fr.maxlego08.menu.loader.InventoryLoader.load(InventoryLoader.java:35)
[21:30:37] [Server thread/WARN]:     at zmenu-1.0.3.8.jar//fr.maxlego08.menu.ZInventoryManager.loadInventory(ZInventoryManager.java:168)
[21:30:37] [Server thread/WARN]:     at zmenu-1.0.3.8.jar//fr.maxlego08.menu.ZInventoryManager.loadInventory(ZInventoryManager.java:142)
[21:30:37] [Server thread/WARN]:     at zAuctionHouse-3.2.3.1.jar//fr.maxlego08.zauctionhouse.zmenu.ZMenuHandler.lambda$loadInventories$2(ZMenuHandler.java:216)
[21:30:37] [Server thread/WARN]:     at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
[21:30:37] [Server thread/WARN]:     at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179)
[21:30:37] [Server thread/WARN]:     at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179)
[21:30:37] [Server thread/WARN]:     at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197)
[21:30:37] [Server thread/WARN]:     at java.base/java.util.stream.SliceOps$1$1.accept(SliceOps.java:200)
[21:30:37] [Server thread/WARN]:     at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197)
[21:30:37] [Server thread/WARN]:     at java.base/java.util.Iterator.forEachRemaining(Iterator.java:133)
[21:30:37] [Server thread/WARN]:     at java.base/java.util.Spliterators$IteratorSpliterator.forEachRemaining(Spliterators.java:1939)
[21:30:37] [Server thread/WARN]:     at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509)
[21:30:37] [Server thread/WARN]:     at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499)
[21:30:37] [Server thread/WARN]:     at java.base/java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:151)
[21:30:37] [Server thread/WARN]:     at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:174)
[21:30:37] [Server thread/WARN]:     at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)
[21:30:37] [Server thread/WARN]:     at java.base/java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596)
[21:30:37] [Server thread/WARN]:     at zAuctionHouse-3.2.3.1.jar//fr.maxlego08.zauctionhouse.zmenu.ZMenuHandler.files(ZMenuHandler.java:225)
[21:30:37] [Server thread/WARN]:     at zAuctionHouse-3.2.3.1.jar//fr.maxlego08.zauctionhouse.zmenu.ZMenuHandler.loadInventories(ZMenuHandler.java:214)
[21:30:37] [Server thread/WARN]:     at zAuctionHouse-3.2.3.1.jar//fr.maxlego08.zauctionhouse.ZAuctionPlugin.onEnable(ZAuctionPlugin.java:236)
[21:30:37] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[21:30:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[21:30:37] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[21:30:37] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:519)
[21:30:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:658)
[21:30:37] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:607)
[21:30:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:742)
[21:30:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:504)
[21:30:37] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:375)
[21:30:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1217)
[21:30:37] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[21:30:37] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:30:37] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/inventories/search.yml loaded successfully !
[21:30:37] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/inventories/categories.yml loaded successfully !
[21:30:37] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/inventories/adminremove.yml loaded successfully !
[21:30:37] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/inventories/expire.yml loaded successfully !
[21:30:37] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/inventories/sell.yml loaded successfully !
[21:30:37] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/inventories/show.yml loaded successfully !
[21:30:37] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/inventories/buyconfirminventory.yml loaded successfully !
[21:30:37] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/inventories/removeconfirm.yml loaded successfully !
[21:30:37] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/inventories/sellshow.yml loaded successfully !
[21:30:37] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/inventories/items.yml loaded successfully !
[21:30:37] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/inventories/category.yml loaded successfully !
[21:30:37] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/inventories/economy.yml loaded successfully !
[21:30:37] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/inventories/buying.yml loaded successfully !
[21:30:37] [Server thread/INFO]: [zMenu v1.0.3.8] plugins/zAuctionHouseV3/inventories/buyconfirm.yml loaded successfully !
[21:30:37] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Register VAULT economy with name vault
[21:30:37] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] Register ProtocolLib implementation
[21:30:37] [Server thread/INFO]: [zAuctionHouseV3 v3.2.3.1] === ENABLE DONE (1454ms) ===
[21:30:37] [Server thread/INFO]: [AFKPlus] Enabling AFKPlus v3.4.9
[21:30:38] [Server thread/INFO]: [AFKPlus] AFKPlus v.3.4.9 has been enabled!
[21:30:38] [Server thread/INFO]: [SilkSpawners] Enabling SilkSpawners v8.2.0
[21:30:38] [Server thread/INFO]: [SilkSpawners] WorldGuard was found and support is enabled
[21:30:38] [Server thread/INFO]: [SilkSpawners] Mimic was not found and support is disabled
[21:30:38] [Server thread/INFO]: [SilkSpawners] Loading support for v1_21_R1
[21:30:38] [Server thread/INFO]: [SilkSpawners] AutoUpdater is enabled and now running.
[21:30:38] [Server thread/INFO]: [SilkSpawners] BarAPI is disabled due to config setting.
[21:30:38] [Server thread/INFO]: [LushRewards] Enabling LushRewards v3.2.0
[21:30:38] [Server thread/INFO]: [LushRewards] Loaded global item-template: default-reward
[21:30:38] [Server thread/INFO]: [LushRewards] Loaded global item-template: redeemable-reward
[21:30:38] [Server thread/INFO]: [LushRewards] Loaded global item-template: collected-reward
[21:30:38] [Server thread/INFO]: [LushRewards] Loaded global item-template: missed-reward
[21:30:38] [Server thread/INFO]: [LushRewards] Loaded global item-template: upcoming-reward
[21:30:38] [Server thread/INFO]: [LushRewards] Loaded global item-template: #
[21:30:38] [Server thread/INFO]: [LushRewards] Loaded global item-template: P
[21:30:38] [Server thread/INFO]: [LushRewards] Loaded reward-template: iron_ingots
[21:30:38] [Server thread/INFO]: [LushRewards] Successfully loaded 11 reward collections from 'daily-rewards'
[21:30:38] [Server thread/INFO]: [LushRewards] Successfully enabled module 'daily-rewards'
[21:30:38] [pool-54-thread-1/INFO]: [LushRewards] An update is available! (3.3.0) Do /rewards update to download it!
[21:30:39] [Server thread/INFO]: [LushRewards] Found plugin "PlaceholderAPI". Enabling PlaceholderAPI support.
[21:30:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lushrewards [3.2.0]
[21:30:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rewarder [3.2.0]
[21:30:39] [Server thread/INFO]: [LushRewards] Successfully enabled module 'placeholder-api'
[21:30:39] [Server thread/INFO]: [PlayMoreSounds] Enabling PlayMoreSounds v4.2
[21:30:39] [Server thread/WARN]: [PlayMoreSounds] java.io.FileNotFoundException: The jar 'NoteBlockAPI-1.6.1-SNAPSHOT.jar' in addons folder does not contain a description file.
[21:30:39] [Server thread/WARN]: [PlayMoreSounds] NBS Song Player addon could not be loaded because it depends on the plugin: [NoteBlockAPI]
[21:30:39] [Server thread/WARN]: [PlayMoreSounds] Essentials Hook addon could not be loaded because it depends on the plugin: [Essentials]
[21:30:39] [Server thread/INFO]: [PlayMoreSounds] -> Configurations loaded.
[21:30:39] [Server thread/INFO]: [PlayMoreSounds] Error when reading region file "90706e82-d923-4797-a239-27721710bb60.yml": The world this region is in does not exist or is not loaded.
[21:30:39] [Server thread/WARN]: [PlayMoreSounds] New log at PlayMoreSounds folder.
[21:30:39] [Server thread/INFO]: [PlayMoreSounds] Error when reading region file "90706e82-d923-4797-a239-27721710bb60.yml": The world this region is in does not exist or is not loaded.
[21:30:39] [Server thread/WARN]: [PlayMoreSounds] New log at PlayMoreSounds folder.
[21:30:39] [Server thread/INFO]: [PlayMoreSounds] -> 1 listeners loaded.
[21:30:39] [Server thread/INFO]: [PlayMoreSounds] -> Commands loaded.
[21:30:39] [Server thread/INFO]: [PlayMoreSounds] ============================================
[21:30:39] [Server thread/INFO]: [PlayMoreSounds] PlayMoreSounds has been enabled
[21:30:39] [Server thread/INFO]: [PlayMoreSounds] 1202 sounds available on 1.21.1
[21:30:39] [Server thread/INFO]: [PlayMoreSounds] ============================================
[21:30:39] [Server thread/WARN]: [PlayMoreSounds] PlayMoreSounds detected you are on version 1.21.1. This version was not tested and might throw errors.
[21:30:39] [Server thread/INFO]: [PlayMoreSounds] PlayMoreSounds is using bStats as metrics collector.
[21:30:39] [Server thread/INFO]: [PlayMoreSounds] Checking for updates...
[21:30:39] [Server thread/INFO]: [RunicCore] Enabling RunicCore v1.0-SNAPSHOT
[21:30:39] [Server thread/ERROR]: [RunicCore] Failed to register events for class org.pnternn.listeners.voteEvent because com/vexsoftware/votifier/model/VotifierEvent does not exist.
[21:30:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: runiccore [1.0.0]
[21:30:39] [Server thread/INFO]: [CommandBlocks] Enabling CommandBlocks v1.4.0
[21:30:39] [EPL Update Checker/INFO]: [PlayMoreSounds] No updates available.
[21:30:39] [Server thread/INFO]: 
[21:30:39] [Server thread/INFO]:  _______                                  _ ______  _             _          
[21:30:39] [Server thread/INFO]: (_______)                                | (____  \| |           | |  v1.4.0
[21:30:39] [Server thread/INFO]:  _       ___  ____  ____  _____ ____   __| |____)  ) | ___   ____| |  _  ___ 
[21:30:39] [Server thread/INFO]: | |     / _ \|    \|    \(____ |  _ \ / _  |  __  (| |/ _ \ / ___) |_/ )/___)
[21:30:39] [Server thread/INFO]: | |____| |_| | | | | | | / ___ | | | ( (_| | |__)  ) | |_| ( (___|  _ (|___ |
[21:30:39] [Server thread/INFO]:  \______)___/|_|_|_|_|_|_\_____|_| |_|\____|______/ \_)___/ \____)_| \_|___/ 
[21:30:39] [Server thread/INFO]: 
[21:30:39] [Server thread/INFO]: [CommandBlocks] CommandBlocks v1.4.0 has been enabled
[21:30:39] [Server thread/INFO]: [CustomNameplates] Enabling CustomNameplates v3.0.24
[21:30:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: nameplates [3.0]
[21:30:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: npex [3.0]
[21:30:42] [Server thread/INFO]: [net.momirealms.customnameplates.libraries.hikari.HikariDataSource] CustomNameplatesHikariPool - Starting...
[21:30:42] [Server thread/INFO]: [net.momirealms.customnameplates.libraries.hikari.pool.HikariPool] CustomNameplatesHikariPool - Added connection net.momirealms.customnameplates.libraries.mysql.cj.jdbc.ConnectionImpl@3f5d77d7
[21:30:42] [Server thread/INFO]: [net.momirealms.customnameplates.libraries.hikari.HikariDataSource] CustomNameplatesHikariPool - Start completed.
[21:30:42] [Server thread/INFO]: [CustomNameplates] Redis server connected.
[21:30:42] [Server thread/WARN]: [CustomNameplates] en_us.yml not exists, using en.yml as default locale.
[21:30:46] [Server thread/WARN]: [CustomNameplates] No requirement type found at actionbar.conditions.papi-condition
[21:30:48] [Server thread/INFO]: [ScreenEffects] Enabling ScreenEffects v1.0.18
[21:30:48] [Server thread/INFO]: [ScreenEffects]     Extracting default effects from .jar
[21:30:48] [Server thread/INFO]: [ScreenEffects]       DONE extracting default effects from .jar
[21:30:48] [Server thread/INFO]: [RFriend] Enabling RFriend v1.0
[21:30:48] [Server thread/INFO]: [GLeaderOS] Enabling GLeaderOS v1.0.0
[21:30:48] [Server thread/INFO]: [LitLibs] New provider: GLeaderOS is hooked into LitLibs!
[21:30:48] [Server thread/INFO]: [GLeaderOS] Loading files
[21:30:48] [Server thread/INFO]: [GLeaderOS] Registering commands.
[21:30:48] [Server thread/INFO]: [GLeaderOS] Connecting remote database
[21:30:48] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[21:30:48] [nameplates-worker-0/INFO]: [CustomNameplates] You are using the latest version.
[21:30:48] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.mariadb.jdbc.Connection@dbf6796
[21:30:48] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[21:30:48] [Server thread/INFO]: [GLeaderOS] gLeaderOS enabled v1.0.0
[21:30:48] [Server thread/INFO]: [HyanseExchange] Enabling HyanseExchange v1.0
[21:30:48] [Server thread/INFO]: [HyanseExchange] Successfully Registered Vault Hook!
[21:30:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: HyanseExchange [1.0]
[21:30:48] [Server thread/INFO]: [DriveBackupV2] Enabling DriveBackupV2 v1.6.1
[21:30:49] [Server thread/INFO]: [DriveBackupV2] Config loaded!
[21:30:49] [Server thread/INFO]: [DriveBackupV2] Scheduling a backup to run every 60 minutes
[21:30:50] [Server thread/INFO]: [DriveBackupV2] Metrics started
[21:30:50] [Server thread/INFO]: [WStart] Enabling WStart v1.0
[21:30:50] [Server thread/INFO]: [WStart] WStarted!
[21:30:50] [Server thread/INFO]: [RHaber] Enabling RHaber v1.0
[21:30:50] [Server thread/INFO]: [CinematicWarp] Enabling CinematicWarp v1.0
[21:30:50] [Server thread/INFO]: [HyronicFriends] Enabling HyronicFriends v1.3.12
[21:30:50] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Starting...
[21:30:50] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-2 - Added connection com.mysql.cj.jdbc.ConnectionImpl@fb2050b
[21:30:50] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Start completed.
[21:30:50] [Server thread/INFO]: [HyronicFriends] Established MySQL connection.
[21:30:50] [Server thread/INFO]: [HyronicFriends] Database setup completed!
[21:30:50] [Server thread/INFO]: [HyronicFriends] Successfully loaded all player data.
[21:30:50] [Server thread/INFO]: [HyronicFriends] BungeeCord detected! We are setting up for you...
[21:30:50] [Server thread/INFO]: [HyronicFriends] Everything is done!
[21:30:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: hfriends [1.3.12]
[21:30:50] [Server thread/INFO]: [HyronicFriends] Hooked into PlaceholderAPI v2.11.6
[21:30:50] [Server thread/INFO]: [HyronicFriends] Plugin loaded successfully!
[21:30:50] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.9.0
[21:30:52] [Server thread/INFO]: [ajLeaderboards] Using MySQL for board cache. (mysql)
[21:30:52] [Server thread/INFO]: [us.ajg0702.leaderboards.libs.hikari.HikariDataSource] HikariPool-1 - Starting...
[21:30:52] [Server thread/INFO]: [us.ajg0702.leaderboards.libs.hikari.HikariDataSource] HikariPool-1 - Start completed.
[21:30:52] [Server thread/INFO]: [ajLeaderboards] Loaded 3 boards
[21:30:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.9.0]
[21:30:52] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[21:30:52] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.9.0 by ajgeiss0702 enabled!
[21:30:52] [Server thread/INFO]: [FlyPlus] Enabling FlyPlus v2.5
[21:30:52] [Server thread/INFO]: [FlyPlus] Enabled!
[21:30:52] [Server thread/INFO]: [WLook] Enabling WLook v1.0.1
[21:30:53] [Server thread/INFO]:  > 33 Npc diyaloğu yüklendi.
[21:30:53] [Server thread/INFO]: [TAB-Bridge] Enabling TAB-Bridge v6.0.1
[21:30:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [6.0.1]
[21:30:53] [Server thread/INFO]: [AquaticCrates] Enabling AquaticCrates v2.7.5
[21:30:53] [Server thread/INFO]: [AquaticSeriesLib] Currently using MINIMESSAGE message formatting!
[21:30:53] [Server thread/INFO]: [AquaticSeriesLib] Currently using MINIMESSAGE message formatting!
[21:30:53] [Server thread/INFO]: [AquaticCrates] Loading PlaceholderAPI Hook!
[21:30:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aquaticcrates [1.0.0]
[21:30:53] [Server thread/INFO]: [AquaticCrates] Loading Database!
[21:30:53] [Server thread/INFO]: [AquaticCrates] Loading ModelEngine Hook!
[21:30:53] [Server thread/INFO]: [AquaticCrates] Loading ItemsAdder Hook!
[21:30:53] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] AquaticCrates DB pool - Starting...
[21:30:53] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] AquaticCrates DB pool - Added connection com.mysql.cj.jdbc.ConnectionImpl@750ff45d
[21:30:53] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] AquaticCrates DB pool - Start completed.
[21:30:53] [Server thread/INFO]: [Playtimes] Enabling Playtimes v1.6.1*
[21:30:54] [Server thread/INFO]: [Playtimes] Connecting to Database...
[21:30:54] [Server thread/INFO]: [Playtimes] Successfully connected to database.
[21:30:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: PlayTimes [1.6.1]
[21:30:54] [Server thread/INFO]: [Playtimes] PlaceholdersAPI Hooked!
[21:30:54] [Server thread/INFO]: [Playtimes] Successfully loaded.
[21:30:54] [Server thread/INFO]: [ItemTag] Enabling ItemTag v3.7.1
[21:30:54] [Server thread/INFO]: [ItemTag] Data using Spigot PersistentDataContainer
[21:30:54] [Server thread/INFO]: [ItemTag] EquipmentChangeListener
[21:30:54] [Server thread/INFO]: [ItemTag] Hooking into PlaceholderApi
[21:30:54] [Server thread/INFO]: [ItemTag] Hooked into PlaceHolderAPI:
[21:30:54] [Server thread/INFO]: [ItemTag] placeholders:
[21:30:54] [Server thread/INFO]: [ItemTag]   %itemtag_cooldown_<timeunit>_[cooldownid]%
[21:30:54] [Server thread/INFO]: [ItemTag]     shows how much cooldown has selected cooldownid for player
[21:30:54] [Server thread/INFO]: [ItemTag]     <timeunit> may be h, s or ms
[21:30:54] [Server thread/INFO]: [ItemTag]     [cooldownid] for cooldown type, by default default
[21:30:54] [Server thread/INFO]: [ItemTag]     example: %itemtag_cooldown_s_anid%
[21:30:54] [Server thread/INFO]: [ItemTag]   %itemtag_handcooldown_<timeunit>%
[21:30:54] [Server thread/INFO]: [ItemTag]     shows how much cooldown has player on the item in his hand
[21:30:54] [Server thread/INFO]: [ItemTag]     <timeunit> may be h, s or ms
[21:30:54] [Server thread/INFO]: [ItemTag]     example: %itemtag_handcooldown_s%
[21:30:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: itemtag [1.0]
[21:30:54] [Server thread/INFO]: [ItemTag] # Enabled (took 110 ms)
[21:30:54] [Server thread/INFO]: [WPlaceholderAPI] Enabling WPlaceholderAPI v1.0-SNAPSHOT
[21:30:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: wpapi [1.0]
[21:30:54] [Server thread/WARN]: [WPlaceholderAPI] Could not save config.yml to plugins/WPlaceholderAPI/config.yml because config.yml already exists.
[21:30:54] [Server thread/INFO]: [RotatingHeads2] Enabling RotatingHeads2 v1.2.0
[21:30:54] [pool-64-thread-1/INFO]: [ajLeaderboards] An update is available! (2.10.1) Run /ajLeaderboards update to download it!
[21:30:54] [Server thread/INFO]: [RotatingHeads2] --------------------------------------------------------------------------------------------
[21:30:54] [Server thread/INFO]: [RotatingHeads2] Loading plugin RotatingHeads2 v.1.2.0
[21:30:54] [Server thread/INFO]: [RotatingHeads2] --------------------------------------------------------------------------------------------
[21:30:54] [Server thread/INFO]: [RotatingHeads2] 
[21:30:54] [Server thread/INFO]: [RotatingHeads2]  Successfully loaded: 1 languages
[21:30:54] [Server thread/INFO]: [RotatingHeads2]  Hooked to language: en_GB
[21:30:54] [Server thread/INFO]: [RotatingHeads2] 
[21:30:54] [Server thread/INFO]: [RotatingHeads2] This plugin is running on 1.2.0...
[21:30:54] [Server thread/INFO]: [RotatingHeads2] Current plugin version on polymart is 1.2.0...
[21:30:54] [Server thread/INFO]: [RotatingHeads2] So your plugin is on the latest version...
[21:30:54] [Server thread/INFO]: [RotatingHeads2] 
[21:30:54] [Server thread/INFO]: [RotatingHeads2]  Plugin author: [Gennario]
[21:30:54] [Server thread/INFO]: [RotatingHeads2] 
[21:30:54] [Server thread/INFO]: [RotatingHeads2] Thanks for choosing Gennario's Development...
[21:30:54] [Server thread/INFO]: [RotatingHeads2] --------------------------------------------------------------------------------------------
[21:30:54] [Server thread/INFO]: [HuskHomesGUI] Enabling HuskHomesGUI v2.3
[21:30:55] [Server thread/INFO]: [HuskHomesGUI] Successfully enabled HuskHomes v2.3
[21:30:55] [Server thread/INFO]: [GSit] Enabling GSit v2.2.0
[21:30:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [2.2.0]
[21:30:55] [Server thread/INFO]: [WorldGuard] Registering session handler dev.geco.gsit.link.worldguard.RegionFlagHandler
[21:30:56] [Server thread/INFO]: [GSit] The plugin was successfully enabled.
[21:30:56] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
[21:30:56] [Server thread/INFO]: [GSit] Link with WorldGuard successful!
[21:30:56] [Server thread/INFO]: [O'DailyQuests] Enabling ODailyQuests v2.3.0
[21:30:56] [Server thread/INFO]: [O'DailyQuests] Plugin is starting...
[21:30:56] [Server thread/INFO]: [O'DailyQuests] Checking for update...
[21:30:56] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-3 - Starting...
[21:30:56] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-3 - Added connection com.mysql.cj.jdbc.ConnectionImpl@96ab559
[21:30:56] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-3 - Start completed.
[21:30:56] [Server thread/INFO]: [O'DailyQuests] Plugin successfully connected to database literpg_general.
[21:30:56] [Server thread/INFO]: [O'DailyQuests] Vault successfully hooked.
[21:30:56] [Server thread/INFO]: [O'DailyQuests] MythicMobs successfully hooked.
[21:30:56] [Server thread/INFO]: [O'DailyQuests] Citizens successfully hooked.
[21:30:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: odailyquests [1.0.4]
[21:30:56] [Server thread/INFO]: [O'DailyQuests] PlaceholderAPI successfully hooked.
[21:30:56] [Server thread/INFO]: [O'DailyQuests] WorldGuard detected, hook enabled.
[21:30:56] [Server thread/INFO]: [O'DailyQuests] Plugin is started!
[21:30:56] [Server thread/INFO]: [PlayerProfile] Enabling PlayerProfile v1.3.0
[21:30:56] [Server thread/INFO]: [PlayerProfile] Detected server version: 1.21.1
[21:30:56] [Server thread/INFO]: [PlayerProfile] Loading menu file: menu.yml
[21:30:56] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-4 - Starting...
[21:30:56] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-4 - Added connection com.mysql.cj.jdbc.ConnectionImpl@349ebbde
[21:30:56] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-4 - Start completed.
[21:30:56] [Server thread/INFO]: [PlayerProfile] MySQL table created successfully
[21:30:56] [Server thread/INFO]: [ajQueue] Enabling ajQueue v2.7.0
[21:30:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajqueue [2.7.0]
[21:30:56] [Server thread/INFO]: [ajQueue] Registered PlaceholderAPI placeholders
[21:30:57] [Server thread/INFO]: [ajQueue] Spigot side enabled! v2.7.0
[21:30:57] [Server thread/INFO]: [DisableJoinMessage] Enabling DisableJoinMessage v1.0*
[21:30:57] [Server thread/INFO]: [DisableJoinMessage] ===================================
[21:30:57] [Server thread/INFO]: [DisableJoinMessage] ===================================
[21:30:57] [Server thread/INFO]: [DisableJoinMessage] Check out my other Plugins!
[21:30:57] [Server thread/INFO]: [DisableJoinMessage] I also sell a BedWars Plugin!
[21:30:57] [Server thread/INFO]: [DisableJoinMessage] ===================================
[21:30:57] [Server thread/INFO]: [DisableJoinMessage] ===================================
[21:30:57] [Server thread/INFO]: [WStorage] Enabling WStorage v1.0-SNAPSHOT
[21:30:57] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-5 - Starting...
[21:30:57] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-5 - Added connection com.mysql.cj.jdbc.ConnectionImpl@501d3ea1
[21:30:57] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-5 - Start completed.
[21:30:57] [Server thread/INFO]: [WStorage] WStorage plugin has been enabled!
[21:30:57] [Server thread/INFO]: [FortuneWheel] Enabling FortuneWheel vRELEASE-1.0.3
[21:30:58] [Server thread/INFO]: [FortuneWheel] -----------------------------------------------------------------------------------------
[21:30:58] [Server thread/INFO]: [FortuneWheel] Loading plugin FortuneWheel v.RELEASE-1.0.3
[21:30:58] [Server thread/INFO]: [FortuneWheel] -----------------------------------------------------------------------------------------
[21:30:58] [Server thread/INFO]: [FortuneWheel] 
[21:30:58] [Server thread/INFO]: [FortuneWheel]  Loaded and spawned: 1 wheels
[21:30:58] [Server thread/INFO]: [FortuneWheel]  Invisible packet displays?: Change it in config.yml to OLD
[21:30:58] [Server thread/INFO]: [FortuneWheel]  Resourcepack provider: ITEMSADDER
[21:30:58] [Server thread/INFO]: [FortuneWheel]  Successfully loaded: 1 languages
[21:30:58] [Server thread/INFO]: [FortuneWheel]  Version adapter: Auto detected version 1.20 and newer (NEW METHOD)
[21:30:58] [Server thread/INFO]: [FortuneWheel]  Pack provider: Hooked ItemsAdder plugin
[21:30:58] [Server thread/INFO]: [FortuneWheel]  Hooked to language: en_GB
[21:30:58] [Server thread/INFO]: [FortuneWheel] 
[21:30:58] [Server thread/INFO]: [FortuneWheel] This plugin is running on RELEASE-1.0.3...
[21:30:58] [Server thread/INFO]: [FortuneWheel] Current plugin version on polymart is RELEASE-1.0.3...
[21:30:58] [Server thread/INFO]: [FortuneWheel] So your plugin is on the latest version...
[21:30:58] [Server thread/INFO]: [FortuneWheel] 
[21:30:58] [Server thread/INFO]: [FortuneWheel]  Plugin author: [Gennario]
[21:30:58] [Server thread/INFO]: [FortuneWheel] 
[21:30:58] [Server thread/INFO]: [FortuneWheel] Thanks for choosing Gennario's Development...
[21:30:58] [Server thread/INFO]: [FortuneWheel] -----------------------------------------------------------------------------------------
[21:30:58] [Server thread/INFO]: [WDeath] Enabling WDeath v1.0-SNAPSHOT
[21:30:59] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-6 - Starting...
[21:30:59] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-6 - Added connection com.mysql.cj.jdbc.ConnectionImpl@7efe195a
[21:30:59] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-6 - Start completed.
[21:30:59] [Server thread/INFO]: [WDeath] Database created or verified: literpg_general
[21:30:59] [Server thread/INFO]: [WDeath] Database tables created or verified
[21:30:59] [Server thread/INFO]: [WDeath] Database connection pool initialized
[21:31:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: WDeath [1.0]
[21:31:00] [Server thread/INFO]: [WDeath] WDeath enabled with multi-threaded optimizations
[21:31:00] [Server thread/INFO]: [WBlackSmith] Enabling WBlackSmith v1.0-SNAPSHOT
[21:31:00] [Server thread/WARN]: [WBlackSmith] Could not save config.yml to plugins/WBlackSmith/config.yml because config.yml already exists.
[21:31:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: wblacksmith [1.0]
[21:31:00] [Server thread/INFO]: [WBlackSmith] PlaceHolderAPI bulundu!
[21:31:00] [Server thread/INFO]: [WBlackSmith] Delivery items successfully loaded!
[21:31:00] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.4-SNAPSHOT
[21:31:00] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[21:31:00] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[21:31:00] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[21:31:00] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[21:31:00] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[21:31:00] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[21:31:00] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[21:31:00] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[21:31:00] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[21:31:00] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[21:31:00] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[21:31:00] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[21:31:00] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[21:31:00] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[21:31:00] [Server thread/INFO]: [GrimAC] Enabling GrimAC v2.3.69
[21:31:00] [Server thread/INFO]: [GrimAC] Registering singular bukkit event... (PistonEvent)
[21:31:00] [Server thread/INFO]: [GrimAC] Registering packets...
[21:31:00] [Server thread/INFO]: [GrimAC] Registering an outgoing plugin channel...
[21:31:00] [Server thread/INFO]: [GrimAC] Registering tick schedulers...
[21:31:00] [Server thread/INFO]: [GrimAC] [ACF] Enabled Asynchronous Tab Completion Support!
[21:31:01] [Server thread/ERROR]: [GrimAC] GrimAC has detected that you are using ViaVersion with the `fix-1_21-placement-rotation` option enabled.
[21:31:01] [Server thread/ERROR]: [GrimAC] This option is known to cause issues with GrimAC and may result in false positives and bypasses.
[21:31:01] [Server thread/ERROR]: [GrimAC] Please disable this option in your ViaVersion configuration to prevent these issues.
[21:31:01] [Server thread/INFO]: [ChatControl] Enabling ChatControl v11.2.7
[21:31:01] [Server thread/INFO]: [ChatControl]  ____ _  _ ____ ___ ____ ____ _  _ ___ ____ ____ _     
[21:31:01] [Server thread/INFO]: [ChatControl]  |    |__| |__|  |  |    |  | |\ |  |  |__/ |  | |    
[21:31:01] [Server thread/INFO]: [ChatControl]  |___ |  | |  |  |  |___ |__| | \|  |  |  \ |__| |___
[21:31:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chatcontrol [11.2.7]
[21:31:02] [Server thread/INFO]: [ChatControl] Warning: Both the new and the old folder exist. Skipping migration and using the new ChatControl/ folder. The old ChatControlRed/ folder can be removed.
[21:31:03] [Server thread/INFO]:   
[21:31:03] [Server thread/INFO]: [ChatControl] For documentation & tutorial, see:
[21:31:03] [Server thread/INFO]: [ChatControl] https://github.com/kangarko/chatcontrol/wiki
[21:31:03] [Server thread/INFO]:   
[21:31:03] [Server thread/INFO]: [ChatControl] Loaded! Random joke: Cracked by kangarko (MineAcademy.org) #joke
[21:31:03] [Server thread/INFO]:   
[21:31:03] [Server thread/INFO]: [SupremeTags] Enabling SupremeTags v2.0.7.1
[21:31:03] [Server thread/INFO]: 
[21:31:03] [Server thread/INFO]:   ____  _   _ ____  ____  _____ __  __ _____ _____  _    ____ ____  
[21:31:03] [Server thread/INFO]:  / ___|| | | |  _ \|  _ \| ____|  \/  | ____|_   _|/ \  / ___/ ___| 
[21:31:03] [Server thread/INFO]:  \___ \| | | | |_) | |_) |  _| | |\/| |  _|   | | / _ \| |  _\___ \ 
[21:31:03] [Server thread/INFO]:   ___) | |_| |  __/|  _ <| |___| |  | | |___  | |/ ___ \ |_| |___) |
[21:31:03] [Server thread/INFO]:  |____/ \___/|_|   |_| \_\_____|_|  |_|_____| |_/_/   \_\____|____/ 
[21:31:03] [Server thread/INFO]:  Allow players to show off their supreme tags!
[21:31:03] [Server thread/INFO]: 
[21:31:03] [Server thread/INFO]: > Version: 2.0.7.1
[21:31:03] [Server thread/INFO]: > Author: DevScape
[21:31:03] [Server thread/INFO]: > NBTAPI: Found!
[21:31:03] [Server thread/INFO]: > Vault: Found!
[21:31:03] [Server thread/INFO]: > Database: MySQL!
[21:31:03] [Server thread/INFO]: > Plugin up to date!
[21:31:03] [Server thread/WARN]: [com.zaxxer.hikari.HikariConfig] HikariPool-7 - idleTimeout is close to or more than maxLifetime, disabling it.
[21:31:03] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-7 - Starting...
[21:31:03] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-7 - Added connection com.mysql.cj.jdbc.ConnectionImpl@573ea18e
[21:31:03] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-7 - Start completed.
[21:31:03] [Server thread/INFO]: > PlaceholderAPI: Found
[21:31:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: supremetags [2.0.7.1]
[21:31:03] [Server thread/INFO]: [TAGS] loaded 2 tag(s) successfully.
[21:31:03] [Server thread/INFO]: [HuskSync] Enabling HuskSync v3.7.3
[21:31:04] [Server thread/INFO]: [HuskSync] Initializing commands...
[21:31:04] [Server thread/INFO]: [HuskSync] Successfully initialized commands
[21:31:04] [Server thread/INFO]: [HuskSync] Initializing data adapter...
[21:31:04] [Server thread/INFO]: [HuskSync] Successfully initialized data adapter
[21:31:04] [Server thread/INFO]: [HuskSync] Initializing data serializers...
[21:31:04] [Server thread/INFO]: [HuskSync] Successfully initialized data serializers
[21:31:04] [Server thread/INFO]: [HuskSync] Initializing data migrators/converters...
[21:31:04] [Server thread/INFO]: [HuskSync] Successfully initialized data migrators/converters
[21:31:04] [Server thread/INFO]: [HuskSync] Initializing MySQL database connection...
[21:31:04] [Server thread/INFO]: [net.william278.husksync.libraries.hikari.HikariDataSource] HuskSyncHikariPool - Starting...
[21:31:04] [Server thread/INFO]: [net.william278.husksync.libraries.hikari.pool.HikariPool] HuskSyncHikariPool - Added connection com.mysql.cj.jdbc.ConnectionImpl@1d3ee7a1
[21:31:04] [Server thread/INFO]: [net.william278.husksync.libraries.hikari.HikariDataSource] HuskSyncHikariPool - Start completed.
[21:31:04] [Server thread/INFO]: [HuskSync] Successfully initialized MySQL database connection
[21:31:04] [Server thread/INFO]: [HuskSync] Initializing Redis server connection...
[21:31:04] [Server thread/INFO]: [HuskSync] Successfully initialized Redis server connection
[21:31:04] [Server thread/INFO]: [HuskSync] Initializing data syncer...
[21:31:04] [Server thread/INFO]: [HuskSync] Successfully initialized data syncer
[21:31:04] [Server thread/INFO]: [HuskSync] Initializing events...
[21:31:04] [husksync:redis_subscriber/INFO]: [HuskSync] Redis subscribed to channel 'husksync::literpg:update_user_data'
[21:31:04] [husksync:redis_subscriber/INFO]: [HuskSync] Redis subscribed to channel 'husksync::literpg:request_user_data'
[21:31:04] [husksync:redis_subscriber/INFO]: [HuskSync] Redis subscribed to channel 'husksync::literpg:return_user_data'
[21:31:04] [Server thread/INFO]: [HuskSync] Using ProtocolLib to cancel packets for locked players
[21:31:04] [Server thread/INFO]: [HuskSync] Successfully initialized events
[21:31:04] [Server thread/INFO]: [HuskSync] Initializing hooks...
[21:31:04] [Server thread/INFO]: [HuskSync] Successfully initialized hooks
[21:31:04] [Server thread/INFO]: [HuskSync] Initializing api...
[21:31:04] [Server thread/INFO]: [HuskSync] Successfully initialized api
[21:31:04] [Server thread/INFO]: [HuskSync] Initializing metrics...
[21:31:04] [Server thread/INFO]: [HuskSync] Successfully initialized metrics
[21:31:04] [Server thread/INFO]: [RSound] Enabling RSound v1.0
[21:31:04] [Server thread/INFO]: [ConditionalEvents] Enabling ConditionalEvents v4.61.1
[21:31:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: conditionalevents [4.61.1]
[21:31:04] [Server thread/INFO]: [ConditionalEvents] Has been enabled! Version: 4.61.1
[21:31:04] [Server thread/INFO]: [ConditionalEvents] Thanks for using my plugin!   ~Ajneb97
[21:31:04] [Server thread/INFO]: There is a new version available. (4.61.2)
[21:31:04] [Server thread/INFO]: You can download it at: https://modrinth.com/plugin/conditionalevents
[21:31:04] [Server thread/INFO]: [MFurniture] Enabling MFurniture v1.1.5.1
[21:31:05] [Server thread/INFO]:         MFurniture         
[21:31:05] [Server thread/INFO]: Developed by amownyy
[21:31:05] [Server thread/INFO]: Discord: https://discord.minetrone.com
[21:31:05] [Server thread/INFO]: Website: https://www.minetrone.com
[21:31:05] [Server thread/INFO]: [WQuest] Enabling WQuest v1.0
[21:31:05] [Server thread/INFO]: WQUEST İS ACTİVE BY WEESLİ
[21:31:05] [Server thread/WARN]: [WQuest] Could not save config.yml to plugins/WQuest/config.yml because config.yml already exists.
[21:31:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: wquests [1.0]
[21:31:05] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.7.4
[21:31:05] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.4*-=-=-=-=-=-=-=-=-=-*
[21:31:05] [Server thread/INFO]: | Hooked on Vault 1.7.3-b131
[21:31:05] [Server thread/INFO]: | Command file(s) found : 2
[21:31:05] [Server thread/INFO]: | Config : Ready.
[21:31:05] [Server thread/INFO]: | ProtocolLib found, features availables (SignMenu)
[21:31:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mycommand [1.0.0]
[21:31:05] [Server thread/INFO]: | Placeholder_API : Hooked, Ok.
[21:31:06] [Server thread/INFO]: | Custom commands loaded : 15
[21:31:06] [Server thread/INFO]: | New update available : MyCommand v5.7.5
[21:31:06] [Server thread/INFO]: |          by emmerrei a.k.a. ivanfromitaly.           
[21:31:06] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*   Done!   *-=-=-=-=-=-=-=-=-=-=-*
[21:31:06] [Server thread/INFO]: [WTrade] Enabling WTrade v1.0
[21:31:06] [Server thread/WARN]: [WTrade] Could not save config.yml to plugins/WTrade/config.yml because config.yml already exists.
[21:31:06] [Server thread/WARN]: [WTrade] Could not save shopkeepers.yml to plugins/WTrade/shopkeepers.yml because shopkeepers.yml already exists.
[21:31:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: wtrade [1.0]
[21:31:06] [Server thread/INFO]: [PlayerKits2] Enabling PlayerKits2 v1.17.1
[21:31:06] [Server thread/INFO]: [pk.ajneb97.libs.hikaricp.HikariDataSource] HikariPool-1 - Starting...
[21:31:07] [Server thread/INFO]: [pk.ajneb97.libs.hikaricp.HikariDataSource] HikariPool-1 - Start completed.
[21:31:07] [Server thread/INFO]: [PlayerKits²]  Successfully connected to the Database.
[21:31:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerkits [1.17.1]
[21:31:07] [Server thread/INFO]: [PlayerKits²] Has been enabled! Version: 1.17.1
[21:31:07] [Server thread/INFO]: [PlayerKits²] Thanks for using my plugin!   ~Ajneb97
[21:31:07] [Server thread/INFO]: There is a new version available. (1.17.2)
[21:31:07] [Server thread/INFO]: You can download it at: https://modrinth.com/plugin/playerkits-2
[21:31:07] [Server thread/INFO]: [zAuctionHouseRedis] Enabling zAuctionHouseRedis v2.0.2
[21:31:07] [Server thread/INFO]: [zAuctionHouseRedis] === ENABLE START ===
[21:31:07] [Server thread/INFO]: [zAuctionHouseRedis] === ENABLE DONE (197ms) ===
[21:31:07] [Server thread/INFO]: [AFKPlusPAPI] Enabling AFKPlusPAPI v1.0.6
[21:31:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: AFKPlus [3.4.9]
[21:31:07] [Server thread/INFO]: [AFKPlusPAPI] AFKPlusPAPI v.1.0.6 has been enabled!
[21:31:07] [Server thread/INFO]: [CommandRegions] Enabling CommandRegions v1.2.1*
[21:31:07] [Server thread/INFO]: [CommandRegions] 
Command Regions by Astero is loading up...

[21:31:07] [Server thread/INFO]: [CommandRegions] → YAML files are loaded up!
[21:31:07] [Server thread/INFO]: [CommandRegions] → Caching files is done!
[21:31:07] [Server thread/INFO]: [CommandRegions] → Event Listeners are loaded up!
[21:31:07] [Server thread/INFO]: [CommandRegions] → Commands are loaded up!
[21:31:07] [Server thread/INFO]: [CommandRegions] 
              >--------------------------<
[21:31:07] [Server thread/INFO]: [CommandRegions]               A total of 8 Regions have
[21:31:07] [Server thread/INFO]: [CommandRegions]                     been loaded up.
[21:31:07] [Server thread/INFO]: [CommandRegions]               >--------------------------< 

[21:31:07] [Server thread/INFO]: [CommandRegions] Command Regions by Astero has been sucessfully loaded up!

[21:31:07] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.0-Release
[21:31:07] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[21:31:08] [Server thread/WARN]: [DeluxeMenus] Menu size for menu: magaza is not a multiple of 9
Defaulting to 54.
[21:31:08] [Server thread/WARN]: [DeluxeMenus] Menu size for menu: kasalar is not a multiple of 9
Defaulting to 54.
[21:31:08] [Server thread/WARN]: [DeluxeMenus] Material for item: nether_icon in menu: rtp_menu_end is not present!
Skipping item: nether_icon
[21:31:08] [Server thread/WARN]: [DeluxeMenus] Material for item: nether_icon in menu: rtp_menu_overworld is not present!
Skipping item: nether_icon
[21:31:09] [Server thread/INFO]: [DeluxeMenus] 132 GUI menus loaded!
[21:31:09] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[21:31:09] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[21:31:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.0-Release]
[21:31:09] [Server thread/INFO]: [VanillaMinimaps] Enabling VanillaMinimaps v1.0.1
[21:31:09] [Server thread/INFO]: [Sudo] Enabling Sudo v1
[21:31:09] [Server thread/INFO]: [WCop] Enabling WCop v1.0
[21:31:09] [Server thread/INFO]: [Wtimer] Enabling Wtimer v1.0
[21:31:09] [Server thread/INFO]: [Wtimer] WTIMER aktif.
[21:31:09] [Server thread/INFO]: [EpicHeist] Enabling EpicHeist v1.0.0
[21:31:10] [Server thread/INFO]: [EpicHeist] EpicHeist created by PnterNN
[21:31:10] [Server thread/INFO]: [EpicHeist] Discord: PnterNN#8478
[21:31:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: epicheist [1.0.0]
[21:31:10] [Server thread/INFO]: [RLevel] Enabling RLevel v1.0
[21:31:10] [Server thread/INFO]: [RLevel] MySQL bağlantısı başarıyla kuruldu!
[21:31:10] [Server thread/INFO]: [RLevel] MySQL tabloları başarıyla oluşturuldu!
[21:31:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rlevel [1.0]
[21:31:10] [Server thread/INFO]: [RLevel] PlaceholderAPI hook'u başarıyla kuruldu!
[21:31:10] [Server thread/INFO]: [RLevel] RLevel başarıyla etkinleştirildi!
[21:31:11] [Server thread/INFO]: [spark] Starting background profiler...
[21:31:12] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[21:31:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerprofile [1.3.0]
[21:31:12] [Server thread/INFO]: Done preparing level "lobi" (79.237s)
[21:31:12] [Server thread/INFO]: Running delayed init tasks
[21:31:12] [Craft Scheduler Thread - 13 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[21:31:12] [Craft Scheduler Thread - 17 - ItemsAdder/INFO]: [ItemsAdder] [License] Store product licensed to: cengiz1 (19199)
[21:31:12] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[21:31:12] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[21:31:12] [Craft Scheduler Thread - 25 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[21:31:12] [Craft Scheduler Thread - 30 - EpicPluginLib/INFO]: [EpicPluginLib] EpicPluginLib v2.7 is available. Please update.
[21:31:12] [Craft Scheduler Thread - 32 - zAuctionHouseV3/INFO]: [zAuctionHouseV3] The database connection is valid ! (localhost)
[21:31:12] [Craft Scheduler Thread - 37 - DriveBackupV2/INFO]: [DriveBackupV2] Checking for updates...
[21:31:12] [Craft Scheduler Thread - 35 - AFKPlus/INFO]: [AFKPlus] AFKPlus file watcher started!
[21:31:12] [Craft Scheduler Thread - 25 - DecentHolograms/INFO]: [DecentHolograms] Loaded 36 holograms!
[21:31:12] [Craft Scheduler Thread - 18 - ItemsAdder/INFO]: [ItemsAdder]  
[21:31:12] [Craft Scheduler Thread - 18 - ItemsAdder/INFO]: [ItemsAdder] UPDATE available!
[21:31:12] [Craft Scheduler Thread - 18 - ItemsAdder/INFO]: [ItemsAdder] Current version: 4.0.9
[21:31:12] [Craft Scheduler Thread - 18 - ItemsAdder/INFO]: [ItemsAdder] Online version: 4.0.9-hotfix-1
[21:31:12] [Craft Scheduler Thread - 18 - ItemsAdder/INFO]: [ItemsAdder]  
[21:31:12] [Craft Scheduler Thread - 24 - CMILib/INFO]: New version of CMILib was detected. Please update it (1.5.3.5 -> 1.5.4.0)
[21:31:12] [Craft Scheduler Thread - 44 - ODailyQuests/INFO]: [O'DailyQuests] Plugin is up to date.
[21:31:12] [Craft Scheduler Thread - 42 - Playtimes/WARN]: [Playtimes] You are using an older version of PlayTimes!
[21:31:12] [Craft Scheduler Thread - 42 - Playtimes/INFO]: [Playtimes] Download the newest version here:
[21:31:12] [Craft Scheduler Thread - 42 - Playtimes/INFO]: [Playtimes] https://www.spigotmc.org/resources/58858/
[21:31:12] [Craft Scheduler Thread - 27 - DecentHolograms/INFO]: 
[21:31:12] [Craft Scheduler Thread - 27 - DecentHolograms/INFO]: A newer version of DecentHolograms is available. Download it from: 
[21:31:12] [Craft Scheduler Thread - 27 - DecentHolograms/INFO]: - https://www.spigotmc.org/resources/96927/
[21:31:12] [Craft Scheduler Thread - 27 - DecentHolograms/INFO]: - https://modrinth.com/plugin/decentholograms
[21:31:12] [Craft Scheduler Thread - 32 - zAuctionHouseV3/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading items
[21:31:12] [Craft Scheduler Thread - 32 - zAuctionHouseV3/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading transactions
[21:31:12] [pool-53-thread-1/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading of items successfully completed.
[21:31:12] [pool-53-thread-2/INFO]: [zAuctionHouseV3 v3.2.3.1] Loading of transactions successfully completed.
[21:31:13] [Craft Scheduler Thread - 34 - AFKPlus/INFO]: [AFKPlus] Error retrieving message from config
[21:31:13] [Craft Scheduler Thread - 65 - zAuctionHouseV3/INFO]: [zAuctionHouseRedis] New update available. Your version: 2.0.2, latest version: 2.1.4
[21:31:13] [Craft Scheduler Thread - 65 - zAuctionHouseV3/INFO]: [zAuctionHouseRedis] Download plugin here: https://groupez.dev/resources/210
[21:31:13] [Craft Scheduler Thread - 33 - zAuctionHouseV3/INFO]: [zAuctionHouseV3 v3.2.3.1] New update available. Your version: 3.2.3.1, latest version: 3.2.3.2
[21:31:13] [Craft Scheduler Thread - 33 - zAuctionHouseV3/INFO]: [zAuctionHouseV3 v3.2.3.1] Download plugin here: https://groupez.dev/resources/1
[21:31:13] [Craft Scheduler Thread - 28 - zMenu/INFO]: [zMenu v1.0.3.8] No update available.
[21:31:14] [Craft Scheduler Thread - 37 - DriveBackupV2/INFO]: [DriveBackupV2] DriveBackup version 1.8.0 has been released, You are currently running version 1.6.1
[21:31:14] [Craft Scheduler Thread - 37 - DriveBackupV2/INFO]: Update at: http://bit.ly/2VGtF7L" or with /drivebackup update
[21:31:15] [Server thread/WARN]: [CustomFishing] en_us.yml not exists, using en.yml as default locale.
[21:31:15] [Server thread/INFO]: [net.momirealms.customfishing.libraries.hikari.HikariDataSource] CustomFishingHikariPool - Starting...
[21:31:17] [Server thread/INFO]: [net.momirealms.customfishing.libraries.hikari.pool.HikariPool] CustomFishingHikariPool - Added connection net.momirealms.customfishing.libraries.mysql.cj.jdbc.ConnectionImpl@7f15a1e5
[21:31:17] [Server thread/INFO]: [net.momirealms.customfishing.libraries.hikari.HikariDataSource] CustomFishingHikariPool - Start completed.
[21:31:17] [Server thread/INFO]: [CustomFishing] Redis server connected.
[21:31:17] [Server thread/WARN]: [CustomFishing] Detected that you are running an outdated Redis server. v6.0.16
. 
[21:31:17] [Server thread/WARN]: [CustomFishing] It's recommended to update to avoid security vulnerabilities!
[21:31:17] [Server thread/INFO]: WorldGuard detected.
[21:31:18] [Server thread/INFO]: MythicMobs 5.x detected.
[21:31:18] [Server thread/INFO]: CustomFishing detected. (Not using CustomFishing-Only Settings)
[21:31:18] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (Vault)
[21:31:18] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (LuckPerms)
[21:31:18] [Server thread/INFO]: [CustomCrops] Registry access has been frozen
[21:31:18] [Server thread/INFO]: [SilkSpawners] Result from AutoUpdater is: NO_UPDATE
[21:31:18] [Server thread/INFO]: [PlayMoreSounds] Starting Regions Handler v2.0 addon.
[21:31:18] [Server thread/INFO]: [PlayMoreSounds] Starting WorldGuard Regions v2.0 addon.
[21:31:18] [Craft Scheduler Thread - 22 - ItemsAdder/INFO]: [ItemsAdder] Loaded 1549 items
[21:31:18] [Craft Scheduler Thread - 22 - ItemsAdder/INFO]: [ItemsAdder] Used 0/188 REAL block IDs
[21:31:18] [Craft Scheduler Thread - 22 - ItemsAdder/INFO]: [ItemsAdder] Used 219/750 REAL_NOTE block IDs
[21:31:18] [Craft Scheduler Thread - 22 - ItemsAdder/INFO]: [ItemsAdder] Used 31/63 REAL_TRANSPARENT block IDs
[21:31:18] [Craft Scheduler Thread - 22 - ItemsAdder/INFO]: [ItemsAdder] Used 63/127 REAL_WIRE block IDs
[21:31:18] [Craft Scheduler Thread - 22 - ItemsAdder/INFO]: [ItemsAdder] Used 0/14 FIRE block IDs
[21:31:18] [Craft Scheduler Thread - 22 - ItemsAdder/INFO]: [ItemsAdder] Used 892/6608 font_images
[21:31:18] [Craft Scheduler Thread - 22 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded 48 categories
[21:31:18] [Craft Scheduler Thread - 22 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded successfully.
[21:31:19] [Craft Scheduler Thread - 22 - ItemsAdder/INFO]: [ItemsAdder] [Pack] Resourcepack URL (self-host): http://45.95.214.43:8163/generated.zip
[21:31:21] [Server thread/INFO]: [Citizens] Loaded 58 NPCs.
[21:31:21] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop turkey_meat
[21:31:21] [Server thread/WARN]: [MythicMobs] --| File: DropItemMechanic
[21:31:21] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[21:31:21] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop turkey_meat
[21:31:21] [Server thread/WARN]: [MythicMobs] --| File: DropItemMechanic
[21:31:21] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[21:31:21] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop turkey_meat
[21:31:21] [Server thread/WARN]: [MythicMobs] --| File: DropItemMechanic
[21:31:21] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[21:31:21] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop turkey_meat
[21:31:21] [Server thread/WARN]: [MythicMobs] --| File: DropItemMechanic
[21:31:21] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[21:31:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:21] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop turkey_head
[21:31:21] [Server thread/WARN]: [MythicMobs] --| File: DropItemMechanic
[21:31:21] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[21:31:21] [Server thread/WARN]: [ViaVersion] There is a newer plugin version available: 5.3.1, you're on: 5.2.1
[21:31:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: worldguard [1.4.2]
[21:31:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: localtime [1.2]
[21:31:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: progress [2.1]
[21:31:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.6.2]
[21:31:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[21:31:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[21:31:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[21:31:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: bungee [2.3]
[21:31:21] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playertime due to a missing plugin: PlayerTime
[21:31:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: world [1.2.2]
[21:31:21] [Server thread/INFO]: [PAPI] [Javascript-Expansion] 2 scripts loaded!
[21:31:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: javascript [2.1.2]
[21:31:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.1]
[21:31:21] [Server thread/INFO]: 11 placeholder hook(s) registered! 2 placeholder hook(s) have an update available.
[21:31:21] [Server thread/ERROR]: [ItemsAdder] Error loading recipe 'runiccraft:orelius_cevirme6_0'. Please check shape characters and materials. You may have missed one or used a wrong character
[21:31:21] [Server thread/WARN]: java.lang.IllegalArgumentException: Symbol does not appear in the shape: [q]
[21:31:21] [Server thread/WARN]:     at com.google.common.base.Preconditions.checkArgument(Preconditions.java:178)
[21:31:21] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.setIngredient(ShapedRecipe.java:179)
[21:31:21] [Server thread/WARN]:     at itemsadder.jar//itemsadder.m.no.a(SourceFile:78)
[21:31:21] [Server thread/WARN]:     at itemsadder.jar//itemsadder.m.no.a(SourceFile:31)
[21:31:21] [Server thread/WARN]:     at itemsadder.jar//itemsadder.m.mx.a(SourceFile:27)
[21:31:21] [Server thread/WARN]:     at itemsadder.jar//itemsadder.m.mx.a(SourceFile:38)
[21:31:21] [Server thread/WARN]:     at itemsadder.jar//itemsadder.m.ma.a(SourceFile:493)
[21:31:21] [Server thread/WARN]:     at itemsadder.jar//itemsadder.m.ag.a(SourceFile:1093)
[21:31:21] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:21] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474)
[21:31:21] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1228)
[21:31:21] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[21:31:21] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:31:21] [Server thread/ERROR]: [ItemsAdder] Error loading recipe 'runiccraft:oreliusnugget6_0'. Please check shape characters and materials. You may have missed one or used a wrong character
[21:31:21] [Server thread/WARN]: java.lang.IllegalArgumentException: Symbol does not appear in the shape: [q]
[21:31:21] [Server thread/WARN]:     at com.google.common.base.Preconditions.checkArgument(Preconditions.java:178)
[21:31:21] [Server thread/WARN]:     at org.bukkit.inventory.ShapedRecipe.setIngredient(ShapedRecipe.java:179)
[21:31:21] [Server thread/WARN]:     at itemsadder.jar//itemsadder.m.no.a(SourceFile:78)
[21:31:21] [Server thread/WARN]:     at itemsadder.jar//itemsadder.m.no.a(SourceFile:31)
[21:31:21] [Server thread/WARN]:     at itemsadder.jar//itemsadder.m.mx.a(SourceFile:27)
[21:31:21] [Server thread/WARN]:     at itemsadder.jar//itemsadder.m.mx.a(SourceFile:38)
[21:31:21] [Server thread/WARN]:     at itemsadder.jar//itemsadder.m.ma.a(SourceFile:493)
[21:31:21] [Server thread/WARN]:     at itemsadder.jar//itemsadder.m.ag.a(SourceFile:1093)
[21:31:21] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:21] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474)
[21:31:21] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1228)
[21:31:21] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[21:31:21] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:31:21] [Server thread/INFO]: [ItemsAdder] Reloading ItemsAdder Custom Entities Citizens NPCs...
[21:31:21] [Server thread/INFO]: [ItemsAdder] Reloaded 0 ItemsAdder Custom Entities Citizens NPCs.
[21:31:21] [Server thread/INFO]: [Mythic] Reloading plugin...
[21:31:21] [Server thread/INFO]: [MythicMobs] Saving plugin data...
[21:31:21] [Server thread/INFO]: [MythicMobs] ✓Saving Finished
[21:31:21] [Server thread/INFO]: [MythicMobs] Loading Packs...
[21:31:23] [Server thread/INFO]: [MythicMobs] Loading Items...
[21:31:23] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[21:31:23] [Server thread/INFO]: [MythicMobs] Loading Skills...
[21:31:23] [Server thread/WARN]: [MythicMobs] Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<caster.hp><&fs><caster.mhp>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<caster.hp><&fs><caster.mhp>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<caster.hp><&fs><caster.mhp>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<caster.hp><&fs><caster.mhp>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error: Particle 'snow_shovel' is not supported by this version
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<target.itemstack_amount>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<target.itemstack_amount>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<random.float.0.8to1.2>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<random.float.0.8to1.2>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<random.float.0.8to1.2>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<random.float.0.8to1.2>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.eichpee>+20*<skill.var.amount_targets>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.1to15>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.19to26>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.9to12>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.3to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.20to24>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.20to24>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.3to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.20to24>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.15>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.25to35>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.25to35>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.25to35>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.15>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.3to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.25to35>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.25to35>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.25to35>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.35to65>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.3to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.3to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.0to2': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.8to2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.5to1.9>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.0to3': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.8>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.0to1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.9to2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:23] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.5to1.9>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.5.0to5.5>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.eichpee>+15*<skill.var.amount_targets>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.7to1.>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.5to65.>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.4to1.7>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.4to1.7>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.4to1.7>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.5to6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.3to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.6to1.9>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.4to1.7>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.eichpee>+20*<skill.var.amount_targets>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.19to26>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.9to12>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.3to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.20to24>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.20to24>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.3to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.20to24>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.15>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.25to35>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.25to35>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.25to35>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.15>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.3to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.25to35>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.25to35>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.25to35>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.35to65>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.15>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.7to2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.3to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.3to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.5to1.9>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.3to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.3to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.0to2': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.8to2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.5to1.9>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.0to3': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.8>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.0to1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.9to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.9to2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.5to1.9>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.15>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:24] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.3to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:25] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:25] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.7to1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:25] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.7to1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:25] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:25] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:25] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.7to1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:25] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.7to1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:25] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:25] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:25] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:25] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.1to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:25] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.6to1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:25] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.4to0.6': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:25] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:25] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:25] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.1to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:25] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.6to1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:25] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.4to0.6': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:25] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:25] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.2to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:25] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.1to1.2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:25] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.6to1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:25] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.4to0.6': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:25] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[21:31:25] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[21:31:25] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in RandomSpawn sniffer_randomspawn
[21:31:25] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[21:31:25] [Server thread/WARN]: [MythicMobs] --| Error Message: No valid mob types configured
[21:31:25] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in RandomSpawn big_sniffer_randomspawn
[21:31:25] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[21:31:25] [Server thread/WARN]: [MythicMobs] --| Error Message: No valid mob types configured
[21:31:25] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in RandomSpawn sniffer_randomspawn
[21:31:25] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[21:31:25] [Server thread/WARN]: [MythicMobs] --| Error Message: No valid mob types configured
[21:31:25] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in RandomSpawn big_sniffer_randomspawn
[21:31:25] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[21:31:25] [Server thread/WARN]: [MythicMobs] --| Error Message: No valid mob types configured
[21:31:25] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[21:31:25] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[21:31:25] [Server thread/WARN]: [MythicMobs] --| Skill: MEGAWARDEN_stun_handler | File: /root/spawn1211/spawn/plugins/MythicMobs/Skills/littleroom/mega_warden.yml
[21:31:25] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill MEGAWARDEN_stun_hit
[21:31:25] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=MEGAWARDEN_stun_hit}
[21:31:25] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:25] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:25] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:25] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:25] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:25] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to1.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:25] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.3to0.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:25] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[21:31:25] [Server thread/WARN]: [MythicMobs] --| Mob: MEGAWARDEN_soul | File: /root/spawn1211/spawn/plugins/MythicMobs/Mobs/littleroom/mega_warden.yml
[21:31:25] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill MEGAWARDEN_soul_consume
[21:31:25] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=MEGAWARDEN_soul_consume}
[21:31:25] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[21:31:25] [Server thread/WARN]: [MythicMobs] --| Mob: MEGAWARDEN_soul | File: /root/spawn1211/spawn/plugins/MythicMobs/Mobs/littleroom/mega_warden.yml
[21:31:25] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill MEGAWARDEN_soul_pull
[21:31:25] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=MEGAWARDEN_soul_pull}
[21:31:25] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[21:31:25] [Server thread/WARN]: [MythicMobs] --| Mob: MEGAWARDEN_soul | File: /root/spawn1211/spawn/plugins/MythicMobs/Mobs/littleroom/mega_warden.yml
[21:31:25] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill MEGAWARDEN_soul_decay
[21:31:25] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=MEGAWARDEN_soul_decay}
[21:31:25] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[21:31:25] [Server thread/WARN]: [MythicMobs] --| Mob: KUR_GROUNDROCKS | File: /root/spawn1211/spawn/plugins/MythicMobs/Mobs/littleroom/kur_rot.yml
[21:31:25] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill kurrot_groundrocks
[21:31:25] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=kurrot_groundrocks}
[21:31:25] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.5to1.9>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:25] [Server thread/INFO]: [MythicMobs] ✓ Loaded 178 mobs.
[21:31:25] [Server thread/INFO]: [MythicMobs] ✓ Loaded 4 vanilla mob overrides.
[21:31:25] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[21:31:25] [Server thread/INFO]: [MythicMobs] ✓ Loaded 1035 skills.
[21:31:25] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[21:31:25] [Server thread/INFO]: [MythicMobs] ✓ Loaded 23 mythic items.
[21:31:25] [Server thread/INFO]: [MythicMobs] ✓ Loaded 23 drop tables.
[21:31:25] [Server thread/INFO]: [MythicMobs] ✓ Loaded 17 mob spawners.
[21:31:26] [Server thread/INFO]: [Mythic] Mythic has finished reloading!
[21:31:26] [Server thread/INFO]: [MythicMobs] Mythic has finished reloading!
[21:31:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: img [1.0.1]
[21:31:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iaplayerstat [1.0.1]
[21:31:26] [Server thread/INFO]: [O'DailyQuests] ItemsAdder updated its data. Reloading...
[21:31:26] [Server thread/INFO]: [O'DailyQuests] 26 quests loaded from easyQuests file.
[21:31:26] [Server thread/INFO]: [O'DailyQuests] 23 quests loaded from mediumQuests file.
[21:31:26] [Server thread/INFO]: [O'DailyQuests] 16 quests loaded from hardQuests file.
[21:31:26] [Server thread/INFO]: [PlayerProfile] Successfully loaded the status menu!
[21:31:26] [Server thread/INFO]: [PlayerProfile] Loading menu from file: menus/menu.yml
[21:31:26] [Server thread/INFO]: Done (188.851s)! For help, type "help"
[21:31:26] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop turkey_meat
[21:31:26] [Server thread/WARN]: [MythicMobs] --| File: DropItemMechanic
[21:31:26] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[21:31:26] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop turkey_meat
[21:31:26] [Server thread/WARN]: [MythicMobs] --| File: DropItemMechanic
[21:31:26] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[21:31:26] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop turkey_meat
[21:31:26] [Server thread/WARN]: [MythicMobs] --| File: DropItemMechanic
[21:31:26] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[21:31:26] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop turkey_meat
[21:31:26] [Server thread/WARN]: [MythicMobs] --| File: DropItemMechanic
[21:31:26] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[21:31:26] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:26] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:26] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:26] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:26] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:26] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:26] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:26] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:26] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:31:26] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop turkey_head
[21:31:26] [Server thread/WARN]: [MythicMobs] --| File: DropItemMechanic
[21:31:26] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 93 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 96 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.OPTIONAL_REGISTRY" is null
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at ProtocolLib.jar//com.comphenix.protocol.wrappers.WrappedDataWatcher$Registry.get(WrappedDataWatcher.java:1009)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:177)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.PacketUtils.setMetadata(PacketUtils.java:180)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.entity.PacketEntity.updateEntity(PacketEntity.java:89)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.updateArmorStand(PacketArmorStand.java:46)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.utils.packet.types.PacketArmorStand.spawn(PacketArmorStand.java:40)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel.show(Wheel.java:657)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at FortuneWheel-RELEASE-1.0.3.jar//cz.gennario.fortunewheel.wheel.Wheel$1.run(Wheel.java:226)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:31:26] [Craft Scheduler Thread - 85 - FortuneWheel/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[21:31:27] [Craft Scheduler Thread - 2 - ModelEngine/INFO]: [AquaticCrates] ModelEngine Hook initialized!
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading Item Database!
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading Crates!
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 1
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 2
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 3
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 4
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 5
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 6
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 7
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 8
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 9
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 10
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 11
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 12
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 13
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 14
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 15
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 16
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 17
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 18
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 19
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 20
[21:31:27] [Server thread/INFO]: Loaded animation tasks: 0
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 1
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 2
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 3
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 4
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 5
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 6
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 7
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 8
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 9
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 10
[21:31:27] [Server thread/INFO]: Loaded animation tasks: 0
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 1
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 2
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 3
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 4
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 5
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 6
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 7
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 8
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 9
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 10
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 11
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 12
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 13
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 14
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 15
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 16
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 17
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 18
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 19
[21:31:27] [Server thread/INFO]: Loaded animation tasks: 0
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 1
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 2
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 3
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 4
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 5
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 6
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 7
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 8
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 9
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 10
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 11
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 12
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 13
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 14
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 15
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 16
[21:31:27] [Server thread/INFO]: Loaded animation tasks: 0
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 1
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 2
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 3
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 4
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 5
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 6
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 7
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 8
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 9
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 10
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 11
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 12
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 13
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 14
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 15
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 16
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 17
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 18
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 19
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 20
[21:31:27] [Server thread/INFO]: Loaded animation tasks: 0
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 1
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 2
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 3
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 4
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 5
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 6
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 7
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 8
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 9
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 10
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 11
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 12
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 13
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 14
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 15
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 16
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 17
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 18
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 19
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 20
[21:31:27] [Server thread/INFO]: Loaded animation tasks: 0
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 1
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 2
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 3
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 4
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 5
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 6
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 7
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 8
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 9
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 10
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 11
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 12
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 13
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 14
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 15
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 16
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 17
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 18
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 19
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 20
[21:31:27] [Server thread/INFO]: Loaded animation tasks: 0
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 1
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 2
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 3
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 4
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 5
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 6
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 7
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 8
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 9
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 10
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 11
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 12
[21:31:27] [Server thread/INFO]: Loaded animation tasks: 0
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 1
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 2
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 3
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 4
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 5
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 6
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 7
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 10
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 11
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 12
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 13
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 14
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 15
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 16
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 17
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 18
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 19
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 20
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 21
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 22
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 23
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 24
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 25
[21:31:27] [Server thread/INFO]: Loaded animation tasks: 0
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 1
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 2
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 3
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 4
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 5
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 6
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 7
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 8
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 9
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 10
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 11
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 12
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 13
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 14
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 15
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 16
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 17
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 18
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 19
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 20
[21:31:27] [Server thread/INFO]: Loaded animation tasks: 0
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 1
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 2
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 3
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 4
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 5
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 6
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 7
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 8
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 9
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 10
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 11
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 12
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 13
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 14
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 15
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 16
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 17
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 18
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 19
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 20
[21:31:27] [Server thread/INFO]: Loaded animation tasks: 0
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 1
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 2
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 3
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 4
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 5
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 6
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 7
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 8
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 9
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 10
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 11
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 12
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 13
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 14
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 15
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 16
[21:31:27] [Server thread/INFO]: Loaded animation tasks: 0
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 1
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 2
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 3
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 4
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 5
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 6
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 7
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 8
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 9
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 10
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 11
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 12
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 13
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 14
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 15
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 16
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 17
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 18
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 19
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 20
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 21
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 22
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 23
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 24
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 25
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 26
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 27
[21:31:27] [Server thread/INFO]: Loaded animation tasks: 0
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 1
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 2
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 3
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 4
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 5
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 6
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 7
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 8
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 9
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 10
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 11
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 12
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 13
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 14
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 15
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 16
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 17
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 23
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 24
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading reward: 25
[21:31:27] [Server thread/INFO]: Loaded animation tasks: 0
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading Players!
[21:31:27] [Server thread/INFO]: [AquaticCrates] Loading Messages!
[21:31:27] [Server thread/INFO]: [AquaticCrates] Plugin Loaded!
[21:31:27] [Server thread/INFO]:                                 _   _       _____           _                 
[21:31:27] [Server thread/INFO]:          /\                    | | (_)     / ____|         | |                
[21:31:27] [Server thread/INFO]:         /  \   __ _ _   _  __ _| |_ _  ___| |     _ __ __ _| |_ ___  ___      
[21:31:27] [Server thread/INFO]:        / /\ \ / _` | | | |/ _` | __| |/ __| |    | '__/ _` | __/ _ \/ __|     
[21:31:27] [Server thread/INFO]:       / ____ \ (_| | |_| | (_| | |_| | (__| |____| | | (_| | ||  __/\__ \     
[21:31:27] [Server thread/INFO]:      /_/    \_\__, |\__,_|\__,_|\__|_|\___|\_____|_|  \__,_|\__\___||___/     
[21:31:27] [Server thread/INFO]:                  | |                                                          
[21:31:27] [Server thread/INFO]:                  |_|                                                          
[21:31:27] [Server thread/INFO]: 
[21:31:27] [Server thread/INFO]:   Created by Aquatic Creations
[21:31:27] [Server thread/INFO]:   Discord: http://discord.aquatic.gg
[21:31:27] [Server thread/INFO]: 
[21:31:28] [Craft Scheduler Thread - 90 - RotatingHeads2/WARN]: The player name . does not exist!
[21:31:28] [Craft Scheduler Thread - 252 - RotatingHeads2/WARN]: The player name . does not exist!
[21:31:28] [Craft Scheduler Thread - 232 - RotatingHeads2/WARN]: The player name . does not exist!
[21:31:28] [Craft Scheduler Thread - 86 - RotatingHeads2/WARN]: The player name . does not exist!
[21:31:28] [Craft Scheduler Thread - 144 - RotatingHeads2/WARN]: The player name . does not exist!
[21:31:28] [Craft Scheduler Thread - 95 - RotatingHeads2/WARN]: The player name . does not exist!
[21:31:28] [Craft Scheduler Thread - 22 - RotatingHeads2/WARN]: The player name . does not exist!
[21:31:28] [Craft Scheduler Thread - 150 - RotatingHeads2/WARN]: The player name . does not exist!
[21:31:28] [Craft Scheduler Thread - 129 - RotatingHeads2/WARN]: The player name . does not exist!
[21:31:28] [Craft Scheduler Thread - 90 - RotatingHeads2/WARN]: The player name . does not exist!
[21:31:28] [Craft Scheduler Thread - 150 - RotatingHeads2/WARN]: The player name . does not exist!
[21:31:28] [Craft Scheduler Thread - 165 - RotatingHeads2/WARN]: The player name . does not exist!
[21:31:28] [Craft Scheduler Thread - 232 - RotatingHeads2/WARN]: The player name . does not exist!
[21:31:28] [Craft Scheduler Thread - 95 - RotatingHeads2/WARN]: The player name . does not exist!
[21:31:29] [Craft Scheduler Thread - 144 - RotatingHeads2/WARN]: The player name . does not exist!
[21:31:31] [Craft Scheduler Thread - 113 - HuskHomes/INFO]: [HuskHomes] Registered 'after_load' hooks
[21:31:36] [Server thread/INFO]: [MyCommand] found an update for MyCommand. Type /mycommand for more infos.