Paste #120709: Unnamed Server Log Paste

Date: 2024/03/01 12:25:20 UTC-08:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[13:37:13] [ServerMain/INFO]: Environment: Environment[accountsHost=https://api.mojang.com, sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[13:37:14] [ServerMain/INFO]: Loaded 1174 recipes
[13:37:14] [ServerMain/INFO]: Loaded 1271 advancements
[13:37:14] [Server thread/INFO]: Starting minecraft server version 1.20.2
[13:37:14] [Server thread/INFO]: Loading properties
[13:37:14] [Server thread/INFO]: This server is running Paper version git-Paper-318 (MC: 1.20.2) (Implementing API version 1.20.2-R0.1-SNAPSHOT) (Git: 9271ee7)
[13:37:14] [Server thread/INFO]: Server Ping Player Sample Count: 12
[13:37:14] [Server thread/INFO]: Using 4 threads for Netty based IO
[13:37:14] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
    For more information please visit: https://github.com/PaperMC/Paper/issues/8948
[13:37:14] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and gen parallelism of 1 threads
[13:37:14] [Server thread/INFO]: Default game type: SURVIVAL
[13:37:14] [Server thread/INFO]: Generating keypair
[13:37:14] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25624
[13:37:14] [Server thread/INFO]: Using epoll channel type
[13:37:14] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[13:37:14] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[13:37:15] [Server thread/INFO]: [eco] Initializing eco
[13:37:15] [Server thread/INFO]: [EcoItems] Initializing EcoItems
[13:37:16] [Server thread/INFO]: [WolfyUtilities] NMS Version: v1_20_R2
[13:37:17] [Server thread/INFO]: [me.wolfyscript.lib.org.reflections.Reflections] Reflections took 126 ms to scan 1 urls, producing 915 keys and 3672 values
[13:37:17] [Server thread/INFO]: [WolfyUtilities] Register Default StackIdentifiers
[13:37:17] [Server thread/INFO]: [EcoEnchants] Initializing EcoEnchants
[13:37:17] [Server thread/INFO]: [EcoArmor] Initializing EcoArmor
[13:37:18] [Server thread/INFO]: [EcoSkills] Initializing EcoSkills
[13:37:19] [Server thread/INFO]: [EcoBosses] Initializing EcoBosses
[13:37:20] [Server thread/INFO]: [CustomCrafting] NMS Version: v1_20_R2
[13:37:20] [Server thread/INFO]: [Reforges] Initializing Reforges
[13:37:21] [Server thread/INFO]: [Talismans] Initializing Talismans
[13:37:22] [Server thread/INFO]: [NeigeItems] loading ankh-invoke
[13:37:22] [Server thread/INFO]: [NeigeItems] ankh-invoke loaded
[13:37:22] [Server thread/INFO]: [NeigeItems-1.16.20.jar] Downloading library org.jetbrains.kotlin:kotlin-stdlib:@kotlin_version@ (transitive)
[13:37:23] [Server thread/INFO]: [NeigeItems-1.16.20.jar] Downloading library org.jetbrains.kotlin:kotlin-stdlib-jdk7:@kotlin_version@ (transitive)
[13:37:24] [Server thread/INFO]: [NeigeItems-1.16.20.jar] Downloading library org.jetbrains.kotlin:kotlin-stdlib-jdk8:@kotlin_version@ (transitive)
[13:37:25] [Server thread/INFO]: [NeigeItems-1.16.20.jar] Loading library org.yaml:snakeyaml:2.2
[13:37:25] [Server thread/INFO]: [NeigeItems-1.16.20.jar] Loading library com.typesafe:config:1.4.3
[13:37:25] [Server thread/INFO]: [NeigeItems-1.16.20.jar] Loading library com.electronwill.night-config:core:3.6.7
[13:37:25] [Server thread/INFO]: [NeigeItems-1.16.20.jar] Loading library com.electronwill.night-config:toml:3.6.7
[13:37:25] [Server thread/INFO]: [NeigeItems-1.16.20.jar] Loading library com.electronwill.night-config:json:3.6.7
[13:37:25] [Server thread/INFO]: [NeigeItems-1.16.20.jar] Loading library com.typesafe:config:1.4.2
[13:37:25] [Server thread/INFO]: [NeigeItems-1.16.20.jar] Loading library com.electronwill.night-config:hocon:3.6.7
[13:37:26] [Server thread/INFO]: [StatTrackers] Initializing StatTrackers
[13:37:26] [Server thread/INFO]: UnstripLog is using the latest implementation (last tested for v1_20_R1).
[13:37:26] [Server thread/INFO]: [EcoBits] Initializing EcoBits
[13:37:26] [Server thread/INFO]: [Boosters] Initializing Boosters
[13:37:26] [Server thread/INFO]: [EcoQuests] Initializing EcoQuests
[13:37:26] [Server thread/INFO]: [RarityDisplay] Initializing RarityDisplay
[13:37:27] [Server thread/INFO]: [ItemEffects] Initializing ItemEffects
[13:37:28] [Server thread/INFO]: REGISTERING ARG PARSER
[13:37:28] [Server thread/INFO]: [SpigotLibraryLoader] [RoseLoot] Loading 1 libraries... please wait
[13:37:28] [Server thread/INFO]: [SpigotLibraryLoader] [RoseLoot] Loaded library /home/container/libraries/org/xerial/sqlite-jdbc/3.42.0.0/sqlite-jdbc-3.42.0.0.jar
[13:37:28] [Server thread/INFO]: [EcoShop] Initializing EcoShop
[13:37:28] [Server thread/INFO]: [SpigotLibraryLoader] [Vouchers] Loading 1 libraries... please wait
[13:37:28] [Server thread/INFO]: [SpigotLibraryLoader] [Vouchers] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar
[13:37:28] [Server thread/INFO]: [EcoPets] Initializing EcoPets
[13:37:29] [Server thread/INFO]: [Actions] Initializing Actions
[13:37:30] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.2.0-SNAPSHOT-679
[13:37:30] [Server thread/INFO]: [RoyaleEconomy] Loading server plugin RoyaleEconomy v2.3.7
[13:37:30] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.119
[13:37:30] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[13:37:30] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.9.1-SNAPSHOT-660;f94b96d
[13:37:31] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@110cdc3b]
[13:37:31] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.4
[13:37:31] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.9+5934e49
[13:37:31] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[13:37:31] [Server thread/INFO]: [HolographicDisplays] Loading server plugin HolographicDisplays v3.0.4
[13:37:31] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.40
[13:37:31] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0-dev+56-1929d41
[13:37:31] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.5.1-9aedaa15
[13:37:31] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[13:37:31] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[13:37:31] [Server thread/INFO]: [ItemsAdder] Loading server plugin ItemsAdder v3.6.2c
[13:37:31] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.0-DEV-168
[13:37:31] [Server thread/INFO]: [DeluxeMenus] NMS hook has been setup successfully!
[13:37:31] [Server thread/INFO]: [eco] Loading server plugin eco v6.69.0
[13:37:31] [Server thread/INFO]: [EcoItems] Loading server plugin EcoItems v5.42.2
[13:37:31] [Server thread/INFO]: [libreforge] Initializing libreforge
[13:37:31] [Server thread/INFO]: [libreforge] Loading server plugin libreforge v4.56.2
[13:37:31] [Server thread/INFO]: [WolfyUtilities] Loading server plugin WolfyUtilities v4.16.15-beta.11
[13:37:31] [Server thread/INFO]: [WolfyUtilities] Register JSON de-/serializers
[13:37:31] [Server thread/INFO]: [WolfyUtilities] Register JSON Operators
[13:37:31] [Server thread/INFO]: [WolfyUtilities] Register JSON Value Providers
[13:37:31] [Server thread/INFO]: [WolfyUtilities] Register CustomItem NBT Checks
[13:37:31] [Server thread/INFO]: [WolfyUtilities] Register CustomItem Actions
[13:37:31] [Server thread/INFO]: [WolfyUtilities] Register CustomItem Events
[13:37:31] [Server thread/INFO]: [WolfyUtilities] Register Particle Animators
[13:37:31] [Server thread/INFO]: [WolfyUtilities] Register Particle Shapes
[13:37:31] [Server thread/INFO]: [WolfyUtilities] Register Particle Timers
[13:37:31] [Server thread/INFO]: [WolfyUtilities] Register Custom Block Data
[13:37:31] [Server thread/INFO]: [WolfyUtilities] Register Custom Player Data
[13:37:31] [Server thread/INFO]: [WolfyUtilities] Register NBT Query Nodes
[13:37:31] [Server thread/INFO]: [EcoEnchants] Loading server plugin EcoEnchants v12.3.2
[13:37:31] [Server thread/INFO]: [EcoArmor] Loading server plugin EcoArmor v8.55.2
[13:37:31] [Server thread/INFO]: [EcoSkills] Loading server plugin EcoSkills v3.44.2
[13:37:31] [Server thread/INFO]: [EcoBosses] Loading server plugin EcoBosses v9.50.0
[13:37:31] [Server thread/INFO]: [CustomCrafting] Loading server plugin CustomCrafting v4.16.8.5
[13:37:31] [Server thread/INFO]: [CustomCrafting] WolfyUtils API: v4.16.15.0
[13:37:31] [Server thread/INFO]: [CustomCrafting] CustomCrafting: v4.16.8.5
[13:37:31] [Server thread/INFO]: [CustomCrafting] Environment   : PROD
[13:37:31] [Server thread/INFO]: [CustomCrafting] Registering CustomItem Data
[13:37:31] [Server thread/INFO]: [CustomCrafting] Registering Custom Block Data
[13:37:31] [Server thread/INFO]: [CustomCrafting] Registering Result Extensions
[13:37:31] [Server thread/INFO]: [CustomCrafting] Registering Result Merge Adapters
[13:37:31] [Server thread/INFO]: [CustomCrafting] Registering Recipe Conditions
[13:37:31] [Server thread/INFO]: [CustomCrafting] Registering Recipe Types
[13:37:31] [Server thread/INFO]: [CustomCrafting] Registering Anvil Recipe Tasks
[13:37:31] [Server thread/INFO]: [CustomCrafting] Registering Type Registries
[13:37:31] [Server thread/INFO]: [Reforges] Loading server plugin Reforges v6.55.2
[13:37:31] [Server thread/INFO]: [Talismans] Loading server plugin Talismans v6.54.2
[13:37:31] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.21.0-dev+56-1929d41
[13:37:31] [Server thread/INFO]: [SuperVanish] Loading server plugin SuperVanish v6.2.18
[13:37:31] [Server thread/INFO]: [BeastLib] Loading server plugin BeastLib v1.4
[13:37:31] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.12.2
[13:37:31] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
[13:37:31] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R2' loaded!
[13:37:31] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'NBTAPI' to create a bStats instance!
[13:37:31] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v22.2
[13:37:31] [Server thread/INFO]: [NeigeItems] Loading server plugin NeigeItems v1.16.20
[13:37:31] [Server thread/INFO]: [StatTrackers] Loading server plugin StatTrackers v6.15.2
[13:37:31] [Server thread/INFO]: [LM_Items] Loading server plugin LM_Items v1.2.11
[13:37:31] [Server thread/INFO]: [AdvancedCrates] Loading server plugin AdvancedCrates v3.9.38
[13:37:31] [Server thread/INFO]: [GrimAC] Loading server plugin GrimAC v2.3.46
[13:37:31] [Thread-8/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[13:37:31] [Server thread/INFO]: [GrimAC] Loading PacketEvents...
[13:37:32] [Server thread/INFO]: [InteractiveChat] Loading server plugin InteractiveChat v4.2.9.0
[13:37:32] [Server thread/INFO]: [AdvancedBan] Loading server plugin AdvancedBan v2.3.0
[13:37:32] [Server thread/INFO]: [UnstripLog] Loading server plugin UnstripLog v1.9.0
[13:37:32] [Server thread/INFO]: [EnchantmentLock] Loading server plugin EnchantmentLock vMC-1.16.1
[13:37:32] [Server thread/INFO]: [FancyNpcs] Loading server plugin FancyNpcs v2.0.9
[13:37:32] [Server thread/INFO]: [BeastWithdraw] Loading server plugin BeastWithdraw v2.3.2
[13:37:32] [Server thread/INFO]: [DangerousCaves] Loading server plugin DangerousCaves v2.2.13;24
[13:37:32] [Server thread/INFO]: [GSit] Loading server plugin GSit v1.7.0
[13:37:32] [Server thread/INFO]: [EcoBits] Loading server plugin EcoBits v1.8.4
[13:37:32] [Server thread/INFO]: [EliteLootbox] Loading server plugin EliteLootbox v2.3.8
[13:37:32] [Server thread/INFO]: [CrashAPI] Loading server plugin CrashAPI v1.1.5
[13:37:32] [Server thread/INFO]: [CrashAPI] Checking Bukkit Version: 1.20.2
[13:37:32] [Server thread/INFO]: [CrashAPI] Bukkit Version 1.20.2 is compatible through NMS!
[13:37:32] [Server thread/INFO]: [CrashAPI] Using API version v1_20_R2.
[13:37:32] [Server thread/INFO]: [CrashAPI] Initializing main configuration...
[13:37:32] [Server thread/INFO]: [CrashAPI] Main configuration initialized!
[13:37:32] [Server thread/INFO]: [CrashAPI] Initializing language configuration...
[13:37:32] [Server thread/INFO]: [CrashAPI] Language configuration initialized!
[13:37:32] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.3.52
[13:37:32] [Server thread/INFO]: [SlotBot] Loading server plugin SlotBot v1.2.1
[13:37:32] [Server thread/INFO]: [CustomStructures] Loading server plugin CustomStructures v1.9.0.1
[13:37:32] [Server thread/INFO]: [DeathPenalties] Loading server plugin DeathPenalties vRelease-1.5.4
[13:37:32] [Server thread/INFO]: [Harbor] Loading server plugin Harbor v1.6.3
[13:37:32] [Server thread/INFO]: [spark] Loading server plugin spark v1.10.34
[13:37:32] [Server thread/INFO]: [Boosters] Loading server plugin Boosters v5.54.2
[13:37:32] [Server thread/INFO]: [ExtractableEnchantments] Loading server plugin ExtractableEnchantments v10.2
[13:37:32] [Server thread/INFO]: [FishinRoulette] Loading server plugin FishinRoulette v2.1.0
[13:37:32] [Server thread/INFO]: [AlonsoTags] Loading server plugin AlonsoTags v2.1.3-BETA
[13:37:32] [Server thread/INFO]: [SpentTime] Loading server plugin SpentTime v1.0.5
[13:37:32] [Server thread/INFO]: [EcoQuests] Loading server plugin EcoQuests v1.27.2
[13:37:32] [Server thread/INFO]: [DoorsReloaded] Loading server plugin DoorsReloaded v1.3.1
[13:37:32] [Server thread/INFO]: [BetterTridents] Loading server plugin BetterTridents v2.2.6
[13:37:32] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.0-dev+56-1929d41
[13:37:32] [Server thread/INFO]: [NoPlugins] Loading server plugin NoPlugins v8.1
[13:37:32] [Server thread/INFO]: [TerraformGenerator] Loading server plugin TerraformGenerator v14.0.0
[13:37:32] [Server thread/INFO]: [BetterInvisibility] Loading server plugin BetterInvisibility v3.1
[13:37:32] [Server thread/INFO]: [Polymart] Loading server plugin Polymart v1.2.9
[13:37:32] [Server thread/INFO]: [BetterStructures] Loading server plugin BetterStructures v1.6.4
[13:37:32] [Server thread/INFO]: [BetterStructures] WorldGuard is not enabled! WorldGuard is recommended when using the EliteMobs integration.
[13:37:32] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.1.2
[13:37:32] [Server thread/INFO]: [CrazyAuctions] Loading server plugin CrazyAuctions v1.3.2
[13:37:32] [Server thread/INFO]: [RarityDisplay] Loading server plugin RarityDisplay v1.0.2
[13:37:32] [Server thread/INFO]: [AdvancedEnderchest] Loading server plugin AdvancedEnderchest v1.1.6
[13:37:32] [Server thread/INFO]: [Multiverse-Portals] Loading server plugin Multiverse-Portals v4.2.1-b834
[13:37:32] [Server thread/INFO]: [Shopkeepers] Loading server plugin Shopkeepers v2.17.1
[13:37:32] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (159 ms).
[13:37:32] [Server thread/WARN]: [Shopkeepers] Incompatible server version: v1_20_R2 (mappings: 3478a65bfd04b15b431fe107b3617dfc)
[13:37:32] [Server thread/WARN]: [Shopkeepers] Shopkeepers is trying to run in 'compatibility mode'.
[13:37:32] [Server thread/INFO]: [Shopkeepers] Check for updates at: https://dev.bukkit.org/projects/shopkeepers/
[13:37:32] [Server thread/INFO]: [Shopkeepers] Loading config.
[13:37:32] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
[13:37:32] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[13:37:32] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[13:37:32] [Server thread/INFO]: [SimpleRename] Loading server plugin SimpleRename v13.9
[13:37:32] [Server thread/INFO]: [DirectionalBlock] Loading server plugin DirectionalBlock v1.4.1
[13:37:32] [Server thread/INFO]: [FreeCoinFlip] Loading server plugin FreeCoinFlip v1.9
[13:37:32] [Server thread/INFO]: [Dualhorse] Loading server plugin Dualhorse v1.4.1
[13:37:32] [Server thread/INFO]: [CurseOfVanishing] Loading server plugin CurseOfVanishing v1.0
[13:37:32] [Server thread/INFO]: [ItemEffects] Loading server plugin ItemEffects v2.0.0
[13:37:32] [Server thread/INFO]: [RoseLoot] Loading server plugin RoseLoot v1.2.8
[13:37:32] [Server thread/INFO]: [RoseLoot] Initializing using RoseGarden v1.3.0.2-DEV-SNAPSHOT
[13:37:32] [Server thread/INFO]: [Tebex] Loading server plugin Tebex v2.0.3
[13:37:32] [Server thread/INFO]: [BetterBackpacks] Loading server plugin BetterBackpacks v1.3.1-BETA-DEV-008
[13:37:32] [Server thread/INFO]: [BetterBackpacks] Inventory title with support for more than 32 characters. Skipping..
[13:37:32] [Server thread/INFO]: [BetterBackpacks] Hex colors are available! Ready for RGB..
[13:37:32] [Server thread/INFO]: [BetterBackpacks] Old constructor for HoverEvent found! Using it..
[13:37:32] [Server thread/INFO]: [BetterBackpacks] New sendTitle method found! Using it..
[13:37:32] [Server thread/INFO]: [BetterBackpacks] New setUnbreakable method found! Using it..
[13:37:32] [Server thread/INFO]: [BetterBackpacks] New isUnbreakable method found! Using it..
[13:37:32] [Server thread/INFO]: [BetterBackpacks] WorldGuard found! Registering custom flag(s)..
[13:37:32] [Server thread/INFO]: [BetterBackpacks] WorldGuard v7.x or newer detected. Using new methods..
[13:37:32] [Server thread/INFO]: [BetterBackpacks] [WorldGuard] Successfully registered 'betterbackpacks-can-use-backpack' flag!
[13:37:32] [Server thread/INFO]: [Tweakin] Loading server plugin Tweakin v7.0.0
[13:37:32] [Server thread/INFO]: [Tweakin] Found WorldGuard, initializing flags support
[13:37:32] [Server thread/INFO]: [Tweakin] Worldguard flag: tweakin-better-sign-edit registered successfully
[13:37:32] [Server thread/INFO]: [Tweakin] Worldguard flag: tweakin-shear-item-frame registered successfully
[13:37:32] [Server thread/INFO]: [Tweakin] Worldguard flag: tweakin-snowball-knockback registered successfully
[13:37:32] [Server thread/INFO]: [Tweakin] Worldguard flag: tweakin-reach-around registered successfully
[13:37:32] [Server thread/INFO]: [GUIPlus] Loading server plugin GUIPlus v2.9
[13:37:32] [Server thread/INFO]: [UltraRepair] Loading server plugin UltraRepair v4.1.5
[13:37:32] [Server thread/INFO]: [InteractionVisualizer] Loading server plugin InteractionVisualizer v1.18.8.0
[13:37:32] [Server thread/INFO]: [XCatch] Loading server plugin XCatch v1.1.4
[13:37:32] [Server thread/INFO]: [SafeTrade] Loading server plugin SafeTrade v1.1.1
[13:37:32] [Server thread/INFO]: [Not-Too-Expensive] Loading server plugin Not-Too-Expensive v1.1
[13:37:32] [Server thread/INFO]: [PlayerProfiles] Loading server plugin PlayerProfiles v7.0.0
[13:37:32] [Server thread/INFO]: [MythicLibreforge] Loading server plugin MythicLibreforge v1.3.1
[13:37:32] [Server thread/INFO]: [DivineDrop] Loading server plugin DivineDrop v2.13
[13:37:32] [Server thread/INFO]: [EnchantmentSlots] Loading server plugin EnchantmentSlots v2.5.2
[13:37:32] [Server thread/INFO]: [EcoShop] Loading server plugin EcoShop v1.15.2
[13:37:32] [Server thread/INFO]: [DeluxeCommands] Loading server plugin DeluxeCommands v1.11.3
[13:37:32] [Server thread/INFO]: [Vouchers] Loading server plugin Vouchers v3.20.0
[13:37:32] [Server thread/INFO]: [FarmControl] Loading server plugin FarmControl v1.2.5
[13:37:32] [Server thread/INFO]: [EcoPets] Loading server plugin EcoPets v2.55.2
[13:37:32] [Server thread/INFO]: [NoCropTrample] Loading server plugin NoCropTrample v1.0.0-RELEASE
[13:37:32] [Server thread/INFO]: [PlugManX] Loading server plugin PlugManX v2.3.0
[13:37:32] [Server thread/INFO]: true
[13:37:32] [Server thread/INFO]: [Actions] Loading server plugin Actions v2.54.2
[13:37:32] [Server thread/INFO]: [LevelledMobs] Loading server plugin LevelledMobs v3.14.1 b817
[13:37:32] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[13:37:32] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.2.0-SNAPSHOT-679
[13:37:32] [Server thread/INFO]: [RoyaleEconomy] Enabling RoyaleEconomy v2.3.7
[13:37:32] [Server thread/INFO]: [RoyaleEconomy] -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
[13:37:32] [Server thread/INFO]: [RoyaleEconomy]   Plugin: RoyaleEconomy
[13:37:32] [Server thread/INFO]: [RoyaleEconomy]   Version: 2.3
[13:37:32] [Server thread/INFO]: [RoyaleEconomy]   Author: qKing12 (Dragos-Dumitru Ghinea)
[13:37:32] [Server thread/INFO]: [RoyaleEconomy]   Copyright: 2020-2024 All Rights Reserved
[13:37:32] [Server thread/INFO]: [RoyaleEconomy] -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
[13:37:32] [Server thread/INFO]: [RoyaleEconomy] Succesfully connected to the Player Purse SQL.
[13:37:32] [Server thread/INFO]: [RoyaleEconomy] Succesfully connected to the Personal Banks SQL.
[13:37:32] [Server thread/INFO]: [RoyaleEconomy] Succesfully loaded the interest.
[13:37:32] [Server thread/INFO]: [RoyaleEconomy] Succesfully connected to the Shared Banks SQL.
[13:37:32] [Server thread/INFO]: [RoyaleEconomy] Succesfully connected to the External Generated Data SQL.
[13:37:32] [Server thread/INFO]: [me.qKing12.RoyaleEconomy.hikari.HikariDataSource] RoyaleEconomySQLitePool - Starting...
[13:37:32] [Server thread/INFO]: [me.qKing12.RoyaleEconomy.hikari.HikariDataSource] RoyaleEconomySQLitePool - Start completed.
[13:37:32] [Server thread/INFO]: Environment: Environment[accountsHost=https://api.mojang.com, sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[13:37:32] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
[13:37:32] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R2' loaded!
[13:37:32] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'RoyaleEconomy' to create a bStats instance!
[13:37:32] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.119
[13:37:33] [Server thread/INFO]:         __    
[13:37:33] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.119
[13:37:33] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[13:37:33] [Server thread/INFO]: 
[13:37:33] [Server thread/INFO]: [LuckPerms] Loading configuration...
[13:37:33] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[13:37:33] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[13:37:33] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[13:37:34] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1454ms)
[13:37:34] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[13:37:34] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[13:37:34] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[13:37:34] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[13:37:34] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[13:37:34] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.9.1-SNAPSHOT-660;f94b96d
[13:37:34] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[13:37:34] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[13:37:34] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[13:37:34] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[13:37:34] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_20_R2.PaperweightFaweAdapter as the Bukkit adapter
[13:37:34] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.40
[13:37:34] [Server thread/INFO]: [eco] Enabling eco v6.69.0
[13:37:34] [Server thread/INFO]: [eco] Loading eco
[13:37:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: eco [6.69.0]
[13:37:34] [Server thread/INFO]: [eco] Loaded integrations: CustomCrafting, MythicMobs, HolographicDisplays, Essentials, Vault, RoyaleEconomy, PlaceholderAPI, WorldGuard, ItemsAdder
[13:37:34] [Server thread/INFO]: [eco] Scanning for conflicts...
[13:37:34] [Server thread/INFO]: [eco] No conflicts found!
[13:37:34] [Server thread/INFO]: [WolfyUtilities] Enabling WolfyUtilities v4.16.15-beta.11
[13:37:34] [Server thread/INFO]: [WolfyUtilities] Minecraft version: 1.20.2
[13:37:34] [Server thread/INFO]: [WolfyUtilities] WolfyUtils version: 4.16.15.0
[13:37:34] [Server thread/INFO]: [WolfyUtilities] Environment: PROD
[13:37:34] [Server thread/INFO]: [WolfyUtilities] Loading Plugin integrations: 
[13:37:34] [Server thread/INFO]: [WolfyUtilities]  - MythicMobs
[13:37:34] [Server thread/INFO]: [WolfyUtilities]  - PlaceholderAPI
[13:37:34] [Server thread/INFO]: [WolfyUtilities]  - eco
[13:37:34] [Server thread/INFO]: [WolfyUtilities]  - ItemsAdder
[13:37:34] [Server thread/INFO]: [WolfyUtilities] Create & Init Plugin integrations: 
[13:37:34] [Server thread/INFO]: [WolfyUtilities] Enabled plugin integration for eco
[13:37:34] [Server thread/INFO]: [WolfyUtilities] Register API references
[13:37:34] [Server thread/INFO]: [WolfyUtilities] Loading stored Custom Items
[13:37:34] [Server thread/INFO]: [WolfyUtilities] Loading Creative Mode Tabs
[13:37:34] [Server thread/INFO]: [EcoEnchants] Enabling EcoEnchants v12.3.2
[13:37:34] [Server thread/INFO]: [EcoEnchants] Loading EcoEnchants
[13:37:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecoenchants [12.3.2]
[13:37:34] [Server thread/INFO]: [EcoEnchants] Loaded integrations: Essentials
[13:37:34] [Server thread/INFO]: [EcoBits] Enabling EcoBits v1.8.4
[13:37:34] [Server thread/INFO]: [EcoBits] Loading EcoBits
[13:37:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecobits [1.8.4]
[13:37:34] [Server thread/INFO]: [DeathPenalties] Enabling DeathPenalties vRelease-1.5.4
[13:37:34] [Server thread/INFO]: [DeathPenalties] Vault found: enabling economy death penalties
[13:37:34] [Server thread/INFO]: [EcoQuests] Enabling EcoQuests v1.27.2
[13:37:34] [Server thread/INFO]: [EcoQuests] Loading EcoQuests
[13:37:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecoquests [1.27.2]
[13:37:34] [Server thread/INFO]: [BetterTridents] Enabling BetterTridents v2.2.6
[13:37:34] [Server thread/INFO]: [TerraformGenerator] Enabling TerraformGenerator v14.0.0
[13:37:34] [Server thread/INFO]: [TerraformGenerator] Custom Logger Initialized
[13:37:34] [ForkJoinPool.commonPool-worker-3/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 1 build(s) out of date.
You are running build 660, the latest version is build 661.
Update at https://www.spigotmc.org/resources/13932/
[13:37:34] [Server thread/INFO]: [TerraformGenerator] bStats Metrics enabled.
[13:37:34] [Server thread/INFO]: [TerraformGenerator] Detected version: v1_20_R2, number: 20.2
[13:37:34] [Server thread/INFO]: [Polymart] Enabling Polymart v1.2.9
[13:37:34] [Server thread/INFO]: --------====================================--------
[13:37:34] [Server thread/INFO]: --------========[ Polymart Plugins ]========--------
[13:37:34] [Server thread/INFO]: --------====================================--------
[13:37:34] [Server thread/INFO]: 
[13:37:34] [Server thread/INFO]: Log in to your Polymart account with /polymart login to start using the Polymart plugin!
[13:37:34] [Server thread/INFO]: 
[13:37:34] [Server thread/INFO]: --------====================================--------


[13:37:34] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.3.0
[13:37:35] [Server thread/INFO]: Preparing level "world"
[13:37:35] [Server thread/INFO]: [DeathPenalties] Loading world world
[13:37:35] [Server thread/INFO]: [TerraformGenerator] Detected world: world, commencing injection... 
[13:37:35] [Server thread/INFO]: [TerraformGenerator] Injection success! Proceeding with generation.
[13:37:35] [Server thread/INFO]: [DeathPenalties] Loading world world_nether
[13:37:35] [Server thread/INFO]: [DeathPenalties] Loading world world_the_end
[13:37:35] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[13:37:35] [Server thread/INFO]: Time elapsed: 124 ms
[13:37:35] [Server thread/INFO]: [TerraformGenerator] world loaded.
[13:37:35] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[13:37:35] [Server thread/INFO]: Time elapsed: 18 ms
[13:37:35] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[13:37:35] [Server thread/INFO]: Time elapsed: 16 ms
[13:37:35] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.4
[13:37:35] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[13:37:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: royaleeconomy [2.3.7]
[13:37:35] [Server thread/INFO]: [WolfyUtilities] init PAPI event
[13:37:35] [Server thread/INFO]: [WolfyUtilities] Enabled plugin integration for PlaceholderAPI
[13:37:35] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.9+5934e49
[13:37:35] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[13:37:35] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[13:37:35] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[13:37:35] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[13:37:35] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[13:37:35] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[13:37:35] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[13:37:35] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[13:37:35] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[13:37:35] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[13:37:35] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[13:37:35] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[13:37:35] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[13:37:35] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[13:37:35] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[13:37:35] [Server thread/INFO]: [WorldGuard] Loading region data...
[13:37:35] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[13:37:35] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[13:37:35] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[13:37:36] [Server thread/INFO]: [Multiverse-Core] 3 - World(s) loaded.
[13:37:36] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[13:37:36] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[13:37:36] [Server thread/INFO]: [HolographicDisplays] Enabling HolographicDisplays v3.0.4
[13:37:36] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+56-1929d41
[13:37:36] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[13:37:36] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[13:37:36] [Server thread/INFO]: [Essentials] No kits found to migrate.
[13:37:36] [Server thread/INFO]: [Essentials] Loaded 39095 items from items.json.
[13:37:36] [Server thread/INFO]: [Essentials] Using locale en_US
[13:37:36] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[13:37:36] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[13:37:36] [Server thread/INFO]: [RoyaleEconomy] Hooked into Essentials Economy
[13:37:36] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[13:37:36] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[13:37:36] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.5.1-9aedaa15
[13:37:36] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.20.2)...
[13:37:36] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[13:37:37] [Server thread/INFO]: [MythicMobs] Mythic HolographicDisplays Support has been enabled!
[13:37:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[13:37:37] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[13:37:37] [Server thread/INFO]: [MythicMobs] Mythic ProtocolLib Support has been enabled!
[13:37:37] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[13:37:37] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[13:37:37] [Server thread/INFO]: [MythicMobs] Base directory /home/container/plugins/MythicMobs/SavedData
[13:37:37] [Server thread/INFO]: [MythicMobs] Module directory /home/container/plugins/MythicMobs/SavedData/worlds
[13:37:38] [Server thread/INFO]: [MythicMobs] Loading Packs...
[13:37:38] [Server thread/INFO]: [MythicMobs] Loading Items...
[13:37:38] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[13:37:38] [Server thread/INFO]: [MythicMobs] Loading Skills...
[13:37:38] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[13:37:38] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[13:37:38] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[13:37:38] [Server thread/INFO]: [MythicMobs] ✓ Loaded 70 mobs.
[13:37:38] [Server thread/INFO]: [MythicMobs] ✓ Loaded 55 vanilla mob overrides.
[13:37:38] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[13:37:38] [Server thread/INFO]: [MythicMobs] ✓ Loaded 7 skills.
[13:37:38] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 random spawns.
[13:37:38] [Server thread/INFO]: [MythicMobs] ✓ Loaded 4 mythic items.
[13:37:38] [Server thread/INFO]: [MythicMobs] ✓ Loaded 4 drop tables.
[13:37:38] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[13:37:38] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[13:37:38] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[13:37:38] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs v5.5.1 ( build 9aedaa15 ) has been successfully loaded!
[13:37:38] [Server thread/INFO]: [WolfyUtilities] Enabled plugin integration for MythicMobs
[13:37:38] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v3.6.2c
[13:37:38] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
[13:37:38] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R2' loaded!
[13:37:38] [Server thread/INFO]: [ItemsAdder] 
  ___  ___        __        __   __   ___  __      ItemsAdder 3.6.2c
|  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     LoneLibs 1.0.40
|  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     Paper git-Paper-318 (MC: 1.20.2)
                                               
[13:37:38] [Server thread/WARN]: [ProtocolLib] [PacketFilterManager] Plugin ItemsAdder tried to register listener for unknown packet RESOURCE_PACK_SEND[PLAY, SERVER, 234, classNames: [net.minecraft.network.protocol.game.PacketPlayOutResourcePackSend, net.minecraft.network.protocol.game.ClientboundResourcePackSendPacket, net.minecraft.network.play.server.SPacketResourcePackSend] (unregistered)] [direction: from SERVER]
[13:37:38] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.0-DEV-168
[13:37:38] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[13:37:38] [Server thread/INFO]: [DeluxeMenus] 7 GUI menus loaded!
[13:37:38] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[13:37:38] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[13:37:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.0-DEV-168]
[13:37:38] [Server thread/INFO]: [EcoItems] Enabling EcoItems v5.42.2
[13:37:38] [Server thread/INFO]: [EcoItems] Loading EcoItems
[13:37:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecoitems [5.42.2]
[13:37:39] [Server thread/INFO]: [EcoArmor] Enabling EcoArmor v8.55.2
[13:37:39] [Server thread/INFO]: [EcoArmor] Loading EcoArmor
[13:37:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecoarmor [8.55.2]
[13:37:39] [Server thread/INFO]: [EcoSkills] Enabling EcoSkills v3.44.2
[13:37:39] [Server thread/INFO]: [EcoSkills] Loading EcoSkills
[13:37:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecoskills [3.44.2]
[13:37:39] [Server thread/INFO]: [EcoBosses] Enabling EcoBosses v9.50.0
[13:37:39] [Server thread/INFO]: [EcoBosses] Loading EcoBosses
[13:37:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecobosses [9.50.0]
[13:37:39] [Server thread/INFO]: [EcoBosses] Loaded integrations: LevelledMobs
[13:37:39] [Server thread/INFO]: [CustomCrafting] Enabling CustomCrafting v4.16.8.5
[13:37:39] [Server thread/INFO]: [CustomCrafting] Loaded fallback language "en_US" v6.1.0 translated by WolfyScript
[13:37:39] [Server thread/INFO]: [CustomCrafting] Loaded active language "en_US" v6.1.0 translated by WolfyScript
[13:37:39] [Server thread/INFO]: [CustomCrafting] ____ _  _ ____ ___ ____ _  _ ____ ____ ____ ____ ___ _ _  _ ____ 
[13:37:39] [Server thread/INFO]: [CustomCrafting] |    |  | [__   |  |  | |\/| |    |__/ |__| |___  |  | |\ | | __ 
[13:37:39] [Server thread/INFO]: [CustomCrafting] |___ |__| ___]  |  |__| |  | |___ |  \ |  | |     |  | | \| |__]
[13:37:39] [Server thread/INFO]: [CustomCrafting]     Version      | v4.16.8.5
[13:37:39] [Server thread/INFO]: [CustomCrafting]     WolfyUtils   | v4.16.15.0
[13:37:39] [Server thread/INFO]: [CustomCrafting]     Bukkit       | git-Paper-318 (MC: 1.20.2)(API: 1.20.2-R0.1-SNAPSHOT)
[13:37:39] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
[13:37:39] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R2' loaded!
[13:37:39] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'WolfyUtilities' to create a bStats instance!
[13:37:39] [Server thread/INFO]: [CustomCrafting] 
[13:37:39] [Server thread/INFO]: [CustomCrafting] Special thanks to my Patrons for supporting this project: 
[13:37:39] [Server thread/INFO]: [CustomCrafting] Omarlatif, Nat R, Junye Zhou, Mithran, Teddy, Invictus_Vulpes 
[13:37:39] [Server thread/INFO]: [CustomCrafting] Luuk Musch, WizardOfWit, Lumi Server, fioxu, Green Masks
[13:37:39] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[13:37:39] [Server thread/INFO]: [CustomCrafting] Detected ProtocolLib... initiating additional features.
[13:37:39] [Server thread/INFO]: [CustomCrafting] Registering PlaceHolder
[13:37:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: customcrafting [4.16.8.5]
[13:37:39] [Server thread/INFO]: [CustomCrafting] Data destination: LOCAL
[13:37:39] [Server thread/INFO]: [CustomCrafting] Initiating Inventory GUIs
[13:37:39] [Server thread/INFO]: [CustomCrafting] Register ItemCreator Tabs
[13:37:39] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[13:37:39] [Server thread/INFO]: [Reforges] Enabling Reforges v6.55.2
[13:37:39] [Server thread/INFO]: [Reforges] Loading Reforges
[13:37:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: reforges [6.55.2]
[13:37:39] [Server thread/INFO]: [Talismans] Enabling Talismans v6.54.2
[13:37:39] [Server thread/INFO]: [Talismans] Loading Talismans
[13:37:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: talismans [6.54.2]
[13:37:39] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.21.0-dev+56-1929d41
[13:37:39] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[13:37:39] [Server thread/INFO]: [SuperVanish] Enabling SuperVanish v6.2.18
[13:37:39] [Server thread/INFO]: [SuperVanish] Hooked into PaperSpigot for server list ping support
[13:37:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: supervanish [6.2.18]
[13:37:39] [Server thread/INFO]: [SuperVanish] Hooked into PlaceholderAPI
[13:37:39] [Server thread/INFO]: [SuperVanish] Hooked into Essentials
[13:37:39] [Server thread/INFO]: [BeastLib] Enabling BeastLib v1.4
[13:37:39] [Server thread/INFO]: [BeastLib] Loading library triumph-gui
[13:37:39] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
[13:37:39] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: Defaulting to no-operation (NOP) logger implementation
[13:37:39] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
[13:37:39] [Server thread/INFO]: [BeastLib] Loading library adventure-api
[13:37:39] [Server thread/INFO]: [BeastLib] Loading library adventure-key
[13:37:39] [Server thread/INFO]: [BeastLib] Loading library examination-api
[13:37:39] [Server thread/INFO]: [BeastLib] Loading library examination-string
[13:37:39] [Server thread/INFO]: [BeastLib] Loading library annotations
[13:37:39] [Server thread/INFO]: [BeastLib] Loading library adventure-text-serializer-legacy
[13:37:39] [Server thread/INFO]: [BeastLib] Loading library adventure-text-serializer-gson
[13:37:39] [Server thread/INFO]: [BeastLib] Loading library gson
[13:37:39] [Server thread/INFO]: [BeastLib] Loading library item-nbt-api
[13:37:39] [Server thread/INFO]: [BeastLib] Loading library mysql-connector-j
[13:37:39] [Server thread/INFO]: [BeastLib] Loading library HikariCP
[13:37:39] [Server thread/INFO]: [BeastLib] Loading library mongo-java-driver
[13:37:39] [Server thread/INFO]: [BeastLib] Loading library quartz
[13:37:39] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.12.2
[13:37:39] [Server thread/INFO]: [NBTAPI] Adding listeners...
[13:37:39] [Server thread/INFO]: [NBTAPI] Checking bindings...
[13:37:39] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[13:37:39] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[13:37:39] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[13:37:39] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[13:37:39] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v22.2
[13:37:39] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[13:37:39] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[13:37:39] [Server thread/INFO]: --------------------
[13:37:39] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[13:37:39] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[13:37:39] [Server thread/INFO]: --------------------
[13:37:39] [Server thread/INFO]: [NeigeItems] Enabling NeigeItems v1.16.20
[13:37:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ni [1.16.20]
[13:37:40] [Server thread/INFO]: NeigeItems > 未发现前置插件: EasyItem
[13:37:40] [Server thread/INFO]: [StatTrackers] Enabling StatTrackers v6.15.2
[13:37:40] [Server thread/INFO]: [StatTrackers] Loading StatTrackers
[13:37:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: stattrackers [6.15.2]
[13:37:40] [Server thread/INFO]: [LM_Items] Enabling LM_Items v1.2.11
[13:37:40] [Server thread/INFO]: LM_Items: start-up complete, took 1 ms
[13:37:40] [Server thread/INFO]: [AdvancedCrates] Enabling AdvancedCrates v3.9.38
[13:37:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedcrates [3.9.38]
[13:37:40] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
[13:37:40] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R2' loaded!
[13:37:40] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AdvancedCrates' to create a bStats instance!
[13:37:40] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_20_R2.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[13:37:42] [Server thread/INFO]: [AdvancedCrates] [STDOUT] Failed to load configuration from plugins/AdvancedCrates/Crates/Crates
[13:37:42] [Server thread/WARN]: Nag author(s): '[PM2]' of 'AdvancedCrates v3.9.38' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[13:37:42] [Server thread/WARN]: java.io.FileNotFoundException: plugins/AdvancedCrates/Crates/Crates (Is a directory)
[13:37:42] [Server thread/WARN]:     at java.base/java.io.FileInputStream.open0(Native Method)
[13:37:42] [Server thread/WARN]:     at java.base/java.io.FileInputStream.open(FileInputStream.java:216)
[13:37:42] [Server thread/WARN]:     at java.base/java.io.FileInputStream.<init>(FileInputStream.java:157)
[13:37:42] [Server thread/WARN]:     at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:126)
[13:37:42] [Server thread/WARN]:     at AdvancedCrates.jar//me.PM2.AdvancedCrates.config.SimpleConfig.loadConfig(SimpleConfig.java:114)
[13:37:42] [Server thread/WARN]:     at AdvancedCrates.jar//me.PM2.AdvancedCrates.config.SimpleConfig.<init>(SimpleConfig.java:67)
[13:37:42] [Server thread/WARN]:     at AdvancedCrates.jar//me.PM2.AdvancedCrates.MonthlyCrate.registerCrateInfo(MonthlyCrate.java:1034)
[13:37:42] [Server thread/WARN]:     at AdvancedCrates.jar//me.PM2.AdvancedCrates.MonthlyCrate.onEnable(MonthlyCrate.java:200)
[13:37:42] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281)
[13:37:42] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:190)
[13:37:42] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[13:37:42] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[13:37:42] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:646)
[13:37:42] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:557)
[13:37:42] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627)
[13:37:42] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424)
[13:37:42] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:308)
[13:37:42] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1086)
[13:37:42] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315)
[13:37:42] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[13:37:42] [Server thread/INFO]: [GrimAC] Enabling GrimAC v2.3.46
[13:37:42] [Server thread/INFO]: [GrimAC] Registering singular bukkit event... (PistonEvent)
[13:37:42] [Server thread/INFO]: [GrimAC] Registering packets...
[13:37:42] [Server thread/INFO]: [GrimAC] Registering tick schedulers...
[13:37:42] [Server thread/INFO]: [GrimAC] [ACF] Enabled Asynchronous Tab Completion Support!
[13:37:42] [Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v4.2.9.0
[13:37:42] [Server thread/INFO]: [InteractiveChat] Opened Sqlite database successfully
[13:37:42] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Essentials!
[13:37:42] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Eco (Core)!
[13:37:42] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into LuckPerms!
[13:37:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactivechat [4.2.9.0]
[13:37:42] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[13:37:42] [Server thread/INFO]: [AdvancedBan] Enabling AdvancedBan v2.3.0
[13:37:42] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[13:37:42] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.pool.PoolBase] HikariPool-1 - Driver does not support get/set network timeout for connections. (feature not supported)
[13:37:42] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[13:37:42] [Server thread/INFO]: 
 
[]=====[Enabling AdvancedBan]=====[]
| Information:
|   Name: AdvancedBan
|   Developer: Leoko
|   Version: 2.3.0
|   Storage: HSQLDB (local)
| Support:
|   Github: https://github.com/DevLeoko/AdvancedBan/issues
|   Discord: https://discord.gg/ycDG6rS
| Twitter: @LeokoGar
| Update:
|   You have the newest version
[]================================[]
 
[13:37:42] [Server thread/INFO]: [UnstripLog] Enabling UnstripLog v1.9.0
[13:37:42] [Server thread/INFO]: [UnstripLog] This plugin was made by alex_qp.
[13:37:42] [Server thread/INFO]: [UnstripLog] Unstripping of dirt_path enabled with delay 100
[13:37:42] [Server thread/INFO]: [UnstripLog] Unstripping of stripped log/wood enabled with delay -1
[13:37:42] [Server thread/INFO]: [EnchantmentLock] Enabling EnchantmentLock vMC-1.16.1
[13:37:42] [Server thread/INFO]: [FancyNpcs] Enabling FancyNpcs v2.0.9
[13:37:43] [Server thread/INFO]: [BeastWithdraw] Enabling BeastWithdraw v2.3.2
[13:37:43] [Server thread/INFO]: [BeastWithdraw] /bWithdraw command aliases [cashnote, withdraw, moneywithdraw, moneynote] are registered.
[13:37:43] [Server thread/INFO]: [BeastWithdraw] Version 2.3.2 : has been enabled!
[13:37:43] [Server thread/INFO]: [DangerousCaves] Enabling DangerousCaves v2.2.13;24
[13:37:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: dangerouscaves [1.0]
[13:37:43] [Server thread/INFO]: [GSit] Enabling GSit v1.7.0
[13:37:43] [Server thread/INFO]: |> The plugin was successfully enabled.
[13:37:43] [Server thread/INFO]: |> Link with PlaceholderAPI successful!
[13:37:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [1.7.0]
[13:37:43] [Server thread/INFO]: |> Link with WorldGuard successful!
[13:37:43] [Server thread/INFO]: [EliteLootbox] Enabling EliteLootbox v2.3.8
[13:37:43] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Commands' - this is deprecated behavior, please report it to the authors: Splodgebox
[13:37:43] [Server thread/INFO]: [EliteLootbox] [ACF] Enabled Asynchronous Tab Completion Support!
[13:37:43] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el' - this is deprecated behavior, please report it to the authors: Splodgebox
[13:37:43] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el addbonusreward' - this is deprecated behavior, please report it to the authors: Splodgebox
[13:37:43] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el' - this is deprecated behavior, please report it to the authors: Splodgebox
[13:37:43] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el addreward' - this is deprecated behavior, please report it to the authors: Splodgebox
[13:37:43] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el' - this is deprecated behavior, please report it to the authors: Splodgebox
[13:37:43] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el give' - this is deprecated behavior, please report it to the authors: Splodgebox
[13:37:43] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el' - this is deprecated behavior, please report it to the authors: Splodgebox
[13:37:43] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el giveall' - this is deprecated behavior, please report it to the authors: Splodgebox
[13:37:43] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el' - this is deprecated behavior, please report it to the authors: Splodgebox
[13:37:43] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el rewards' - this is deprecated behavior, please report it to the authors: Splodgebox
[13:37:43] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el' - this is deprecated behavior, please report it to the authors: Splodgebox
[13:37:43] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el bonusrewards' - this is deprecated behavior, please report it to the authors: Splodgebox
[13:37:43] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el' - this is deprecated behavior, please report it to the authors: Splodgebox
[13:37:43] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: togglelootbox' - this is deprecated behavior, please report it to the authors: Splodgebox
[13:37:43] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el create' - this is deprecated behavior, please report it to the authors: Splodgebox
[13:37:43] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el' - this is deprecated behavior, please report it to the authors: Splodgebox
[13:37:43] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el delete' - this is deprecated behavior, please report it to the authors: Splodgebox
[13:37:43] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el' - this is deprecated behavior, please report it to the authors: Splodgebox
[13:37:43] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el reload' - this is deprecated behavior, please report it to the authors: Splodgebox
[13:37:43] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el' - this is deprecated behavior, please report it to the authors: Splodgebox
[13:37:43] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el admin' - this is deprecated behavior, please report it to the authors: Splodgebox
[13:37:43] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el' - this is deprecated behavior, please report it to the authors: Splodgebox
[13:37:43] [Server thread/INFO]: EliteLootbox: Loaded random_spring_accessory.yml successfully!
[13:37:43] [Server thread/INFO]: EliteLootbox: Loaded random_gem_pouch.yml successfully!
[13:37:43] [Server thread/INFO]: EliteLootbox: Loaded mystery_spring_tag.yml successfully!
[13:37:43] [Server thread/INFO]: EliteLootbox: Loaded random_raffles.yml successfully!
[13:37:43] [Server thread/INFO]: EliteLootbox: Loaded example.yml successfully!
[13:37:43] [Server thread/INFO]: EliteLootbox: Loaded mysterybox.yml successfully!
[13:37:43] [Server thread/INFO]: EliteLootbox: Loaded random_coin_pouch.yml successfully!
[13:37:43] [Server thread/INFO]: EliteLootbox: Loaded spring_fever.yml successfully!
[13:37:43] [Server thread/INFO]: [CrashAPI] Enabling CrashAPI v1.1.5
[13:37:43] [Server thread/INFO]: [Chunky] Enabling Chunky v1.3.52
[13:37:43] [Server thread/INFO]: [SlotBot] Enabling SlotBot v1.2.1
[13:37:43] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
[13:37:43] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R2' loaded!
[13:37:43] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'SlotBot' to create a bStats instance!
[13:37:43] [Server thread/INFO]: [SlotBot] Loaded 13 rewards
[13:37:43] [Server thread/INFO]: [SlotBot] Loaded 13 high roller rewards
[13:37:43] [Server thread/INFO]: [SlotBot] Loaded 1 credit shop rewards
[13:37:43] [Server thread/INFO]: [CustomStructures] Enabling CustomStructures v1.9.0.1
[13:37:43] [Server thread/INFO]: [CustomStructures] Placeholder API found, placeholders supported.
[13:37:43] [Server thread/INFO]: [CustomStructures] MythicMobs detected! Activating plugin hook!
[13:37:43] [Server thread/INFO]: [CustomStructures] Bstat metrics for this plugin is enabled. Disable it in the config if you do not want it on.
[13:37:43] [Server thread/INFO]: [Harbor] Enabling Harbor v1.6.3
[13:37:43] [Server thread/INFO]: [spark] Enabling spark v1.10.34
[13:37:43] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[13:37:43] [Server thread/INFO]: [spark] Starting background profiler...
[13:37:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: spark [1.10.34]
[13:37:43] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[13:37:43] [Server thread/INFO]: [Boosters] Enabling Boosters v5.54.2
[13:37:43] [Server thread/INFO]: [Boosters] Loading Boosters
[13:37:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: boosters [5.54.2]
[13:37:43] [Server thread/INFO]: [ExtractableEnchantments] Enabling ExtractableEnchantments v10.2
[13:37:43] [Server thread/INFO]: Extractable Enchantments v10.2 enabled!
[13:37:43] [Server thread/INFO]: [EE] Vault has been found, economy enabled!
[13:37:43] [Server thread/INFO]: [EE] EcoEnchants has been found!
[13:37:43] [Server thread/INFO]: [FishinRoulette] Enabling FishinRoulette v2.1.0
[13:37:43] [Server thread/INFO]: [FishinRoulette] Enabling
[13:37:43] [Server thread/WARN]: [FishinRoulette] "Droppable Items" does not contain any materials, Default Loottable will be used instead.
[13:37:43] [Server thread/INFO]: [FishinRoulette] Fishin' Roulette Enabled
[13:37:43] [Server thread/INFO]: [AlonsoTags] Enabling AlonsoTags v2.1.3-BETA
[13:37:43] [Server thread/INFO]: [AlonsoTags] Max health Attribute check found. Using it..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Inventory title with support for more than 32 characters. Skipping..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Hex colors are available! Ready for RGB..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Old constructor for HoverEvent found! Using it..
[13:37:43] [Server thread/INFO]: [AlonsoTags] New sendTitle method found! Using it..
[13:37:43] [Server thread/INFO]: [AlonsoTags] New setUnbreakable method found! Using it..
[13:37:43] [Server thread/INFO]: [AlonsoTags] New isUnbreakable method found! Using it..
[13:37:43] [Server thread/INFO]:     _   _                 _____              Running v2.1.3-BETA
[13:37:43] [Server thread/INFO]:    /_\ | |___ _ _  ___ __|_   _|_ _ __ _ ___ Server Paper vgit-Paper-318 (MC: 1.20.2)
[13:37:43] [Server thread/INFO]:   / _ \| / _ \ ' \(_-</ _ \| |/ _` / _` (_-< Discord for support: https://alonsoaliaga.com/discord
[13:37:43] [Server thread/INFO]:  /_/ \_\_\___/_||_/__/\___/|_|\__,_\__, /__/ Thanks for using my plugin ❤!
[13:37:43] [Server thread/INFO]:           Developed by AlonsoAliaga |___/
[13:37:43] [Server thread/INFO]: 
[13:37:43] [Server thread/INFO]: ==============================================================================================
[13:37:43] [Server thread/INFO]: [AlonsoTags] You are using a Paper fork (Paper), plugin should work fine!
[13:37:43] [Server thread/INFO]: [AlonsoTags] If you have issues, join us on our official support server on alonsoaliaga.com/discord
[13:37:43] [Server thread/INFO]: ==============================================================================================
[13:37:43] [Server thread/INFO]: 
[13:37:43] [Server thread/INFO]: [AlonsoTags] BungeeCord action bar available. Hooking..
[13:37:43] [Server thread/INFO]: [AlonsoTags] ProtocolLib found! Checking..
[13:37:43] [Server thread/INFO]: [Auto-update] Configuration is up-to-date!
[13:37:43] [Server thread/INFO]: [AlonsoTags] [HikariCP] Using com.mysql.cj.jdbc.MysqlDataSource for source class name..
[13:37:43] [Server thread/INFO]: [AlonsoTags] [SQLite] Attempting to create 'alonsotags' table..
[13:37:43] [Server thread/INFO]: [SQLite] Connecting to database 'database-alonsotags.db'!
[13:37:43] [Server thread/INFO]: [SQLite] Driver available: SQLite JDBC | 3.42.0
[13:37:43] [Server thread/INFO]: [SQLite] Successfully connected to database!
[13:37:43] [Server thread/INFO]: [AlonsoTags] [SQLite] Table 'alonsotags' has been created if didn't exist.
[13:37:43] [Server thread/INFO]: [AlonsoTags] Column called 'purchased_tags' already exists. Skipping..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Database found! Everything is working as expected.
[13:37:43] [Server thread/INFO]: [AlonsoTags] File AlonsoTags/books/config.yml is not valid book file. Skipping..
[13:37:43] [Server thread/INFO]: [AlonsoTags] File AlonsoTags/books/books is not valid book file. Skipping..
[13:37:43] [Server thread/INFO]: [AlonsoTags] File AlonsoTags/books/tags.yml is not valid book file. Skipping..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Couldn't load any book from AlonsoTags/books/ folder. Skipping books..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Old ItemStack constructor is available!
[13:37:43] [Server thread/INFO]: [AlonsoTags] SkullMeta#setOwningPlayer method is available for heads.
[13:37:43] [Server thread/INFO]: [AlonsoTags] SkullMeta#setOwner method is available for heads.
[13:37:43] [Server thread/INFO]: [AlonsoTags] SkullMeta#setOwnerProfile method is available for heads. Using it for heads..
[13:37:43] [Server thread/INFO]: [AlonsoTags] New setUnbreakable method found! Using it..
[13:37:43] [Server thread/INFO]: [AlonsoTags] New setOwningPlayer method is available!
[13:37:43] [Server thread/INFO]: [AlonsoTags] Old Bukkit#getOfflinePlayer(String name) method is available!
[13:37:43] [Server thread/INFO]: [AlonsoTags] New isUnbreakable method found! Using it..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Vault found! Hooking..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Config files are (re)loading.. Timestamp: Negative | Negative
[13:37:43] [Server thread/INFO]: [AlonsoTags] Loading 'new-tag' tag..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Loading 'newbie-tag' tag..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Loading 'antium-tag' tag..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Loading 'beginner-tag' tag..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Loading 'rookie-tag' tag..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Loading 'trained-tag' tag..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Loading 'experienced-tag' tag..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Loading 'golden-tag' tag..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Loading 'lottery-tag' tag..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Loading 'treasure-tag' tag..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Loading 'diamond-tag' tag..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Loading 'lucky-pull-tag' tag..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Loading 'magnificent-tag' tag..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Loading 'gorgeous-tag' tag..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Loading 'spring-tag' tag..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Loading 'springfever-tag' tag..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Loading 'springbreak-tag' tag..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Loading 'aprilshowers-tag' tag..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Loading 'pollen-tag' tag..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Loading 'march-tag' tag..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Loading 'april-tag' tag..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Loading 'contributor-tag' tag..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Loading 'alpha-tag' tag..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Loading 'beta-tag' tag..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Loading 'birthday-tag' tag..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Loading 'millionaire-1-tag' tag..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Successfully loaded 26 tags!
[13:37:43] [Server thread/INFO]: [AlonsoTags] Enabling compatibility with chat plugins that don't support PlaceholderAPI..
[13:37:43] [Server thread/INFO]: [AlonsoTags] Make sure you only enable this if necessary and once only. (Not in all my plugins)
[13:37:43] [Server thread/INFO]: [AlonsoTags] PlaceholderAPI found! Hooking..
[13:37:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: alonsotags [2.1.3-BETA]
[13:37:43] [Server thread/INFO]: [AlonsoTags] Bungee messaging system is allowed in this server. Enabling..
[13:37:43] [Server thread/INFO]: [SpentTime] Enabling SpentTime v1.0.5
[13:37:43] [Server thread/INFO]: [com.github.imdmk.spenttime.lib.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[13:37:43] [Server thread/INFO]: [com.github.imdmk.spenttime.lib.com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@6e1dec8c
[13:37:43] [Server thread/INFO]: [com.github.imdmk.spenttime.lib.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[13:37:43] [Server thread/INFO]: [SpentTime] Connected to SQLITE database.
[13:37:43] [Server thread/INFO]: [com.github.imdmk.spenttime.lib.com.j256.ormlite.table.TableUtils] creating table 'users'
[13:37:43] [Server thread/INFO]: [com.github.imdmk.spenttime.lib.com.j256.ormlite.table.TableUtils] executed create table statement changed 0 rows: CREATE TABLE IF NOT EXISTS `users` (`uuid` VARCHAR , `name` VARCHAR , `spentTime` BIGINT , PRIMARY KEY (`uuid`) ) 
[13:37:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: spent-time [1.0.5]
[13:37:43] [Server thread/INFO]: [SpentTime] Enabled plugin in 288ms.
[13:37:43] [Server thread/INFO]: [DoorsReloaded] Enabling DoorsReloaded v1.3.1
[13:37:43] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.0-dev+56-1929d41
[13:37:43] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[13:37:43] [Server thread/INFO]: [NoPlugins] Enabling NoPlugins v8.1
[13:37:43] [Server thread/INFO]: [NoPlugins] Minecraft version: v1_20_R2
[13:37:43] [Server thread/INFO]: [NoPlugins] Loaded assets for newer minecraft (1.13+)
[13:37:43] [Server thread/INFO]: [NoPlugins] Successfully loaded.
[13:37:43] [Server thread/INFO]: [BetterInvisibility] Enabling BetterInvisibility v3.1
[13:37:43] [Server thread/INFO]: [BetterInvisibility] Plugin Version 3.1
[13:37:43] [Server thread/INFO]: [BetterInvisibility] File 'config.yml' loaded!
[13:37:43] [Server thread/INFO]: [BetterStructures] Enabling BetterStructures v1.6.4
[13:37:43] [Server thread/INFO]: [BetterStructures]     ____       __  __            _____ __                  __                      
[13:37:43] [Server thread/INFO]: [BetterStructures]    / __ )___  / /_/ /____  _____/ ___// /________  _______/ /___  __________  _____
[13:37:43] [Server thread/INFO]: [BetterStructures]   / __  / _ \/ __/ __/ _ \/ ___/\__ \/ __/ ___/ / / / ___/ __/ / / / ___/ _ \/ ___/
[13:37:43] [Server thread/INFO]: [BetterStructures]  / /_/ /  __/ /_/ /_/  __/ /   ___/ / /_/ /  / /_/ / /__/ /_/ /_/ / /  /  __(__  ) 
[13:37:43] [Server thread/INFO]: [BetterStructures] /_____/\___/\__/\__/\___/_/   /____/\__/_/   \__,_/\___/\__/\__,_/_/   \___/____/
[13:37:43] [Server thread/INFO]: [BetterStructures] Initialized version 1.6.4!
[13:37:43] [Server thread/INFO]: [com.magmaguy.shaded.reflections.Reflections] Reflections took 13 ms to scan 1 urls, producing 1 keys and 5 values 
[13:37:43] [Server thread/INFO]: [com.magmaguy.shaded.reflections.Reflections] Reflections took 2 ms to scan 1 urls, producing 1 keys and 29 values 
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_floatingcave_barren.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_floatingcave_barren.yml will not be used.
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_throneroom_nether.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_throneroom_nether.yml will not be used.
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_surfacedungeon_barren.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_surfacedungeon_barren.yml will not be used.
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_hiddendungeon_tundra.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_hiddendungeon_tundra.yml will not be used.
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_surfacedungeon_tundra.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_surfacedungeon_tundra.yml will not be used.
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_floatingcave_grassland.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_floatingcave_grassland.yml will not be used.
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_hiddendungeon_barren.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_hiddendungeon_barren.yml will not be used.
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_hiddendungeon_end.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_hiddendungeon_end.yml will not be used.
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_teetharena_end.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_teetharena_end.yml will not be used.
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_hiddendungeon_desert.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_hiddendungeon_desert.yml will not be used.
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_tower_nether.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_tower_nether.yml will not be used.
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_teetharena_tundra.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_teetharena_tundra.yml will not be used.
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_tower_desert.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_tower_desert.yml will not be used.
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_floatingcave_tundra.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_floatingcave_tundra.yml will not be used.
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_surfacedungeon_grassland.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_surfacedungeon_grassland.yml will not be used.
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_hiddendungeon_grassland.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_hiddendungeon_grassland.yml will not be used.
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_circletemple_tundra.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_circletemple_tundra.yml will not be used.
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_floatingcave_desert.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_floatingcave_desert.yml will not be used.
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_watertubes_nether.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_watertubes_nether.yml will not be used.
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_watertubes_grassland.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_watertubes_grassland.yml will not be used.
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_tower_barren.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_tower_barren.yml will not be used.
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_tower_tundra.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_tower_tundra.yml will not be used.
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_surfacedungeon_nether.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_surfacedungeon_nether.yml will not be used.
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_floatingcave_nether.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_floatingcave_nether.yml will not be used.
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_surfacedungeon_desert.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_surfacedungeon_desert.yml will not be used.
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_watertubes_barren.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_watertubes_barren.yml will not be used.
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_flagship_grassland.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_flagship_grassland.yml will not be used.
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_throneroom_deepunderground.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_throneroom_deepunderground.yml will not be used.
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_throneroom_dripstone.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_throneroom_dripstone.yml will not be used.
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_throneroom_lush.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_throneroom_lush.yml will not be used.
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_teetharena_grassland.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_teetharena_grassland.yml will not be used.
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_circletemple_end.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_circletemple_end.yml will not be used.
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_throneroom_end.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_throneroom_end.yml will not be used.
[13:37:44] [Server thread/WARN]: [BetterStructures] betterstructures_em_watertubes_desert.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:44] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_watertubes_desert.yml will not be used.
[13:37:45] [Server thread/WARN]: [BetterStructures] betterstructures_em_watertubes_tundra.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:45] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_watertubes_tundra.yml will not be used.
[13:37:45] [Server thread/WARN]: [BetterStructures] betterstructures_em_hiddendungeon_nether.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:45] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_hiddendungeon_nether.yml will not be used.
[13:37:45] [Server thread/WARN]: [BetterStructures] betterstructures_em_watertubes_end.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:45] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_watertubes_end.yml will not be used.
[13:37:45] [Server thread/WARN]: [BetterStructures] betterstructures_em_floatingcave_end.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:45] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_floatingcave_end.yml will not be used.
[13:37:45] [Server thread/WARN]: [BetterStructures] betterstructures_em_circletemple_grassland.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:45] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_circletemple_grassland.yml will not be used.
[13:37:45] [Server thread/WARN]: [BetterStructures] betterstructures_em_tower_end.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:45] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_tower_end.yml will not be used.
[13:37:45] [Server thread/WARN]: [BetterStructures] betterstructures_em_throneroom_shallowunderground.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:45] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_throneroom_shallowunderground.yml will not be used.
[13:37:45] [Server thread/WARN]: [BetterStructures] betterstructures_em_circletemple_barren.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:45] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_circletemple_barren.yml will not be used.
[13:37:45] [Server thread/WARN]: [BetterStructures] betterstructures_em_teetharena_barren.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:45] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_teetharena_barren.yml will not be used.
[13:37:45] [Server thread/WARN]: [BetterStructures] betterstructures_em_circletemple_nether.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:45] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_circletemple_nether.yml will not be used.
[13:37:45] [Server thread/WARN]: [BetterStructures] betterstructures_em_teetharena_desert.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:45] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_teetharena_desert.yml will not be used.
[13:37:45] [Server thread/WARN]: [BetterStructures] betterstructures_em_surfacedungeon_end.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:45] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_surfacedungeon_end.yml will not be used.
[13:37:45] [Server thread/WARN]: [BetterStructures] betterstructures_em_teetharena_nether.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:45] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_teetharena_nether.yml will not be used.
[13:37:45] [Server thread/WARN]: [BetterStructures] betterstructures_em_circletemple_desert.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:45] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_circletemple_desert.yml will not be used.
[13:37:45] [Server thread/WARN]: [BetterStructures] betterstructures_em_tower_grassland.yml uses EliteMobs bosses but you do not have EliteMobs installed! BetterStructures does not require EliteMobs to work, but if you want cool EliteMobs boss fights you will have to install EliteMobs here: https://www.spigotmc.org/resources/%E2%9A%94elitemobs%E2%9A%94.40090/
[13:37:45] [Server thread/WARN]: [BetterStructures] Since EliteMobs is not installed, betterstructures_em_tower_grassland.yml will not be used.
[13:37:45] [Server thread/INFO]: [TAB] Enabling TAB v4.1.2
[13:37:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [4.1.2]
[13:37:45] [Server thread/INFO]: [TAB] [WARN] anti-override for scoreboard-teams is disabled in config. This is usually a mistake. If you notice the feature randomly breaking, enable it back.
[13:37:45] [Server thread/INFO]: [TAB] [WARN] Found a total of 1 issues.
[13:37:45] [Server thread/INFO]: [TAB] Enabled in 69ms
[13:37:45] [Server thread/INFO]: [CrazyAuctions] Enabling CrazyAuctions v1.3.2
[13:37:45] [Server thread/INFO]: [CrazyAuctions] Loading the config.yml
[13:37:45] [Server thread/INFO]: [CrazyAuctions] Successfully loaded config.yml
[13:37:45] [Server thread/INFO]: [CrazyAuctions] Loading the messages.yml
[13:37:45] [Server thread/INFO]: [CrazyAuctions] Successfully loaded messages.yml
[13:37:45] [Server thread/INFO]: [CrazyAuctions] Loading the test-file.yml
[13:37:45] [Server thread/INFO]: [CrazyAuctions] Successfully loaded test-file.yml
[13:37:45] [Server thread/INFO]: [CrazyAuctions] Loading the data.yml
[13:37:45] [Server thread/INFO]: [CrazyAuctions] Successfully loaded data.yml
[13:37:45] [Server thread/INFO]: [RarityDisplay] Enabling RarityDisplay v1.0.2
[13:37:45] [Server thread/INFO]: [RarityDisplay] Loading RarityDisplay
[13:37:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: raritydisplay [1.0.2]
[13:37:45] [Server thread/INFO]: [AdvancedEnderchest] Enabling AdvancedEnderchest v1.1.6
[13:37:45] [Server thread/INFO]: [Multiverse-Portals] Enabling Multiverse-Portals v4.2.1-b834
[13:37:45] [Server thread/INFO]: [Multiverse-Portals] 0 - Portals(s) loaded
[13:37:45] [Server thread/INFO]: [Multiverse-Portals] Found FastAsyncWorldEdit. Using it for selections.
[13:37:45] [Server thread/INFO]: [Multiverse-Portals 4.2.1-b834]  Enabled - By Rigby and fernferret
[13:37:45] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.17.1
[13:37:45] [Server thread/INFO]: [SimpleRename] Enabling SimpleRename v13.9
[13:37:45] [Server thread/INFO]: SimpleRename enabled!
[13:37:45] [Server thread/INFO]: [DirectionalBlock] Enabling DirectionalBlock v1.4.1
[13:37:45] [Server thread/INFO]: [DirectionalBlock] Loaded 6 directional blocks
[13:37:45] [Server thread/INFO]: [DirectionalBlock] Plugin Enabled
[13:37:45] [Server thread/INFO]: [FreeCoinFlip] Enabling FreeCoinFlip v1.9
[13:37:45] [Server thread/INFO]: [Dualhorse] Enabling Dualhorse v1.4.1
[13:37:45] [Server thread/INFO]: [Dualhorse] DualHorse Plugin - made by GeeVeeDee
[13:37:45] [Server thread/INFO]: [CurseOfVanishing] Enabling CurseOfVanishing v1.0
[13:37:45] [Server thread/INFO]: [ItemEffects] Enabling ItemEffects v2.0.0
[13:37:45] [Server thread/INFO]: [ItemEffects] Loading ItemEffects
[13:37:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: itemeffects [2.0.0]
[13:37:45] [Server thread/INFO]: [RoseLoot] Enabling RoseLoot v1.2.8
[13:37:45] [Server thread/INFO]: [Tebex] Enabling Tebex v2.0.3
[13:37:45] [Server thread/INFO]: [BetterBackpacks] Enabling BetterBackpacks v1.3.1-BETA-DEV-008
[13:37:45] [Server thread/INFO]:   ___      _   _           ___          _                 _        Running v1.3.1-BETA-DEV-008 (v1_20)
[13:37:45] [Server thread/INFO]:  | _ ) ___| |_| |_ ___ _ _| _ ) __ _ __| |___ __  __ _ __| |__ ___ Server Paper vgit-Paper-318 (MC: 1.20.2)
[13:37:45] [Server thread/INFO]:  | _ \/ -_)  _|  _/ -_) '_| _ \/ _` / _| / / '_ \/ _` / _| / /(_-< Discord for support: https://alonsoaliaga.com/discord
[13:37:45] [Server thread/INFO]:  |___/\___|\__|\__\___|_| |___/\__,_\__|_\_\ .__/\__,_\__|_\_\/__/ Thanks for using my plugin ❤!
[13:37:45] [Server thread/INFO]:                  Developed by AlonsoAliaga |_|                    
[13:37:45] [Server thread/INFO]: 
[13:37:45] [Server thread/INFO]:    You are using a Development build of BetterBackpacks. Make sure you update the plugin once
[13:37:45] [Server thread/INFO]:    an official update is released on SpigotMC to ensure plugin is free of bugs.
[13:37:45] [Server thread/INFO]: 
[13:37:45] [Server thread/INFO]: ==============================================================================================
[13:37:45] [Server thread/INFO]: [BetterBackpacks] You are using a Paper fork (Paper), plugin should work fine!
[13:37:45] [Server thread/INFO]: [BetterBackpacks] If you have issues, join us on our official support server on alonsoaliaga.com/discord
[13:37:45] [Server thread/INFO]: ==============================================================================================
[13:37:45] [Server thread/INFO]: 
[13:37:45] [Server thread/INFO]: [BetterBackpacks] Detected MinecraftVersion MC1_20_R2 or newer!
[13:37:45] [Server thread/INFO]: [BetterBackpacks] BungeeCord action bar available. Hooking..
[13:37:45] [Server thread/INFO]: [BetterBackpacks] ProtocolLib found! Checking..
[13:37:45] [Server thread/INFO]: [Auto-update] Configuration is up-to-date!
[13:37:45] [Server thread/INFO]: [Auto-update] items.yml is up-to-date!
[13:37:45] [Server thread/INFO]: [BetterBackpacks] Successfully loaded 16 materials to restrict right-click in backpacks!
[13:37:45] [Server thread/INFO]: [BetterBackpacks] Old ItemStack constructor is available!
[13:37:45] [Server thread/INFO]: [BetterBackpacks] SkullMeta#setOwningPlayer method is available for heads.
[13:37:45] [Server thread/INFO]: [BetterBackpacks] SkullMeta#setOwner method is available for heads.
[13:37:45] [Server thread/INFO]: [BetterBackpacks] SkullMeta#setOwnerProfile method is available for heads. Using it for heads..
[13:37:45] [Server thread/INFO]: [BetterBackpacks] Backpack Tier1 recipe is disabled!
[13:37:45] [Server thread/INFO]: [BetterBackpacks] Backpack Tier2 recipe is disabled!
[13:37:45] [Server thread/INFO]: [BetterBackpacks] Backpack Tier3 recipe is disabled!
[13:37:45] [Server thread/INFO]: [BetterBackpacks] Backpack Tier4 recipe is disabled!
[13:37:45] [Server thread/INFO]: [BetterBackpacks] Backpack Tier5 recipe is disabled!
[13:37:45] [Server thread/INFO]: [BetterBackpacks] Backpack Tier6 recipe is disabled!
[13:37:45] [Server thread/INFO]: [BetterBackpacks] Unique textures feature is disabled!
[13:37:45] [Server thread/INFO]: [BetterBackpacks] Honey support found. Enabling..
[13:37:45] [Server thread/INFO]: [BetterBackpacks] Powder Snow support found. Enabling..
[13:37:45] [Server thread/INFO]: [BetterBackpacks] PlayerSwapHandItemsEvent available. Listening..
[13:37:45] [Server thread/INFO]: [BetterBackpacks] Detected version 1.20.2 or newer! Skipping old reflections..
[13:37:45] [Server thread/INFO]: [Tweakin] Enabling Tweakin v7.0.0
[13:37:45] [Server thread/INFO]: [Tweakin] Running papermc..
[13:37:45] [Server thread/INFO]: [Tweakin] [PriLib] Running v1_20_R2 bukkit version and 1.20.2 minecraft version
[13:37:45] [Server thread/INFO]: [Tweakin] [ACF] Enabled Asynchronous Tab Completion Support!
[13:37:45] [Server thread/INFO]: [Tweakin] Loading tweakin...
[13:37:45] [Server thread/INFO]: [Tweakin] Generating Head Map, this might take a while...
[13:37:45] [Server thread/INFO]: [Tweakin] Generated 176 mob heads..
[13:37:45] [Server thread/INFO]: [Tweakin] Loading Poses...
[13:37:45] [Server thread/INFO]: [Tweakin] Loaded 22 armor stand poses.
[13:37:46] [Server thread/INFO]: [Tweakin] Registered 203 recipes
[13:37:46] [Server thread/INFO]: [Tweakin] Using 0,16,0 as color for reach-around, due to other color channels being removed after 1.17
[13:37:46] [Server thread/INFO]: [Tweakin] Registered 26 tweaks successfully
[13:37:46] [Server thread/INFO]: [Tweakin] Registering permissions
[13:37:46] [Server thread/INFO]: [Tweakin] Registered 61 permissions
[13:37:46] [Server thread/INFO]: [Tweakin] Enabling bstats...
[13:37:46] [Server thread/INFO]: [Tweakin] Tweakin loaded successfully
[13:37:46] [Server thread/INFO]: [GUIPlus] Enabling GUIPlus v2.9
[13:37:46] [OkHttp https://plugin.tebex.io/.../INFO]: [Tebex] Connected to Antium - Minecraft: Java Edition server.
[13:37:46] [Server thread/INFO]: [UltraRepair] Enabling UltraRepair v4.1.5
[13:37:46] [Server thread/INFO]: 

 ____ ___  __________ 
|    |   \ \______   \
|    |   /  |       _/
|    |  /   |    |   \
|______/    |____|_  /
                   \/ 

[13:37:46] [Server thread/INFO]: [UltraRepair] Loading configuration files...
[13:37:46] [Server thread/INFO]: [UltraRepair] Initializing base settings...
[13:37:46] [Server thread/INFO]: [UltraRepair] Checking economy integration...
[13:37:46] [Server thread/INFO]: [UltraRepair] Loading repair manager...
[13:37:46] [Server thread/INFO]: [UltraRepair] Registering commands...
[13:37:46] [Server thread/INFO]: [UltraRepair] Registering listeners...
[13:37:46] [Server thread/INFO]: [UltraRepair] Loading metrics...
[13:37:46] [Server thread/INFO]: [UltraRepair] Checking for updates...
[13:37:46] [Server thread/INFO]: UltraRepair v4.1.5 by Demeng has been enabled.
[13:37:46] [Server thread/INFO]: [InteractionVisualizer] Enabling InteractionVisualizer v1.18.8.0
[13:37:46] [pluginbase-scheduler-0/INFO]: *-----------------------------------------------------*
[13:37:46] [pluginbase-scheduler-0/INFO]: A newer version of UltraRepair is available!
[13:37:46] [pluginbase-scheduler-0/INFO]: Current version: 4.1.5
[13:37:46] [pluginbase-scheduler-0/INFO]: Latest version: 4.1.6
[13:37:46] [pluginbase-scheduler-0/INFO]: Get the update: https://spigotmc.org/resources/63035
[13:37:46] [pluginbase-scheduler-0/INFO]: *-----------------------------------------------------*
[13:37:47] [Server thread/INFO]: [InteractionVisualizer] Loading languages...
[13:37:47] [Server thread/INFO]: [InteractionVisualizer] Opened Sqlite database successfully
[13:37:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactionvisualizer [2.0.0]
[13:37:48] [Server thread/INFO]: [InteractionVisualizer] InteractionVisualizer has been enabled!
[13:37:48] [Server thread/INFO]: [XCatch] Enabling XCatch v1.1.4
[13:37:48] [Server thread/INFO]: [XCatch] XCatch has been initialized
[13:37:48] [Server thread/INFO]: [SafeTrade] Enabling SafeTrade v1.1.1
[13:37:48] [Server thread/INFO]: [Not-Too-Expensive] Enabling Not-Too-Expensive v1.1
[13:37:48] [Server thread/INFO]: [PlayerProfiles] Enabling PlayerProfiles v7.0.0
[13:37:48] [Server thread/INFO]: [PlayerProfiles] Found WorldGuard! Using WorldGuard API version 7
[13:37:48] [Server thread/INFO]: [MythicLibreforge] Enabling MythicLibreforge v1.3.1
[13:37:48] [Server thread/INFO]: [MythicLibreforge] Registered cast_mythic_skill effect.
[13:37:48] [Server thread/INFO]: [MythicLibreforge] Registered auto_plant effect.
[13:37:48] [Server thread/INFO]: [MythicLibreforge] Registered add_mmo_stat effect.
[13:37:48] [Server thread/INFO]: [MythicLibreforge] Registered open_anvil effect.
[13:37:48] [Server thread/INFO]: [MythicLibreforge] Registered open_disposal effect.
[13:37:48] [Server thread/INFO]: [MythicLibreforge] Registered open_enchanting effect.
[13:37:48] [Server thread/INFO]: [MythicLibreforge] Registered quick_equip effect.
[13:37:48] [Server thread/INFO]: [MythicLibreforge] Registered smelt_result trigger.
[13:37:48] [Server thread/INFO]: [MythicLibreforge] Registered only_on_fire filter.
[13:37:48] [Server thread/INFO]: [MythicLibreforge] Registered at_location filter.
[13:37:48] [Server thread/INFO]: [MythicLibreforge] Registered is_crit filter.
[13:37:48] [Server thread/INFO]: [MythicLibreforge] Registered has_enchantment filter.
[13:37:48] [Server thread/INFO]: [MythicLibreforge] Registered in_combat condition.
[13:37:48] [Server thread/INFO]: [MythicLibreforge] Warn: This condition is experimental, be careful to use!
[13:37:48] [Server thread/INFO]: [MythicLibreforge] Plugin is loaded. Author: PQguanfang.
[13:37:48] [Server thread/INFO]: [DivineDrop] Enabling DivineDrop v2.13
[13:37:48] [Server thread/INFO]: [EnchantmentSlots] Enabling EnchantmentSlots v2.5.2
[13:37:48] [Server thread/INFO]: [EnchantmentSlots] Hooking into ProtocolLib....
[13:37:48] [Server thread/INFO]: [EnchantmentSlots] Hooking into PlaceholderAPI...
[13:37:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: enchantmentslots [1.0.0]
[13:37:48] [Server thread/INFO]: [EnchantmentSlots] Finished hook!
[13:37:48] [Server thread/INFO]: [EnchantmentSlots] Loaded extra slot item: A!
[13:37:48] [Server thread/INFO]: [EnchantmentSlots] Loaded extra slot item: B!
[13:37:48] [Server thread/INFO]: [EnchantmentSlots] Loaded extra slot item: C!
[13:37:48] [Server thread/INFO]: [EnchantmentSlots] Loaded extra slot item: D!
[13:37:48] [Server thread/INFO]: [EnchantmentSlots] Loaded extra slot item: E!
[13:37:48] [Server thread/INFO]: [EnchantmentSlots] Loaded extra slot item: Z!
[13:37:48] [Server thread/INFO]: [EnchantmentSlots] Plugin is loaded. Author: PQguanfang.
[13:37:48] [Server thread/INFO]: [EcoShop] Enabling EcoShop v1.15.2
[13:37:48] [Server thread/INFO]: [EcoShop] Loading EcoShop
[13:37:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecoshop [1.15.2]
[13:37:48] [Server thread/INFO]: [DeluxeCommands] Enabling DeluxeCommands v1.11.3
[13:37:48] [Server thread/INFO]: [DeluxeCommands] Successfully setup compatibility for your server version!
[13:37:48] [Server thread/INFO]: [DeluxeCommands] 36 commands loaded!
[13:37:48] [Server thread/INFO]: [DeluxeCommands] Hooked into PlaceholderAPI for placeholders!
[13:37:48] [Server thread/INFO]: [Vouchers] Enabling Vouchers v3.20.0
[13:37:48] [Server thread/INFO]:  
[13:37:48] [Server thread/INFO]: =============================
[13:37:48] [Server thread/INFO]: Vouchers v3.20.0 by Tweetzy
[13:37:48] [Server thread/INFO]: Developer: Kiran Hart
[13:37:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: vouchers [1.0.0]
[13:37:48] [Server thread/INFO]: [FlightCore] Enabling metrics for Vouchers
[13:37:48] [Server thread/INFO]: =============================
[13:37:48] [Server thread/INFO]:  
[13:37:48] [Server thread/INFO]: [FarmControl] Enabling FarmControl v1.2.5
[13:37:48] [Server thread/INFO]: [EcoPets] Enabling EcoPets v2.55.2
[13:37:48] [Server thread/INFO]: [EcoPets] Loading EcoPets
[13:37:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecopets [2.55.2]
[13:37:48] [Server thread/INFO]: [NoCropTrample] Enabling NoCropTrample v1.0.0-RELEASE
[13:37:48] [Server thread/INFO]: [Actions] Enabling Actions v2.54.2
[13:37:48] [Server thread/INFO]: [Actions] Loading Actions
[13:37:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: actions [2.54.2]
[13:37:48] [Server thread/INFO]: [LevelledMobs] Enabling LevelledMobs v3.14.1 b817
[13:37:48] [Server thread/INFO]: LevelledMobs: Using NMS version v1_20_R2 for nametag support
[13:37:48] [Server thread/INFO]: LevelledMobs: File Loader: Loading files...
[13:37:48] [Server thread/INFO]: LevelledMobs: File Loader: Loading file 'rules.yml'...
[13:37:48] [Server thread/INFO]: LevelledMobs: defaults, specified preset name 'blood_moon' but none was found
[13:37:48] [Server thread/INFO]: [WARN] LevelledMobs: Invalid group: []
[13:37:48] [Server thread/INFO]: [WARN] LevelledMobs: Invalid group: []
[13:37:48] [Server thread/INFO]: LevelledMobs: Current rules hash: 6859f66498cbd77effc520d9908b03d0a1ebab32b0c0cf6aab7de5f1f3eec3aa
[13:37:48] [Server thread/INFO]: LevelledMobs: File Loader: Loading file 'settings.yml'...
[13:37:48] [Server thread/INFO]: LevelledMobs: File Loader: Loading file 'messages.yml'...
[13:37:48] [Server thread/INFO]: LevelledMobs: Listeners: Registering event listeners...
[13:37:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: LevelledMobs [3.14.1 b817]
[13:37:48] [Server thread/INFO]: LevelledMobs: Commands: Registering commands...
[13:37:48] [Server thread/INFO]: LevelledMobs: Running misc procedures
[13:37:48] [Server thread/INFO]: LevelledMobs: Tasks: Starting async nametag auto update task...
[13:37:48] [Server thread/INFO]: LevelledMobs: Start-up complete (took 77ms)
[13:37:48] [Server thread/INFO]: [libreforge] Enabling libreforge v4.56.2
[13:37:48] [Server thread/INFO]: [libreforge] Loading libreforge
[13:37:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: libreforge [4.56.2]
[13:37:48] [Server thread/INFO]: [libreforge] Loaded integrations: TAB, TerraformGenerator, LevelledMobs, Vault, WorldGuard
[13:37:48] [Server thread/INFO]: [libreforge] 
[13:37:48] [Server thread/INFO]: [libreforge] Hey, what's this plugin doing here? I didn't install it!
[13:37:48] [Server thread/INFO]: [libreforge] libreforge is the effects system for plugins like EcoEnchants,
[13:37:48] [Server thread/INFO]: [libreforge] EcoJobs, EcoItems, etc. If you're looking for config options for
[13:37:48] [Server thread/INFO]: [libreforge] things like cooldown messages, lrcdb, and stuff like that, you'll
[13:37:48] [Server thread/INFO]: [libreforge] find it under /plugins/libreforge
[13:37:48] [Server thread/INFO]: [libreforge] 
[13:37:48] [Server thread/INFO]: [libreforge] Don't worry about updating libreforge, it's handled automatically!
[13:37:48] [Server thread/INFO]: [libreforge] 
[13:37:48] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[13:37:48] [Server thread/INFO]: Running delayed init tasks
[13:37:48] [Craft Scheduler Thread - 14 - Essentials/INFO]: [Essentials] Fetching version information...
[13:37:48] [Craft Scheduler Thread - 46 - InteractionVisualizer/INFO]: [InteractionVisualizer] Downloading and extracting latest Language files...
[13:37:48] [Craft Scheduler Thread - 32 - InteractiveChat/INFO]: [InteractiveChat] Loading languages...
[13:37:48] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[13:37:48] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[13:37:48] [Craft Scheduler Thread - 29 - NeigeItems/INFO]: [NeigeItems] 发现新版本: 1.16.38
[13:37:48] [Craft Scheduler Thread - 29 - NeigeItems/INFO]: [NeigeItems] 链接: https://github.com/ankhorg/NeigeItems-Kotlin/releases/latest
[13:37:48] [Craft Scheduler Thread - 70 - Vault/INFO]: [Vault] Checking for Updates ... 
[13:37:48] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[13:37:48] [Server thread/INFO]: [ItemsAdder] [Pack] Extracting internal contents from .jar
[13:37:48] [Craft Scheduler Thread - 70 - Vault/INFO]: [Vault] No new version available
[13:37:48] [Craft Scheduler Thread - 16 - ItemsAdder/INFO]: [ItemsAdder]  
[13:37:48] [Craft Scheduler Thread - 16 - ItemsAdder/INFO]: [ItemsAdder] UPDATE available: https://www.spigotmc.org/resources/73355/
[13:37:48] [Craft Scheduler Thread - 16 - ItemsAdder/INFO]: [ItemsAdder] Current version: 3.6.2c | Online version: 3.6.3-beta-13
[13:37:48] [Craft Scheduler Thread - 16 - ItemsAdder/INFO]: [ItemsAdder]  
[13:37:48] [Craft Scheduler Thread - 34 - BeastWithdraw/INFO]: [BeastWithdraw] There is not a new update available.
[13:37:48] [Craft Scheduler Thread - 17 - ItemsAdder/INFO]: [ItemsAdder] [License] Spigot product licensed to: BurningCoolDude (514007)
[13:37:48] [Craft Scheduler Thread - 43 - RoseLoot/INFO]: [RoseGarden] An update for RoseLoot (v1.2.9) is available! You are running v1.2.8.
[13:37:48] [Craft Scheduler Thread - 67 - LevelledMobs/INFO]: [WARN] LevelledMobs: LevelledMobs Update Checker Notice:
[13:37:48] [Craft Scheduler Thread - 67 - LevelledMobs/INFO]: [WARN] LevelledMobs: Your LevelledMobs version is outdated! Please update to v3.15.1 as soon as possible. (You're running v3.14.1)
[13:37:48] [Craft Scheduler Thread - 39 - BetterStructures/INFO]: [BetterStructures] Latest public release is 1.6.8
[13:37:48] [Craft Scheduler Thread - 39 - BetterStructures/INFO]: [BetterStructures] Your version is 1.6.4
[13:37:48] [Server thread/INFO]: [ItemsAdder] [Pack] DONE extracting internal contents from .jar
[13:37:48] [Craft Scheduler Thread - 39 - BetterStructures/WARN]: [BetterStructures] [BetterStructures] A newer version of this plugin is available for download!
[13:37:48] [Craft Scheduler Thread - 14 - Essentials/WARN]: [Essentials] You're 12 EssentialsX dev build(s) out of date!
[13:37:48] [Craft Scheduler Thread - 14 - Essentials/WARN]: [Essentials] Download it here: https://essentialsx.net/downloads.html
[13:37:49] [Craft Scheduler Thread - 41 - AdvancedEnderchest/INFO]: [AdvancedEnderchest] Database connected: 74.50.70.221
[13:37:49] [Craft Scheduler Thread - 41 - AdvancedEnderchest/INFO]: [AdvancedEnderchest] Database wait_timeout = 28800s
[13:37:49] [Craft Scheduler Thread - 46 - InteractionVisualizer/INFO]: [InteractionVisualizer] Sucessfully downloaded the latest Language files!
[13:37:49] [Craft Scheduler Thread - 21 - EcoBosses/WARN]: [EcoBosses] EcoBosses is out of date! (Version 9.50.0)
[13:37:49] [Craft Scheduler Thread - 21 - EcoBosses/WARN]: [EcoBosses] The newest version is 10.1.2
[13:37:49] [Craft Scheduler Thread - 21 - EcoBosses/WARN]: [EcoBosses] Download the new version!
[13:37:49] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/iasurvival/resourcepack/iasurvival/optifine/cit/textures/fish/lang.yml
[13:37:49] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[13:37:49] [Server thread/INFO]: LM_Items: building API classes
[13:37:49] [Server thread/INFO]: LM_Items: Discovered eco
[13:37:49] [Server thread/INFO]: LM_Items: Discovered ItemsAdder
[13:37:49] [Server thread/INFO]: LM_Items: Discovered CustomCrafting
[13:37:49] [Server thread/INFO]: [RoseLoot] Registered 197 loot table conditions.
[13:37:49] [Server thread/INFO]: [RoseLoot] Registered 10 loot table types.
[13:37:49] [Server thread/INFO]: [RoseLoot] Registered 19 loot item types.
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecopets:dolphin_spawn_egg] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [talismans:squid_heart] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [talismans:seagrass_necklace] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:crab_claw] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [talismans:sea_shell] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [talismans:faulty_snorkeler] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [talismans:flippers] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:winter_jacket] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecopets:parrot_spawn_egg] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [talismans:green_emblem] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [talismans:grass_charm] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [talismans:ankle_band] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [talismans:horseshoe] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [talismans:lucky_horseshoe] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [talismans:regeneration_band] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_fancy_helmet] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_fancy_chestplate] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_fancy_leggings] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_fancy_boots] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_farmer_helmet] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_farmer_chestplate] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_farmer_leggings] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_farmer_boots] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_hazmat_helmet] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_hazmat_chestplate] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_hazmat_leggings] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_hazmat_boots] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_mercenary_helmet] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_mercenary_chestplate] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_mercenary_leggings] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_mercenary_boots] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:lushful_blade] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:village_protector] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:justice_cleaver] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:wooden_shield] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:iron_shield] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:howlite_shield] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecopets:chameleon_spawn_egg] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:steel_bar] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:unreliable_umbrella] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:red_balloon] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:roller_skates] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [talismans:clean_ankle_band] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [talismans:barbed_ankle_band] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [talismans:green_emblem] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [talismans:grass_charm] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [talismans:ankle_band] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [talismans:horseshoe] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [talismans:lucky_horseshoe] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [talismans:regeneration_band] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_fancy_helmet] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_fancy_chestplate] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_fancy_leggings] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_fancy_boots] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_farmer_helmet] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_farmer_chestplate] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_farmer_leggings] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_farmer_boots] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_hazmat_helmet] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_hazmat_chestplate] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_hazmat_leggings] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_hazmat_boots] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_mercenary_helmet] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_mercenary_chestplate] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_mercenary_leggings] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_mercenary_boots] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:lushful_blade] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:village_protector] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:justice_cleaver] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:wooden_shield] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:iron_shield] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:howlite_shield] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecopets:chameleon_spawn_egg] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:unreliable_umbrella] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:red_balloon] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:roller_skates] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:steel_bar] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [talismans:captains_curse] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:cutlass_mold] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:treasure_gem] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:crystal_1star] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:crystal_2star] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:crystal_3star] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [talismans:quick_shoes] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:browny] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:dwarven_shield] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:winged_boots] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:engineered_bow] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:adaptive_dual_axlade] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:machete] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:mercenarys_machete] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:skeletal_mace] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:reinforced_skeletal_mace] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:golden_spear] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:pirates_cutlass] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_armored_skeleton_helmet] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_armored_skeleton_chestplate] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_armored_skeleton_leggings] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_armored_skeleton_boots] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_nocturnal_helmet] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_nocturnal_chestplate] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_nocturnal_leggings] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_nocturnal_boots] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecopets:hermit_crab_spawn_egg] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_golem_helmet] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_golem_chestplate] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_golem_leggings] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoarmor:set_golem_boots] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [talismans:lazy_doll] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [talismans:cursed_find] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [talismans:sharp_bone] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:headlamp] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:faulty_flashlight] from [eco]
[13:37:49] [Server thread/WARN]: [RoseLoot] Failed to resolve item [ecoitems:steel_bar] from [eco]
[13:37:49] [Server thread/INFO]: [RoseLoot] Loaded 44 loot tables.
[13:37:50] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop BloodSkeleton 1to2 0.5
[13:37:50] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Mobs/BloodMoon.yml
[13:37:50] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[13:37:50] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop BloodSkeleton 1to2 0.5
[13:37:50] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Mobs/BloodMoon.yml
[13:37:50] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[13:37:50] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop BloodSkeleton 1to2 0.5
[13:37:50] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Mobs/BloodMoon.yml
[13:37:50] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[13:37:50] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop BloodSkeleton 1to2 0.5
[13:37:50] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Mobs/BloodMoon.yml
[13:37:50] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[13:37:50] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop BloodSkeleton 1to2 0.5
[13:37:50] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Mobs/BloodMoon.yml
[13:37:50] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[13:37:50] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop BloodSkeleton 1to2 0.5
[13:37:50] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Mobs/BloodMoon.yml
[13:37:50] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[13:37:50] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop BloodSkeleton 1to2 0.5
[13:37:50] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Mobs/BloodMoon.yml
[13:37:50] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[13:37:50] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop BloodSkeleton 1to2 0.5
[13:37:50] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Mobs/BloodMoon.yml
[13:37:50] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[13:37:50] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop BloodSkeleton 1to2 0.5
[13:37:50] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Mobs/BloodMoon.yml
[13:37:50] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[13:37:50] [Craft Scheduler Thread - 28 - InteractionVisualizer/INFO]: [InteractionVisualizer] Loaded all 1 languages!
[13:37:50] [Server thread/WARN]: Default tier specified in arachnid elytra is invalid! Defaulting to 'default'
[13:37:50] [Server thread/WARN]: Default tier specified in arachnid elytra is invalid! Defaulting to 'default'
[13:37:50] [Server thread/WARN]: Default tier specified in explorer elytra is invalid! Defaulting to 'default'
[13:37:50] [Server thread/WARN]: Default tier specified in explorer elytra is invalid! Defaulting to 'default'
[13:37:50] [Server thread/WARN]: Default tier specified in farmer elytra is invalid! Defaulting to 'default'
[13:37:50] [Server thread/WARN]: Default tier specified in farmer elytra is invalid! Defaulting to 'default'
[13:37:51] [Server thread/WARN]: Default tier specified in forager elytra is invalid! Defaulting to 'default'
[13:37:51] [Server thread/WARN]: Default tier specified in forager elytra is invalid! Defaulting to 'default'
[13:37:51] [Server thread/WARN]: Default tier specified in hazmat elytra is invalid! Defaulting to 'default'
[13:37:51] [Server thread/WARN]: Default tier specified in hazmat elytra is invalid! Defaulting to 'default'
[13:37:51] [Server thread/WARN]: Default tier specified in spelunker elytra is invalid! Defaulting to 'default'
[13:37:51] [Server thread/WARN]: Default tier specified in spelunker elytra is invalid! Defaulting to 'default'
[13:37:52] [Server thread/INFO]: [PlaceholderAPI] An update for PlaceholderAPI (v2.11.5) is available at:
[13:37:52] [Server thread/INFO]: [PlaceholderAPI] https://www.spigotmc.org/resources/placeholderapi.6245/
[13:37:52] [Server thread/INFO]: [UnstripLog] You are using the latest version of UnstripLog.
[13:37:52] [Server thread/INFO]: [BetterTridents] You are using the latest version of BetterTridents.
[13:37:52] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion mvdw due to a missing plugin: MVdWPlaceholderAPI
[13:37:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: formatter [2.2.2]
[13:37:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: checkitem [2.7.2]
[13:37:52] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playertime due to a missing plugin: PlayerTime
[13:37:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.7]
[13:37:52] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playerstats due to a missing plugin: PlayerStats
[13:37:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.1]
[13:37:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: progress [2.1]
[13:37:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: nf [1.4.2]
[13:37:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[13:37:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: number [0.60]
[13:37:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: aph [1.0]
[13:37:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.6.2]
[13:37:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[13:37:52] [Server thread/WARN]: [PlaceholderAPI] Failed to load external expansion formatter. Identifier is already in use.
[13:37:52] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion formatter due to an unknown issue.
[13:37:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: rng [1.4.0]
[13:37:52] [Server thread/INFO]: [PAPI] [Javascript-Expansion] 1 script loaded!
[13:37:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: javascript [2.1.2]
[13:37:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: math [2.0.2]
[13:37:52] [Server thread/INFO]: [PlaceholderAPI] [attribute] Available attributes: generic.attack_speed, generic.knockback_resistance, generic.max_absorption, GENERIC_ARMOR_TOUGHNESS, generic.max_health, GENERIC_FOLLOW_RANGE, GENERIC_ATTACK_KNOCKBACK, generic.luck, GENERIC_ATTACK_DAMAGE, GENERIC_ATTACK_SPEED, GENERIC_LUCK, generic.attack_damage, generic.attack_knockback, generic.flying_speed, GENERIC_MAX_HEALTH, generic.movement_speed, GENERIC_FLYING_SPEED, GENERIC_KNOCKBACK_RESISTANCE, GENERIC_MOVEMENT_SPEED, generic.follow_range, GENERIC_ARMOR, GENERIC_MAX_ABSORPTION, generic.armor, generic.armor_toughness
[13:37:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: attribute [1.0.0]
[13:37:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: Advancements [1.7]
[13:37:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: changeoutput [1.2.2]
[13:37:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: string [1.0.3]
[13:37:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: otherplayer [2.1.0]
[13:37:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[13:37:52] [Server thread/INFO]: 20 placeholder hook(s) registered! 4 placeholder hook(s) have an update available.
[13:37:52] [Server thread/INFO]: Done (37.630s)! For help, type "help"
[13:37:52] [Server thread/INFO]: Timings Reset
[13:37:52] [Craft Scheduler Thread - 40 - ItemsAdder/INFO]: [ItemsAdder] Loaded 176 items
[13:37:52] [Craft Scheduler Thread - 40 - ItemsAdder/INFO]: [ItemsAdder] Used 1/188 REAL block IDs
[13:37:52] [Craft Scheduler Thread - 40 - ItemsAdder/INFO]: [ItemsAdder] Used 38/750 REAL_NOTE block IDs
[13:37:52] [Craft Scheduler Thread - 40 - ItemsAdder/INFO]: [ItemsAdder] Used 1/63 REAL_TRANSPARENT block IDs
[13:37:52] [Craft Scheduler Thread - 40 - ItemsAdder/INFO]: [ItemsAdder] Used 0/127 REAL_WIRE block IDs
[13:37:52] [Craft Scheduler Thread - 40 - ItemsAdder/INFO]: [ItemsAdder] Used 0/14 FIRE block IDs
[13:37:52] [Craft Scheduler Thread - 40 - ItemsAdder/INFO]: [ItemsAdder] Used 583/6608 font_images
[13:37:52] [Craft Scheduler Thread - 40 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded 16 categories
[13:37:52] [Craft Scheduler Thread - 40 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded successfully.
[13:37:52] [Craft Scheduler Thread - 40 - ItemsAdder/INFO]: [ItemsAdder] [Pack] Checking resourcepack url... 
[13:37:52] [Server thread/INFO]: [eco] Loaded eco
[13:37:52] [Server thread/ERROR]: [EcoEnchants] 
[13:37:52] [Server thread/ERROR]: [EcoEnchants] Invalid configuration found at enchantment prot -> effects:
[13:37:52] [Server thread/ERROR]: [EcoEnchants] (Cause) Argument 'triggers'
[13:37:52] [Server thread/ERROR]: [EcoEnchants] (Reason) You must specify at least one trigger for triggered effects: damage_multiplier!
[13:37:52] [Server thread/ERROR]: [EcoEnchants] 
[13:37:52] [Server thread/ERROR]: [EcoEnchants] 
[13:37:52] [Server thread/ERROR]: [EcoEnchants] Invalid configuration found at enchantment sharp -> effects:
[13:37:52] [Server thread/ERROR]: [EcoEnchants] (Cause) Argument 'triggers'
[13:37:52] [Server thread/ERROR]: [EcoEnchants] (Reason) You must specify at least one trigger for triggered effects: add_damage!
[13:37:52] [Server thread/ERROR]: [EcoEnchants] 
[13:37:52] [Server thread/INFO]: [EcoEnchants] Loaded EcoEnchants
[13:37:52] [Server thread/INFO]: [EcoBits] Loaded EcoBits
[13:37:52] [Server thread/INFO]: [EcoQuests] Loaded EcoQuests
[13:37:52] [Craft Scheduler Thread - 28 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[13:37:52] [Server thread/INFO]: [EcoItems] Loaded EcoItems
[13:37:52] [Server thread/WARN]: Default tier specified in arachnid elytra is invalid! Defaulting to 'default'
[13:37:52] [Server thread/WARN]: Default tier specified in arachnid elytra is invalid! Defaulting to 'default'
[13:37:52] [Server thread/WARN]: Default tier specified in explorer elytra is invalid! Defaulting to 'default'
[13:37:52] [Server thread/WARN]: Default tier specified in explorer elytra is invalid! Defaulting to 'default'
[13:37:52] [Server thread/WARN]: Default tier specified in farmer elytra is invalid! Defaulting to 'default'
[13:37:52] [Server thread/WARN]: Default tier specified in farmer elytra is invalid! Defaulting to 'default'
[13:37:52] [Server thread/WARN]: Default tier specified in forager elytra is invalid! Defaulting to 'default'
[13:37:52] [Server thread/WARN]: Default tier specified in forager elytra is invalid! Defaulting to 'default'
[13:37:52] [Server thread/WARN]: Default tier specified in hazmat elytra is invalid! Defaulting to 'default'
[13:37:52] [Server thread/WARN]: Default tier specified in hazmat elytra is invalid! Defaulting to 'default'
[13:37:52] [Server thread/WARN]: Default tier specified in spelunker elytra is invalid! Defaulting to 'default'
[13:37:52] [Server thread/WARN]: Default tier specified in spelunker elytra is invalid! Defaulting to 'default'
[13:37:52] [Server thread/INFO]: [EcoArmor] Loaded EcoArmor
[13:37:52] [Server thread/INFO]: [EcoSkills] Loaded EcoSkills
[13:37:52] [Server thread/INFO]: [EcoBosses] Loaded EcoBosses
[13:37:52] [Server thread/INFO]: [Reforges] Loaded Reforges
[13:37:52] [Server thread/INFO]: [Talismans] Loaded Talismans
[13:37:52] [Server thread/INFO]: [StatTrackers] Loaded StatTrackers
[13:37:52] [Server thread/INFO]: [Boosters] Loaded Boosters
[13:37:52] [Server thread/INFO]: [RarityDisplay] Loaded RarityDisplay
[13:37:52] [Server thread/INFO]: [ItemEffects] Loaded ItemEffects
[13:37:53] [Server thread/INFO]: [EcoShop] Loaded EcoShop
[13:37:53] [Server thread/INFO]: [EcoPets] Loaded EcoPets
[13:37:53] [Server thread/INFO]: [Actions] Loaded Actions
[13:37:53] [Server thread/INFO]: [libreforge] Loaded libreforge
[13:37:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: img [1.0.1]
[13:37:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iaplayerstat [1.0.1]
[13:37:53] [Server thread/INFO]: [WolfyUtilities] Enabled plugin integration for ItemsAdder
[13:37:53] [Server thread/INFO]: [AlonsoTags] [ItemsAdder] ItemsAdder items were updated. Reloading tags..
[13:37:53] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[13:37:53] [Server thread/INFO]: [CustomCrafting] Loading Recipes & Items
[13:37:53] [Server thread/INFO]: [CustomCrafting] - - - - [Local Storage] - - - -
[13:37:53] [Server thread/INFO]: [CustomCrafting] [LOCAL] Looking through data folder...
[13:37:53] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loading Items
[13:37:53] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loading Recipes
[13:37:53] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loaded 508 recipes; Skipped: 0 error/s, 0 already existing
[13:37:53] [Server thread/INFO]: [CustomCrafting] [LOCAL_OLD] Loaded 0 recipes; Skipped: 0 error/s, 0 already existing
[13:37:53] [Server thread/INFO]: [CustomCrafting] [LOCAL_LEGACY] Loaded 0 recipes; Skipped: 0 error/s, 0 already existing
[13:37:53] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loaded 508 recipes
[13:37:53] [Server thread/INFO]: [CustomCrafting] 
[13:37:53] [Server thread/INFO]: [CustomCrafting] Indexing Recipe Book...
[13:37:53] [Server thread/INFO]: [CustomCrafting] Indexed Recipe Book!
[13:37:53] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[13:37:53] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5066ms or 101 ticks behind
[13:37:54] [Server thread/INFO]: Created team [ACdontTouch]
[13:37:54] [Server thread/INFO]: Collision rule for team [ACdontTouch] is now "Never"
[13:37:54] [Server thread/INFO]: LevelledMobs: File Loader: Loading file 'customdrops.yml'...
[13:37:54] [Craft Scheduler Thread - 25 - CrashAPI/INFO]: [CrashAPI] Checking for latest version.
[13:37:54] [Craft Scheduler Thread - 25 - CrashAPI/WARN]: [CrashAPI] Version 1.1.9 of CrashAPI is available! Download it here: https://www.spigotmc.org/resources/crashapi.82229/
[13:37:54] [Craft Scheduler Thread - 5 - BetterBackpacks/INFO]: [BetterBackpacks] Checking for updates...
[13:37:54] [Craft Scheduler Thread - 5 - BetterBackpacks/INFO]: [BetterBackpacks] New version available: 1.3-BETA
[13:37:54] [Craft Scheduler Thread - 5 - BetterBackpacks/INFO]: [BetterBackpacks] Please download the latest version to get support!
[13:37:54] [Craft Scheduler Thread - 5 - BetterBackpacks/INFO]: [BetterBackpacks] Download: https://www.spigotmc.org/resources/82993/
[13:37:55] [Server thread/INFO]: [CustomStructures] Loading structures from files.
[13:37:55] [Server thread/WARN]: [CustomStructures] The structure 'ocean1' has an invalid configuration file:
[13:37:55] [Server thread/WARN]: [CustomStructures] The BlockLevelLimit mode 'flat_error' must contain an error setting!
[13:37:55] [Server thread/WARN]: [CustomStructures] Structure file: ocean2.yml does not exist! Did you make a new structure file in the Structure folder?
[13:37:55] [Server thread/WARN]: [CustomStructures] For more information please check to wiki.
[13:37:55] [Server thread/WARN]: [CustomStructures] Structure file: ocean3.yml does not exist! Did you make a new structure file in the Structure folder?
[13:37:55] [Server thread/WARN]: [CustomStructures] For more information please check to wiki.
[13:37:55] [Server thread/WARN]: [CustomStructures] Structure file: ocean4.yml does not exist! Did you make a new structure file in the Structure folder?
[13:37:55] [Server thread/WARN]: [CustomStructures] For more information please check to wiki.
[13:37:55] [Server thread/WARN]: [CustomStructures] Structure file: ocean5.yml does not exist! Did you make a new structure file in the Structure folder?
[13:37:55] [Server thread/WARN]: [CustomStructures] For more information please check to wiki.
[13:37:55] [Server thread/INFO]: [CustomStructures] The plugin has been fully enabled with 11 structures.
[13:37:55] [Server thread/INFO]: [CustomStructures] 0 addons were found.
[13:37:55] [User Authenticator #0/INFO]: UUID of player Winther1323 is 77607639-0e52-41eb-833d-664e61a4f47e
[13:37:55] [Craft Scheduler Thread - 32 - ItemsAdder/INFO]: [ItemsAdder] [Pack] Resourcepack URL is valid (external-host). Url: https://www.dropbox.com/scl/fi/asl8lnl4xii751kzkgtoq/generated.zip?rlkey=dr52yxy0yl7s3dvm02pjiu5xiaw=1
[13:37:55] [Craft Scheduler Thread - 11 - AlonsoTags/INFO]: [AlonsoTags] Checking for updates...
[13:37:55] [Craft Scheduler Thread - 11 - AlonsoTags/INFO]: [AlonsoTags] New version available: 2.2.1-BETA
[13:37:55] [Craft Scheduler Thread - 11 - AlonsoTags/INFO]: [AlonsoTags] Please download the latest version to get support!
[13:37:55] [Craft Scheduler Thread - 11 - AlonsoTags/INFO]: [AlonsoTags] Download: https://www.spigotmc.org/resources/83664/
[13:37:56] [Server thread/INFO]: [EliteLootbox] [ACF] Can't read players locale, you will be unable to automatically detect players language. Only Bukkit 1.7+ is supported for this.
[13:37:56] [Server thread/INFO]: [EliteLootbox] [ACF] java.lang.NoSuchFieldException: locale
[13:37:56] [Server thread/INFO]: [EliteLootbox] [ACF]     at java.base/java.lang.Class.getDeclaredField(Class.java:2610)
[13:37:56] [Server thread/INFO]: [EliteLootbox] [ACF]     at EliteLootbox-Recode-2.3.8-all.jar//net.splodgebox.elitelootbox.acf.BukkitCommandManager.readPlayerLocale(BukkitCommandManager.java:317)
[13:37:56] [Server thread/INFO]: [EliteLootbox] [ACF]     at EliteLootbox-Recode-2.3.8-all.jar//net.splodgebox.elitelootbox.acf.ACFBukkitListener.onPlayerJoin(ACFBukkitListener.java:57)
[13:37:56] [Server thread/INFO]: [EliteLootbox] [ACF]     at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:40)
[13:37:56] [Server thread/INFO]: [EliteLootbox] [ACF]     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81)
[13:37:56] [Server thread/INFO]: [EliteLootbox] [ACF]     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[13:37:56] [Server thread/INFO]: [EliteLootbox] [ACF]     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[13:37:56] [Server thread/INFO]: [EliteLootbox] [ACF]     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126)
[13:37:56] [Server thread/INFO]: [EliteLootbox] [ACF]     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615)
[13:37:56] [Server thread/INFO]: [EliteLootbox] [ACF]     at net.minecraft.server.players.PlayerList.a(PlayerList.java:346)
[13:37:56] [Server thread/INFO]: [EliteLootbox] [ACF]     at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.a(ServerConfigurationPacketListenerImpl.java:130)
[13:37:56] [Server thread/INFO]: [EliteLootbox] [ACF]     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(ServerboundFinishConfigurationPacket.java:18)
[13:37:56] [Server thread/INFO]: [EliteLootbox] [ACF]     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(ServerboundFinishConfigurationPacket.java:9)
[13:37:56] [Server thread/INFO]: [EliteLootbox] [ACF]     at net.minecraft.network.protocol.PlayerConnectionUtils.lambda$ensureRunningOnSameThread$0(PlayerConnectionUtils.java:53)
[13:37:56] [Server thread/INFO]: [EliteLootbox] [ACF]     at net.minecraft.server.TickTask.run(TickTask.java:18)
[13:37:56] [Server thread/INFO]: [EliteLootbox] [ACF]     at net.minecraft.util.thread.IAsyncTaskHandler.d(IAsyncTaskHandler.java:153)
[13:37:56] [Server thread/INFO]: [EliteLootbox] [ACF]     at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(IAsyncTaskHandlerReentrant.java:24)
[13:37:56] [Server thread/INFO]: [EliteLootbox] [ACF]     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1324)
[13:37:56] [Server thread/INFO]: [EliteLootbox] [ACF]     at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:193)
[13:37:56] [Server thread/INFO]: [EliteLootbox] [ACF]     at net.minecraft.util.thread.IAsyncTaskHandler.x(IAsyncTaskHandler.java:126)
[13:37:56] [Server thread/INFO]: [EliteLootbox] [ACF]     at net.minecraft.server.MinecraftServer.bg(MinecraftServer.java:1301)
[13:37:56] [Server thread/INFO]: [EliteLootbox] [ACF]     at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1294)
[13:37:56] [Server thread/INFO]: [EliteLootbox] [ACF]     at net.minecraft.util.thread.IAsyncTaskHandler.c(IAsyncTaskHandler.java:136)
[13:37:56] [Server thread/INFO]: [EliteLootbox] [ACF]     at net.minecraft.server.MinecraftServer.u_(MinecraftServer.java:1272)
[13:37:56] [Server thread/INFO]: [EliteLootbox] [ACF]     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1160)
[13:37:56] [Server thread/INFO]: [EliteLootbox] [ACF]     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315)
[13:37:56] [Server thread/INFO]: [EliteLootbox] [ACF]     at java.base/java.lang.Thread.run(Thread.java:833)
[13:37:56] [Server thread/INFO]: Winther1323[/         ip          ] logged in with entity id 43 at ([world]-701.2507584318089, 74.0, 1343.733981145571)
[13:37:56] [Server thread/INFO]: [+] Winther1323
[13:37:56] [Server thread/INFO]: [AlonsoTags] Config files are (re)loading.. Timestamp: Negative | Negative
[13:37:56] [Server thread/INFO]: [AlonsoTags] Loading 'new-tag' tag..
[13:37:56] [Server thread/INFO]: [AlonsoTags] Loading 'newbie-tag' tag..
[13:37:56] [Server thread/INFO]: [AlonsoTags] Loading 'antium-tag' tag..
[13:37:56] [Server thread/INFO]: [AlonsoTags] Loading 'beginner-tag' tag..
[13:37:56] [Server thread/INFO]: [AlonsoTags] Loading 'rookie-tag' tag..
[13:37:56] [Server thread/INFO]: [AlonsoTags] Loading 'trained-tag' tag..
[13:37:56] [Server thread/INFO]: [AlonsoTags] Loading 'experienced-tag' tag..
[13:37:56] [Server thread/INFO]: [AlonsoTags] Loading 'golden-tag' tag..
[13:37:56] [Server thread/INFO]: [AlonsoTags] Loading 'lottery-tag' tag..
[13:37:56] [Server thread/INFO]: [AlonsoTags] Loading 'treasure-tag' tag..
[13:37:56] [Server thread/INFO]: [AlonsoTags] Loading 'diamond-tag' tag..
[13:37:56] [Server thread/INFO]: [AlonsoTags] Loading 'lucky-pull-tag' tag..
[13:37:56] [Server thread/INFO]: [AlonsoTags] Loading 'magnificent-tag' tag..
[13:37:56] [Server thread/INFO]: [AlonsoTags] Loading 'gorgeous-tag' tag..
[13:37:56] [Server thread/INFO]: [AlonsoTags] Loading 'spring-tag' tag..
[13:37:56] [Server thread/INFO]: [AlonsoTags] Loading 'springfever-tag' tag..
[13:37:56] [Server thread/INFO]: [AlonsoTags] Loading 'springbreak-tag' tag..
[13:37:56] [Server thread/INFO]: [AlonsoTags] Loading 'aprilshowers-tag' tag..
[13:37:56] [Server thread/INFO]: [AlonsoTags] Loading 'pollen-tag' tag..
[13:37:56] [Server thread/INFO]: [AlonsoTags] Loading 'march-tag' tag..
[13:37:56] [Server thread/INFO]: [AlonsoTags] Loading 'april-tag' tag..
[13:37:56] [Server thread/INFO]: [AlonsoTags] Loading 'contributor-tag' tag..
[13:37:56] [Server thread/INFO]: [AlonsoTags] Loading 'alpha-tag' tag..
[13:37:56] [Server thread/INFO]: [AlonsoTags] Loading 'beta-tag' tag..
[13:37:56] [Server thread/INFO]: [AlonsoTags] Loading 'birthday-tag' tag..
[13:37:56] [Server thread/INFO]: [AlonsoTags] Loading 'millionaire-1-tag' tag..
[13:37:56] [Server thread/INFO]: [AlonsoTags] Successfully loaded 26 tags!
[13:37:59] [User Authenticator #0/INFO]: UUID of player BurnPlayz is 3f966613-001e-49f1-933e-9705f18addf3
[13:37:59] [Server thread/INFO]: BurnPlayz[/         ip          ] logged in with entity id 112 at ([world]-595.5517275654748, 67.0, 1734.5468898411746)
[13:37:59] [Server thread/INFO]: [+] BurnPlayz
[13:38:03] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[13:38:03] [Server thread/INFO]: There are 2 out of maximum 69 players online.
[13:38:03] [Server thread/INFO]: Traveler: BurnPlayz, Winther1323
[13:38:09] [User Authenticator #0/INFO]: UUID of player Minifrufoms is 51276193-e1d6-4899-8ad9-7dfd9b8905f4
[13:38:09] [Server thread/INFO]: Minifrufoms[/         ip         ] logged in with entity id 356 at ([world]-697.4954541262006, 76.5, 1341.4697215337824)
[13:38:09] [Server thread/INFO]: [+] Minifrufoms
[13:38:14] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
[13:38:14] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R2' loaded!
[13:38:14] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'EliteLootbox' to create a bStats instance!
[13:38:14] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
[13:38:14] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R2' loaded!
[13:38:14] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'Vouchers' to create a bStats instance!
[13:38:20] [Craft Scheduler Thread - 41 - InteractiveChat/INFO]: [Not Secure] Traveler | BurnPlayz [BETA]> o/
[13:38:21] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
[13:38:21] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R2' loaded!
[13:39:01] [Craft Scheduler Thread - 42 - InteractiveChat/INFO]: [Not Secure] Traveler | Winther1323 [GOLDEN]> o/
[13:39:10] [Server thread/INFO]: Winther1323 issued server command: /tags
[13:39:10] [User Authenticator #1/INFO]: UUID of player oVqid is 9fdeaedc-43db-47db-b197-5a90bd022613
[13:39:11] [Server thread/INFO]: oVqid[/          ip           ] logged in with entity id 795 at ([world]-4287.510176773631, 68.0, 4856.554025575329)
[13:39:11] [Server thread/INFO]: [+] ✪ oVqid
[13:39:14] [Craft Scheduler Thread - 25 - InteractiveChat/INFO]: [Not Secure] Traveler | BurnPlayz [BETA]> o/
[13:39:19] [Server thread/WARN]: [MythicMobs] HUSK found with mobtype 'HUSK' but does not match.
[13:39:23] [Craft Scheduler Thread - 4 - InteractiveChat/INFO]: [Not Secure] Traveler | BurnPlayz [BETA]> let me know if its any better
[13:39:37] [Craft Scheduler Thread - 42 - InteractiveChat/INFO]: [Not Secure] Traveler | Winther1323 [BETA]> We will! :)
[13:39:57] [Craft Scheduler Thread - 9 - InteractiveChat/INFO]: [Not Secure] ✪ Streamline | oVqid [MAGNIFICENT]> o/
[13:40:06] [Craft Scheduler Thread - 43 - InteractiveChat/INFO]: [Not Secure] Traveler | Winther1323 [BETA]> It's a bit better :D
[13:40:27] [Craft Scheduler Thread - 32 - InteractiveChat/INFO]: [Not Secure] Traveler | BurnPlayz [BETA]> sorry:(
[13:40:30] [Craft Scheduler Thread - 10 - InteractiveChat/INFO]: [Not Secure] Traveler | BurnPlayz [BETA]> been looking into it
[13:40:30] [Server thread/INFO]: BurnPlayz issued server command: /tps
[13:40:31] [Server thread/INFO]: BurnPlayz issued server command: /pl
[13:40:38] [Craft Scheduler Thread - 63 - InteractiveChat/INFO]: [Not Secure] Traveler | BurnPlayz [BETA]> slight optimizations every day
[13:40:39] [Craft Scheduler Thread - 73 - InteractiveChat/INFO]: [Not Secure] ✪ Streamline | oVqid [MAGNIFICENT]> burn creepers shouldnt 1 tap us
[13:40:43] [Craft Scheduler Thread - 36 - InteractiveChat/INFO]: [Not Secure] ✪ Streamline | oVqid [MAGNIFICENT]> :/
[13:40:47] [Craft Scheduler Thread - 31 - InteractiveChat/INFO]: [Not Secure] Traveler | BurnPlayz [BETA]> still dif
[13:41:03] [Craft Scheduler Thread - 63 - InteractiveChat/INFO]: [Not Secure] Traveler | BurnPlayz [BETA]> how close r u to it
[13:41:08] [Craft Scheduler Thread - 10 - InteractiveChat/INFO]: [Not Secure] ✪ Streamline | oVqid [MAGNIFICENT]> i was walking home from spawn n it gave me a huge ass lag spike n i lost 45 levels
[13:41:09] [Craft Scheduler Thread - 38 - InteractiveChat/INFO]: [Not Secure] Traveler | BurnPlayz [BETA]> creepers have always done that amount
[13:41:17] [Craft Scheduler Thread - 8 - InteractiveChat/INFO]: [Not Secure] ✪ Streamline | oVqid [MAGNIFICENT]> -_-
[13:41:21] [Craft Scheduler Thread - 4 - InteractiveChat/INFO]: [Not Secure] Traveler | BurnPlayz [BETA]> they always 1 tap u
[13:41:21] [Server thread/INFO]: Minifrufoms was shot by Lvl 10 | Skeletal Marksman
[13:41:29] [Craft Scheduler Thread - 36 - InteractiveChat/INFO]: [Not Secure] Traveler | BurnPlayz [BETA]> RIP
[13:41:34] [Server thread/INFO]: BurnPlayz issued server command: /skill top
[13:41:40] [Craft Scheduler Thread - 76 - InteractiveChat/INFO]: [Not Secure] ✪ Streamline | oVqid [MAGNIFICENT]> still like half health is more reasonable
[13:41:46] [Craft Scheduler Thread - 25 - InteractiveChat/INFO]: [Not Secure] Traveler | BurnPlayz [BETA]> ur weak rn
[13:41:47] [Craft Scheduler Thread - 79 - InteractiveChat/INFO]: [Not Secure] Traveler | BurnPlayz [BETA]> mega weak
[13:41:50] [Craft Scheduler Thread - 73 - InteractiveChat/INFO]: [Not Secure] ✪ Streamline | oVqid [MAGNIFICENT]> or like put u down to 2 hearts
[13:41:53] [Craft Scheduler Thread - 43 - InteractiveChat/INFO]: [Not Secure] Traveler | BurnPlayz [BETA]> mobs should be a threat
[13:41:55] [Server thread/WARN]: [MythicMobs] DROWNED found with mobtype 'DROWNED' but does not match.
[13:41:56] [Craft Scheduler Thread - 46 - InteractiveChat/INFO]: [Not Secure] ✪ Streamline | oVqid [MAGNIFICENT]> dont remind me
[13:42:03] [Craft Scheduler Thread - 79 - InteractiveChat/INFO]: [Not Secure] Traveler | BurnPlayz [BETA]> any sleepers in the chat?
[13:42:10] [Craft Scheduler Thread - 80 - InteractiveChat/INFO]: [Not Secure] ✪ Streamline | oVqid [MAGNIFICENT]> for 45 levels
[13:42:14] [Craft Scheduler Thread - 73 - InteractiveChat/INFO]: [Not Secure] ✪ Streamline | oVqid [MAGNIFICENT]> jokes
[13:42:22] [Craft Scheduler Thread - 19 - InteractiveChat/INFO]: [Not Secure] Traveler | BurnPlayz [BETA]> the levels is insigifnicant
[13:42:26] [Craft Scheduler Thread - 43 - InteractiveChat/INFO]: [Not Secure] Traveler | BurnPlayz [BETA]> u got blown up by a creeper XD
[13:42:43] [Craft Scheduler Thread - 8 - InteractiveChat/INFO]: [Not Secure] Traveler | BurnPlayz [BETA]> creepers are very ovqidable
[13:42:47] [Craft Scheduler Thread - 22 - InteractiveChat/INFO]: [Not Secure] ✪ Streamline | oVqid [MAGNIFICENT]> i was about to upgrade my skull crusher
[13:42:51] [Craft Scheduler Thread - 26 - InteractiveChat/INFO]: [Not Secure] ✪ Streamline | oVqid [MAGNIFICENT]> END IT
[13:42:54] [Craft Scheduler Thread - 8 - InteractiveChat/INFO]: [Not Secure] Traveler | BurnPlayz [BETA]> LOL
[13:42:54] [Craft Scheduler Thread - 38 - InteractiveChat/INFO]: [Not Secure] ✪ Streamline | oVqid [MAGNIFICENT]> NO
[13:42:57] [Server thread/WARN]: [MythicMobs] HUSK found with mobtype 'HUSK' but does not match.
[13:43:23] [Craft Scheduler Thread - 84 - InteractiveChat/INFO]: [Not Secure] Traveler | BurnPlayz [BETA]> lemme add my client based mods on here
[13:43:26] [Craft Scheduler Thread - 36 - InteractiveChat/INFO]: [Not Secure] Traveler | BurnPlayz [BETA]> im at my moms
[13:43:32] [Craft Scheduler Thread - 26 - InteractiveChat/INFO]: [Not Secure] ✪ Streamline | oVqid [MAGNIFICENT]> server gonna look like 2b2t here soon
[13:43:32] [Craft Scheduler Thread - 78 - InteractiveChat/INFO]: [Not Secure] Traveler | BurnPlayz [BETA]> wanna vc?
[13:43:35] [Craft Scheduler Thread - 32 - InteractiveChat/INFO]: [Not Secure] ✪ Streamline | oVqid [MAGNIFICENT]> in on vc
[13:43:36] [Craft Scheduler Thread - 78 - InteractiveChat/INFO]: [Not Secure] Traveler | BurnPlayz [BETA]> :skull:
[13:43:46] [Server thread/INFO]: BurnPlayz lost connection: Disconnected
[13:43:46] [Server thread/INFO]: [-] BurnPlayz
[13:44:46] [Server thread/WARN]: [MythicMobs] HUSK found with mobtype 'HUSK' but does not match.
[13:45:33] [User Authenticator #2/INFO]: UUID of player BurnPlayz is 3f966613-001e-49f1-933e-9705f18addf3
[13:45:35] [Server thread/INFO]: BurnPlayz[/         ip          ] logged in with entity id 5561 at ([world]-578.4144797065104, 68.5625, 1700.7096917942604)
[13:45:35] [Server thread/INFO]: [+] BurnPlayz
[13:45:39] [Server thread/WARN]: [MythicMobs] HUSK found with mobtype 'HUSK' but does not match.
[13:46:03] [Server thread/INFO]: oVqid issued server command: /sell hand
[13:46:20] [Server thread/INFO]: BurnPlayz lost connection: Disconnected
[13:46:20] [Server thread/INFO]: [-] BurnPlayz
[13:46:34] [User Authenticator #3/INFO]: UUID of player bwgb is 08554ee3-a9ee-4c19-ad66-4a2e2aee1325
[13:46:34] [Server thread/INFO]: bwgb[/         ip          ] logged in with entity id 6177 at ([world]-695.5515224472325, 77.0, 1345.5112901920002)
[13:46:34] [Server thread/INFO]: [+] bwgb
[13:46:39] [Server thread/INFO]: bwgb issued server command: /cc
[13:47:30] [Server thread/INFO]: bwgb issued server command: /eat
[13:47:51] [Server thread/INFO]: bwgb lost connection: Disconnected
[13:47:51] [Server thread/INFO]: [-] bwgb
[13:49:47] [Server thread/WARN]: java.lang.NoSuchMethodException: no such method: net.minecraft.server.network.PlayerConnection.a(Packet)void/invokeVirtual
[13:49:47] [Server thread/WARN]:     at java.base/java.lang.invoke.MemberName.makeAccessException(MemberName.java:976)
[13:49:47] [Server thread/WARN]:     at java.base/java.lang.invoke.MemberName$Factory.resolveOrFail(MemberName.java:1117)
[13:49:47] [Server thread/WARN]:     at java.base/java.lang.invoke.MethodHandles$Lookup.resolveOrFail(MethodHandles.java:3649)
[13:49:47] [Server thread/WARN]:     at java.base/java.lang.invoke.MethodHandles$Lookup.findVirtual(MethodHandles.java:2680)
[13:49:47] [Server thread/WARN]:     at PlayerProfiles-7.0.0.jar//me.aglerr.playerprofiles.mclibs.xseries.ReflectionUtils.<clinit>(ReflectionUtils.java:240)
[13:49:47] [Server thread/WARN]:     at PlayerProfiles-7.0.0.jar//me.aglerr.playerprofiles.mclibs.xseries.SkullUtils.<clinit>(SkullUtils.java:75)
[13:49:47] [Server thread/WARN]:     at PlayerProfiles-7.0.0.jar//me.aglerr.playerprofiles.mclibs.libs.ItemBuilder.skull(ItemBuilder.java:195)
[13:49:47] [Server thread/WARN]:     at PlayerProfiles-7.0.0.jar//com.muhammaddaffa.playerprofiles.utils.ItemManager.createItem(ItemManager.java:48)
[13:49:47] [Server thread/WARN]:     at PlayerProfiles-7.0.0.jar//com.muhammaddaffa.playerprofiles.utils.ItemManager.createGUIItem(ItemManager.java:120)
[13:49:47] [Server thread/WARN]:     at PlayerProfiles-7.0.0.jar//com.muhammaddaffa.playerprofiles.inventory.ProfileInventory.lambda$setAllItems$5(ProfileInventory.java:48)
[13:49:47] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[13:49:47] [Server thread/WARN]:     at PlayerProfiles-7.0.0.jar//com.muhammaddaffa.playerprofiles.inventory.ProfileInventory.setAllItems(ProfileInventory.java:46)
[13:49:47] [Server thread/WARN]:     at PlayerProfiles-7.0.0.jar//com.muhammaddaffa.playerprofiles.inventory.ProfileInventory.<init>(ProfileInventory.java:23)
[13:49:47] [Server thread/WARN]:     at PlayerProfiles-7.0.0.jar//com.muhammaddaffa.playerprofiles.inventory.InventoryManager.openInventory(InventoryManager.java:38)
[13:49:47] [Server thread/WARN]:     at PlayerProfiles-7.0.0.jar//com.muhammaddaffa.playerprofiles.listeners.PlayerInteract.onPlayerRightClickEntity(PlayerInteract.java:148)
[13:49:47] [Server thread/WARN]:     at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor1051.execute(Unknown Source)
[13:49:47] [Server thread/WARN]:     at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77)
[13:49:47] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81)
[13:49:47] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[13:49:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[13:49:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126)
[13:49:47] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615)
[13:49:47] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection$3.performInteraction(PlayerConnection.java:2713)
[13:49:47] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection$3.a(PlayerConnection.java:2766)
[13:49:47] [Server thread/WARN]:     at net.minecraft.network.protocol.game.PacketPlayInUseEntity$e.a(PacketPlayInUseEntity.java:161)
[13:49:47] [Server thread/WARN]:     at net.minecraft.network.protocol.game.PacketPlayInUseEntity.a(PacketPlayInUseEntity.java:80)
[13:49:47] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2702)
[13:49:47] [Server thread/WARN]:     at net.minecraft.network.protocol.game.PacketPlayInUseEntity.a(PacketPlayInUseEntity.java:67)
[13:49:47] [Server thread/WARN]:     at net.minecraft.network.protocol.game.PacketPlayInUseEntity.a(PacketPlayInUseEntity.java:12)
[13:49:47] [Server thread/WARN]:     at net.minecraft.network.protocol.PlayerConnectionUtils.lambda$ensureRunningOnSameThread$0(PlayerConnectionUtils.java:53)
[13:49:47] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[13:49:47] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.d(IAsyncTaskHandler.java:153)
[13:49:47] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(IAsyncTaskHandlerReentrant.java:24)
[13:49:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1324)
[13:49:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:193)
[13:49:47] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.x(IAsyncTaskHandler.java:126)
[13:49:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.bg(MinecraftServer.java:1301)
[13:49:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1294)
[13:49:47] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.c(IAsyncTaskHandler.java:136)
[13:49:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.u_(MinecraftServer.java:1272)
[13:49:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1160)
[13:49:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315)
[13:49:47] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[13:49:47] [Server thread/WARN]: Caused by: java.lang.NoSuchMethodError: 'void net.minecraft.server.network.PlayerConnection.a(net.minecraft.network.protocol.Packet)'
[13:49:47] [Server thread/WARN]:     at java.base/java.lang.invoke.MethodHandleNatives.resolve(Native Method)
[13:49:47] [Server thread/WARN]:     at java.base/java.lang.invoke.MemberName$Factory.resolve(MemberName.java:1085)
[13:49:47] [Server thread/WARN]:     at java.base/java.lang.invoke.MemberName$Factory.resolveOrFail(MemberName.java:1114)
[13:49:47] [Server thread/WARN]:     ... 41 more
[13:49:47] [Server thread/ERROR]: Could not pass event PlayerInteractAtEntityEvent to PlayerProfiles v7.0.0
java.lang.NullPointerException: Profile name must not be null
    at java.util.Objects.requireNonNull(Objects.java:235) ~[?:?]
    at com.mojang.authlib.GameProfile.<init>(GameProfile.java:31) ~[authlib-5.0.47.jar:?]
    at me.aglerr.playerprofiles.mclibs.xseries.SkullUtils.profileFromBase64(SkullUtils.java:198) ~[PlayerProfiles-7.0.0.jar:?]
    at me.aglerr.playerprofiles.mclibs.xseries.SkullUtils.setSkullBase64(SkullUtils.java:185) ~[PlayerProfiles-7.0.0.jar:?]
    at me.aglerr.playerprofiles.mclibs.xseries.SkullUtils.applySkin(SkullUtils.java:173) ~[PlayerProfiles-7.0.0.jar:?]
    at me.aglerr.playerprofiles.mclibs.libs.ItemBuilder.skull(ItemBuilder.java:195) ~[PlayerProfiles-7.0.0.jar:?]
    at com.muhammaddaffa.playerprofiles.utils.ItemManager.createItem(ItemManager.java:48) ~[PlayerProfiles-7.0.0.jar:?]
    at com.muhammaddaffa.playerprofiles.utils.ItemManager.createGUIItem(ItemManager.java:120) ~[PlayerProfiles-7.0.0.jar:?]
    at com.muhammaddaffa.playerprofiles.inventory.ProfileInventory.lambda$setAllItems$5(ProfileInventory.java:48) ~[PlayerProfiles-7.0.0.jar:?]
    at java.util.ArrayList.forEach(ArrayList.java:1511) ~[?:?]
    at com.muhammaddaffa.playerprofiles.inventory.ProfileInventory.setAllItems(ProfileInventory.java:46) ~[PlayerProfiles-7.0.0.jar:?]
    at com.muhammaddaffa.playerprofiles.inventory.ProfileInventory.<init>(ProfileInventory.java:23) ~[PlayerProfiles-7.0.0.jar:?]
    at com.muhammaddaffa.playerprofiles.inventory.InventoryManager.openInventory(InventoryManager.java:38) ~[PlayerProfiles-7.0.0.jar:?]
    at com.muhammaddaffa.playerprofiles.listeners.PlayerInteract.onPlayerRightClickEntity(PlayerInteract.java:148) ~[PlayerProfiles-7.0.0.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor1051.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:git-Paper-318]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.20.2.jar:git-Paper-318]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[paper-1.20.2.jar:git-Paper-318]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl$3.performInteraction(ServerGamePacketListenerImpl.java:2713) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl$3.a(ServerGamePacketListenerImpl.java:2766) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundInteractPacket$InteractionAtLocationAction.dispatch(ServerboundInteractPacket.java:161) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundInteractPacket.dispatch(ServerboundInteractPacket.java:80) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleInteract(ServerGamePacketListenerImpl.java:2702) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundInteractPacket.handle(ServerboundInteractPacket.java:67) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundInteractPacket.handle(ServerboundInteractPacket.java:12) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:53) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1324) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:193) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1301) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1294) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1272) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1160) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-318]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[13:49:48] [Server thread/ERROR]: Could not pass event PlayerInteractAtEntityEvent to PlayerProfiles v7.0.0
java.lang.NullPointerException: Profile name must not be null
    at java.util.Objects.requireNonNull(Objects.java:235) ~[?:?]
    at com.mojang.authlib.GameProfile.<init>(GameProfile.java:31) ~[authlib-5.0.47.jar:?]
    at me.aglerr.playerprofiles.mclibs.xseries.SkullUtils.profileFromBase64(SkullUtils.java:198) ~[PlayerProfiles-7.0.0.jar:?]
    at me.aglerr.playerprofiles.mclibs.xseries.SkullUtils.setSkullBase64(SkullUtils.java:185) ~[PlayerProfiles-7.0.0.jar:?]
    at me.aglerr.playerprofiles.mclibs.xseries.SkullUtils.applySkin(SkullUtils.java:173) ~[PlayerProfiles-7.0.0.jar:?]
    at me.aglerr.playerprofiles.mclibs.libs.ItemBuilder.skull(ItemBuilder.java:195) ~[PlayerProfiles-7.0.0.jar:?]
    at com.muhammaddaffa.playerprofiles.utils.ItemManager.createItem(ItemManager.java:48) ~[PlayerProfiles-7.0.0.jar:?]
    at com.muhammaddaffa.playerprofiles.utils.ItemManager.createGUIItem(ItemManager.java:120) ~[PlayerProfiles-7.0.0.jar:?]
    at com.muhammaddaffa.playerprofiles.inventory.ProfileInventory.lambda$setAllItems$5(ProfileInventory.java:48) ~[PlayerProfiles-7.0.0.jar:?]
    at java.util.ArrayList.forEach(ArrayList.java:1511) ~[?:?]
    at com.muhammaddaffa.playerprofiles.inventory.ProfileInventory.setAllItems(ProfileInventory.java:46) ~[PlayerProfiles-7.0.0.jar:?]
    at com.muhammaddaffa.playerprofiles.inventory.ProfileInventory.<init>(ProfileInventory.java:23) ~[PlayerProfiles-7.0.0.jar:?]
    at com.muhammaddaffa.playerprofiles.inventory.InventoryManager.openInventory(InventoryManager.java:38) ~[PlayerProfiles-7.0.0.jar:?]
    at com.muhammaddaffa.playerprofiles.listeners.PlayerInteract.onPlayerRightClickEntity(PlayerInteract.java:148) ~[PlayerProfiles-7.0.0.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor1051.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:git-Paper-318]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.20.2.jar:git-Paper-318]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[paper-1.20.2.jar:git-Paper-318]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl$3.performInteraction(ServerGamePacketListenerImpl.java:2713) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl$3.a(ServerGamePacketListenerImpl.java:2766) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundInteractPacket$InteractionAtLocationAction.dispatch(ServerboundInteractPacket.java:161) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundInteractPacket.dispatch(ServerboundInteractPacket.java:80) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleInteract(ServerGamePacketListenerImpl.java:2702) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundInteractPacket.handle(ServerboundInteractPacket.java:67) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundInteractPacket.handle(ServerboundInteractPacket.java:12) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:53) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1324) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:193) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1301) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1294) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1272) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1160) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-318]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[13:49:49] [Server thread/ERROR]: Could not pass event PlayerInteractAtEntityEvent to PlayerProfiles v7.0.0
java.lang.NullPointerException: Profile name must not be null
    at java.util.Objects.requireNonNull(Objects.java:235) ~[?:?]
    at com.mojang.authlib.GameProfile.<init>(GameProfile.java:31) ~[authlib-5.0.47.jar:?]
    at me.aglerr.playerprofiles.mclibs.xseries.SkullUtils.profileFromBase64(SkullUtils.java:198) ~[PlayerProfiles-7.0.0.jar:?]
    at me.aglerr.playerprofiles.mclibs.xseries.SkullUtils.setSkullBase64(SkullUtils.java:185) ~[PlayerProfiles-7.0.0.jar:?]
    at me.aglerr.playerprofiles.mclibs.xseries.SkullUtils.applySkin(SkullUtils.java:173) ~[PlayerProfiles-7.0.0.jar:?]
    at me.aglerr.playerprofiles.mclibs.libs.ItemBuilder.skull(ItemBuilder.java:195) ~[PlayerProfiles-7.0.0.jar:?]
    at com.muhammaddaffa.playerprofiles.utils.ItemManager.createItem(ItemManager.java:48) ~[PlayerProfiles-7.0.0.jar:?]
    at com.muhammaddaffa.playerprofiles.utils.ItemManager.createGUIItem(ItemManager.java:120) ~[PlayerProfiles-7.0.0.jar:?]
    at com.muhammaddaffa.playerprofiles.inventory.ProfileInventory.lambda$setAllItems$5(ProfileInventory.java:48) ~[PlayerProfiles-7.0.0.jar:?]
    at java.util.ArrayList.forEach(ArrayList.java:1511) ~[?:?]
    at com.muhammaddaffa.playerprofiles.inventory.ProfileInventory.setAllItems(ProfileInventory.java:46) ~[PlayerProfiles-7.0.0.jar:?]
    at com.muhammaddaffa.playerprofiles.inventory.ProfileInventory.<init>(ProfileInventory.java:23) ~[PlayerProfiles-7.0.0.jar:?]
    at com.muhammaddaffa.playerprofiles.inventory.InventoryManager.openInventory(InventoryManager.java:38) ~[PlayerProfiles-7.0.0.jar:?]
    at com.muhammaddaffa.playerprofiles.listeners.PlayerInteract.onPlayerRightClickEntity(PlayerInteract.java:148) ~[PlayerProfiles-7.0.0.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor1051.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:git-Paper-318]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.20.2.jar:git-Paper-318]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[paper-1.20.2.jar:git-Paper-318]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl$3.performInteraction(ServerGamePacketListenerImpl.java:2713) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl$3.a(ServerGamePacketListenerImpl.java:2766) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundInteractPacket$InteractionAtLocationAction.dispatch(ServerboundInteractPacket.java:161) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundInteractPacket.dispatch(ServerboundInteractPacket.java:80) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleInteract(ServerGamePacketListenerImpl.java:2702) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundInteractPacket.handle(ServerboundInteractPacket.java:67) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundInteractPacket.handle(ServerboundInteractPacket.java:12) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:53) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1324) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:193) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1301) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1294) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1272) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1160) ~[paper-1.20.2.jar:git-Paper-318]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-318]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[13:50:17] [Server thread/INFO]: oVqid issued server command: /echest
[13:51:14] [Server thread/INFO]: oVqid issued server command: /skills
[13:51:17] [Server thread/INFO]: oVqid issued server command: /points
[13:51:48] [Server thread/INFO]: Named entity EntityZombieHusk['Watcher'/9136, uuid='ff76fadc-8fd8-45b2-a8a7-fdc0ac2134c2', l='ServerLevel[world]', x=-758.23, y=46.00, z=1858.45, cpos=[-48, 116], tl=446, v=true] died: Watcher withered away
[13:52:28] [User Authenticator #4/INFO]: UUID of player Tacula is abd777b4-265f-4e5d-a555-5857bdc77bef
[13:52:31] [Server thread/INFO]: Tacula[/          ip          ] logged in with entity id 9857 at ([world]316.3885645363969, 63.0, -171.29305733184438)
[13:52:31] [Server thread/INFO]: [+] Tacula
[13:52:33] [Server thread/WARN]: [MythicMobs] HUSK found with mobtype 'HUSK' but does not match.
[13:52:47] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 6929ms or 138 ticks behind
[13:52:52] [Server thread/INFO]: Tacula lost connection: You must accept the resourcepack! Also make sure you set them to 'Prompt' or 'Enabled' in server properties.
[13:52:52] [Server thread/INFO]: [-] Tacula
[13:52:59] [User Authenticator #4/INFO]: UUID of player Tacula is abd777b4-265f-4e5d-a555-5857bdc77bef
[13:53:00] [User Authenticator #4/INFO]: UUID of player MagixSpellz is 6d773bd8-85ec-4441-bd38-976058025088
[13:53:01] [Server thread/INFO]: Tacula[/          ip          ] logged in with entity id 10244 at ([world]316.3885645363969, 63.0, -171.29305733184438)
[13:53:01] [Server thread/INFO]: [+] Tacula
[13:53:04] [Server thread/INFO]: MagixSpellz[/          ip          ] logged in with entity id 10258 at ([world]2397.5248573201943, 65.0, 1365.5235432567058)
[13:53:04] [Server thread/INFO]: [+] MagixSpellz
[13:53:24] [Server thread/WARN]: MagixSpellz moved too quickly! -10.135669703670374,0.7531999805212024,-2.3927426993695917
[13:53:24] [Server thread/WARN]: Minifrufoms moved too quickly! 9.218788875495989,-3.766367993957516,-2.0437270011857436
[13:53:38] [Server thread/WARN]: Winther1323 moved too quickly! 6.960934645495172,-10.766367993957516,-10.240790182081128
[13:53:38] [Server thread/WARN]: Minifrufoms moved too quickly! 0.0,10.500000357979658,0.0
[13:53:38] [Server thread/WARN]: oVqid moved too quickly! -8.360154573118962,-1.0,9.110674022605963
[13:53:52] [Server thread/WARN]: Minifrufoms moved too quickly! 0.0,-11.175007699415204,0.0
[13:54:12] [Server thread/WARN]: Winther1323 moved too quickly! 10.514538825703198,1.0,7.26478160978354
[13:54:30] [Server thread/WARN]: Minifrufoms moved too quickly! 7.376147803834215,-2.0,13.113124218441044
[13:54:30] [Server thread/WARN]: Minifrufoms moved too quickly! 7.357753481630198,-2.0,13.076488454657465
[13:54:32] [Server thread/WARN]: MagixSpellz moved too quickly! -2.0721652950087446,0.0,-20.382515239058193
[13:54:51] [Craft Scheduler Thread - 109 - spark/INFO]: [⚡] TPS from last 5s, 10s, 1m, 5m, 15m:
[13:54:51] [Craft Scheduler Thread - 109 - spark/INFO]: [⚡]  5.15, 3.84, 7.15, 14.71, 17.86
[13:54:51] [Craft Scheduler Thread - 109 - spark/INFO]: [⚡] 
[13:54:51] [Craft Scheduler Thread - 109 - spark/INFO]: [⚡] Tick durations (min/med/95%ile/max ms) from last 10s, 1m:
[13:54:51] [Craft Scheduler Thread - 109 - spark/INFO]: [⚡]  33.4/190.0/489.3/5298.6;  1.8/13.8/303.4/8706.8
[13:54:51] [Craft Scheduler Thread - 109 - spark/INFO]: [⚡] 
[13:54:51] [Craft Scheduler Thread - 109 - spark/INFO]: [⚡] CPU usage from last 10s, 1m, 15m:
[13:54:51] [Craft Scheduler Thread - 109 - spark/INFO]: [⚡]  97%, 97%, 25%  (system)
[13:54:51] [Craft Scheduler Thread - 109 - spark/INFO]: [⚡]  98%, 97%, 25%  (process)
[13:55:02] [Server thread/INFO]: Named entity EntityZombie['Smoke Spirit'/11210, uuid='e67285af-79e7-4878-b43c-3cfa2ef1524a', l='ServerLevel[world]', x=360.50, y=47.00, z=-219.50, cpos=[22, -14], tl=50, v=true] died: Smoke Spirit withered away
[13:55:02] [Craft Scheduler Thread - 77 - spark/WARN]: [spark] A command execution has not completed after 5 seconds, it might be stuck. Trace: 
  java.base@17.0.8.1/java.lang.ClassLoader.loadClass(ClassLoader.java:579)
  java.base@17.0.8.1/java.lang.ClassLoader.loadClass(ClassLoader.java:579)
  org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:169)
  org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:144)
  io.papermc.paper.plugin.entrypoint.classloader.group.SpigotPluginClassLoaderGroup.lookupClass(SpigotPluginClassLoaderGroup.java:43)
  io.papermc.paper.plugin.entrypoint.classloader.group.SimpleListPluginClassLoaderGroup.getClassByName(SimpleListPluginClassLoaderGroup.java:37)
  io.papermc.paper.plugin.entrypoint.classloader.group.LockingClassLoaderGroup.getClassByName(LockingClassLoaderGroup.java:34)
  org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:187)
  org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
  java.base@17.0.8.1/java.lang.ClassLoader.loadClass(ClassLoader.java:525)
  java.base@17.0.8.1/java.lang.Class.forName0(Native Method)
  java.base@17.0.8.1/java.lang.Class.forName(Class.java:375)
  spark-1.10.34-bukkit.jar//me.lucko.spark.common.util.ClassFinder.findClass(ClassFinder.java:66)
  spark-1.10.34-bukkit.jar//me.lucko.spark.common.sampler.source.ClassSourceLookup$VisitorImpl.lambda$visitStackNode$0(ClassSourceLookup.java:281)
  spark-1.10.34-bukkit.jar//me.lucko.spark.common.sampler.source.ClassSourceLookup$VisitorImpl$$Lambda$17761/0x00007fa9df3f19d8.compute(Unknown Source)
  spark-1.10.34-bukkit.jar//me.lucko.spark.common.sampler.source.ClassSourceLookup$SourcesMap.computeIfAbsent(ClassSourceLookup.java:340)
  spark-1.10.34-bukkit.jar//me.lucko.spark.common.sampler.source.ClassSourceLookup$VisitorImpl.visitStackNode(ClassSourceLookup.java:278)
  spark-1.10.34-bukkit.jar//me.lucko.spark.common.sampler.source.ClassSourceLookup$VisitorImpl.visit(ClassSourceLookup.java:272)
  spark-1.10.34-bukkit.jar//me.lucko.spark.common.sampler.AbstractSampler.writeDataToProto(AbstractSampler.java:249)
  spark-1.10.34-bukkit.jar//me.lucko.spark.common.sampler.async.AsyncSampler.toProto(AsyncSampler.java:221)
  spark-1.10.34-bukkit.jar//me.lucko.spark.common.command.modules.SamplerModule.handleOpen(SamplerModule.java:471)
  spark-1.10.34-bukkit.jar//me.lucko.spark.common.command.modules.SamplerModule.profilerOpen(SamplerModule.java:355)
  spark-1.10.34-bukkit.jar//me.lucko.spark.common.command.modules.SamplerModule.profiler(SamplerModule.java:126)
  spark-1.10.34-bukkit.jar//me.lucko.spark.common.command.modules.SamplerModule$$Lambda$12049/0x00007fa9de6fcc88.execute(Unknown Source)
  spark-1.10.34-bukkit.jar//me.lucko.spark.common.SparkPlatform.executeCommand0(SparkPlatform.java:425)
  spark-1.10.34-bukkit.jar//me.lucko.spark.common.SparkPlatform.lambda$executeCommand$2(SparkPlatform.java:334)
  spark-1.10.34-bukkit.jar//me.lucko.spark.common.SparkPlatform$$Lambda$17656/0x00007fa9df26af98.run(Unknown Source)
  org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftTask.run(CraftTask.java:101)
  org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
  com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
  java.base@17.0.8.1/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
  java.base@17.0.8.1/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
  java.base@17.0.8.1/java.lang.Thread.run(Thread.java:833)
[13:55:04] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 106916ms or 2138 ticks behind
[13:55:06] [Server thread/WARN]: [MythicMobs] HUSK found with mobtype 'HUSK' but does not match.
[13:55:06] [Craft Scheduler Thread - 101 - spark/INFO]: [⚡] Profiler live viewer:
[13:55:06] [Craft Scheduler Thread - 101 - spark/INFO]: https://spark.lucko.me/9aMsmfpSpf
[13:55:10] [ForkJoinPool.commonPool-worker-1/INFO]: [spark] [Viewer - 7yXVphmeZTsBJya] Client connected: clientId=27e9-5856, keyhash=12e3dd, desc=Microsoft Edge on Windows
[13:55:29] [Craft Scheduler Thread - 100 - spark/INFO]: [⚡] TPS from last 5s, 10s, 1m, 5m, 15m:
[13:55:29] [Craft Scheduler Thread - 100 - spark/INFO]: [⚡]  17.02, 18.39, 6.91, 14.47, 17.74
[13:55:29] [Craft Scheduler Thread - 100 - spark/INFO]: [⚡] 
[13:55:29] [Craft Scheduler Thread - 100 - spark/INFO]: [⚡] Tick durations (min/med/95%ile/max ms) from last 10s, 1m:
[13:55:29] [Craft Scheduler Thread - 100 - spark/INFO]: [⚡]  3.4/10.0/83.2/886.5;  3.4/73.2/319.6/8706.8
[13:55:29] [Craft Scheduler Thread - 100 - spark/INFO]: [⚡] 
[13:55:29] [Craft Scheduler Thread - 100 - spark/INFO]: [⚡] CPU usage from last 10s, 1m, 15m:
[13:55:29] [Craft Scheduler Thread - 100 - spark/INFO]: [⚡]  98%, 98%, 28%  (system)
[13:55:29] [Craft Scheduler Thread - 100 - spark/INFO]: [⚡]  97%, 97%, 28%  (process)
[13:55:31] [Craft Scheduler Thread - 109 - spark/INFO]: [⚡] TPS from last 5s, 10s, 1m, 5m, 15m:
[13:55:31] [Craft Scheduler Thread - 109 - spark/INFO]: [⚡]  *20.0, *20.0, 6.9, 14.5, 17.75
[13:55:31] [Craft Scheduler Thread - 109 - spark/INFO]: [⚡] 
[13:55:31] [Craft Scheduler Thread - 109 - spark/INFO]: [⚡] Tick durations (min/med/95%ile/max ms) from last 10s, 1m:
[13:55:31] [Craft Scheduler Thread - 109 - spark/INFO]: [⚡]  3.5/9.4/80.5/886.5;  3.4/73.3/319.6/8706.8
[13:55:31] [Craft Scheduler Thread - 109 - spark/INFO]: [⚡] 
[13:55:31] [Craft Scheduler Thread - 109 - spark/INFO]: [⚡] CPU usage from last 10s, 1m, 15m:
[13:55:31] [Craft Scheduler Thread - 109 - spark/INFO]: [⚡]  97%, 97%, 28%  (system)
[13:55:31] [Craft Scheduler Thread - 109 - spark/INFO]: [⚡]  96%, 97%, 28%  (process)
[13:55:42] [User Authenticator #5/INFO]: UUID of player BurnPlayz is 3f966613-001e-49f1-933e-9705f18addf3
[13:55:43] [Server thread/INFO]: BurnPlayz[/         ip          ] logged in with entity id 11921 at ([world]-577.910440397662, 68.0, 1705.0903920263513)
[13:55:43] [Server thread/INFO]: [+] BurnPlayz
[13:55:51] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5220ms or 104 ticks behind
[13:55:53] [Server thread/INFO]: BurnPlayz lost connection: Disconnected
[13:55:53] [Server thread/INFO]: [-] BurnPlayz
[13:56:09] [User Authenticator #5/INFO]: UUID of player bwgb is 08554ee3-a9ee-4c19-ad66-4a2e2aee1325
[13:56:09] [Server thread/INFO]: bwgb[/         ip          ] logged in with entity id 12258 at ([world]-709.9272574540353, 77.0, 1346.3403196805145)
[13:56:09] [Server thread/INFO]: [+] bwgb
[13:56:22] [Server thread/INFO]: bwgb issued server command: /tp Tacula
[13:56:25] [Server thread/INFO]: bwgb issued server command: /i blastfurnace 1
[13:56:33] [Server thread/INFO]: bwgb issued server command: /ecoitems give bwgb cobalt_dust 18
[13:56:35] [Server thread/INFO]: bwgb issued server command: /i furnace 6
[13:56:39] [Server thread/INFO]: bwgb issued server command: /i coal
[13:56:39] [Server thread/INFO]: bwgb issued server command: /back
[13:56:49] [Server thread/WARN]: [MythicMobs] DROWNED found with mobtype 'DROWNED' but does not match.
[13:56:52] [Server thread/INFO]: MagixSpellz issued server command: /recipes
[13:56:54] [Server thread/INFO]: bwgb issued server command: /settings
[13:56:59] [Server thread/INFO]: bwgb issued server command: /iv toggle all furnace true
[13:56:59] [Server thread/INFO]: bwgb issued server command: /iv toggle all blast_furnace true
[13:56:59] [Server thread/INFO]: bwgb issued server command: /iv toggle all campfire true
[13:56:59] [Server thread/INFO]: bwgb issued server command: /iv toggle all soul_campfire true
[13:56:59] [Server thread/INFO]: bwgb issued server command: /iv toggle all smoker true
[13:56:59] [Server thread/INFO]: bwgb issued server command: /iv toggle all brewing_stand true
[13:56:59] [luckperms-command-executor/INFO]: [LP] bwgb does not have antium.disabled.cookingvisuals set in context global.
[13:57:04] [Server thread/INFO]: bwgb issued server command: /settings
[13:57:08] [Server thread/INFO]: bwgb issued server command: /deop bwgb
[13:57:08] [Server thread/INFO]: [bwgb: Made bwgb no longer a server operator]
[13:57:33] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /give bwgb oak_log
[13:57:33] [Server thread/INFO]: Giving 64 of oak log to bwgb.
[13:57:36] [Server thread/WARN]: [MythicMobs] DROWNED found with mobtype 'DROWNED' but does not match.
[13:58:08] [Server thread/INFO]: Minifrufoms was slain by Lvl 6 | Rotten Revenant
[13:59:02] [Server thread/INFO]: MagixSpellz issued server command: /recipes
[13:59:22] [Server thread/INFO]: bwgb fell from a high place
[13:59:24] [Craft Scheduler Thread - 98 - FancyNpcs/INFO]: [ChatColorHandler] Found MiniMessage in Server. MiniMessage support enabled.
[13:59:24] [Craft Scheduler Thread - 98 - FancyNpcs/INFO]: [ChatColorHandler] Found plugin "PlaceholderAPI". PlaceholderAPI support enabled.
[14:00:17] [Server thread/INFO]: oVqid issued server command: /echest
[14:00:23] [Server thread/INFO]: bwgb issued server command: /ci
[14:00:23] [Server thread/INFO]: [Essentials] bwgb was denied access to command.
[14:00:32] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5119ms or 102 ticks behind
[14:00:45] [Server thread/INFO]: Made bwgb a server operator
[14:00:47] [Server thread/INFO]: bwgb issued server command: /top
[14:01:25] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5127ms or 102 ticks behind
[14:02:04] [Server thread/INFO]: MagixSpellz issued server command: /settings
[14:02:06] [luckperms-command-executor/INFO]: [LP] Set antium.disable.enchantrequirements to true for magixspellz in context global.
[14:02:27] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5318ms or 106 ticks behind
[14:02:43] [Server thread/WARN]: [MythicMobs] HUSK found with mobtype 'HUSK' but does not match.
[14:03:03] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 6119ms or 122 ticks behind
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 25 mobs of types: 
[14:03:14] [Server thread/INFO]: BAT, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: STRIDER, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 4 mobs of types: 
[14:03:14] [Server thread/INFO]: VEX, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: PIGLIN_BRUTE, ZOMBIFIED_PIGLIN, PIGLIN, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: PIGLIN_BRUTE, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 43 mobs of types: 
[14:03:14] [Server thread/INFO]: ZOMBIE, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: HOGLIN, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 43 mobs of types: 
[14:03:14] [Server thread/INFO]: CREEPER, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 45 mobs of types: 
[14:03:14] [Server thread/INFO]: SKELETON, WITHER_SKELETON, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 12 mobs of types: 
[14:03:14] [Server thread/INFO]: CAVE_SPIDER, SPIDER, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 8 mobs of types: 
[14:03:14] [Server thread/INFO]: ENDERMAN, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: ZOMBIFIED_PIGLIN, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: SKELETON, WITHER_SKELETON, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 19 mobs of types: 
[14:03:14] [Server thread/INFO]: GLOW_SQUID, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: BLAZE, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: CAVE_SPIDER, SPIDER, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: CAVE_SPIDER, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 42 mobs of types: 
[14:03:14] [Server thread/INFO]: SALMON, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: SkeletalKnight, 
[14:03:14] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /mobkill drops world
[14:03:14] [Server thread/INFO]: Removed 81 entities.
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: BAT, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: STRIDER, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: VEX, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: PIGLIN_BRUTE, ZOMBIFIED_PIGLIN, PIGLIN, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: PIGLIN_BRUTE, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: ZOMBIE, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: HOGLIN, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: CREEPER, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: SKELETON, WITHER_SKELETON, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: CAVE_SPIDER, SPIDER, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: ENDERMAN, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: ZOMBIFIED_PIGLIN, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: SKELETON, WITHER_SKELETON, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: GLOW_SQUID, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: BLAZE, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: CAVE_SPIDER, SPIDER, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: CAVE_SPIDER, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: SALMON, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: SkeletalKnight, 
[14:03:14] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /mobkill drops world
[14:03:14] [Server thread/INFO]: Removed 0 entities.
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: BAT, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: STRIDER, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: VEX, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: PIGLIN_BRUTE, ZOMBIFIED_PIGLIN, PIGLIN, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: PIGLIN_BRUTE, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: ZOMBIE, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: HOGLIN, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: CREEPER, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: SKELETON, WITHER_SKELETON, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: CAVE_SPIDER, SPIDER, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: ENDERMAN, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: ZOMBIFIED_PIGLIN, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: SKELETON, WITHER_SKELETON, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: GLOW_SQUID, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: BLAZE, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: CAVE_SPIDER, SPIDER, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: CAVE_SPIDER, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: SALMON, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: SkeletalKnight, 
[14:03:14] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /mobkill drops world
[14:03:14] [Server thread/INFO]: Removed 0 entities.
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: BAT, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: STRIDER, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: VEX, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: PIGLIN_BRUTE, ZOMBIFIED_PIGLIN, PIGLIN, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: PIGLIN_BRUTE, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: ZOMBIE, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: HOGLIN, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: CREEPER, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: SKELETON, WITHER_SKELETON, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: CAVE_SPIDER, SPIDER, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: ENDERMAN, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: ZOMBIFIED_PIGLIN, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: SKELETON, WITHER_SKELETON, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: GLOW_SQUID, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: BLAZE, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: CAVE_SPIDER, SPIDER, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: CAVE_SPIDER, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: SALMON, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: SkeletalKnight, 
[14:03:14] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /mobkill drops world
[14:03:14] [Server thread/INFO]: Removed 0 entities.
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: BAT, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: STRIDER, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: VEX, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: PIGLIN_BRUTE, ZOMBIFIED_PIGLIN, PIGLIN, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: PIGLIN_BRUTE, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: ZOMBIE, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: HOGLIN, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: CREEPER, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: SKELETON, WITHER_SKELETON, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: CAVE_SPIDER, SPIDER, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: ENDERMAN, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: ZOMBIFIED_PIGLIN, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: SKELETON, WITHER_SKELETON, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: GLOW_SQUID, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: BLAZE, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: CAVE_SPIDER, SPIDER, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: CAVE_SPIDER, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: SALMON, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: SkeletalKnight, 
[14:03:14] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /mobkill drops world
[14:03:14] [Server thread/INFO]: Removed 0 entities.
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: BAT, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: STRIDER, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: VEX, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: PIGLIN_BRUTE, ZOMBIFIED_PIGLIN, PIGLIN, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: PIGLIN_BRUTE, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: ZOMBIE, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: HOGLIN, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: CREEPER, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: SKELETON, WITHER_SKELETON, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: CAVE_SPIDER, SPIDER, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: ENDERMAN, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: ZOMBIFIED_PIGLIN, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: SKELETON, WITHER_SKELETON, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: GLOW_SQUID, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: BLAZE, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: CAVE_SPIDER, SPIDER, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: CAVE_SPIDER, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: SALMON, 
[14:03:14] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:03:14] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:03:14] [Server thread/INFO]: SkeletalKnight, 
[14:03:14] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /mobkill drops world
[14:03:14] [Server thread/INFO]: Removed 0 entities.
[14:03:28] [Server thread/INFO]: Tacula issued server command: /skills
[14:03:39] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5146ms or 102 ticks behind
[14:04:29] [Server thread/INFO]: bwgb issued server command: /i dispenser 1
[14:04:31] [Server thread/INFO]: bwgb issued server command: /i lever 1
[14:04:52] [Server thread/INFO]: Tacula issued server command: /sell
[14:04:57] [Server thread/INFO]: bwgb issued server command: /heal
[14:04:59] [Server thread/INFO]: bwgb lost connection: Disconnected
[14:04:59] [Server thread/INFO]: [-] bwgb
[14:04:59] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5519ms or 110 ticks behind
[14:05:30] [Server thread/INFO]: oVqid drowned
[14:05:55] [Server thread/INFO]: Tacula lost connection: Disconnected
[14:05:55] [Server thread/INFO]: [-] Tacula
[14:06:15] [Server thread/INFO]: MagixSpellz issued server command: /recipes
[14:06:52] [User Authenticator #6/INFO]: UUID of player Tacula is abd777b4-265f-4e5d-a555-5857bdc77bef
[14:06:55] [Server thread/INFO]: Tacula[/          ip          ] logged in with entity id 22818 at ([world]316.69999998807907, 62.0, -171.55094247081428)
[14:06:55] [Netty Epoll Server IO #0/WARN]: [eco] Exception in packet listener com.willfp.eco.internal.spigot.proxy.v1_20_R2.common.packet.display.PacketWindowItems for packet net.minecraft.network.protocol.game.PacketPlayOutWindowItems!
[14:06:55] [Netty Epoll Server IO #0/WARN]: java.lang.NullPointerException: Cannot invoke "com.willfp.ecoskills.api.modifiers.StatModifier.getStat()" because "it" is null
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at EcoSkills v3.44.2.jar//com.willfp.ecoskills.stats.StatModifiers.getModifiers(StatModifiers.kt:47)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at EcoSkills v3.44.2.jar//com.willfp.ecoskills.stats.StatModifiers.getModifiedValue(StatModifiers.kt:65)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at EcoSkills v3.44.2.jar//com.willfp.ecoskills.api.EcoSkillsAPI.getStatLevel(EcoSkillsAPI.kt:96)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at EcoSkills v3.44.2.jar//com.willfp.ecoskills.stats.Stat.getActualLevel$core_plugin(Stat.kt:56)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at EcoSkills v3.44.2.jar//com.willfp.ecoskills.Levellable._init_$lambda$2(Levellable.kt:65)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at eco-6.69.0-all.jar//com.willfp.eco.core.placeholder.PlayerPlaceholder.getValue(PlayerPlaceholder.java:57)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at eco-6.69.0-all.jar//com.willfp.eco.internal.placeholder.PlaceholderParser.doGetResult(PlaceholderParser.kt:154)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at eco-6.69.0-all.jar//com.willfp.eco.internal.placeholder.PlaceholderParser.translateEcoPlaceholdersIn(PlaceholderParser.kt:180)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at eco-6.69.0-all.jar//com.willfp.eco.internal.placeholder.PlaceholderParser.translatePlacholders(PlaceholderParser.kt:112)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at eco-6.69.0-all.jar//com.willfp.eco.internal.placeholder.PlaceholderParser.translatePlacholders$default(PlaceholderParser.kt:35)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at eco-6.69.0-all.jar//com.willfp.eco.internal.placeholder.PlaceholderParser.translatePlacholders(PlaceholderParser.kt:32)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at eco-6.69.0-all.jar//com.willfp.eco.internal.spigot.EcoImpl.translatePlaceholders(EcoImpl.kt:349)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at eco-6.69.0-all.jar//com.willfp.eco.core.integrations.placeholder.PlaceholderManager.translatePlaceholders(PlaceholderManager.java:234)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at eco-6.69.0-all.jar//com.willfp.eco.util.StringUtils.format(StringUtils.java:386)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at EcoItems v5.42.2.jar//com.willfp.ecoitems.display.ItemsDisplay.display(ItemsDisplay.kt:35)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at eco-6.69.0-all.jar//com.willfp.eco.core.display.Display.display(Display.java:100)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at eco-6.69.0-all.jar//com.willfp.eco.internal.spigot.proxy.v1_20_R2.common.packet.display.PacketWindowItems.modifyWindowItems(PacketWindowItems.kt:76)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at eco-6.69.0-all.jar//com.willfp.eco.internal.spigot.proxy.v1_20_R2.common.packet.display.PacketWindowItems.onSend(PacketWindowItems.kt:49)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at eco-6.69.0-all.jar//com.willfp.eco.internal.events.EcoEventManagerKt.handleSend(EcoEventManager.kt:26)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at eco-6.69.0-all.jar//com.willfp.eco.internal.spigot.proxy.v1_20_R2.common.packet.EcoChannelDuplexHandler.write(EcoChannelDuplexHandler.kt:39)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:879)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:863)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:968)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:856)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.ChannelDuplexHandler.write(ChannelDuplexHandler.java:115)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at TAB v4.1.2.jar//me.neznamy.tab.shared.features.injection.NettyPipelineInjector$TabChannelDuplexHandler.write(NettyPipelineInjector.java:134)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:879)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:863)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:968)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:856)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.ChannelDuplexHandler.write(ChannelDuplexHandler.java:115)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at MythicMobs-5.5.1.jar//io.lumine.mythic.core.volatilecode.v1_20_R2.packets.VolatileChannelHandler.write(VolatileChannelHandler.java:76)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:879)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:863)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:968)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:856)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.ChannelDuplexHandler.write(ChannelDuplexHandler.java:115)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at GSit-1.7.0.jar//dev.geco.gsit.mcv.v1_20_2.util.PackageUtil$1.write(PackageUtil.java:90)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:879)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:940)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:966)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:934)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:1020)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:311)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at ProtocolLib (2).jar//com.comphenix.protocol.injector.netty.channel.NettyChannelProxy.writeAndFlush(NettyChannelProxy.java:227)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at ProtocolLib (2).jar//com.comphenix.protocol.injector.netty.channel.NettyChannelProxy.writeAndFlush(NettyChannelProxy.java:233)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at net.minecraft.network.NetworkManager.c(NetworkManager.java:448)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at net.minecraft.network.NetworkManager.lambda$sendPacket$10(NetworkManager.java:433)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at ProtocolLib (2).jar//com.comphenix.protocol.injector.netty.channel.NettyEventLoopProxy.lambda$proxyRunnable$2(NettyEventLoopProxy.java:48)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:413)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
[14:06:55] [Netty Epoll Server IO #0/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[14:06:55] [Server thread/INFO]: [+] Tacula
[14:07:39] [Server thread/WARN]: [MythicMobs] HUSK found with mobtype 'HUSK' but does not match.
[14:08:28] [Server thread/INFO]: oVqid lost connection: Disconnected
[14:08:28] [Server thread/INFO]: [-] ✪ oVqid
[14:08:34] [User Authenticator #7/INFO]: UUID of player oVqid is 9fdeaedc-43db-47db-b197-5a90bd022613
[14:08:35] [Server thread/INFO]: oVqid[/          ip           ] logged in with entity id 24083 at ([world]-4287.699999988079, 68.0, 4855.799134887718)
[14:08:35] [Server thread/INFO]: [+] ✪ oVqid
[14:09:39] [Server thread/INFO]: Tacula lost connection: Disconnected
[14:09:39] [Server thread/INFO]: [-] Tacula
[14:10:39] [Server thread/INFO]: Minifrufoms lost connection: Disconnected
[14:10:39] [Server thread/INFO]: [-] Minifrufoms
[14:10:41] [User Authenticator #8/INFO]: UUID of player bwgb is 08554ee3-a9ee-4c19-ad66-4a2e2aee1325
[14:10:41] [Server thread/INFO]: bwgb[/         ip          ] logged in with entity id 25066 at ([world]66.14874855669532, 73.0, -134.44141985292705)
[14:10:41] [Server thread/INFO]: [+] bwgb
[14:10:41] [Server thread/INFO]: Winther1323 lost connection: Disconnected
[14:10:41] [Server thread/INFO]: [-] Winther1323
[14:10:58] [User Authenticator #8/INFO]: UUID of player Tacula is abd777b4-265f-4e5d-a555-5857bdc77bef
[14:11:00] [Server thread/INFO]: Tacula[/          ip          ] logged in with entity id 25178 at ([world]316.42771809218067, 63.0, -170.65497845050854)
[14:11:00] [Server thread/INFO]: [+] Tacula
[14:12:34] [Server thread/WARN]: [MythicMobs] HUSK found with mobtype 'HUSK' but does not match.
[14:13:36] [Server thread/WARN]: [MythicMobs] DROWNED found with mobtype 'DROWNED' but does not match.
[14:14:00] [Server thread/INFO]: bwgb issued server command: /ci
[14:14:10] [Server thread/INFO]: bwgb issued server command: /god
[14:16:33] [Server thread/INFO]: MagixSpellz lost connection: Disconnected
[14:16:33] [Server thread/INFO]: [-] MagixSpellz
[14:17:38] [Server thread/INFO]: Tacula issued server command: /recipes
[14:17:46] [Craft Scheduler Thread - 170 - InteractiveChat/INFO]: [Not Secure] Traveler | bwgb [BEGINNER]> looking into lag!
[14:17:47] [Server thread/INFO]: bwgb lost connection: Disconnected
[14:17:47] [Server thread/INFO]: [-] bwgb
[14:18:59] [Server thread/WARN]: [MythicMobs] HUSK found with mobtype 'HUSK' but does not match.
[14:20:32] [User Authenticator #9/INFO]: UUID of player ZeqqYt is 39187c2b-ba37-4a75-a865-4407de616eb8
[14:20:34] [Server thread/INFO]: ZeqqYt[/         ip          ] logged in with entity id 29537 at ([world]-299.91834155201934, 12.0, 227.17142776214286)
[14:20:34] [Server thread/INFO]: [+] ✪ ZeqqYt
[14:24:07] [Server thread/INFO]: oVqid drowned
[14:24:22] [Server thread/INFO]: Named entity EntityZombie['Hex'/30946, uuid='0a814196-cc08-46ee-b789-3b06cf50a011', l='ServerLevel[world]', x=376.24, y=45.00, z=-223.20, cpos=[23, -14], tl=598, v=true] died: Hex withered away
[14:24:42] [Server thread/INFO]: Tacula lost connection: Disconnected
[14:24:42] [Server thread/INFO]: [-] Tacula
[14:24:52] [User Authenticator #10/INFO]: UUID of player Tacula is abd777b4-265f-4e5d-a555-5857bdc77bef
[14:24:52] [Server thread/INFO]: Tacula[/          ip          ] logged in with entity id 31901 at ([world]307.8196033225221, 63.0, -216.70134713637427)
[14:24:52] [Server thread/INFO]: [+] Tacula
[14:25:46] [Server thread/INFO]: ZeqqYt issued server command: /ec
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 18 mobs of types: 
[14:25:54] [Server thread/INFO]: BAT, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:54] [Server thread/INFO]: STRIDER, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 4 mobs of types: 
[14:25:54] [Server thread/INFO]: VEX, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:54] [Server thread/INFO]: PIGLIN_BRUTE, ZOMBIFIED_PIGLIN, PIGLIN, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:54] [Server thread/INFO]: PIGLIN_BRUTE, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 26 mobs of types: 
[14:25:54] [Server thread/INFO]: ZOMBIE, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:54] [Server thread/INFO]: HOGLIN, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 35 mobs of types: 
[14:25:54] [Server thread/INFO]: CREEPER, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 28 mobs of types: 
[14:25:54] [Server thread/INFO]: SKELETON, WITHER_SKELETON, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 18 mobs of types: 
[14:25:54] [Server thread/INFO]: CAVE_SPIDER, SPIDER, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 3 mobs of types: 
[14:25:54] [Server thread/INFO]: ENDERMAN, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:54] [Server thread/INFO]: ZOMBIFIED_PIGLIN, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:54] [Server thread/INFO]: SKELETON, WITHER_SKELETON, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 18 mobs of types: 
[14:25:54] [Server thread/INFO]: GLOW_SQUID, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:54] [Server thread/INFO]: BLAZE, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:54] [Server thread/INFO]: CAVE_SPIDER, SPIDER, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:54] [Server thread/INFO]: CAVE_SPIDER, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 27 mobs of types: 
[14:25:54] [Server thread/INFO]: SALMON, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:54] [Server thread/INFO]: SkeletalKnight, 
[14:25:54] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /mobkill drops world
[14:25:54] [Server thread/INFO]: Removed 15 entities.
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:54] [Server thread/INFO]: BAT, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:54] [Server thread/INFO]: STRIDER, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:54] [Server thread/INFO]: VEX, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:54] [Server thread/INFO]: PIGLIN_BRUTE, ZOMBIFIED_PIGLIN, PIGLIN, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:54] [Server thread/INFO]: PIGLIN_BRUTE, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:54] [Server thread/INFO]: ZOMBIE, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:54] [Server thread/INFO]: HOGLIN, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:54] [Server thread/INFO]: CREEPER, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:54] [Server thread/INFO]: SKELETON, WITHER_SKELETON, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:54] [Server thread/INFO]: CAVE_SPIDER, SPIDER, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:54] [Server thread/INFO]: ENDERMAN, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:54] [Server thread/INFO]: ZOMBIFIED_PIGLIN, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:54] [Server thread/INFO]: SKELETON, WITHER_SKELETON, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:54] [Server thread/INFO]: GLOW_SQUID, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:54] [Server thread/INFO]: BLAZE, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:54] [Server thread/INFO]: CAVE_SPIDER, SPIDER, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:54] [Server thread/INFO]: CAVE_SPIDER, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:54] [Server thread/INFO]: SALMON, 
[14:25:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:54] [Server thread/INFO]: SkeletalKnight, 
[14:25:54] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /mobkill drops world
[14:25:55] [Server thread/INFO]: Removed 0 entities.
[14:25:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:55] [Server thread/INFO]: BAT, 
[14:25:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:55] [Server thread/INFO]: STRIDER, 
[14:25:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:55] [Server thread/INFO]: VEX, 
[14:25:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:55] [Server thread/INFO]: PIGLIN_BRUTE, ZOMBIFIED_PIGLIN, PIGLIN, 
[14:25:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:55] [Server thread/INFO]: PIGLIN_BRUTE, 
[14:25:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:55] [Server thread/INFO]: ZOMBIE, 
[14:25:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:55] [Server thread/INFO]: HOGLIN, 
[14:25:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:55] [Server thread/INFO]: CREEPER, 
[14:25:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:55] [Server thread/INFO]: SKELETON, WITHER_SKELETON, 
[14:25:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:55] [Server thread/INFO]: CAVE_SPIDER, SPIDER, 
[14:25:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:55] [Server thread/INFO]: ENDERMAN, 
[14:25:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:55] [Server thread/INFO]: ZOMBIFIED_PIGLIN, 
[14:25:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:55] [Server thread/INFO]: SKELETON, WITHER_SKELETON, 
[14:25:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:55] [Server thread/INFO]: GLOW_SQUID, 
[14:25:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:55] [Server thread/INFO]: BLAZE, 
[14:25:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:55] [Server thread/INFO]: CAVE_SPIDER, SPIDER, 
[14:25:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:55] [Server thread/INFO]: CAVE_SPIDER, 
[14:25:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:55] [Server thread/INFO]: SALMON, 
[14:25:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:25:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:25:55] [Server thread/INFO]: SkeletalKnight, 
[14:25:55] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /mobkill drops world
[14:25:55] [Server thread/INFO]: Removed 0 entities.
[14:25:58] [Server thread/INFO]: ZeqqYt issued server command: /sell all
[14:26:00] [Server thread/INFO]: ZeqqYt issued server command: /ec
[14:26:36] [Server thread/INFO]: ZeqqYt issued server command: /skill top
[14:26:40] [Server thread/WARN]: [MythicMobs] HUSK found with mobtype 'HUSK' but does not match.
[14:26:46] [Server thread/WARN]: [MythicMobs] HUSK found with mobtype 'HUSK' but does not match.
[14:27:58] [Craft Scheduler Thread - 98 - InteractiveChat/INFO]: [Not Secure] ✪ Streamline | ZeqqYt [GOLDEN]> [CoreQuest Gem Collector 2000]
[14:28:13] [Craft Scheduler Thread - 204 - InteractiveChat/INFO]: [Not Secure] ✪ Streamline | oVqid [MAGNIFICENT]> this a robbery give it
[14:28:31] [Craft Scheduler Thread - 194 - InteractiveChat/INFO]: [Not Secure] ✪ Streamline | oVqid [MAGNIFICENT]> *gun tilted to the side*
[14:29:09] [Server thread/INFO]: oVqid issued server command: /echest
[14:29:56] [Server thread/INFO]: oVqid issued server command: /echest
[14:30:34] [Server thread/INFO]: ZeqqYt was slain by Watcher
[14:32:02] [Server thread/INFO]: ZeqqYt issued server command: /sell all
[14:32:08] [Server thread/INFO]: ZeqqYt issued server command: /withdraw all
[14:32:30] [Server thread/INFO]: Tacula issued server command: /gemshop
[14:34:02] [Server thread/INFO]: Tacula issued server command: /recipes
[14:34:10] [Server thread/INFO]: ZeqqYt died
[14:36:53] [Craft Scheduler Thread - 222 - InteractiveChat/INFO]: [Not Secure] Traveler | Tacula [SPRING BREAK]> [Arachnid Silk 2x]
[14:36:55] [Craft Scheduler Thread - 222 - InteractiveChat/INFO]: [Not Secure] Traveler | Tacula [SPRING BREAK]> womp womp
[14:36:58] [Server thread/INFO]: ZeqqYt issued server command: /ec
[14:37:03] [Craft Scheduler Thread - 205 - InteractiveChat/INFO]: [Not Secure] ✪ Streamline | ZeqqYt [GOLDEN]> [Arachnid Silk 2x]
[14:37:05] [Server thread/INFO]: ZeqqYt issued server command: /ec
[14:37:18] [Server thread/INFO]: ZeqqYt issued server command: /recipes
[14:37:47] [Server thread/INFO]: Tacula issued server command: /recipes
[14:38:52] [Server thread/INFO]: oVqid issued server command: /points
[14:38:57] [Server thread/INFO]: [LP] Another command is being executed, waiting for it to finish...
[14:38:57] [Server thread/INFO]: 1 skillpoints were removed from oVqid!
[14:38:57] [luckperms-command-executor/INFO]: [LP] Set antium.skillpoints.strength.3 to true for ovqid in context global.
[14:38:57] [luckperms-command-executor/INFO]: [LP] Unset antium.skillpoints.strength.2 for ovqid in context global.
[14:38:59] [Server thread/INFO]: oVqid issued server command: /points
[14:39:09] [Server thread/INFO]: oVqid issued server command: /skills
[14:40:01] [Server thread/WARN]: [MythicMobs] HUSK found with mobtype 'HUSK' but does not match.
[14:40:04] [Server thread/INFO]: Tacula issued server command: /skills top mining
[14:40:12] [Server thread/WARN]: [MythicMobs] HUSK found with mobtype 'HUSK' but does not match.
[14:40:25] [Craft Scheduler Thread - 170 - NeigeItems/INFO]: [NeigeItems] 发现新版本: 1.16.38
[14:40:25] [Craft Scheduler Thread - 170 - NeigeItems/INFO]: [NeigeItems] 链接: https://github.com/ankhorg/NeigeItems-Kotlin/releases/latest
[14:42:22] [Server thread/INFO]: ZeqqYt issued server command: /ec
[14:42:34] [Server thread/INFO]: ZeqqYt issued server command: /ah sell 10000
[14:42:46] [Server thread/INFO]: Tacula issued server command: /recipes
[14:44:55] [Server thread/INFO]: ZeqqYt issued server command: /ec
[14:47:14] [Server thread/INFO]: ZeqqYt issued server command: /sell hand
[14:47:15] [Server thread/INFO]: ZeqqYt issued server command: /ec
[14:48:06] [Server thread/WARN]: [MythicMobs] HUSK found with mobtype 'HUSK' but does not match.
[14:48:14] [Server thread/INFO]: ZeqqYt issued server command: /ec
[14:48:18] [Server thread/INFO]: oVqid drowned while trying to escape Guardian
[14:48:23] [Server thread/INFO]: ZeqqYt issued server command: /sell all
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 10 mobs of types: 
[14:48:24] [Server thread/INFO]: BAT, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: STRIDER, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 5 mobs of types: 
[14:48:24] [Server thread/INFO]: VEX, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: PIGLIN_BRUTE, ZOMBIFIED_PIGLIN, PIGLIN, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: PIGLIN_BRUTE, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 30 mobs of types: 
[14:48:24] [Server thread/INFO]: ZOMBIE, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: HOGLIN, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 28 mobs of types: 
[14:48:24] [Server thread/INFO]: CREEPER, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 18 mobs of types: 
[14:48:24] [Server thread/INFO]: SKELETON, WITHER_SKELETON, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 11 mobs of types: 
[14:48:24] [Server thread/INFO]: CAVE_SPIDER, SPIDER, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 3 mobs of types: 
[14:48:24] [Server thread/INFO]: ENDERMAN, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: ZOMBIFIED_PIGLIN, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: SKELETON, WITHER_SKELETON, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 9 mobs of types: 
[14:48:24] [Server thread/INFO]: GLOW_SQUID, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: BLAZE, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: CAVE_SPIDER, SPIDER, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: CAVE_SPIDER, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: SALMON, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: SkeletalKnight, 
[14:48:24] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /mobkill drops world
[14:48:24] [Server thread/INFO]: Removed 30 entities.
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: BAT, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: STRIDER, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: VEX, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: PIGLIN_BRUTE, ZOMBIFIED_PIGLIN, PIGLIN, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: PIGLIN_BRUTE, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: ZOMBIE, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: HOGLIN, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: CREEPER, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: SKELETON, WITHER_SKELETON, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: CAVE_SPIDER, SPIDER, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: ENDERMAN, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: ZOMBIFIED_PIGLIN, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: SKELETON, WITHER_SKELETON, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: GLOW_SQUID, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: BLAZE, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: CAVE_SPIDER, SPIDER, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: CAVE_SPIDER, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: SALMON, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: SkeletalKnight, 
[14:48:24] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /mobkill drops world
[14:48:24] [Server thread/INFO]: Removed 0 entities.
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: BAT, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: STRIDER, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: VEX, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: PIGLIN_BRUTE, ZOMBIFIED_PIGLIN, PIGLIN, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: PIGLIN_BRUTE, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: ZOMBIE, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: HOGLIN, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: CREEPER, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: SKELETON, WITHER_SKELETON, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: CAVE_SPIDER, SPIDER, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: ENDERMAN, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: ZOMBIFIED_PIGLIN, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: SKELETON, WITHER_SKELETON, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: GLOW_SQUID, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: BLAZE, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: CAVE_SPIDER, SPIDER, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: CAVE_SPIDER, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: SALMON, 
[14:48:24] [Server thread/INFO]: -------------======== Mythic ========-------------
[14:48:24] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[14:48:24] [Server thread/INFO]: SkeletalKnight, 
[14:48:24] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /mobkill drops world
[14:48:25] [Server thread/INFO]: Removed 0 entities.
[14:48:25] [Server thread/INFO]: ZeqqYt issued server command: /ec
[14:48:38] [Server thread/INFO]: ZeqqYt issued server command: /ec
[14:48:44] [Server thread/WARN]: [MythicMobs] HUSK found with mobtype 'HUSK' but does not match.
[14:48:52] [Server thread/INFO]: ZeqqYt issued server command: /withdraw all
[14:49:13] [Server thread/INFO]: ZeqqYt issued server command: /ec
[14:49:35] [Server thread/INFO]: oVqid was killed by Lvl 20 | Aquatic Guardian using magic
[14:49:36] [Server thread/INFO]: ZeqqYt issued server command: /enchants
[14:50:26] [Server thread/WARN]: [MythicMobs] HUSK found with mobtype 'HUSK' but does not match.
[14:50:40] [Server thread/INFO]: Named entity EntityZombie['Lost Miner'/48159, uuid='c25ab267-1a84-47a1-af26-9c7125f6aa07', l='ServerLevel[world]', x=-1219.70, y=4.00, z=-977.49, cpos=[-77, -62], tl=176, v=true] died: Lost Miner fell from a high place
[14:51:32] [Craft Scheduler Thread - 236 - InteractiveChat/INFO]: [Not Secure] Traveler | Tacula [SPRING BREAK]> [Recovered Soul] FIRE
[14:51:33] [Craft Scheduler Thread - 246 - InteractiveChat/INFO]: [Not Secure] Traveler | Tacula [SPRING BREAK]> [Recovered Soul] FIRE
[14:51:45] [Server thread/INFO]: Tacula issued server command: /recipes
[14:51:56] [Server thread/WARN]: [MythicMobs] HUSK found with mobtype 'HUSK' but does not match.
[14:53:06] [Server thread/INFO]: ZeqqYt issued server command: /sell all
[14:53:07] [Server thread/INFO]: ZeqqYt issued server command: /ec
[14:53:13] [Server thread/INFO]: ZeqqYt issued server command: /recipes
[14:53:24] [Server thread/INFO]: 
[14:53:24] [Server thread/INFO]:  Friday Skill XP Booster has ended!
[14:53:24] [Server thread/INFO]:  Purchase another on the /boostershop or using Booster Coins!
[14:53:24] [Server thread/INFO]: 
[14:53:29] [Server thread/INFO]: oVqid issued server command: /boosters
[14:53:32] [Server thread/INFO]: 
[14:53:32] [Server thread/INFO]:  ✪ oVqid has activated a Friday Skill XP Booster!
[14:53:32] [Server thread/INFO]:  This booster will last 2 hours!
[14:53:32] [Server thread/INFO]: 
[14:54:14] [Server thread/INFO]: Tacula issued server command: /recipes
[14:54:44] [Server thread/INFO]: oVqid issued server command: /tags
[14:54:49] [Server thread/INFO]: oVqid issued server command: /tags
[14:55:32] [Server thread/INFO]: ZeqqYt issued server command: /sell all
[14:55:33] [Server thread/INFO]: ZeqqYt issued server command: /ec
[14:57:01] [Server thread/INFO]: oVqid drowned
[14:58:57] [Server thread/INFO]: ZeqqYt issued server command: /ec
[14:58:58] [Server thread/WARN]: [MythicMobs] HUSK found with mobtype 'HUSK' but does not match.
[14:59:01] [Server thread/INFO]: ZeqqYt issued server command: /sell all
[14:59:02] [Server thread/INFO]: ZeqqYt issued server command: /ec
[14:59:51] [Server thread/INFO]: oVqid drowned
[15:00:09] [Server thread/INFO]: oVqid issued server command: /recipes
[15:03:26] [Server thread/INFO]: ZeqqYt issued server command: /ec
[15:03:31] [Server thread/INFO]: ZeqqYt issued server command: /sell all
[15:03:32] [Server thread/INFO]: ZeqqYt issued server command: /ec
[15:04:58] [Server thread/INFO]: ZeqqYt issued server command: /ec
[15:05:04] [Server thread/INFO]: ZeqqYt issued server command: /sell all
[15:05:10] [Server thread/INFO]: Named entity EntitySpider['Alpha Spider'/63345, uuid='ef11da80-1290-4255-bc34-4b6eadca3e60', l='ServerLevel[world]', x=-1155.70, y=57.10, z=-986.70, cpos=[-73, -62], tl=3830, v=true] died: Alpha Spider suffocated in a wall
[15:05:11] [Server thread/INFO]: ZeqqYt issued server command: /ec
[15:05:48] [Server thread/WARN]: [MythicMobs] HUSK found with mobtype 'HUSK' but does not match.
[15:06:14] [Server thread/INFO]: oVqid drowned
[15:06:58] [Server thread/INFO]: Tacula issued server command: /ah
[15:07:59] [Server thread/INFO]: ZeqqYt issued server command: /repair
[15:08:05] [Server thread/INFO]: oVqid drowned while trying to escape Guardian
[15:09:06] [Server thread/INFO]: oVqid issued server command: /sell hand
[15:09:18] [Server thread/WARN]: [MythicMobs] HUSK found with mobtype 'HUSK' but does not match.
[15:10:14] [Server thread/INFO]: ZeqqYt issued server command: /ec
[15:10:16] [Server thread/WARN]: [MythicMobs] HUSK found with mobtype 'HUSK' but does not match.
[15:10:21] [Server thread/INFO]: ZeqqYt issued server command: /sell all
[15:10:22] [Server thread/INFO]: ZeqqYt issued server command: /ec
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 16 mobs of types: 
[15:10:54] [Server thread/INFO]: BAT, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:54] [Server thread/INFO]: STRIDER, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 2 mobs of types: 
[15:10:54] [Server thread/INFO]: VEX, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:54] [Server thread/INFO]: PIGLIN_BRUTE, ZOMBIFIED_PIGLIN, PIGLIN, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:54] [Server thread/INFO]: PIGLIN_BRUTE, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 22 mobs of types: 
[15:10:54] [Server thread/INFO]: ZOMBIE, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:54] [Server thread/INFO]: HOGLIN, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 31 mobs of types: 
[15:10:54] [Server thread/INFO]: CREEPER, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 34 mobs of types: 
[15:10:54] [Server thread/INFO]: SKELETON, WITHER_SKELETON, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 5 mobs of types: 
[15:10:54] [Server thread/INFO]: CAVE_SPIDER, SPIDER, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 4 mobs of types: 
[15:10:54] [Server thread/INFO]: ENDERMAN, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:54] [Server thread/INFO]: ZOMBIFIED_PIGLIN, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:54] [Server thread/INFO]: SKELETON, WITHER_SKELETON, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 10 mobs of types: 
[15:10:54] [Server thread/INFO]: GLOW_SQUID, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:54] [Server thread/INFO]: BLAZE, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:54] [Server thread/INFO]: CAVE_SPIDER, SPIDER, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:54] [Server thread/INFO]: CAVE_SPIDER, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:54] [Server thread/INFO]: SALMON, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:54] [Server thread/INFO]: SkeletalKnight, 
[15:10:54] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /mobkill drops world
[15:10:54] [Server thread/INFO]: Removed 183 entities.
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:54] [Server thread/INFO]: BAT, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:54] [Server thread/INFO]: STRIDER, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:54] [Server thread/INFO]: VEX, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:54] [Server thread/INFO]: PIGLIN_BRUTE, ZOMBIFIED_PIGLIN, PIGLIN, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:54] [Server thread/INFO]: PIGLIN_BRUTE, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:54] [Server thread/INFO]: ZOMBIE, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:54] [Server thread/INFO]: HOGLIN, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:54] [Server thread/INFO]: CREEPER, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:54] [Server thread/INFO]: SKELETON, WITHER_SKELETON, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:54] [Server thread/INFO]: CAVE_SPIDER, SPIDER, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:54] [Server thread/INFO]: ENDERMAN, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:54] [Server thread/INFO]: ZOMBIFIED_PIGLIN, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:54] [Server thread/INFO]: SKELETON, WITHER_SKELETON, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:54] [Server thread/INFO]: GLOW_SQUID, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:54] [Server thread/INFO]: BLAZE, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:54] [Server thread/INFO]: CAVE_SPIDER, SPIDER, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:54] [Server thread/INFO]: CAVE_SPIDER, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:54] [Server thread/INFO]: SALMON, 
[15:10:54] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:54] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:54] [Server thread/INFO]: SkeletalKnight, 
[15:10:54] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /mobkill drops world
[15:10:55] [Server thread/INFO]: Removed 0 entities.
[15:10:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:55] [Server thread/INFO]: BAT, 
[15:10:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:55] [Server thread/INFO]: STRIDER, 
[15:10:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:55] [Server thread/INFO]: VEX, 
[15:10:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:55] [Server thread/INFO]: PIGLIN_BRUTE, ZOMBIFIED_PIGLIN, PIGLIN, 
[15:10:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:55] [Server thread/INFO]: PIGLIN_BRUTE, 
[15:10:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:55] [Server thread/INFO]: ZOMBIE, 
[15:10:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:55] [Server thread/INFO]: HOGLIN, 
[15:10:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:55] [Server thread/INFO]: CREEPER, 
[15:10:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:55] [Server thread/INFO]: SKELETON, WITHER_SKELETON, 
[15:10:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:55] [Server thread/INFO]: CAVE_SPIDER, SPIDER, 
[15:10:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:55] [Server thread/INFO]: ENDERMAN, 
[15:10:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:55] [Server thread/INFO]: ZOMBIFIED_PIGLIN, 
[15:10:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:55] [Server thread/INFO]: SKELETON, WITHER_SKELETON, 
[15:10:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:55] [Server thread/INFO]: GLOW_SQUID, 
[15:10:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:55] [Server thread/INFO]: BLAZE, 
[15:10:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:55] [Server thread/INFO]: CAVE_SPIDER, SPIDER, 
[15:10:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:55] [Server thread/INFO]: CAVE_SPIDER, 
[15:10:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:55] [Server thread/INFO]: SALMON, 
[15:10:55] [Server thread/INFO]: -------------======== Mythic ========-------------
[15:10:55] [Server thread/INFO]: [Mythic] Removed 0 mobs of types: 
[15:10:55] [Server thread/INFO]: SkeletalKnight, 
[15:10:55] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /mobkill drops world
[15:10:55] [Server thread/INFO]: Removed 0 entities.
[15:11:46] [Server thread/INFO]: Tacula issued server command: /recipes
[15:12:03] [Server thread/INFO]: ZeqqYt issued server command: /sell all
[15:12:04] [Server thread/INFO]: Tacula issued server command: /sell
[15:12:07] [Server thread/INFO]: Tacula issued server command: /ah
[15:12:23] [Craft Scheduler Thread - 285 - InteractiveChat/INFO]: [Not Secure] Traveler | Tacula [SPRING BREAK]> [Enchanted Book]
[15:12:24] [Craft Scheduler Thread - 274 - InteractiveChat/INFO]: [Not Secure] Traveler | Tacula [SPRING BREAK]> Suii]
[15:12:31] [Server thread/INFO]: oVqid issued server command: /interactivechat viewitem 692d15b12095b7751a59f3a532829049a2029eec
[15:12:37] [Server thread/INFO]: ZeqqYt issued server command: /withdraw all
[15:12:44] [Server thread/INFO]: ZeqqYt issued server command: /withdraw all
[15:13:09] [Server thread/INFO]: Tacula issued server command: /recipes
[15:14:29] [Server thread/INFO]: Tacula issued server command: /recipes
[15:15:13] [User Authenticator #11/INFO]: UUID of player BurnPlayz is 3f966613-001e-49f1-933e-9705f18addf3
[15:15:15] [Server thread/INFO]: BurnPlayz[/         ip          ] logged in with entity id 83787 at ([world]-577.910440397662, 68.0, 1705.0903920263513)
[15:15:15] [Server thread/INFO]: [+] BurnPlayz
[15:15:21] [Server thread/INFO]: BurnPlayz lost connection: You must accept the resourcepack! Also make sure you set them to 'Prompt' or 'Enabled' in server properties.
[15:15:21] [Server thread/INFO]: [-] BurnPlayz
[15:15:34] [User Authenticator #11/INFO]: UUID of player bwgb is 08554ee3-a9ee-4c19-ad66-4a2e2aee1325
[15:15:34] [Server thread/INFO]: bwgb[/         ip          ] logged in with entity id 84050 at ([world]-12.240685468675728, 60.0, -157.37154287496938)
[15:15:34] [Server thread/INFO]: [+] bwgb
[15:15:46] [Server thread/INFO]: bwgb drowned
[15:16:01] [Server thread/INFO]: bwgb issued server command: /gmc
[15:16:17] [Server thread/INFO]: bwgb issued server command: /tp -500 100 1700
[15:16:31] [Server thread/INFO]: Tacula issued server command: /sell
[15:16:34] [Server thread/INFO]: Tacula issued server command: /shop
[15:16:40] [Server thread/INFO]: bwgb lost connection: Disconnected
[15:16:40] [Server thread/INFO]: [-] bwgb
[15:16:43] [User Authenticator #12/INFO]: UUID of player HackMeBaby is ba21aeaa-2379-4ea2-ae33-5ea6bda03045
[15:16:50] [Server thread/INFO]: HackMeBaby[/         ip          ] logged in with entity id 85355 at ([world]-683.9464428393161, 71.0, 1679.4628244085063)
[15:16:50] [Server thread/INFO]: [+] ✪ HackMeBaby
[15:16:51] [User Authenticator #12/INFO]: UUID of player bwgb is 08554ee3-a9ee-4c19-ad66-4a2e2aee1325
[15:16:51] [Server thread/INFO]: bwgb[/         ip          ] logged in with entity id 85455 at ([world]-587.141161542792, 71.0, 1784.0047185033302)
[15:16:51] [Server thread/INFO]: [+] bwgb
[15:17:17] [Server thread/INFO]: oVqid drowned while trying to escape Guardian
[15:17:47] [Server thread/WARN]: [MythicMobs] HUSK found with mobtype 'HUSK' but does not match.
[15:18:02] [Server thread/INFO]: oVqid drowned
[15:19:02] [Server thread/INFO]: oVqid issued server command: /echest
[15:19:10] [Server thread/WARN]: Skipping Entity with id 
[15:19:20] [Server thread/INFO]: bwgb lost connection: Disconnected
[15:19:20] [Server thread/INFO]: [-] bwgb
[15:19:31] [User Authenticator #13/INFO]: UUID of player bwgb is 08554ee3-a9ee-4c19-ad66-4a2e2aee1325
[15:19:31] [Server thread/INFO]: bwgb[/         ip          ] logged in with entity id 90072 at ([world]-588.6999999880791, 69.0, 1783.699999988079)
[15:19:31] [Server thread/INFO]: [+] bwgb
[15:19:44] [Server thread/WARN]: Skipping Entity with id 
[15:19:51] [Server thread/INFO]: HackMeBaby lost connection: Disconnected
[15:19:51] [Server thread/INFO]: [-] ✪ HackMeBaby
[15:19:52] [Server thread/INFO]: bwgb lost connection: Disconnected
[15:19:52] [Server thread/INFO]: [-] bwgb
[15:19:59] [Server thread/WARN]: Skipping Entity with id 
[15:20:04] [User Authenticator #13/INFO]: UUID of player bwgb is 08554ee3-a9ee-4c19-ad66-4a2e2aee1325
[15:20:04] [Server thread/INFO]: bwgb[/         ip          ] logged in with entity id 90729 at ([world]-587.5489923609676, 69.0, 1783.699999988079)
[15:20:04] [Server thread/INFO]: [+] bwgb
[15:20:05] [User Authenticator #13/INFO]: UUID of player HackMeBaby is ba21aeaa-2379-4ea2-ae33-5ea6bda03045
[15:20:07] [Server thread/INFO]: HackMeBaby[/         ip          ] logged in with entity id 90835 at ([world]-610.4405886749448, 72.0, 1697.300000011921)
[15:20:07] [Server thread/INFO]: [+] ✪ HackMeBaby
[15:20:08] [Server thread/WARN]: [MythicMobs] HUSK found with mobtype 'HUSK' but does not match.
[15:20:10] [Server thread/WARN]: Skipping Entity with id 
[15:20:14] [Server thread/WARN]: Skipping Entity with id 
[15:20:29] [Server thread/WARN]: Skipping Entity with id 
[15:21:18] [User Authenticator #14/INFO]: UUID of player DontTapL is 8961aa69-51f5-4cd6-bb78-40c3f20b748b
[15:21:18] [Server thread/INFO]: DontTapL[/          ip          ] logged in with entity id 92838 at ([world]735.4403348729885, 92.0, 122.69609321789535)
[15:21:18] [Server thread/INFO]: [+] DontTapL
[15:21:25] [Server thread/WARN]: [MythicMobs] HUSK found with mobtype 'HUSK' but does not match.
[15:21:56] [Server thread/WARN]: ZeqqYt moved too quickly! 7.215649172501642,6.088174411384912,-6.430204819803691
[15:22:22] [Server thread/WARN]: [MythicMobs] HUSK found with mobtype 'HUSK' but does not match.
[15:22:33] [Server thread/INFO]: bwgb issued server command: /mm reload
[15:22:34] [Server thread/INFO]: [MythicMobs] Loading Packs...
[15:22:34] [Server thread/INFO]: [MythicMobs] Loading Items...
[15:22:34] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[15:22:34] [Server thread/INFO]: [MythicMobs] Loading Skills...
[15:22:34] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[15:22:34] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[15:22:34] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[15:22:34] [Server thread/INFO]: [MythicMobs] ✓ Loaded 70 mobs.
[15:22:34] [Server thread/INFO]: [MythicMobs] ✓ Loaded 55 vanilla mob overrides.
[15:22:34] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[15:22:34] [Server thread/INFO]: [MythicMobs] ✓ Loaded 7 skills.
[15:22:34] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 random spawns.
[15:22:34] [Server thread/INFO]: [MythicMobs] ✓ Loaded 4 mythic items.
[15:22:34] [Server thread/INFO]: [MythicMobs] ✓ Loaded 4 drop tables.
[15:22:34] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[15:22:34] [Server thread/INFO]: [MythicMobs] Mythic has finished reloading!
[15:22:34] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop BloodSkeleton 1to2 0.5
[15:22:34] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Mobs/BloodMoon.yml
[15:22:34] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[15:22:34] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop BloodSkeleton 1to2 0.5
[15:22:34] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Mobs/BloodMoon.yml
[15:22:34] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[15:22:34] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop BloodSkeleton 1to2 0.5
[15:22:34] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Mobs/BloodMoon.yml
[15:22:34] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[15:22:34] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop BloodSkeleton 1to2 0.5
[15:22:34] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Mobs/BloodMoon.yml
[15:22:34] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[15:22:34] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop BloodSkeleton 1to2 0.5
[15:22:34] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Mobs/BloodMoon.yml
[15:22:34] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[15:22:34] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop BloodSkeleton 1to2 0.5
[15:22:34] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Mobs/BloodMoon.yml
[15:22:34] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[15:22:34] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop BloodSkeleton 1to2 0.5
[15:22:34] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Mobs/BloodMoon.yml
[15:22:34] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[15:22:34] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop BloodSkeleton 1to2 0.5
[15:22:34] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Mobs/BloodMoon.yml
[15:22:34] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[15:22:34] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop BloodSkeleton 1to2 0.5
[15:22:34] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Mobs/BloodMoon.yml
[15:22:34] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[15:22:34] [Server thread/INFO]: bwgb issued server command: /fly
[15:22:39] [Server thread/INFO]: bwgb issued server command: /gmc
[15:22:54] [Server thread/INFO]: oVqid issued server command: /echest
[15:23:27] [Server thread/INFO]: bwgb lost connection: Disconnected
[15:23:27] [Server thread/INFO]: [-] bwgb
[15:23:39] [User Authenticator #15/INFO]: UUID of player bwgb is 08554ee3-a9ee-4c19-ad66-4a2e2aee1325
[15:23:39] [Server thread/INFO]: bwgb[/         ip          ] logged in with entity id 97049 at ([world]-623.9779495529039, 67.0, 2940.699999988079)
[15:23:39] [Server thread/INFO]: [+] bwgb
[15:23:43] [Server thread/WARN]: [MythicMobs] HUSK found with mobtype 'HUSK' but does not match.
[15:24:04] [Server thread/INFO]: Named entity EntityZombieHusk['Watcher'/97891, uuid='3c65ea2b-bec9-41d6-ba40-aeaf01cebdad', l='ServerLevel[world]', x=972.13, y=48.00, z=923.82, cpos=[60, 57], tl=38, v=true] died: Watcher withered away
[15:24:27] [Server thread/INFO]: oVqid drowned while trying to escape Guardian