Paste #117210: log

Date: 2023/11/05 13:39:30 UTC-08:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


05.11 21:25:11 [Server] INFO Disabling NBTAPI v2.11.3
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.run(Thread.java:1583)
05.11 21:25:11 [Server] ERROR ------------------------------
05.11 21:25:11 [Server] ERROR Current Thread: Craft Scheduler Thread - 15
05.11 21:25:11 [Server] ERROR PID: 262 | Suspended: false | Native: false | State: TIMED_WAITING
05.11 21:25:11 [Server] ERROR Stack:
05.11 21:25:11 [Server] ERROR [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:401)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:903)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1069)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.runWith(Thread.java:1596)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.run(Thread.java:1583)
05.11 21:25:11 [Server] ERROR ------------------------------
05.11 21:25:11 [Server] ERROR Current Thread: Craft Scheduler Thread - 16
05.11 21:25:11 [Server] ERROR PID: 266 | Suspended: false | Native: false | State: TIMED_WAITING
05.11 21:25:11 [Server] ERROR Stack:
05.11 21:25:11 [Server] ERROR [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:401)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:903)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1069)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.runWith(Thread.java:1596)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.run(Thread.java:1583)
05.11 21:25:11 [Server] ERROR ------------------------------
05.11 21:25:11 [Server] ERROR Current Thread: Craft Scheduler Thread - 17
05.11 21:25:11 [Server] ERROR PID: 269 | Suspended: false | Native: false | State: TIMED_WAITING
05.11 21:25:11 [Server] ERROR Stack:
05.11 21:25:11 [Server] ERROR [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:401)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:903)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1069)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.runWith(Thread.java:1596)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.run(Thread.java:1583)
05.11 21:25:11 [Server] ERROR ------------------------------
05.11 21:25:11 [Server] ERROR Current Thread: Craft Scheduler Thread - 18
05.11 21:25:11 [Server] ERROR PID: 271 | Suspended: false | Native: false | State: TIMED_WAITING
05.11 21:25:11 [Server] ERROR Stack:
05.11 21:25:11 [Server] ERROR [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:401)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:903)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1069)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.runWith(Thread.java:1596)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.run(Thread.java:1583)
05.11 21:25:11 [Server] ERROR ------------------------------
05.11 21:25:11 [Server] ERROR Current Thread: Craft Scheduler Thread - 19
05.11 21:25:11 [Server] ERROR PID: 273 | Suspended: false | Native: false | State: TIMED_WAITING
05.11 21:25:11 [Server] ERROR Stack:
05.11 21:25:11 [Server] ERROR [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:401)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:903)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1069)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.runWith(Thread.java:1596)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.run(Thread.java:1583)
05.11 21:25:11 [Server] ERROR ------------------------------
05.11 21:25:11 [Server] ERROR Current Thread: Craft Scheduler Thread - 20
05.11 21:25:11 [Server] ERROR PID: 274 | Suspended: false | Native: false | State: TIMED_WAITING
05.11 21:25:11 [Server] ERROR Stack:
05.11 21:25:11 [Server] ERROR [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:401)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:903)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1069)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.runWith(Thread.java:1596)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.run(Thread.java:1583)
05.11 21:25:11 [Server] ERROR ------------------------------
05.11 21:25:11 [Server] ERROR Current Thread: lumine-scheduler-1
05.11 21:25:11 [Server] ERROR PID: 263 | Suspended: false | Native: false | State: TIMED_WAITING
05.11 21:25:11 [Server] ERROR Stack:
05.11 21:25:11 [Server] ERROR [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:401)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:903)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1069)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.runWith(Thread.java:1596)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.run(Thread.java:1583)
05.11 21:25:11 [Server] ERROR ------------------------------
05.11 21:25:11 [Server] ERROR Current Thread: Craft Scheduler Thread - 21
05.11 21:25:11 [Server] ERROR PID: 276 | Suspended: false | Native: false | State: TIMED_WAITING
05.11 21:25:11 [Server] ERROR Stack:
05.11 21:25:11 [Server] ERROR [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:401)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:903)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1069)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.runWith(Thread.java:1596)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.run(Thread.java:1583)
05.11 21:25:11 [Server] ERROR ------------------------------
05.11 21:25:11 [Server] ERROR Current Thread: WorldGuard Region Chunk Table - survival_world
05.11 21:25:11 [Server] ERROR PID: 285 | Suspended: false | Native: false | State: TIMED_WAITING
05.11 21:25:11 [Server] ERROR Stack:
05.11 21:25:11 [Server] ERROR [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1758)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.LinkedBlockingDeque.pollFirst(LinkedBlockingDeque.java:515)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.LinkedBlockingDeque.poll(LinkedBlockingDeque.java:677)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1069)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.runWith(Thread.java:1596)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.run(Thread.java:1583)
05.11 21:25:11 [Server] ERROR ------------------------------
05.11 21:25:11 [Server] ERROR Current Thread: WorldGuard Region Chunk Table - world_nether
05.11 21:25:11 [Server] ERROR PID: 286 | Suspended: false | Native: false | State: TIMED_WAITING
05.11 21:25:11 [Server] ERROR Stack:
05.11 21:25:11 [Server] ERROR [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1758)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.LinkedBlockingDeque.pollFirst(LinkedBlockingDeque.java:515)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.LinkedBlockingDeque.poll(LinkedBlockingDeque.java:677)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1069)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.runWith(Thread.java:1596)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.run(Thread.java:1583)
05.11 21:25:11 [Server] ERROR ------------------------------
05.11 21:25:11 [Server] ERROR Current Thread: bStats-Metrics
05.11 21:25:11 [Server] ERROR PID: 287 | Suspended: false | Native: false | State: TIMED_WAITING
05.11 21:25:11 [Server] ERROR Stack:
05.11 21:25:11 [Server] ERROR [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1758)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.runWith(Thread.java:1596)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.run(Thread.java:1583)
05.11 21:25:11 [Server] ERROR ------------------------------
05.11 21:25:11 [Server] ERROR Current Thread: bStats-Metrics
05.11 21:25:11 [Server] ERROR PID: 288 | Suspended: false | Native: false | State: TIMED_WAITING
05.11 21:25:11 [Server] ERROR Stack:
05.11 21:25:11 [Server] ERROR [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1758)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.runWith(Thread.java:1596)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.run(Thread.java:1583)
05.11 21:25:11 [Server] ERROR ------------------------------
05.11 21:25:11 [Server] ERROR Current Thread: HttpClient-7-SelectorManager
05.11 21:25:11 [Server] ERROR PID: 289 | Suspended: false | Native: true | State: RUNNABLE
05.11 21:25:11 [Server] ERROR Thread is waiting on monitor(s):
05.11 21:25:11 [Server] ERROR Locked on:[email protected]/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:130)
05.11 21:25:11 [Server] ERROR Locked on:[email protected]/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:130)
05.11 21:25:11 [Server] ERROR Stack:
05.11 21:25:11 [Server] ERROR [email protected]/sun.nio.ch.EPoll.wait(Native Method)
05.11 21:25:11 [Server] ERROR [email protected]/sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:121)
05.11 21:25:11 [Server] ERROR [email protected]/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:130)
05.11 21:25:11 [Server] ERROR [email protected]/sun.nio.ch.SelectorImpl.select(SelectorImpl.java:142)
05.11 21:25:11 [Server] ERROR platform/[email protected]/jdk.internal.net.http.HttpClientImpl$SelectorManager.run(HttpClientImpl.java:1366)
05.11 21:25:11 [Server] ERROR ------------------------------
05.11 21:25:11 [Server] ERROR Current Thread: EldoUtilititesUpdateChecker
05.11 21:25:11 [Server] ERROR PID: 290 | Suspended: false | Native: false | State: TIMED_WAITING
05.11 21:25:11 [Server] ERROR Stack:
05.11 21:25:11 [Server] ERROR [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1758)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.runWith(Thread.java:1596)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.run(Thread.java:1583)
05.11 21:25:11 [Server] ERROR ------------------------------
05.11 21:25:11 [Server] ERROR Current Thread: HttpClient-7-Worker-0
05.11 21:25:11 [Server] ERROR PID: 291 | Suspended: false | Native: false | State: TIMED_WAITING
05.11 21:25:11 [Server] ERROR Stack:
05.11 21:25:11 [Server] ERROR [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:401)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:903)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1069)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.runWith(Thread.java:1596)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.run(Thread.java:1583)
05.11 21:25:11 [Server] ERROR ------------------------------
05.11 21:25:11 [Server] ERROR Current Thread: HttpClient-7-Worker-1
05.11 21:25:11 [Server] INFO Disabling spark v1.10.34
05.11 21:25:11 [Server] ERROR PID: 292 | Suspended: false | Native: false | State: TIMED_WAITING
05.11 21:25:11 [Server] ERROR Stack:
05.11 21:25:11 [Server] ERROR [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:401)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:903)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1069)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.runWith(Thread.java:1596)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.run(Thread.java:1583)
05.11 21:25:11 [Server] ERROR ------------------------------
05.11 21:25:11 [Server] ERROR Current Thread: HttpClient-8-SelectorManager
05.11 21:25:11 [Server] ERROR PID: 293 | Suspended: false | Native: true | State: RUNNABLE
05.11 21:25:11 [Server] ERROR Thread is waiting on monitor(s):
05.11 21:25:11 [Server] ERROR Locked on:[email protected]/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:130)
05.11 21:25:11 [Server] ERROR Locked on:[email protected]/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:130)
05.11 21:25:11 [Server] ERROR Stack:
05.11 21:25:11 [Server] ERROR [email protected]/sun.nio.ch.EPoll.wait(Native Method)
05.11 21:25:11 [Server] ERROR [email protected]/sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:121)
05.11 21:25:11 [Server] ERROR [email protected]/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:130)
05.11 21:25:11 [Server] ERROR [email protected]/sun.nio.ch.SelectorImpl.select(SelectorImpl.java:142)
05.11 21:25:11 [Server] ERROR platform/[email protected]/jdk.internal.net.http.HttpClientImpl$SelectorManager.run(HttpClientImpl.java:1366)
05.11 21:25:11 [Server] ERROR ------------------------------
05.11 21:25:11 [Server] ERROR Current Thread: EldoUtilititesUpdateChecker
05.11 21:25:11 [Server] ERROR PID: 294 | Suspended: false | Native: false | State: TIMED_WAITING
05.11 21:25:11 [Server] ERROR Stack:
05.11 21:25:11 [Server] ERROR [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1758)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.runWith(Thread.java:1596)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.run(Thread.java:1583)
05.11 21:25:11 [Server] ERROR ------------------------------
05.11 21:25:11 [Server] ERROR Current Thread: bStats-Metrics
05.11 21:25:11 [Server] ERROR PID: 295 | Suspended: false | Native: false | State: TIMED_WAITING
05.11 21:25:11 [Server] ERROR Stack:
05.11 21:25:11 [Server] ERROR [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1758)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.runWith(Thread.java:1596)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.run(Thread.java:1583)
05.11 21:25:11 [Server] ERROR ------------------------------
05.11 21:25:11 [Server] ERROR Current Thread: HttpClient-8-Worker-0
05.11 21:25:11 [Server] ERROR PID: 296 | Suspended: false | Native: false | State: TIMED_WAITING
05.11 21:25:11 [Server] ERROR Stack:
05.11 21:25:11 [Server] ERROR [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:401)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:903)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1069)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.runWith(Thread.java:1596)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.run(Thread.java:1583)
05.11 21:25:11 [Server] ERROR ------------------------------
05.11 21:25:11 [Server] ERROR Current Thread: HttpClient-8-Worker-1
05.11 21:25:11 [Server] ERROR PID: 297 | Suspended: false | Native: false | State: TIMED_WAITING
05.11 21:25:11 [Server] ERROR Stack:
05.11 21:25:11 [Server] ERROR [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:401)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:903)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1069)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.runWith(Thread.java:1596)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.run(Thread.java:1583)
05.11 21:25:11 [Server] ERROR ------------------------------
05.11 21:25:11 [Server] ERROR Current Thread: pool-129-thread-1
05.11 21:25:11 [Server] ERROR PID: 298 | Suspended: false | Native: false | State: TIMED_WAITING
05.11 21:25:11 [Server] ERROR Stack:
05.11 21:25:11 [Server] ERROR [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1758)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.runWith(Thread.java:1596)
05.11 21:25:11 [Server] ERROR [email protected]/java.lang.Thread.run(Thread.java:1583)
05.11 21:25:11 [Server] ERROR ------------------------------
05.11 21:25:11 [Server] ERROR Current Thread: ForkJoinPool.commonPool-worker-5
05.11 21:25:11 [Server] ERROR PID: 299 | Suspended: false | Native: false | State: WAITING
05.11 21:25:11 [Server] ERROR Stack:
05.11 21:25:11 [Server] ERROR [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1893)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1809)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188)
05.11 21:25:11 [Server] ERROR ------------------------------
05.11 21:25:11 [Server] ERROR Current Thread: ForkJoinPool.commonPool-worker-6
05.11 21:25:11 [Server] ERROR PID: 300 | Suspended: false | Native: false | State: TIMED_WAITING
05.11 21:25:11 [Server] ERROR Stack:
05.11 21:25:11 [Server] ERROR [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.locks.LockSupport.parkUntil(LockSupport.java:449)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1891)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1809)
05.11 21:25:11 [Server] ERROR [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188)
05.11 21:25:11 [Server] ERROR ------------------------------
05.11 21:25:11 [Server] INFO Disabling TNTRun v2.4.5-SNAPSHOT
05.11 21:25:11 [Server] INFO Disabling TAB v4.0.7
05.11 21:25:11 [Server] INFO Disabled in 1ms
05.11 21:25:11 [Server] INFO Disabling GPFlags v5.12.9
05.11 21:25:11 [Server] INFO Disabling ColoredSigns v6.2.1.212
05.11 21:25:11 [Server] INFO &cColored Signs is now disabled!
05.11 21:25:11 [Server] INFO Disabling GWarp v[2.13.0.2]
05.11 21:25:11 [Server] INFO The Plugin was successfully disabled.
05.11 21:25:11 [Server] INFO Disabling GSlotMachine v3.1.1
05.11 21:25:11 [Server] INFO Disabling WorldEditSelectionVisualizer v2.1.5
05.11 21:25:11 [Server] INFO Disabling BedWars v0.2.30
05.11 21:25:11 [Server] INFO Disabling Multiverse-NetherPortals v4.2.3
05.11 21:25:11 [Server] INFO - Disabled
05.11 21:25:11 [Server] INFO Disabling ItemsAdder v3.6.2-beta-r2
05.11 21:25:11 [Server] INFO [Host] Stopped self-host webserver on port: 3645
05.11 21:25:11 [Server] INFO Disabling BigDoors vAlpha 0.1.8.48 (b1151)
05.11 21:25:11 [Server] INFO Disabling NashornJs v1.1.3
05.11 21:25:11 [Server] INFO Disabling NoteBlockAPI v1.6.2
05.11 21:25:11 [Server] INFO Disabling squaremap v1.2.1
05.11 21:25:11 [Server] INFO stopping server: Undertow - 2.3.8.Final
05.11 21:25:11 [Server] INFO Internal webserver stopped
05.11 21:25:11 [Server] INFO Disabling ChestSort v13.6.4
05.11 21:25:11 [Server] INFO Disabling DecentHolograms v2.8.4
05.11 21:25:11 [Server] INFO Disabling SchematicBrushReborn v2.5.3
05.11 21:25:11 [Server] INFO Storage grid shutdown.
05.11 21:25:11 [Server] INFO Entry grid unregistered at Schematic Registry
05.11 21:25:11 [Server] INFO Storage storage shutdown.
05.11 21:25:11 [Server] INFO Entry storage unregistered at Schematic Registry
05.11 21:25:11 [Server] INFO Storage yaml shutdown.
05.11 21:25:11 [Server] INFO Entry yaml unregistered at Storage Registry
05.11 21:25:11 [Server] INFO Disabling GCore v8.48.0
05.11 21:25:11 [Server] INFO Disabled integration for PlaceholderAPI
05.11 21:25:11 [Server] INFO Disabled integration for MythicMobs
05.11 21:25:11 [Server] INFO Disabled integration for Citizens
05.11 21:25:11 [Server] INFO Disabling Multiverse-Portals v4.2.3
05.11 21:25:11 [Server] INFO Disabling LoneLibs v1.0.27
05.11 21:25:11 [Server] INFO Disabling TownyChat v0.109
05.11 21:25:11 [Server] INFO Disabling Factions v1.6.9.5-4.1.3-STABLE
05.11 21:25:11 [Server] INFO ===== Shutdown Start =====
05.11 21:25:11 [Server] INFO Shutdown Successful!
05.11 21:25:11 [Server] INFO Disabling GriefPrevention v16.18.1
05.11 21:25:11 [Server] INFO GriefPrevention disabled.
05.11 21:25:11 [Server] INFO Disabling MythicMobs v5.4.1-${CI_COMMIT_SHORT_SHA}
05.11 21:25:11 [Server] INFO ------------------------------------------------------------
05.11 21:25:11 [Server] INFO -
05.11 21:25:11 [Server] INFO - Unloading Mythic...
05.11 21:25:11 [Server] INFO -
05.11 21:25:11 [Server] INFO ------------------------------------------------------------
05.11 21:25:11 [Server] INFO - Spawners saved and unloaded...
05.11 21:25:11 [Server] INFO - Mobs saved and unloaded...
05.11 21:25:11 [Server] INFO - Variables saved...
05.11 21:25:11 [Server] INFO - All active settings have been saved!
05.11 21:25:11 [Server] INFO - Mythic has been unloaded!
05.11 21:25:11 [Server] INFO ------------------------------------------------------------
05.11 21:25:11 [Server] INFO Disabling mcMMO v2.1.224
05.11 21:25:11 [Server] INFO Server shutdown has been executed, saving and cleaning up data...
05.11 21:25:11 [Server] INFO Disabling LWC v2.3.1
05.11 21:25:11 [Server] INFO Flushing protection updates (0)
05.11 21:25:11 [Server] INFO Disabling EssentialsChat v2.21.0-dev+17-79449ef
05.11 21:25:11 [Server] INFO Disabling Multiverse-Core v4.3.12
05.11 21:25:11 [Server] INFO Disabling Towny v0.99.6.0
05.11 21:25:11 [Server] INFO ==============================================================
05.11 21:25:11 [Server] INFO Finishing File IO Tasks...
05.11 21:25:11 [Server] INFO Finishing Universe Tasks...
05.11 21:25:11 [Server] INFO Version: 0.99.6.0 - Plugin Disabled
05.11 21:25:11 [Server] INFO =============================================================
05.11 21:25:11 [Server] INFO Disabling IridiumSkyblock v4.0.7
05.11 21:25:11 [Server] INFO -------------------------------
05.11 21:25:11 [Server] INFO IridiumSkyblock Disabled!
05.11 21:25:11 [Server] INFO -------------------------------
05.11 21:25:11 [Server] INFO Disabling Citizens v2.0.33-SNAPSHOT (build 3219)
05.11 21:25:11 [Server] INFO Disabling WorldGuard v7.0.9+5934e49
05.11 21:25:11 [Server] INFO Shutting down executor and cancelling any pending tasks...
05.11 21:25:11 [Server] INFO Disabling ProtocolLib v5.1.1-SNAPSHOT-673
05.11 21:25:11 [Server] INFO Disabling FastAsyncWorldEdit v2.8.2-SNAPSHOT-581;186d24b
05.11 21:25:11 [Server] INFO Unregistering com.sk89q.worldedit.bukkit.BukkitServerInterface from WorldEdit
05.11 21:25:11 [Server] INFO Disabling EnchantsSquared v2.5.7
05.11 21:25:11 [Server] INFO Disabling Essentials v2.21.0-dev+17-79449ef
05.11 21:25:11 [Server] INFO Disabling DeluxeHub v3.5.5
05.11 21:25:11 [Server] INFO Disabling Vault v1.7.3-b131
05.11 21:25:11 [Server] INFO Disabling PlaceholderAPI v2.11.5
05.11 21:25:11 [Server] INFO Disabling LuckPerms v5.4.104
05.11 21:25:11 [Server] INFO Starting shutdown process...
05.11 21:25:11 [Server] INFO Closing storage...
05.11 21:25:11 [Server] INFO Goodbye!
05.11 21:25:11 [Server] INFO Saving players
05.11 21:25:11 [Server] INFO Saving worlds
05.11 21:25:11 [Server] INFO Saving chunks for level 'ServerLevel[lobby]'/minecraft:overworld
05.11 21:25:11 [Server] INFO Waiting 60s for chunk system to halt for world 'lobby'
05.11 21:25:11 [Server] INFO Halted chunk system for world 'lobby'
05.11 21:25:11 [Server] INFO Saving all chunkholders for world 'lobby'
05.11 21:25:11 [Server] INFO Saved 0 block chunks, 14 entity chunks, 0 poi chunks in world 'lobby' in 0.01s
05.11 21:25:11 [Server] INFO ThreadedAnvilChunkStorage (lobby): All chunks are saved
05.11 21:25:11 [Server] INFO Saving chunks for level 'ServerLevel[lobby_nether]'/minecraft:the_nether
05.11 21:25:11 [Server] INFO Waiting 60s for chunk system to halt for world 'lobby_nether'
05.11 21:25:11 [Server] INFO Halted chunk system for world 'lobby_nether'
05.11 21:25:11 [Server] INFO Saving all chunkholders for world 'lobby_nether'
05.11 21:25:11 [Server] INFO Saved 0 block chunks, 20 entity chunks, 0 poi chunks in world 'lobby_nether' in 0.02s
05.11 21:25:11 [Server] INFO ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
05.11 21:25:11 [Server] INFO Saving chunks for level 'ServerLevel[lobby_the_end]'/minecraft:the_end
05.11 21:25:11 [Server] INFO Waiting 60s for chunk system to halt for world 'lobby_the_end'
05.11 21:25:11 [Server] INFO Halted chunk system for world 'lobby_the_end'
05.11 21:25:11 [Server] INFO Saving all chunkholders for world 'lobby_the_end'
05.11 21:25:11 [Server] INFO Saved 0 block chunks, 10 entity chunks, 0 poi chunks in world 'lobby_the_end' in 0.00s
05.11 21:25:11 [Server] INFO ThreadedAnvilChunkStorage (DIM1): All chunks are saved
05.11 21:25:11 [Server] INFO Saving chunks for level 'ServerLevel[IridiumSkyblock]'/minecraft:iridiumskyblock
05.11 21:25:11 [Server] INFO Waiting 60s for chunk system to halt for world 'IridiumSkyblock'
05.11 21:25:11 [Server] INFO Halted chunk system for world 'IridiumSkyblock'
05.11 21:25:11 [Server] INFO Saving all chunkholders for world 'IridiumSkyblock'
05.11 21:25:11 [Server] INFO Saved 0 block chunks, 0 entity chunks, 0 poi chunks in world 'IridiumSkyblock' in 0.00s
05.11 21:25:11 [Server] INFO ThreadedAnvilChunkStorage (IridiumSkyblock): All chunks are saved
05.11 21:25:11 [Server] INFO Saving chunks for level 'ServerLevel[IridiumSkyblock_nether]'/minecraft:iridiumskyblock_nether
05.11 21:25:11 [Server] INFO Waiting 60s for chunk system to halt for world 'IridiumSkyblock_nether'
05.11 21:25:11 [Server] INFO Halted chunk system for world 'IridiumSkyblock_nether'
05.11 21:25:11 [Server] INFO Saving all chunkholders for world 'IridiumSkyblock_nether'
05.11 21:25:11 [Server] INFO Saved 0 block chunks, 0 entity chunks, 0 poi chunks in world 'IridiumSkyblock_nether' in 0.00s
05.11 21:25:11 [Server] INFO ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
05.11 21:25:11 [Server] INFO Saving chunks for level 'ServerLevel[IridiumSkyblock_the_end]'/minecraft:iridiumskyblock_the_end
05.11 21:25:11 [Server] INFO Waiting 60s for chunk system to halt for world 'IridiumSkyblock_the_end'
05.11 21:25:11 [Server] INFO Halted chunk system for world 'IridiumSkyblock_the_end'
05.11 21:25:11 [Server] INFO Saving all chunkholders for world 'IridiumSkyblock_the_end'
05.11 21:25:11 [Server] INFO Saved 0 block chunks, 0 entity chunks, 0 poi chunks in world 'IridiumSkyblock_the_end' in 0.00s
05.11 21:25:11 [Server] INFO ThreadedAnvilChunkStorage (DIM1): All chunks are saved
05.11 21:25:11 [Server] INFO Saving chunks for level 'ServerLevel[survival_world_end]'/minecraft:survival_world_end
05.11 21:25:11 [Server] INFO Waiting 60s for chunk system to halt for world 'survival_world_end'
05.11 21:25:11 [Server] INFO Halted chunk system for world 'survival_world_end'
05.11 21:25:11 [Server] INFO Saving all chunkholders for world 'survival_world_end'
05.11 21:25:11 [Server] INFO Saved 0 block chunks, 10 entity chunks, 0 poi chunks in world 'survival_world_end' in 0.00s
05.11 21:25:11 [Server] INFO ThreadedAnvilChunkStorage (DIM1): All chunks are saved
05.11 21:25:11 [Server] INFO Saving chunks for level 'ServerLevel[survival_world_nether]'/minecraft:survival_world_nether
05.11 21:25:11 [Server] INFO Waiting 60s for chunk system to halt for world 'survival_world_nether'
05.11 21:25:11 [Server] INFO Halted chunk system for world 'survival_world_nether'
05.11 21:25:11 [Server] INFO Saving all chunkholders for world 'survival_world_nether'
05.11 21:25:11 [Server] INFO Saved 0 block chunks, 15 entity chunks, 0 poi chunks in world 'survival_world_nether' in 0.01s
05.11 21:25:11 [Server] INFO ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
05.11 21:25:11 [Server] INFO Saving chunks for level 'ServerLevel[lobby_test]'/minecraft:lobby_test
05.11 21:25:11 [Server] INFO Waiting 60s for chunk system to halt for world 'lobby_test'
05.11 21:25:11 [Server] INFO Halted chunk system for world 'lobby_test'
05.11 21:25:11 [Server] INFO Saving all chunkholders for world 'lobby_test'
05.11 21:25:11 [Server] INFO Saved 0 block chunks, 46 entity chunks, 0 poi chunks in world 'lobby_test' in 0.02s
05.11 21:25:11 [Server] INFO ThreadedAnvilChunkStorage (lobby_test): All chunks are saved
05.11 21:25:11 [Server] INFO Saving chunks for level 'ServerLevel[world_the_end]'/minecraft:world_the_end
05.11 21:25:11 [Server] INFO Waiting 60s for chunk system to halt for world 'world_the_end'
05.11 21:25:11 [Server] INFO Halted chunk system for world 'world_the_end'
05.11 21:25:11 [Server] INFO Saving all chunkholders for world 'world_the_end'
05.11 21:25:11 [Server] INFO Saved 0 block chunks, 10 entity chunks, 0 poi chunks in world 'world_the_end' in 0.00s
05.11 21:25:11 [Server] INFO ThreadedAnvilChunkStorage (DIM1): All chunks are saved
05.11 21:25:11 [Server] INFO Saving chunks for level 'ServerLevel[world]'/minecraft:world
05.11 21:25:11 [Server] INFO Waiting 60s for chunk system to halt for world 'world'
05.11 21:25:11 [Server] INFO Halted chunk system for world 'world'
05.11 21:25:11 [Server] INFO Saving all chunkholders for world 'world'
05.11 21:25:11 [Server] INFO Saved 0 block chunks, 9 entity chunks, 0 poi chunks in world 'world' in 0.01s
05.11 21:25:11 [Server] INFO ThreadedAnvilChunkStorage (world): All chunks are saved
05.11 21:25:11 [Server] INFO Saving chunks for level 'ServerLevel[survival_world]'/minecraft:survival_world
05.11 21:25:11 [Server] INFO Waiting 60s for chunk system to halt for world 'survival_world'
05.11 21:25:11 [Server] INFO Halted chunk system for world 'survival_world'
05.11 21:25:11 [Server] INFO Saving all chunkholders for world 'survival_world'
05.11 21:25:11 [Server] INFO Saved 0 block chunks, 2 entity chunks, 0 poi chunks in world 'survival_world' in 0.00s
05.11 21:25:11 [Server] INFO ThreadedAnvilChunkStorage (survival_world): All chunks are saved
05.11 21:25:11 [Server] INFO Saving chunks for level 'ServerLevel[world_nether]'/minecraft:world_nether
05.11 21:25:11 [Server] INFO Waiting 60s for chunk system to halt for world 'world_nether'
05.11 21:25:11 [Server] INFO Halted chunk system for world 'world_nether'
05.11 21:25:11 [Server] INFO Saving all chunkholders for world 'world_nether'
05.11 21:25:11 [Server] INFO Saved 0 block chunks, 0 entity chunks, 0 poi chunks in world 'world_nether' in 0.00s
05.11 21:25:11 [Server] INFO ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
05.11 21:25:11 [Server] INFO ThreadedAnvilChunkStorage: All dimensions are saved
05.11 21:25:11 [Server] INFO Flushing Chunk IO
05.11 21:25:11 [Server] INFO Closing Thread Pool
05.11 21:25:11 [Server] INFO 2023-11-05 21:25:11,680 Log4j2-AsyncAppenderEventDispatcher-1-Async WARN Advanced terminal features are not available in this environment
05.11 21:25:11 [Server] INFO Closing Server
05.11 21:25:13 [Server] INFO [05-11-2023 21:25:13][AP][INFO] Server was stopped.
05.11 21:25:13 [Server] INFO [05-11-2023 21:25:13][AP][INFO] To stop AutoPlug too, enter '.stop both'.
05.11 21:25:49 [Multicraft] Received stop command
05.11 21:25:51 [Multicraft] Auto-saving world...
05.11 21:25:51 [Server] INFO [05-11-2023 21:25:51][AP][WARN] Failed to submit command 'save-on' because server is not running!
05.11 21:25:51 [Server] INFO [05-11-2023 21:25:51][AP][WARN] Failed to submit command 'save-all' because server is not running!
05.11 21:25:53 [Multicraft] Received stop command
05.11 21:25:53 [Multicraft] Terminating server via signal
05.11 21:25:53 [Server] INFO [05-11-2023 21:25:53][AP][INFO] See you soon!
05.11 21:25:54 [Multicraft] Server shut down (terminating)
05.11 21:25:54 [Multicraft] Looks like a crash, check the server console. Return value: 143
05.11 21:25:54 [Multicraft] Server stopped
05.11 21:25:58 [Multicraft] Received stop command
05.11 21:25:58 [Multicraft] Server stopped
05.11 21:26:04 [Multicraft] Received stop command
05.11 21:26:04 [Multicraft] Server stopped
05.11 21:26:12 [Multicraft] Received start command
05.11 21:26:12 [Multicraft] Loading server properties
05.11 21:26:12 [Multicraft] Starting server!
05.11 21:26:12 [Multicraft] Loaded config for "AUTO UPDATING: Paper Latest (Java 17 - Current: 1.20.2 #279)"
05.11 21:26:15 [Multicraft] JAR file not found, copying from global JAR directory
05.11 21:26:16 [Multicraft] Updating eula.txt file
05.11 21:26:18 [Server] INFO Starting org.bukkit.craftbukkit.Main
05.11 21:26:19 [Server] INFO System Info: Java 17 (OpenJDK 64-Bit Server VM 17.0.1+12-39) Host: Linux 4.19.0-12-amd64 (amd64)
05.11 21:26:19 [Server] INFO Loading libraries, please wait...
05.11 21:26:19 [Server] INFO 2023-11-05 21:26:19,594 ServerMain WARN Advanced terminal features are not available in this environment
05.11 21:26:27 [Server] INFO Environment: Environment[accountsHost=https://api.mojang.com, sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
05.11 21:26:30 [Server] INFO Loaded 7 recipes
05.11 21:26:30 [Server] INFO Starting minecraft server version 1.20.2
05.11 21:26:30 [Server] INFO Loading properties
05.11 21:26:30 [Server] INFO This server is running Paper version git-Paper-279 (MC: 1.20.2) (Implementing API version 1.20.2-R0.1-SNAPSHOT) (Git: 274e54b)
05.11 21:26:31 [Server] INFO Using 4 threads for Netty based IO
05.11 21:26:31 [Server] INFO Server Ping Player Sample Count: 12
05.11 21:26:31 [Server] WARN The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
05.11 21:26:31 [Server] INFO We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
05.11 21:26:31 [Server] INFO For more information please visit: https://github.com/PaperMC/Paper/issues/8948
05.11 21:26:31 [Server] INFO Chunk system is using 1 I/O threads, 3 worker threads, and gen parallelism of 3 threads
05.11 21:26:32 [Server] INFO Default game type: SURVIVAL
05.11 21:26:32 [Server] INFO Generating keypair
05.11 21:26:32 [Server] INFO Starting Minecraft server on 147.135.70.77:25565
05.11 21:26:32 [Server] INFO Using epoll channel type
05.11 21:26:32 [Server] INFO Paper: Using libdeflate (Linux x86_64) compression from Velocity.
05.11 21:26:32 [Server] INFO Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
05.11 21:26:33 [Server] INFO [SchematicBrushReborn] Loading 3 libraries... please wait
05.11 21:26:33 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.15.2/jackson-dataformat-yaml-2.15.2.jar
05.11 21:26:33 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/com/fasterxml/jackson/core/jackson-databind/2.15.2/jackson-databind-2.15.2.jar
05.11 21:26:33 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/com/fasterxml/jackson/core/jackson-annotations/2.15.2/jackson-annotations-2.15.2.jar
05.11 21:26:33 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/org/yaml/snakeyaml/2.0/snakeyaml-2.0.jar
05.11 21:26:33 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/com/fasterxml/jackson/core/jackson-core/2.15.2/jackson-core-2.15.2.jar
05.11 21:26:33 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-platform-bukkit/4.3.0/adventure-platform-bukkit-4.3.0.jar
05.11 21:26:33 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-platform-api/4.3.0/adventure-platform-api-4.3.0.jar
05.11 21:26:33 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.0/adventure-text-serializer-bungeecord-4.3.0.jar
05.11 21:26:33 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-text-serializer-legacy/4.13.0/adventure-text-serializer-legacy-4.13.0.jar
05.11 21:26:33 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-nbt/4.13.0/adventure-nbt-4.13.0.jar
05.11 21:26:33 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
05.11 21:26:33 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
05.11 21:26:33 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
05.11 21:26:33 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-text-serializer-gson/4.13.0/adventure-text-serializer-gson-4.13.0.jar
05.11 21:26:33 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.0/adventure-text-serializer-gson-legacy-impl-4.13.0.jar
05.11 21:26:33 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-platform-facet/4.3.0/adventure-platform-facet-4.3.0.jar
05.11 21:26:33 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-platform-viaversion/4.3.0/adventure-platform-viaversion-4.3.0.jar
05.11 21:26:33 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-text-minimessage/4.14.0/adventure-text-minimessage-4.14.0.jar
05.11 21:26:33 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
05.11 21:26:33 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
05.11 21:26:33 [Server] INFO [BigDoors] Loading 1 libraries... please wait
05.11 21:26:33 [Server] INFO [BigDoors] Loaded library /libraries/net/bytebuddy/byte-buddy/1.14.8/byte-buddy-1.14.8.jar
05.11 21:26:33 [Server] WARN Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
05.11 21:26:39 [Server] INFO [TradingCards] Loading 15 libraries... please wait
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/net/lingala/zip4j/zip4j/2.11.5/zip4j-2.11.5.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/org/flywaydb/flyway-mysql/9.19.4/flyway-mysql-9.19.4.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/org/flywaydb/flyway-core/9.19.4/flyway-core-9.19.4.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/org/spongepowered/configurate-yaml/4.1.2/configurate-yaml-4.1.2.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/org/spongepowered/configurate-core/4.1.2/configurate-core-4.1.2.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/io/leangen/geantyref/geantyref/1.3.11/geantyref-1.3.11.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/com/google/errorprone/error_prone_annotations/2.6.0/error_prone_annotations-2.6.0.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/org/yaml/snakeyaml/1.28/snakeyaml-1.28.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/adventure-platform-bukkit/4.3.0/adventure-platform-bukkit-4.3.0.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/adventure-platform-api/4.3.0/adventure-platform-api-4.3.0.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.0/adventure-text-serializer-bungeecord-4.3.0.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/adventure-text-serializer-legacy/4.13.0/adventure-text-serializer-legacy-4.13.0.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/adventure-nbt/4.13.0/adventure-nbt-4.13.0.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/adventure-text-serializer-gson/4.13.0/adventure-text-serializer-gson-4.13.0.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.0/adventure-text-serializer-gson-legacy-impl-4.13.0.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/adventure-platform-facet/4.3.0/adventure-platform-facet-4.3.0.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/adventure-platform-viaversion/4.3.0/adventure-platform-viaversion-4.3.0.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/org/jooq/jooq/3.18.4/jooq-3.18.4.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/io/r2dbc/r2dbc-spi/1.0.0.RELEASE/r2dbc-spi-1.0.0.RELEASE.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/org/jooq/jooq-codegen/3.18.4/jooq-codegen-3.18.4.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/org/jooq/jooq-meta/3.18.4/jooq-meta-3.18.4.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/jakarta/xml/bind/jakarta.xml.bind-api/3.0.0/jakarta.xml.bind-api-3.0.0.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/com/sun/activation/jakarta.activation/2.0.0/jakarta.activation-2.0.0.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/org/apache/commons/commons-rng-client-api/1.5/commons-rng-client-api-1.5.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/org/apache/commons/commons-rng-core/1.5/commons-rng-core-1.5.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/org/apache/commons/commons-rng-sampling/1.5/commons-rng-sampling-1.5.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/org/apache/commons/commons-rng-simple/1.5/commons-rng-simple-1.5.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/com/github/ben-manes/caffeine/caffeine/3.1.6/caffeine-3.1.6.jar
05.11 21:26:39 [Server] INFO [TradingCards] Loaded library /libraries/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.jar
05.11 21:26:39 [Server] WARN Legacy plugin RankVouchers v3.0 does not specify an api-version.
05.11 21:26:39 [Server] INFO [FacilisCommon] Loading 4 libraries... please wait
05.11 21:26:39 [Server] INFO [FacilisCommon] Loaded library /libraries/net/kyori/adventure-api/4.13.0/adventure-api-4.13.0.jar
05.11 21:26:39 [Server] INFO [FacilisCommon] Loaded library /libraries/net/kyori/adventure-key/4.13.0/adventure-key-4.13.0.jar
05.11 21:26:39 [Server] INFO [FacilisCommon] Loaded library /libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
05.11 21:26:39 [Server] INFO [FacilisCommon] Loaded library /libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
05.11 21:26:39 [Server] INFO [FacilisCommon] Loaded library /libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
05.11 21:26:39 [Server] INFO [FacilisCommon] Loaded library /libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
05.11 21:26:39 [Server] INFO [FacilisCommon] Loaded library /libraries/commons-io/commons-io/2.10.0/commons-io-2.10.0.jar
05.11 21:26:39 [Server] INFO [FacilisCommon] Loaded library /libraries/org/apache/maven/maven-artifact/3.6.0/maven-artifact-3.6.0.jar
05.11 21:26:39 [Server] INFO [FacilisCommon] Loaded library /libraries/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.jar
05.11 21:26:39 [Server] WARN Legacy plugin Invsee v1.0.0 does not specify an api-version.
05.11 21:26:39 [Server] INFO [Iris] Loading 11 libraries... please wait
05.11 21:26:39 [Server] INFO [Iris] Loaded library /libraries/com/googlecode/concurrentlinkedhashmap/concurrentlinkedhashmap-lru/1.4.2/concurrentlinkedhashmap-lru-1.4.2.jar
05.11 21:26:39 [Server] INFO [Iris] Loaded library /libraries/com/github/ben-manes/caffeine/caffeine/3.0.5/caffeine-3.0.5.jar
05.11 21:26:39 [Server] INFO [Iris] Loaded library /libraries/org/checkerframework/checker-qual/3.19.0/checker-qual-3.19.0.jar
05.11 21:26:39 [Server] INFO [Iris] Loaded library /libraries/com/google/errorprone/error_prone_annotations/2.10.0/error_prone_annotations-2.10.0.jar
05.11 21:26:39 [Server] INFO [Iris] Loaded library /libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
05.11 21:26:39 [Server] INFO [Iris] Loaded library /libraries/io/timeandspace/smoothie-map/2.0.2/smoothie-map-2.0.2.jar
05.11 21:26:39 [Server] INFO [Iris] Loaded library /libraries/io/timeandspace/jpsg-core/1.4/jpsg-core-1.4.jar
05.11 21:26:39 [Server] INFO [Iris] Loaded library /libraries/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.jar
05.11 21:26:39 [Server] INFO [Iris] Loaded library /libraries/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar
05.11 21:26:39 [Server] INFO [Iris] Loaded library /libraries/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar
05.11 21:26:39 [Server] INFO [Iris] Loaded library /libraries/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar
05.11 21:26:39 [Server] INFO [Iris] Loaded library /libraries/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar
05.11 21:26:39 [Server] INFO [Iris] Loaded library /libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
05.11 21:26:39 [Server] INFO [Iris] Loaded library /libraries/org/zeroturnaround/zt-zip/1.14/zt-zip-1.14.jar
05.11 21:26:39 [Server] INFO [Iris] Loaded library /libraries/org/slf4j/slf4j-api/1.6.6/slf4j-api-1.6.6.jar
05.11 21:26:39 [Server] INFO [Iris] Loaded library /libraries/it/unimi/dsi/fastutil/8.5.6/fastutil-8.5.6.jar
05.11 21:26:39 [Server] INFO [Iris] Loaded library /libraries/org/ow2/asm/asm/9.2/asm-9.2.jar
05.11 21:26:39 [Server] INFO [Iris] Loaded library /libraries/rhino/js/1.7R2/js-1.7R2.jar
05.11 21:26:39 [Server] INFO [Iris] Loaded library /libraries/bsf/bsf/2.4.0/bsf-2.4.0.jar
05.11 21:26:39 [Server] INFO [Iris] Loaded library /libraries/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar
05.11 21:26:40 [Server] INFO Loading server plugin LuckPerms v5.4.104
05.11 21:26:40 [Server] INFO Loading server plugin PlaceholderAPI v2.11.5
05.11 21:26:40 [Server] INFO Loading server plugin Vault v1.7.3-b131
05.11 21:26:40 [Server] INFO Loading server plugin DeluxeHub v3.5.5
05.11 21:26:40 [Server] INFO Loading server plugin Essentials v2.21.0-dev+17-79449ef
05.11 21:26:40 [Server] INFO Loading server plugin CMILib v1.4.2.3
05.11 21:26:40 [Server] INFO Loading server plugin Jobs v5.2.1.2
05.11 21:26:40 [Server] INFO Loading server plugin EnchantsSquared v2.5.7
05.11 21:26:41 [Server] INFO Loading server plugin FastAsyncWorldEdit v2.8.2-SNAPSHOT-581;186d24b
05.11 21:26:43 [Server] INFO Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@2d08091e]
05.11 21:26:43 [Server] INFO Loading server plugin ProtocolLib v5.1.1-SNAPSHOT-673
05.11 21:26:44 [Server] INFO Loading server plugin WorldGuard v7.0.9+5934e49
05.11 21:26:44 [Server] INFO Loading server plugin Citizens v2.0.33-SNAPSHOT (build 3219)
05.11 21:26:44 [Server] INFO Loading server plugin IridiumSkyblock v4.0.7
05.11 21:26:45 [Server] INFO Loading server plugin Towny v0.99.6.0
05.11 21:26:45 [Server] INFO Loading server plugin Multiverse-Core v4.3.12
05.11 21:26:45 [Server] INFO Loading server plugin EssentialsChat v2.21.0-dev+17-79449ef
05.11 21:26:45 [Server] INFO Loading server plugin LWC v2.3.1
05.11 21:26:45 [Server] INFO Loading server plugin mcMMO v2.1.224
05.11 21:26:45 [Server] INFO [D] Registered WG flags successfully!
05.11 21:26:45 [Server] INFO Loading server plugin MythicMobs v5.4.1-${CI_COMMIT_SHORT_SHA}
05.11 21:26:45 [Server] INFO (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
05.11 21:26:46 [Server] INFO Mythic Enabled!
05.11 21:26:46 [Server] INFO Loading server plugin GriefPrevention v16.18.1
05.11 21:26:46 [Server] INFO Loading server plugin Factions v1.6.9.5-4.1.3-STABLE
05.11 21:26:46 [Server] INFO Loading server plugin TownyChat v0.109
05.11 21:26:46 [Server] INFO Loading server plugin CMI v9.6.5.3
05.11 21:26:46 [Server] INFO Loading server plugin LoneLibs v1.0.27
05.11 21:26:46 [Server] INFO Loading server plugin Multiverse-Portals v4.2.3
05.11 21:26:46 [Server] INFO Loading server plugin GCore v8.48.0
05.11 21:26:46 [Server] INFO Loading server plugin BetterRTP v3.6.11
05.11 21:26:46 [Server] INFO Debug logger initialized. Log Level: INFO
05.11 21:26:46 [Server] INFO Loading server plugin SchematicBrushReborn v2.5.3
05.11 21:26:46 [Server] INFO Registered entry of type yaml with de.eldoria.schematicbrush.storage.YamlStorage at Storage Registry
05.11 21:26:46 [Server] INFO Loading server plugin DecentHolograms v2.8.4
05.11 21:26:46 [Server] INFO Loading server plugin ChestSort v13.6.4
05.11 21:26:46 [Server] INFO Loading server plugin DiscordSRV v1.26.2
05.11 21:26:46 [Server] INFO Loading server plugin JukeboxExtendedReborn v1.2.8
05.11 21:26:46 [Server] INFO Loading server plugin squaremap v1.2.1
05.11 21:26:46 [Server] INFO Loading server plugin NoteBlockAPI v1.6.2
05.11 21:26:46 [Server] INFO Loading server plugin NashornJs v1.1.3
05.11 21:26:46 [Server] INFO Registered Nashorn engine with name nashorn
05.11 21:26:46 [Server] INFO Registered Nashorn engine with name Nashorn
05.11 21:26:46 [Server] INFO Registered Nashorn engine with name js
05.11 21:26:46 [Server] INFO Registered Nashorn engine with name JS
05.11 21:26:46 [Server] INFO Registered Nashorn engine with name JavaScript
05.11 21:26:46 [Server] INFO Registered Nashorn engine with name javascript
05.11 21:26:46 [Server] INFO Registered Nashorn engine with name ECMAScript
05.11 21:26:46 [Server] INFO Registered Nashorn engine with name ecmascript
05.11 21:26:46 [Server] INFO Loading server plugin BigDoors vAlpha 0.1.8.48
05.11 21:26:46 [Server] INFO Loading server plugin ItemsAdder v3.6.2-beta-r2
05.11 21:26:46 [Server] INFO Loading server plugin Multiverse-NetherPortals v4.2.3
05.11 21:26:46 [Server] INFO Loading server plugin BedWars v0.2.30
05.11 21:26:46 [Server] INFO Loading server plugin TradingCards v5.7.19
05.11 21:26:46 [Server] INFO Loading server plugin WorldEditSelectionVisualizer v2.1.5
05.11 21:26:46 [Server] INFO Loading server plugin GSlotMachine v3.1.1
05.11 21:26:46 [Server] INFO Loading server plugin GWarp v[2.13.0.2]
05.11 21:26:46 [Server] INFO Loading server plugin ColoredSigns v6.2.1.212
05.11 21:26:46 [Server] INFO Loading server plugin GPFlags v5.12.9
05.11 21:26:46 [Server] INFO Loading server plugin TAB v4.0.7
05.11 21:26:46 [Server] INFO Loading server plugin TNTRun v2.4.5-SNAPSHOT
05.11 21:26:46 [Server] INFO Loading server plugin spark v1.10.34
05.11 21:26:46 [Server] INFO Loading server plugin NBTAPI v2.11.3
05.11 21:26:46 [Server] INFO [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
05.11 21:26:46 [Server] WARN [NBTAPI] This Server-Version(v1_20_R2) is not supported by this NBT-API Version(2.11.3) located in NBTAPI. The NBT-API will try to work as good as it can! Some functions may not work!
05.11 21:26:46 [Server] INFO [NBTAPI] Found Gson: class com.google.gson.Gson
05.11 21:26:46 [Server] INFO [NBTAPI] Using the plugin 'LuckPerms' to create a bStats instance!
05.11 21:26:46 [Server] INFO Loading server plugin BetterRTPAddons v1.8.8
05.11 21:26:46 [Server] INFO Debug logger initialized. Log Level: INFO
05.11 21:26:46 [Server] INFO Loading server plugin GridSelector v1.3.0
05.11 21:26:46 [Server] INFO Loading server plugin EggWars v6.1.2
05.11 21:26:46 [Server] INFO Loading server plugin YamipaPlugin v1.2.11
05.11 21:26:46 [Server] INFO Loading server plugin AdvancedKeep v2.0.1
05.11 21:26:46 [Server] INFO [Integration] Hooked to WorldGuard
05.11 21:26:46 [Server] INFO Loading server plugin CrateReloaded v2.3.1
05.11 21:26:46 [Server] INFO Loading server plugin Skywars v5.6.22
05.11 21:26:46 [Server] INFO Loading server plugin TerraformGenerator v11.1.1
05.11 21:26:46 [Server] INFO Loading server plugin UltraCosmetics v3.4.1
05.11 21:26:46 [Server] INFO Loading server plugin ZombieApocalypse v1.4.8
05.11 21:26:46 [Server] INFO Loading server plugin JukeLooper v2.5
05.11 21:26:46 [Server] INFO Loading server plugin HeadHunterPlugin v2.0.7
05.11 21:26:46 [Server] INFO Loading server plugin RankVouchers v3.0
05.11 21:26:46 [Server] INFO Loading server plugin GreetingPlugin v2.0-SNAPSHOT
05.11 21:26:46 [Server] INFO Loading server plugin Waypoints v4.2.0
05.11 21:26:46 [Server] WARN [NBTAPI] The NBT-API in 'NBTAPI' seems to be outdated!
05.11 21:26:46 [Server] WARN [NBTAPI] Current Version: '2.11.3' Newest Version: 2.12.1'
05.11 21:26:46 [Server] WARN [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
05.11 21:26:47 [Server] INFO Loading server plugin Multiverse-Inventories v4.2.6
05.11 21:26:47 [Server] INFO Loading server plugin TreeAssist v7.3.49
05.11 21:26:47 [Server] INFO Loading main config file: /config.yml
05.11 21:26:47 [Server] INFO Loading server plugin MusicBox v2.0.13
05.11 21:26:47 [Server] INFO Loading server plugin Guilds v3.5.7.0
05.11 21:26:47 [Server] INFO Loading Libraries...
05.11 21:26:47 [Server] INFO Note: This might take a few minutes on first run. Kindly ensure internet connectivity.
05.11 21:26:48 [Server] INFO Loaded libraries in 0.781 seconds
05.11 21:26:48 [Server] INFO Loading server plugin PlayerParticles v8.4
05.11 21:26:48 [Server] INFO Debug logger initialized. Log Level: INFO
05.11 21:26:48 [Server] INFO Loading server plugin BigDoorsOpener v2.5.2
05.11 21:26:48 [Server] INFO Loading server plugin LPC v3.6.0
05.11 21:26:48 [Server] INFO Loading server plugin DeluxeMenus v1.13.7-Release
05.11 21:26:48 [Server] WARN Could not setup a NMS hook for your server version!
05.11 21:26:48 [Server] INFO Loading server plugin Chunky v1.3.92
05.11 21:26:48 [Server] INFO Loading server plugin Images v2.3.1
05.11 21:26:48 [Server] INFO Loading server plugin FacilisCommon v1.0.2-SNAPSHOT
05.11 21:26:48 [Server] INFO Loading server plugin Invsee v1.0.0
05.11 21:26:48 [Server] INFO Loading server plugin AuctionHouse v3.5.1
05.11 21:26:48 [Server] INFO Loading server plugin Iris v2.8.0-1.20.1
05.11 21:26:48 [Server] INFO Loading server plugin Arcade v1.55
05.11 21:26:48 [Server] INFO Loading server plugin PlugManX v2.3.5
05.11 21:26:48 [Server] INFO Loading server plugin FishRewards v1.2.4
05.11 21:26:48 [Server] INFO Loading server plugin Vanillahungergames v2.4
05.11 21:26:48 [Server] INFO Loading server plugin NotBounties v1.12.1
05.11 21:26:48 [Server] INFO Loading server plugin ImageOnMap v4.2.2
05.11 21:26:48 [Server] INFO Loading server plugin VoxelSniper v8.12.4
05.11 21:26:48 [Server] INFO Loading server plugin UltimateShop v1.7.7
05.11 21:26:48 [Server] INFO Loading server plugin TavernBard v1.2
05.11 21:26:48 [Server] INFO Server permissions file permissions.yml is empty, ignoring it
05.11 21:26:48 [Server] INFO Enabling LuckPerms v5.4.104
05.11 21:26:50 [Server] INFO __
05.11 21:26:50 [Server] INFO |    |__)   LuckPerms v5.4.104
05.11 21:26:50 [Server] INFO |___ |      Running on Bukkit - Paper
05.11 21:26:50 [Server] INFO Loading configuration...
05.11 21:26:51 [Server] INFO Loading storage provider... [H2]
05.11 21:26:52 [Server] INFO Loading internal permission managers...
05.11 21:26:52 [Server] INFO Performing initial data load...
05.11 21:26:53 [Server] INFO Successfully enabled. (took 5557ms)
05.11 21:26:53 [Server] INFO Enabling Vault v1.7.3-b131
05.11 21:26:53 [Server] INFO [Economy] Essentials Economy found: Waiting
05.11 21:26:54 [Server] INFO [Permission] SuperPermissions loaded as backup permission system.
05.11 21:26:54 [Server] INFO Enabled Version 1.7.3-b131
05.11 21:26:54 [Server] INFO Registered Vault permission & chat hook.
05.11 21:26:54 [Server] INFO Enabling FastAsyncWorldEdit v2.8.2-SNAPSHOT-581;186d24b
05.11 21:26:54 [Server] INFO LZ4 Compression Binding loaded successfully
05.11 21:26:54 [Server] INFO ZSTD Compression Binding loaded successfully
05.11 21:26:54 [Server] INFO Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
05.11 21:26:54 [Server] INFO WEPIF: Vault detected! Using Vault for permissions
05.11 21:26:54 [Server] INFO Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_20_R2.PaperweightFaweAdapter as the Bukkit adapter
05.11 21:26:56 [Server] INFO Enabling ProtocolLib v5.1.1-SNAPSHOT-673
05.11 21:26:56 [Server] INFO Enabling LWC v2.3.1
05.11 21:26:56 [Server] INFO Connecting to SQLite
05.11 21:26:57 [Server] WARN An update for FastAsyncWorldEdit is available. You are 24 build(s) out of date.
05.11 21:26:57 [Server] INFO You are running build 581, the latest version is build 605.
05.11 21:26:57 [Server] INFO Update at https://www.spigotmc.org/resources/13932/
05.11 21:26:57 [Server] INFO Enabling MythicMobs v5.4.1-${CI_COMMIT_SHORT_SHA}
05.11 21:26:57 [Server] INFO Loading MythicMobs for Paper (MC: 1.20.2)...
05.11 21:26:57 [Server] INFO The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
05.11 21:26:59 [Server] INFO Mythic GriefPrevention Support has been enabled!
05.11 21:26:59 [Server] INFO Mythic mcMMO Support has been enabled!
05.11 21:26:59 [Server] INFO Successfully registered internal expansion: mythic [5.0.0]
05.11 21:26:59 [Server] INFO Mythic PlaceholderAPI Support has been enabled!
05.11 21:26:59 [Server] INFO Mythic ProtocolLib Support has been enabled!
05.11 21:26:59 [Server] INFO Mythic Vault Support has been enabled!
05.11 21:26:59 [Server] WARN Failed to enable support for WorldGuard. Is it up to date?
05.11 21:26:59 [Server] WARN java.lang.NullPointerException: WorldGuard is not enabled, unable to access the platform.
05.11 21:26:59 [Server] WARN at com.google.common.base.Preconditions.checkNotNull(Preconditions.java:921)
05.11 21:26:59 [Server] WARN at worldguard-bukkit-7.0.9-dist.jar//com.sk89q.worldguard.WorldGuard.getPlatform(WorldGuard.java:101)
05.11 21:26:59 [Server] WARN at MythicMobs-5.4.1.jar//io.lumine.mythic.bukkit.compatibility.WorldGuardSupport$WorldGuardSeven.<init>(WorldGuardSupport.java:72)
05.11 21:26:59 [Server] WARN at MythicMobs-5.4.1.jar//io.lumine.mythic.bukkit.compatibility.WorldGuardSupport.<init>(WorldGuardSupport.java:55)
05.11 21:26:59 [Server] WARN at MythicMobs-5.4.1.jar//io.lumine.mythic.bukkit.compatibility.CompatibilityManager.lambda$new$19(CompatibilityManager.java:66)
05.11 21:26:59 [Server] WARN at MythicMobs-5.4.1.jar//io.lumine.mythic.bukkit.compatibility.CompatibilityManager.registerCompatibility(CompatibilityManager.java:97)
05.11 21:26:59 [Server] WARN at MythicMobs-5.4.1.jar//io.lumine.mythic.bukkit.compatibility.CompatibilityManager.<init>(CompatibilityManager.java:66)
05.11 21:26:59 [Server] WARN at MythicMobs-5.4.1.jar//io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:168)
05.11 21:26:59 [Server] WARN at MythicMobs-5.4.1.jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:80)
05.11 21:26:59 [Server] WARN at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281)
05.11 21:26:59 [Server] WARN at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189)
05.11 21:26:59 [Server] WARN at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
05.11 21:26:59 [Server] WARN at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
05.11 21:26:59 [Server] WARN at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644)
05.11 21:26:59 [Server] WARN at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555)
05.11 21:26:59 [Server] WARN at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:274)
05.11 21:26:59 [Server] WARN at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1086)
05.11 21:26:59 [Server] WARN at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315)
05.11 21:26:59 [Server] WARN at java.base/java.lang.Thread.run(Thread.java:833)
05.11 21:26:59 [Server] INFO Base directory /plugins/MythicMobs/SavedData
05.11 21:26:59 [Server] INFO Module directory /plugins/MythicMobs/SavedData/worlds
05.11 21:27:01 [Server] INFO Loading Packs...
05.11 21:27:01 [Server] INFO Loading Items...
05.11 21:27:01 [Server] INFO Loading Item Groups...
05.11 21:27:01 [Server] INFO Loading Skills...
05.11 21:27:01 [Server] INFO Loading stat ATTACK_DAMAGE from /plugins/MythicMobs/stats.yml
05.11 21:27:01 [Server] INFO Loading stat ATTACK_SPEED from /plugins/MythicMobs/stats.yml
05.11 21:27:01 [Server] INFO Loading stat BONUS_DAMAGE from /plugins/MythicMobs/stats.yml
05.11 21:27:01 [Server] INFO Loading stat CRITICAL_STRIKE_CHANCE from /plugins/MythicMobs/stats.yml
05.11 21:27:01 [Server] INFO Loading stat CRITICAL_STRIKE_DAMAGE from /plugins/MythicMobs/stats.yml
05.11 21:27:01 [Server] INFO Loading stat CRITICAL_STRIKE_RESILIENCE from /plugins/MythicMobs/stats.yml
05.11 21:27:01 [Server] INFO Loading stat DAMAGE_REDUCTION from /plugins/MythicMobs/stats.yml
05.11 21:27:01 [Server] INFO Loading stat DEFENSE from /plugins/MythicMobs/stats.yml
05.11 21:27:01 [Server] INFO Loading stat DODGE_CHANCE from /plugins/MythicMobs/stats.yml
05.11 21:27:01 [Server] INFO Loading stat DODGE_NEGATION from /plugins/MythicMobs/stats.yml
05.11 21:27:01 [Server] INFO Loading stat HEALTH from /plugins/MythicMobs/stats.yml
05.11 21:27:01 [Server] INFO Loading stat HEALTH_REGENERATION from /plugins/MythicMobs/stats.yml
05.11 21:27:01 [Server] INFO Loading stat LIFESTEAL_CHANCE from /plugins/MythicMobs/stats.yml
05.11 21:27:01 [Server] INFO Loading stat LIFESTEAL_POWER from /plugins/MythicMobs/stats.yml
05.11 21:27:01 [Server] INFO Loading stat MOVEMENT_SPEED from /plugins/MythicMobs/stats.yml
05.11 21:27:01 [Server] INFO Loading stat PARRY_CHANCE from /plugins/MythicMobs/stats.yml
05.11 21:27:01 [Server] INFO Loading stat PARRY_NEGATION from /plugins/MythicMobs/stats.yml
05.11 21:27:01 [Server] INFO Loading stat PARRY_POWER from /plugins/MythicMobs/stats.yml
05.11 21:27:01 [Server] INFO Loading stat PARRY_COUNTERATTACK from /plugins/MythicMobs/stats.yml
05.11 21:27:01 [Server] INFO Loading stat ARMOR_GENERIC from /plugins/MythicMobs/stats.yml
05.11 21:27:01 [Server] INFO Loading stat ARMOR_BLUNT from /plugins/MythicMobs/stats.yml
05.11 21:27:01 [Server] INFO Loading stat ARMOR_SHARP from /plugins/MythicMobs/stats.yml
05.11 21:27:01 [Server] INFO Loading stat DAMAGE_BLUNT from /plugins/MythicMobs/stats.yml
05.11 21:27:01 [Server] INFO Loading stat DAMAGE_SHARP from /plugins/MythicMobs/stats.yml
05.11 21:27:01 [Server] INFO Loading stat FIRE_RESISTANCE from /plugins/MythicMobs/stats.yml
05.11 21:27:01 [Server] INFO Loading stat SPEED from /plugins/MythicMobs/stats.yml
05.11 21:27:01 [Server] INFO Loading Drop Tables...
05.11 21:27:01 [Server] INFO Loading Random Spawns...
05.11 21:27:01 [Server] INFO Loading Spawn Blocks...
05.11 21:27:01 [Server] INFO ✓ Loaded 8 mobs.
05.11 21:27:01 [Server] INFO ✓ Loaded 3 vanilla mob overrides.
05.11 21:27:01 [Server] INFO ✓ Loaded 0 mob stacks.
05.11 21:27:01 [Server] INFO ✓ Loaded 3 skills.
05.11 21:27:01 [Server] INFO ✓ Loaded 0 random spawns.
05.11 21:27:01 [Server] INFO ✓ Loaded 3 mythic items.
05.11 21:27:01 [Server] INFO ✓ Loaded 2 drop tables.
05.11 21:27:01 [Server] INFO ✓ Loaded 0 mob spawners.
05.11 21:27:01 [Server] INFO MythicMobs configuration file loaded successfully.
05.11 21:27:01 [Server] INFO Started up bStats Metrics
05.11 21:27:01 [Server] INFO ✓ MythicMobs v5.4.1 ( build ${CI_COMMIT_SHORT_SHA} ) has been successfully loaded!
05.11 21:27:01 [Server] INFO Enabling CMI v9.6.5.3
05.11 21:27:03 [Server] INFO Server version: v1_20_R2 - 1.20.2 - paper
05.11 21:27:03 [Server] ERROR Error occurred while enabling CMI v9.6.5.3 (Is it up to date?)
05.11 21:27:03 [Server] INFO java.lang.ExceptionInInitializerError: null
05.11 21:27:03 [Server] INFO at com.Zrips.CMI.CMI.onEnable(CMI.java:1354) ~[CMI-9.6.5.3.jar:?]
05.11 21:27:03 [Server] INFO at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:27:03 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:03 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:03 [Server] INFO at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:27:03 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:03 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:03 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:274) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:03 [Server] INFO at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:03 [Server] INFO at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:03 [Server] INFO at java.lang.Thread.run(Thread.java:833) ~[?:?]
05.11 21:27:03 [Server] INFO Caused by: java.lang.NullPointerException: Cannot invoke "net.Zrips.CMILib.CMILib.getReflectionManager()" because the return value of "net.Zrips.CMILib.CMILib.getInstance()" is null
05.11 21:27:03 [Server] INFO at net.Zrips.CMILib.Version.Version.<clinit>(Version.java:64) ~[CMILib1.4.2.3.jar:?]
05.11 21:27:03 [Server] INFO ... 11 more
05.11 21:27:03 [Server] INFO Disabling CMI v9.6.5.3
05.11 21:27:03 [Server] INFO Enabling LoneLibs v1.0.27
05.11 21:27:03 [Server] INFO Enabling squaremap v1.2.1
05.11 21:27:04 [Server] INFO starting server: Undertow - 2.3.8.Final
05.11 21:27:04 [Server] INFO XNIO version 3.8.8.Final
05.11 21:27:05 [Server] INFO XNIO NIO Implementation Version 3.8.8.Final
05.11 21:27:05 [Server] INFO JBoss Threads version 3.5.0.Final
05.11 21:27:05 [Server] INFO Internal webserver running on 147.135.70.77:8080
05.11 21:27:05 [Server] INFO Enabling NashornJs v1.1.3
05.11 21:27:05 [Server] INFO Enabling TerraformGenerator v11.1.1
05.11 21:27:05 [Server] INFO Custom Logger Initialized
05.11 21:27:05 [Server] INFO bStats Metrics enabled.
05.11 21:27:05 [Server] INFO Detected version: v1_20_R2, number: 20.2
05.11 21:27:05 [Server] INFO Enabling Iris v2.8.0-1.20.1
05.11 21:27:05 [Server] INFO [STDOUT] [Iris]: Locating NMS Binding for v1_20_R2
05.11 21:27:05 [Server] WARN Nag author(s): '[cyberpwn, NextdoorPsycho, Vatuu]' of 'Iris v2.8.0-1.20.1' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
05.11 21:27:05 [Server] INFO [STDOUT] [Iris]: Craftbukkit v1_20_R2  NMSBinding1X Successfully Bound
05.11 21:27:05 [Server] INFO [STDOUT] [Iris]: Note: Some features of Iris may not work the same since you are on an unsupported version of Minecraft.
05.11 21:27:05 [Server] INFO [STDOUT] [Iris]: Note: If this is a new version, expect an update soon.
05.11 21:27:06 [Server] INFO [Iris]: Loading ExternalDataProvider...
05.11 21:27:06 [Server] INFO [Iris]: Version Information: git-Paper-279 (MC: 1.20.2) | 1.20.2-R0.1-SNAPSHOT
05.11 21:27:06 [Server] INFO [Iris]: ============================================
05.11 21:27:06 [Server] INFO [Iris]: =
05.11 21:27:06 [Server] INFO [Iris]: =
05.11 21:27:06 [Server] INFO [Iris]: =
05.11 21:27:06 [Server] INFO [Iris]: Iris is not compatible with this version of Minecraft.
05.11 21:27:06 [Server] INFO Please use 1.20.1 or use an older version of Iris.
05.11 21:27:06 [Server] INFO [Iris]: =
05.11 21:27:06 [Server] INFO [Iris]: =
05.11 21:27:06 [Server] INFO [Iris]: =
05.11 21:27:06 [Server] INFO [Iris]: ============================================
05.11 21:27:06 [Server] INFO [Iris]: We recommend using Purpur for the best experience with Iris.
05.11 21:27:06 [Server] INFO [Iris]: Purpur is a fork of Paper that is optimized for performance and stability.
05.11 21:27:06 [Server] INFO [Iris]: Plugins that work on Spigot / Paper work on Purpur.
05.11 21:27:06 [Server] INFO [Iris]: You can download it here: https://purpurmc.org
05.11 21:27:06 [Server] INFO Enabling PlugManX v2.3.5
05.11 21:27:06 [Server] WARN ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
05.11 21:27:06 [Server] WARN It seems like you're running on paper.
05.11 21:27:06 [Server] WARN This may cause issues.
05.11 21:27:06 [Server] WARN If you encounter any issues, please join my dicord: https://discord.gg/dBhfCzdZxq
05.11 21:27:06 [Server] WARN Or create an issue on GitHub: https://github.com/TheBlackEntity/PlugMan
05.11 21:27:06 [Server] WARN ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
05.11 21:27:07 [Server] INFO Preparing level "lobby"
05.11 21:27:07 [Server] INFO Preparing start region for dimension minecraft:overworld
05.11 21:27:08 [Server] INFO Time elapsed: 643 ms
05.11 21:27:08 [Server] INFO Preparing start region for dimension minecraft:the_nether
05.11 21:27:08 [Server] INFO Time elapsed: 97 ms
05.11 21:27:08 [Server] INFO Preparing start region for dimension minecraft:the_end
05.11 21:27:08 [Server] INFO Time elapsed: 48 ms
05.11 21:27:08 [Server] INFO Enabling PlaceholderAPI v2.11.5
05.11 21:27:09 [Server] INFO Fetching available expansion information...
05.11 21:27:09 [Server] INFO Enabling DeluxeHub v3.5.5
05.11 21:27:09 [Server] INFO _   _            _          _    _
05.11 21:27:09 [Server] INFO | \ |_ |  | | \/ |_ |_| | | |_)   _)
05.11 21:27:09 [Server] INFO |_/ |_ |_ |_| /\ |_ | | |_| |_)   _)
05.11 21:27:09 [Server] INFO Version: 3.5.5
05.11 21:27:09 [Server] INFO Author: ItsLewizzz
05.11 21:27:09 [Server] INFO Hooked into PlaceholderAPI
05.11 21:27:10 [Server] INFO Loaded custom menu 'serverselector'.
05.11 21:27:10 [Server] INFO [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
05.11 21:27:10 [Server] INFO [NBTAPI] NMS support 'MC1_20_R2' loaded!
05.11 21:27:10 [Server] INFO [NBTAPI] Using the plugin 'DeluxeHub' to create a bStats instance!
05.11 21:27:10 [Server] INFO Loaded 15 plugin modules.
05.11 21:27:10 [Server] INFO Successfully loaded in 685ms
05.11 21:27:10 [Server] INFO Enabling Essentials v2.21.0-dev+17-79449ef
05.11 21:27:11 [Server] INFO Attempting to convert old kits in config.yml to new kits.yml
05.11 21:27:11 [Server] INFO No kits found to migrate.
05.11 21:27:12 [Server] INFO Loaded 39094 items from items.json.
05.11 21:27:12 [Server] INFO Using locale en_US
05.11 21:27:12 [Server] INFO ServerListPingEvent: Spigot iterator API
05.11 21:27:12 [Server] INFO Starting Metrics. Opt-out using the global bStats config.
05.11 21:27:12 [Server] INFO [Economy] Essentials Economy hooked.
05.11 21:27:12 [Server] INFO Using Vault based permissions (LuckPerms)
05.11 21:27:12 [Server] INFO Enabling CMILib v1.4.2.3
05.11 21:27:12 [Server] ERROR Error occurred while enabling CMILib v1.4.2.3 (Is it up to date?)
05.11 21:27:12 [Server] INFO java.lang.NoClassDefFoundError: Could not initialize class net.Zrips.CMILib.Version.Version
05.11 21:27:12 [Server] INFO at net.Zrips.CMILib.Items.ItemManager.load(ItemManager.java:69) ~[CMILib1.4.2.3.jar:?]
05.11 21:27:12 [Server] INFO at net.Zrips.CMILib.CMILib.onEnable(CMILib.java:243) ~[CMILib1.4.2.3.jar:?]
05.11 21:27:12 [Server] INFO at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:27:12 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:12 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:12 [Server] INFO at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:27:12 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:12 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:12 [Server] INFO at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:12 [Server] INFO at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:12 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:12 [Server] INFO at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:12 [Server] INFO at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:12 [Server] INFO at java.lang.Thread.run(Thread.java:833) ~[?:?]
05.11 21:27:12 [Server] INFO Disabling CMILib v1.4.2.3
05.11 21:27:12 [Server] INFO Enabling Jobs v5.2.1.2
05.11 21:27:12 [Server] ERROR Error occurred while enabling Jobs v5.2.1.2 (Is it up to date?)
05.11 21:27:12 [Server] INFO java.lang.NoClassDefFoundError: net/Zrips/CMILib/Messages/CMIMessages
05.11 21:27:12 [Server] INFO at com.gamingmesh.jobs.Jobs.onEnable(Jobs.java:718) ~[Jobs5.2.1.2.jar:?]
05.11 21:27:12 [Server] INFO at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:27:12 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:12 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:12 [Server] INFO at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:27:12 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:12 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:12 [Server] INFO at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:12 [Server] INFO at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:12 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:12 [Server] INFO at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:12 [Server] INFO at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:12 [Server] INFO at java.lang.Thread.run(Thread.java:833) ~[?:?]
05.11 21:27:12 [Server] INFO Caused by: java.lang.ClassNotFoundException: net.Zrips.CMILib.Messages.CMIMessages
05.11 21:27:12 [Server] INFO at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:27:12 [Server] INFO at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:27:12 [Server] INFO at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?]
05.11 21:27:12 [Server] INFO ... 13 more
05.11 21:27:12 [Server] INFO Disabling Jobs v5.2.1.2
05.11 21:27:12 [Server] ERROR Error occurred (in the plugin loader) while disabling Jobs v5.2.1.2 (Is it up to date?)
05.11 21:27:12 [Server] INFO java.lang.NoClassDefFoundError: net/Zrips/CMILib/Messages/CMIMessages
05.11 21:27:12 [Server] INFO at com.gamingmesh.jobs.Jobs.onDisable(Jobs.java:891) ~[Jobs5.2.1.2.jar:?]
05.11 21:27:12 [Server] INFO at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:283) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:27:12 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:224) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:12 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:12 [Server] INFO at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:537) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:27:12 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:193) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:12 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:12 [Server] INFO at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:27:12 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:12 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:12 [Server] INFO at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:12 [Server] INFO at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:12 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:12 [Server] INFO at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:12 [Server] INFO at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:12 [Server] INFO at java.lang.Thread.run(Thread.java:833) ~[?:?]
05.11 21:27:12 [Server] INFO Caused by: java.lang.ClassNotFoundException: net.Zrips.CMILib.Messages.CMIMessages
05.11 21:27:12 [Server] INFO ... 16 more
05.11 21:27:12 [Server] INFO Enabling EnchantsSquared v2.5.7
05.11 21:27:12 [Server] INFO Enabling WorldGuard v7.0.9+5934e49
05.11 21:27:13 [Server] INFO (lobby) TNT ignition is PERMITTED.
05.11 21:27:13 [Server] INFO (lobby) Lighters are PERMITTED.
05.11 21:27:13 [Server] INFO (lobby) Lava fire is PERMITTED.
05.11 21:27:13 [Server] INFO (lobby) Fire spread is UNRESTRICTED.
05.11 21:27:13 [Server] INFO Loaded configuration for world 'lobby'
05.11 21:27:13 [Server] INFO (lobby_nether) TNT ignition is PERMITTED.
05.11 21:27:13 [Server] INFO (lobby_nether) Lighters are PERMITTED.
05.11 21:27:13 [Server] INFO (lobby_nether) Lava fire is PERMITTED.
05.11 21:27:13 [Server] INFO (lobby_nether) Fire spread is UNRESTRICTED.
05.11 21:27:13 [Server] INFO Loaded configuration for world 'lobby_nether'
05.11 21:27:13 [Server] INFO (lobby_the_end) TNT ignition is PERMITTED.
05.11 21:27:13 [Server] INFO (lobby_the_end) Lighters are PERMITTED.
05.11 21:27:13 [Server] INFO (lobby_the_end) Lava fire is PERMITTED.
05.11 21:27:13 [Server] INFO (lobby_the_end) Fire spread is UNRESTRICTED.
05.11 21:27:13 [Server] INFO Loaded configuration for world 'lobby_the_end'
05.11 21:27:13 [Server] INFO Loading region data...
05.11 21:27:14 [Server] INFO Enabling Citizens v2.0.33-SNAPSHOT (build 3219)
05.11 21:27:14 [Server] INFO Loading external libraries
05.11 21:27:15 [Server] INFO Successfully registered internal expansion: citizensplaceholder [1.0.0]
05.11 21:27:15 [Server] INFO Loaded economy handling via Vault.
05.11 21:27:15 [Server] INFO Enabling IridiumSkyblock v4.0.7
05.11 21:27:16 [Server] INFO Preparing start region for dimension minecraft:iridiumskyblock
05.11 21:27:19 [Server] INFO Time elapsed: 2620 ms
05.11 21:27:19 [Server] INFO (IridiumSkyblock) TNT ignition is PERMITTED.
05.11 21:27:19 [Server] INFO (IridiumSkyblock) Lighters are PERMITTED.
05.11 21:27:19 [Server] INFO (IridiumSkyblock) Lava fire is PERMITTED.
05.11 21:27:19 [Server] INFO (IridiumSkyblock) Fire spread is UNRESTRICTED.
05.11 21:27:19 [Server] INFO Loaded configuration for world 'IridiumSkyblock'
05.11 21:27:19 [Server] INFO Preparing start region for dimension minecraft:iridiumskyblock_nether
05.11 21:27:19 [Server] INFO Time elapsed: 464 ms
05.11 21:27:19 [Server] INFO (IridiumSkyblock_nether) TNT ignition is PERMITTED.
05.11 21:27:19 [Server] INFO (IridiumSkyblock_nether) Lighters are PERMITTED.
05.11 21:27:19 [Server] INFO (IridiumSkyblock_nether) Lava fire is PERMITTED.
05.11 21:27:19 [Server] INFO (IridiumSkyblock_nether) Fire spread is UNRESTRICTED.
05.11 21:27:19 [Server] INFO Loaded configuration for world 'IridiumSkyblock_nether'
05.11 21:27:20 [Server] INFO Preparing start region for dimension minecraft:iridiumskyblock_the_end
05.11 21:27:20 [Server] INFO Time elapsed: 187 ms
05.11 21:27:20 [Server] INFO (IridiumSkyblock_the_end) TNT ignition is PERMITTED.
05.11 21:27:20 [Server] INFO (IridiumSkyblock_the_end) Lighters are PERMITTED.
05.11 21:27:20 [Server] INFO (IridiumSkyblock_the_end) Lava fire is PERMITTED.
05.11 21:27:20 [Server] INFO (IridiumSkyblock_the_end) Fire spread is UNRESTRICTED.
05.11 21:27:20 [Server] INFO Loaded configuration for world 'IridiumSkyblock_the_end'
05.11 21:27:20 [Server] INFO Waiting 60s for chunk system to halt for world 'IridiumSkyblock_the_end'
05.11 21:27:20 [Server] INFO Halted chunk system for world 'IridiumSkyblock_the_end'
05.11 21:27:20 [Server] INFO Saving all chunkholders for world 'IridiumSkyblock_the_end'
05.11 21:27:20 [Server] INFO Saved 0 block chunks, 0 entity chunks, 0 poi chunks in world 'IridiumSkyblock_the_end' in 0.02s
05.11 21:27:20 [Server] INFO [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
05.11 21:27:20 [Server] INFO [NBTAPI] NMS support 'MC1_20_R2' loaded!
05.11 21:27:20 [Server] INFO [NBTAPI] Using the plugin 'IridiumSkyblock' to create a bStats instance!
05.11 21:27:21 [Server] INFO Preparing start region for dimension minecraft:iridiumskyblock_the_end
05.11 21:27:21 [Server] INFO Time elapsed: 229 ms
05.11 21:27:22 [Server] INFO Successfully registered internal expansion: iridiumskyblock [4.0.7]
05.11 21:27:22 [Server] INFO Successfully registered Placeholders for PlaceholderAPI.
05.11 21:27:22 [Server] INFO -------------------------------
05.11 21:27:22 [Server] INFO IridiumSkyblock Enabled!
05.11 21:27:22 [Server] INFO -------------------------------
05.11 21:27:22 [Server] INFO Enabling Towny v0.99.6.0
05.11 21:27:22 [Server] INFO ====================      Towny      ========================
05.11 21:27:24 [Server] INFO Successfully loaded translations for 42 languages.
05.11 21:27:24 [Server] INFO Config: Loaded 9 townblock types: shop, inn, arena, jail, default, bank, wilds, farm, embassy.
05.11 21:27:24 [Server] INFO Database: [Load] flatfile [Save] flatfile
05.11 21:27:24 [Server] INFO Database: Loaded in 155ms.
05.11 21:27:24 [Server] INFO Database: 100% of residents have stored UUIDs.
05.11 21:27:24 [Server] INFO Cleaning up old backups...
05.11 21:27:24 [Server] INFO Time until a New Day: 14 hours, 32 minutes, 36 seconds
05.11 21:27:24 [Server] INFO Successfully cleaned backups.
05.11 21:27:24 [Server] INFO Making backup...
05.11 21:27:24 [Server] INFO Checking for updates...
05.11 21:27:25 [Server] INFO Searching for third-party plugins...
05.11 21:27:25 [Server] INFO Plugins found:
05.11 21:27:25 [Server] INFO Permissions: TownyPerms, LuckPerms v5.4.104 via Vault
05.11 21:27:25 [Server] INFO Chat: LuckPerms v5.4.104 via Vault
05.11 21:27:25 [Server] INFO Economy: EssentialsX Economy via Vault
05.11 21:27:25 [Server] INFO Successfully registered internal expansion: townyadvanced [0.99.6.0]
05.11 21:27:25 [Server] INFO Add-ons: TownyChat v0.109, PlaceholderAPI v2.11.5
05.11 21:27:25 [Server] INFO Warning: EssentialsX Economy has been known to reset
05.11 21:27:25 [Server] INFO town and nation bank accounts on rare occasions.
05.11 21:27:25 [Server] INFO =============================================================
05.11 21:27:25 [Server] INFO Version: 0.99.6.0 - Plugin Enabled
05.11 21:27:25 [Server] INFO =============================================================
05.11 21:27:25 [Server] INFO Enabling Multiverse-Core v4.3.12
05.11 21:27:25 [Server] WARN "Multiverse-Core v4.3.12" 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--].
05.11 21:27:25 [Server] INFO 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.
05.11 21:27:25 [Server] INFO Towny flatfiles and settings successfully backed up.
05.11 21:27:25 [Server] INFO New update available: 0.100.0.2 | Current version: 0.99.6.0
05.11 21:27:25 [Server] INFO Download it here: https://github.com/TownyAdvanced/Towny/releases/tag/0.100.0.2
05.11 21:27:26 [Server] INFO Preparing start region for dimension minecraft:survival_world_end
05.11 21:27:26 [Server] INFO Time elapsed: 255 ms
05.11 21:27:26 [Server] INFO (survival_world_end) TNT ignition is PERMITTED.
05.11 21:27:26 [Server] INFO (survival_world_end) Lighters are PERMITTED.
05.11 21:27:26 [Server] INFO (survival_world_end) Lava fire is PERMITTED.
05.11 21:27:26 [Server] INFO (survival_world_end) Fire spread is UNRESTRICTED.
05.11 21:27:26 [Server] INFO Loaded configuration for world 'survival_world_end'
05.11 21:27:26 [Server] INFO Preparing start region for dimension minecraft:survival_world_nether
05.11 21:27:26 [Server] INFO Time elapsed: 84 ms
05.11 21:27:26 [Server] INFO (survival_world_nether) TNT ignition is PERMITTED.
05.11 21:27:26 [Server] INFO (survival_world_nether) Lighters are PERMITTED.
05.11 21:27:26 [Server] INFO (survival_world_nether) Lava fire is PERMITTED.
05.11 21:27:26 [Server] INFO (survival_world_nether) Fire spread is UNRESTRICTED.
05.11 21:27:26 [Server] INFO Loaded configuration for world 'survival_world_nether'
05.11 21:27:26 [Server] INFO Preparing start region for dimension minecraft:lobby_test
05.11 21:27:26 [Server] INFO Time elapsed: 36 ms
05.11 21:27:26 [Server] INFO (lobby_test) TNT ignition is PERMITTED.
05.11 21:27:26 [Server] INFO (lobby_test) Lighters are PERMITTED.
05.11 21:27:26 [Server] INFO (lobby_test) Lava fire is PERMITTED.
05.11 21:27:26 [Server] INFO (lobby_test) Fire spread is UNRESTRICTED.
05.11 21:27:26 [Server] INFO Loaded configuration for world 'lobby_test'
05.11 21:27:26 [Server] INFO Preparing start region for dimension minecraft:world
05.11 21:27:27 [Server] INFO Time elapsed: 268 ms
05.11 21:27:27 [Server] INFO (world) TNT ignition is PERMITTED.
05.11 21:27:27 [Server] INFO (world) Lighters are PERMITTED.
05.11 21:27:27 [Server] INFO (world) Lava fire is PERMITTED.
05.11 21:27:27 [Server] INFO (world) Fire spread is UNRESTRICTED.
05.11 21:27:27 [Server] INFO Loaded configuration for world 'world'
05.11 21:27:27 [Server] INFO Preparing start region for dimension minecraft:world_the_end
05.11 21:27:27 [Server] INFO Time elapsed: 260 ms
05.11 21:27:28 [Server] INFO (world_the_end) TNT ignition is PERMITTED.
05.11 21:27:28 [Server] INFO (world_the_end) Lighters are PERMITTED.
05.11 21:27:28 [Server] INFO (world_the_end) Lava fire is PERMITTED.
05.11 21:27:28 [Server] INFO (world_the_end) Fire spread is UNRESTRICTED.
05.11 21:27:28 [Server] INFO Loaded configuration for world 'world_the_end'
05.11 21:27:28 [Server] INFO Preparing start region for dimension minecraft:world_nether
05.11 21:27:29 [Server] INFO Time elapsed: 258 ms
05.11 21:27:29 [Server] INFO (world_nether) TNT ignition is PERMITTED.
05.11 21:27:29 [Server] INFO (world_nether) Lighters are PERMITTED.
05.11 21:27:29 [Server] INFO (world_nether) Lava fire is PERMITTED.
05.11 21:27:29 [Server] INFO (world_nether) Fire spread is UNRESTRICTED.
05.11 21:27:29 [Server] INFO Loaded configuration for world 'world_nether'
05.11 21:27:29 [Server] INFO Detected world: survival_world, commencing injection...
05.11 21:27:29 [Server] INFO Injection success! Proceeding with generation.
05.11 21:27:29 [Server] INFO Preparing start region for dimension minecraft:survival_world
05.11 21:27:29 [Server] INFO Time elapsed: 145 ms
05.11 21:27:29 [Server] INFO survival_world loaded.
05.11 21:27:29 [Server] INFO (survival_world) TNT ignition is PERMITTED.
05.11 21:27:29 [Server] INFO (survival_world) Lighters are PERMITTED.
05.11 21:27:29 [Server] INFO (survival_world) Lava fire is PERMITTED.
05.11 21:27:29 [Server] INFO (survival_world) Fire spread is UNRESTRICTED.
05.11 21:27:29 [Server] INFO Loaded configuration for world 'survival_world'
05.11 21:27:29 [Server] INFO 13 - World(s) loaded.
05.11 21:27:29 [Server] WARN 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.
05.11 21:27:29 [Server] INFO Version 4.3.12 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
05.11 21:27:29 [Server] INFO Enabling EssentialsChat v2.21.0-dev+17-79449ef
05.11 21:27:29 [Server] INFO Starting Metrics. Opt-out using the global bStats config.
05.11 21:27:29 [Server] INFO Enabling mcMMO v2.1.224
05.11 21:27:35 [Server] INFO Successfully registered internal expansion: mcmmo [1.0,0]
05.11 21:27:35 [Server] INFO Enabling GriefPrevention v16.18.1
05.11 21:27:35 [Server] INFO Finished loading configuration.
05.11 21:27:35 [Server] INFO 1 total claims loaded.
05.11 21:27:36 [Server] INFO Customizable messages loaded.
05.11 21:27:36 [Server] INFO Successfully hooked into WorldGuard.
05.11 21:27:36 [Server] INFO Finished loading data (File Mode).
05.11 21:27:36 [Server] INFO Boot finished.
05.11 21:27:36 [Server] INFO Enabling Factions v1.6.9.5-4.1.3-STABLE
05.11 21:27:36 [Server] INFO === ENABLE START ===
05.11 21:27:37 [Server] INFO Loaded 1 players
05.11 21:27:37 [Server] INFO Loaded 3 Factions
05.11 21:27:37 [Server] INFO Loading board from disk
05.11 21:27:37 [Server] INFO Loaded 0 board locations
05.11 21:27:37 [Server] INFO Economy integration through Vault plugin successful.
05.11 21:27:37 [Server] INFO NOTE: Economy is disabled. You can enable it with the command: f config econEnabled true
05.11 21:27:37 [Server] INFO CoreX Integration Starting!
05.11 21:27:37 [Server] INFO Enabling 15 CoreX Features...
05.11 21:27:37 [Server] INFO Loaded 1 timers into list!
05.11 21:27:38 [Server] INFO Internal Factions Top Being Used. NOTE: Very Basic
05.11 21:27:38 [Server] INFO Successfully registered internal expansion: factionsuuid [1.6.9.5-4.1.3-STABLE]
05.11 21:27:38 [Server] INFO Successfully registered placeholders with PlaceholderAPI.
05.11 21:27:38 [Server] INFO === ENABLE DONE (Took 1,304.702ms) ===
05.11 21:27:38 [Server] INFO Enabling TownyChat v0.109
05.11 21:27:38 [Server] INFO Towny version 0.99.6.0 found.
05.11 21:27:38 [Server] INFO Default Channel set to general
05.11 21:27:38 [Server] INFO Enabling Multiverse-Portals v4.2.3
05.11 21:27:38 [Server] INFO 0 - Portals(s) loaded
05.11 21:27:38 [Server] INFO Found FastAsyncWorldEdit. Using it for selections.
05.11 21:27:38 [Server] INFO Enabled - By Rigby and fernferret
05.11 21:27:38 [Server] INFO Enabling GCore v8.48.0
05.11 21:27:38 [Server] INFO Already processed v7 -> v8 (config)
05.11 21:27:38 [Server] INFO Already processed v7 -> v8 (data)
05.11 21:27:38 [Server] INFO Already processed v8.4 -> v8.5
05.11 21:27:38 [Server] INFO Already processed v8.8 -> v8.9
05.11 21:27:38 [Server] INFO Already processed v8.23 -> v8.24
05.11 21:27:38 [Server] INFO Already processed v8.24 -> v8.25
05.11 21:27:38 [Server] INFO Already processed v8.29 -> v8.30
05.11 21:27:38 [Server] INFO Found server version MC_1_20_R2
05.11 21:27:38 [Server] INFO Loading materials...
05.11 21:27:40 [Server] INFO Loading sounds...
05.11 21:27:40 [Server] INFO Loading particles...
05.11 21:27:40 [Server] INFO Enabled currency VAULT
05.11 21:27:40 [Server] INFO Enabled currency XP_LEVEL
05.11 21:27:40 [Server] INFO Enabled currency XP
05.11 21:27:40 [Server] INFO Loading texts...
05.11 21:27:40 [Server] INFO Text durationformatdays doesn't exist in default files (not even in en_US)
05.11 21:27:40 [Server] INFO Loaded 1 missing text from default lang for generic.yml : durationFormatDays
05.11 21:27:40 [Server] INFO Enabled integration for Citizens
05.11 21:27:40 [Server] INFO Successfully registered internal expansion: gcore [1.0.0]
05.11 21:27:40 [Server] INFO Enabled integration for PlaceholderAPI
05.11 21:27:40 [Server] INFO Enabled integration for MythicMobs
05.11 21:27:40 [Server] INFO Initializing worker and caches
05.11 21:27:40 [Server] INFO Enabled NPC manager with ProtocolLib
05.11 21:27:40 [Server] INFO Registering integrations
05.11 21:27:40 [Server] INFO Initializing tasks and listeners
05.11 21:27:40 [Server] INFO Successfully enabled
05.11 21:27:40 [Server] INFO Enabling BetterRTP v3.6.11
05.11 21:27:41 [Server] INFO Cooldown = 600
05.11 21:27:41 [Server] INFO Successfully registered internal expansion: betterrtp [3.6.11]
05.11 21:27:41 [Server] INFO Enabling SchematicBrushReborn v2.5.3
05.11 21:27:41 [Server] INFO Locale plugins/SchematicBrushReborn/messages/messages_en_US.properties is up to date.
05.11 21:27:41 [Server] INFO Registered entry of type storage with de.eldoria.schematicbrush.schematics.SchematicBrushCache at Schematic Registry
05.11 21:27:41 [Server] INFO Path: plugins/SchematicBrushReborn/schematics does not exists. Skipping watch service registration.
05.11 21:27:41 [Server] INFO Path: plugins/WorldEdit/schematics does not exists. Skipping watch service registration.
05.11 21:27:41 [Server] INFO Metrics enabled. Thank you <3
05.11 21:27:41 [Server] INFO Enabled. Required 188 ms.
05.11 21:27:41 [Server] INFO Enabling DecentHolograms v2.8.4
05.11 21:27:41 [Server] INFO Using ProtocolLib for packet listening.
05.11 21:27:41 [Server] INFO Enabling ChestSort v13.6.4
05.11 21:27:41 [Server] INFO Hooked into WorldGuard 7.0.9+5934e49
05.11 21:27:41 [Server] INFO Use permissions: true
05.11 21:27:41 [Server] INFO Current sorting method: {category},{itemsFirst},{name},{color},{customName}
05.11 21:27:41 [Server] INFO Allow automatic chest sorting:true
05.11 21:27:41 [Server] INFO |- Chest sorting enabled by default: false
05.11 21:27:41 [Server] INFO |- Sort time: close
05.11 21:27:41 [Server] INFO Allow automatic inventory sorting:true
05.11 21:27:41 [Server] INFO |- Inventory sorting enabled by default: false
05.11 21:27:41 [Server] INFO Auto generate category files: true
05.11 21:27:41 [Server] INFO Allow hotkeys: true
05.11 21:27:41 [Server] INFO Hotkeys enabled by default:
05.11 21:27:41 [Server] INFO |- Middle-Click: true
05.11 21:27:41 [Server] INFO |- Shift-Click: true
05.11 21:27:41 [Server] INFO |- Double-Click: true
05.11 21:27:41 [Server] INFO |- Shift-Right-Click: true
05.11 21:27:41 [Server] INFO Allow additional hotkeys: true
05.11 21:27:41 [Server] INFO Additional hotkeys enabled by default:
05.11 21:27:41 [Server] INFO |- Left-Click: false
05.11 21:27:41 [Server] INFO |- Right-Click: false
05.11 21:27:41 [Server] INFO Check for updates: true
05.11 21:27:41 [Server] INFO Check interval: 4 hours (4.0 seconds)
05.11 21:27:41 [Server] INFO Categories: 900-weapons (6), 905-common-tools (4), 907-other-tools (6), 909-food (33), 910-valuables (47), 920-armor-and-arrows (9), 930-brewing (18), 950-redstone (23), 960-wood (60), 970-stone (38), 980-plants (50), 981-corals (1)
05.11 21:27:41 [Server] INFO Successfully registered internal expansion: chestsort [13.6.4]
05.11 21:27:41 [Server] INFO Enabling DiscordSRV v1.26.2
05.11 21:27:41 [Server] INFO Enabling JukeboxExtendedReborn v1.2.8
05.11 21:27:41 [Server] INFO Discs.json file not found please provide it in the plugin directory
05.11 21:27:41 [Server] INFO [https://github.com/spartacus04/jext-reborn/wiki/How-to-set-up-the-plugin]
05.11 21:27:41 [Server] WARN java.io.FileNotFoundException: discs.json file not found!
05.11 21:27:41 [Server] WARN at JEXT-Reborn_1.2.8.jar//me.spartacus04.jext.config.ConfigManager$Companion.load(ConfigManager.kt:75)
05.11 21:27:41 [Server] WARN at JEXT-Reborn_1.2.8.jar//me.spartacus04.jext.Jext.load(Jext.kt:67)
05.11 21:27:41 [Server] WARN at JEXT-Reborn_1.2.8.jar//me.spartacus04.jext.Jext.onEnable(Jext.kt:35)
05.11 21:27:41 [Server] WARN at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281)
05.11 21:27:41 [Server] WARN at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189)
05.11 21:27:41 [Server] WARN at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
05.11 21:27:41 [Server] WARN at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
05.11 21:27:41 [Server] WARN at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644)
05.11 21:27:41 [Server] WARN at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555)
05.11 21:27:41 [Server] WARN at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627)
05.11 21:27:41 [Server] WARN at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424)
05.11 21:27:41 [Server] WARN at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:308)
05.11 21:27:41 [Server] WARN at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1086)
05.11 21:27:41 [Server] WARN at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315)
05.11 21:27:41 [Server] WARN at java.base/java.lang.Thread.run(Thread.java:833)
05.11 21:27:41 [Server] INFO Disabling JukeboxExtendedReborn v1.2.8
05.11 21:27:41 [Server] INFO Disabled Jukebox Extended Reborn, Mi Re Do!
05.11 21:27:41 [Server] INFO New version of SchematicBrushReborn available.
05.11 21:27:41 [Server] INFO New Version: 2.5.5. Published 9 days ago! 2023.10.27 09:01
05.11 21:27:41 [Server] INFO Current version: 2.5.3 Published 142 days ago! 2023.06.16 12:20
05.11 21:27:41 [Server] INFO Download the new version via Discord: https://www.spigotmc.org/resources/98499/
05.11 21:27:41 [Server] INFO Enabling NoteBlockAPI v1.6.2
05.11 21:27:41 [Server] INFO Enabling BigDoors vAlpha 0.1.8.48
05.11 21:27:41 [Server] INFO Power Block Types:
05.11 21:27:41 [Server] INFO - GOLD_BLOCK
05.11 21:27:41 [Server] INFO Blacklisted materials:
05.11 21:27:41 [Server] INFO - BEDROCK
05.11 21:27:41 [Server] INFO - END_PORTAL
05.11 21:27:41 [Server] INFO - END_PORTAL_FRAME
05.11 21:27:41 [Server] INFO - NETHER_PORTAL
05.11 21:27:41 [Server] INFO No materials Whitelisted!
05.11 21:27:41 [Server] INFO DestroyListed materials:
05.11 21:27:41 [Server] INFO - LAVA
05.11 21:27:41 [Server] INFO - WATER
05.11 21:27:41 [Server] INFO - SNOW
05.11 21:27:41 [Server] INFO - FERN
05.11 21:27:41 [Server] INFO - GRASS
05.11 21:27:41 [Server] INFO - TALL_GRASS
05.11 21:27:41 [Server] INFO - SEAGRASS
05.11 21:27:41 [Server] INFO - TALL_SEAGRASS
05.11 21:27:42 [Server] ERROR No bot token has been set in the config; a bot token is required to connect to Discord.
05.11 21:27:42 [Server] INFO DiscordSRV is up-to-date. (767828469573c2f0fa3ed5a44feb0b2f15f2c02d)
05.11 21:27:42 [Server] WARN mcMMO detected! All ores are blacklisted to avoid item duplication! This can be overridden in the config.
05.11 21:27:42 [Server] INFO Enabling stats! Thanks, it really helps!
05.11 21:27:42 [Server] INFO Successfully hooked into "WorldGuard"!
05.11 21:27:42 [Server] INFO Successfully hooked into "Towny"!
05.11 21:27:42 [Server] INFO Successfully hooked into "GriefPrevention"!
05.11 21:27:42 [Server] INFO Enabling ItemsAdder v3.6.2-beta-r2
05.11 21:27:42 [Server] INFO [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
05.11 21:27:42 [Server] INFO [NBTAPI] NMS support 'MC1_20_R2' loaded!
05.11 21:27:42 [Server] INFO   ___  ___        __        __   __   ___  __      ItemsAdder 3.6.2-beta-r2
05.11 21:27:42 [Server] INFO |  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     LoneLibs 1.0.27
05.11 21:27:42 [Server] INFO |  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     Paper git-Paper-279 (MC: 1.20.2)
05.11 21:27:42 [Server] INFO
05.11 21:27:42 [Server] INFO [Host] Starting self-host webserver on port: 3645
05.11 21:27:43 [Server] INFO [Iris]: Enabled ExternalDataProvider for ItemsAdder.
05.11 21:27:43 [Server] INFO Registered Citizens NPC Trait: customentity
05.11 21:27:43 [Server] INFO Enabling Multiverse-NetherPortals v4.2.3
05.11 21:27:43 [Server] INFO Enabled - By Rigby and fernferret
05.11 21:27:43 [Server] INFO Enabling BedWars v0.2.30
05.11 21:27:43 [Server] INFO Successfully loaded messages for BedWars! Language: English
05.11 21:27:43 [Server] INFO Loading statistics from YAML-File ...
05.11 21:27:43 [Server] INFO Successfully registered internal expansion: bedwars [0.2.30]
05.11 21:27:43 [Server] INFO =====================  by ScreamingSandals <Misat11, Iamceph, Pronze>
05.11 21:27:43 [Server] INFO + Screaming BedWars +  Version: 0.2.30 FREE
05.11 21:27:43 [Server] INFO =====================  STABLE VERSION
05.11 21:27:43 [Server] INFO Found Vault
05.11 21:27:43 [Server] INFO Everything is loaded! If you like our work, consider visiting our Patreon! <3
05.11 21:27:43 [Server] INFO https://www.patreon.com/screamingsandals
05.11 21:27:43 [Server] INFO Enabling TradingCards v5.7.19
05.11 21:27:43 [Server] WARN Tried getting children from a non class object, returning empty list.
05.11 21:27:43 [Server] WARN Tried getting children from a non class object, returning empty list.
05.11 21:27:43 [Server] INFO Loading general.yml
05.11 21:27:43 [Server] INFO Loading chances.yml
05.11 21:27:43 [Server] INFO Loading messages.yml
05.11 21:27:43 [Server] INFO Loading storage.yml
05.11 21:27:43 [Server] INFO Loading advanced.yml
05.11 21:27:43 [Server] INFO Using storage YAML
05.11 21:27:43 [Server] INFO Loading decks.yml
05.11 21:27:43 [Server] INFO Loading packs.yml
05.11 21:27:43 [Server] INFO Loading rarities.yml
05.11 21:27:43 [Server] INFO Loading series.yml
05.11 21:27:43 [Server] INFO Loading custom-types.yml
05.11 21:27:43 [Server] INFO Loading cards.yml
05.11 21:27:43 [Server] INFO Loading cards.yml
05.11 21:27:43 [Server] INFO Loading upgrades.yml
05.11 21:27:43 [Server] WARN Could not get the type for goat_horn reason: null
05.11 21:27:43 [Server] WARN Defaulting to passive.
05.11 21:27:43 [Server] INFO Loading player-blacklist.yml
05.11 21:27:43 [Server] INFO Loading world-blacklist.yml
05.11 21:27:43 [Server] INFO Vault hook successful!
05.11 21:27:43 [Server] INFO Initializing managers...
05.11 21:27:43 [Server] INFO Loaded RarityManager.
05.11 21:27:43 [Server] INFO Loaded DropTypeManager.
05.11 21:27:43 [Server] INFO Loaded SeriesManager.
05.11 21:27:44 [Server] INFO Loaded 136 cards.
05.11 21:27:44 [Server] INFO Loaded CardManager.
05.11 21:27:44 [Server] INFO [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
05.11 21:27:44 [Server] WARN [NBTAPI] This Server-Version(v1_20_R2) is not supported by this NBT-API Version(2.11.3) located in TradingCards. The NBT-API will try to work as good as it can! Some functions may not work!
05.11 21:27:44 [Server] INFO [NBTAPI] Found Gson: class com.google.gson.Gson
05.11 21:27:44 [Server] ERROR Error occurred while enabling TradingCards v5.7.19 (Is it up to date?)
05.11 21:27:44 [Server] INFO net.tinetwork.tradingcards.nbt.NbtApiException: [?]Error while calling the method 'getTagType(java.lang.String)', loaded: true, Enum: COMPOUND_GET_TYPE, Passed Class: class java.lang.Boolean
05.11 21:27:44 [Server] INFO at net.tinetwork.tradingcards.nbt.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:358) ~[TradingCards-5.7.19.jar:?]
05.11 21:27:44 [Server] INFO at net.tinetwork.tradingcards.nbt.NBTReflectionUtil.getData(NBTReflectionUtil.java:635) ~[TradingCards-5.7.19.jar:?]
05.11 21:27:44 [Server] INFO at net.tinetwork.tradingcards.nbt.NBTCompound.getType(NBTCompound.java:1016) ~[TradingCards-5.7.19.jar:?]
05.11 21:27:44 [Server] INFO at net.tinetwork.tradingcards.nbt.NBTCompound.addCompound(NBTCompound.java:669) ~[TradingCards-5.7.19.jar:?]
05.11 21:27:44 [Server] INFO at net.tinetwork.tradingcards.nbt.NBTCompound.getOrCreateCompound(NBTCompound.java:709) ~[TradingCards-5.7.19.jar:?]
05.11 21:27:44 [Server] INFO at net.tinetwork.tradingcards.tradingcardsplugin.managers.impl.BoosterPackManager.generatePack(BoosterPackManager.java:115) ~[TradingCards-5.7.19.jar:?]
05.11 21:27:44 [Server] INFO at net.tinetwork.tradingcards.tradingcardsplugin.managers.impl.BoosterPackManager.generatePack(BoosterPackManager.java:88) ~[TradingCards-5.7.19.jar:?]
05.11 21:27:44 [Server] INFO at com.github.benmanes.caffeine.cache.LocalLoadingCache.lambda$newMappingFunction$3(LocalLoadingCache.java:183) ~[?:?]
05.11 21:27:44 [Server] INFO at com.github.benmanes.caffeine.cache.BoundedLocalCache.lambda$doComputeIfAbsent$14(BoundedLocalCache.java:2685) ~[?:?]
05.11 21:27:44 [Server] INFO at java.util.concurrent.ConcurrentHashMap.compute(ConcurrentHashMap.java:1916) ~[?:?]
05.11 21:27:44 [Server] INFO at com.github.benmanes.caffeine.cache.BoundedLocalCache.doComputeIfAbsent(BoundedLocalCache.java:2683) ~[?:?]
05.11 21:27:44 [Server] INFO at com.github.benmanes.caffeine.cache.BoundedLocalCache.computeIfAbsent(BoundedLocalCache.java:2666) ~[?:?]
05.11 21:27:44 [Server] INFO at com.github.benmanes.caffeine.cache.LocalCache.computeIfAbsent(LocalCache.java:112) ~[?:?]
05.11 21:27:44 [Server] INFO at com.github.benmanes.caffeine.cache.LocalLoadingCache.get(LocalLoadingCache.java:58) ~[?:?]
05.11 21:27:44 [Server] INFO at com.github.benmanes.caffeine.cache.LocalLoadingCache.loadSequentially(LocalLoadingCache.java:82) ~[?:?]
05.11 21:27:44 [Server] INFO at com.github.benmanes.caffeine.cache.LocalLoadingCache.getAll(LocalLoadingCache.java:65) ~[?:?]
05.11 21:27:44 [Server] INFO at net.tinetwork.tradingcards.tradingcardsplugin.managers.impl.BoosterPackManager.preLoadItemStackCache(BoosterPackManager.java:70) ~[TradingCards-5.7.19.jar:?]
05.11 21:27:44 [Server] INFO at net.tinetwork.tradingcards.tradingcardsplugin.managers.impl.BoosterPackManager.<init>(BoosterPackManager.java:41) ~[TradingCards-5.7.19.jar:?]
05.11 21:27:44 [Server] INFO at net.tinetwork.tradingcards.tradingcardsplugin.TradingCards.initManagers(TradingCards.java:258) ~[TradingCards-5.7.19.jar:?]
05.11 21:27:44 [Server] INFO at net.tinetwork.tradingcards.tradingcardsplugin.TradingCards.onEnable(TradingCards.java:157) ~[TradingCards-5.7.19.jar:?]
05.11 21:27:44 [Server] INFO at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:27:44 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:44 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:44 [Server] INFO at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:27:44 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:44 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:44 [Server] INFO at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:44 [Server] INFO at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:44 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:44 [Server] INFO at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:44 [Server] INFO at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:44 [Server] INFO at java.lang.Thread.run(Thread.java:833) ~[?:?]
05.11 21:27:44 [Server] INFO Caused by: java.lang.IllegalArgumentException: object is not an instance of declaring class
05.11 21:27:44 [Server] INFO at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]
05.11 21:27:44 [Server] INFO at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]
05.11 21:27:44 [Server] INFO at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
05.11 21:27:44 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
05.11 21:27:44 [Server] INFO at net.tinetwork.tradingcards.nbt.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:355) ~[TradingCards-5.7.19.jar:?]
05.11 21:27:44 [Server] INFO ... 31 more
05.11 21:27:44 [Server] INFO Disabling TradingCards v5.7.19
05.11 21:27:44 [Server] INFO Enabling WorldEditSelectionVisualizer v2.1.5
05.11 21:27:44 [Server] INFO Using WorldEdit 7 api
05.11 21:27:44 [Server] INFO Successfully registered internal expansion: wesv [2.1.5]
05.11 21:27:44 [Server] INFO PlaceholderAPI extension successfully registered.
05.11 21:27:44 [Server] INFO Enabling GSlotMachine v3.1.1
05.11 21:27:44 [Server] INFO Already processed v2 -> v3 (config)
05.11 21:27:44 [Server] INFO Already processed v2 -> v3 (data)
05.11 21:27:44 [Server] INFO Successfully loaded 1 machine type : default
05.11 21:27:44 [Server] INFO Loading texts...
05.11 21:27:44 [Server] INFO Successfully enabled
05.11 21:27:44 [Server] INFO Enabling GWarp v[2.13.0.2]
05.11 21:27:44 [Server] INFO The Plugin was successfully enabled.
05.11 21:27:44 [Server] INFO Enabling ColoredSigns v6.2.1.212
05.11 21:27:44 [Server] INFO Enabling GPFlags v5.12.9
05.11 21:27:45 [Server] INFO Finished loading configuration.
05.11 21:27:45 [Server] INFO Finished loading data.
05.11 21:27:45 [Server] INFO Successfully loaded in 0.96 seconds
05.11 21:27:45 [Server] INFO Enabling TAB v4.0.7
05.11 21:27:45 [Server] INFO Successfully registered internal expansion: tab [4.0.7]
05.11 21:27:45 [Server] INFO Enabled in 223ms
05.11 21:27:45 [Server] INFO Enabling TNTRun v2.4.5-SNAPSHOT
05.11 21:27:45 [Server] INFO Successfully registered internal expansion: tntrun [2.4.5-SNAPSHOT]
05.11 21:27:45 [Server] INFO Initialization finished. Consider donating: https://buymeacoffee.com/despical
05.11 21:27:45 [Server] INFO Enabling spark v1.10.34
05.11 21:27:46 [Server] INFO Using Paper ServerTickStartEvent for tick monitoring
05.11 21:27:46 [Server] INFO Starting background profiler...
05.11 21:27:46 [Server] INFO Successfully registered internal expansion: spark [1.10.34]
05.11 21:27:46 [Server] INFO Registered PlaceholderAPI placeholders
05.11 21:27:46 [Server] INFO Enabling NBTAPI v2.11.3
05.11 21:27:46 [Server] INFO Adding listeners...
05.11 21:27:46 [Server] INFO Gson:
05.11 21:27:46 [Server] INFO Checking bindings...
05.11 21:27:46 [Server] INFO All Classes were able to link!
05.11 21:27:46 [Server] INFO All Methods were able to link!
05.11 21:27:46 [Server] INFO Running NBT reflection test...
05.11 21:27:46 [Server] WARN Error during 'EqualsTest' test!
05.11 21:27:46 [Server] INFO de.tr7zw.nbtapi.NbtApiException: [?]Error while calling the method 'getTagType(java.lang.String)', loaded: true, Enum: COMPOUND_GET_TYPE, Passed Class: class java.lang.Boolean
05.11 21:27:46 [Server] INFO at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:358) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:27:46 [Server] INFO at de.tr7zw.nbtapi.NBTReflectionUtil.getData(NBTReflectionUtil.java:635) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:27:46 [Server] INFO at de.tr7zw.nbtapi.NBTCompound.getType(NBTCompound.java:1016) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:27:46 [Server] INFO at de.tr7zw.nbtapi.NBTCompound.addCompound(NBTCompound.java:669) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:27:46 [Server] INFO at de.tr7zw.nbtapi.plugin.tests.compounds.EqualsTest.test(EqualsTest.java:25) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:27:46 [Server] INFO at de.tr7zw.nbtapi.plugin.NBTAPI.onEnable(NBTAPI.java:205) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:27:46 [Server] INFO at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:27:46 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:27:46 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at java.lang.Thread.run(Thread.java:833) ~[?:?]
05.11 21:27:46 [Server] INFO Caused by: java.lang.IllegalArgumentException: java.lang.ClassCastException@17af0254
05.11 21:27:46 [Server] INFO at jdk.internal.reflect.GeneratedMethodAccessor84.invoke(Unknown Source) ~[?:?]
05.11 21:27:46 [Server] INFO at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
05.11 21:27:46 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
05.11 21:27:46 [Server] INFO at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:355) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:27:46 [Server] INFO ... 17 more
05.11 21:27:46 [Server] WARN Error during 'EmptyItemTest' test!
05.11 21:27:46 [Server] INFO de.tr7zw.nbtapi.NbtApiException: [?]Error while calling the method 'getBoolean(java.lang.String)', loaded: true, Enum: COMPOUND_GET_BOOLEAN, Passed Class: class java.lang.Boolean
05.11 21:27:46 [Server] INFO at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:358) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:27:46 [Server] INFO at de.tr7zw.nbtapi.NBTReflectionUtil.getData(NBTReflectionUtil.java:635) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:27:46 [Server] INFO at de.tr7zw.nbtapi.NBTCompound.getBoolean(NBTCompound.java:438) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:27:46 [Server] INFO at de.tr7zw.nbtapi.plugin.tests.items.EmptyItemTest.test(EmptyItemTest.java:16) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:27:46 [Server] INFO at de.tr7zw.nbtapi.plugin.NBTAPI.onEnable(NBTAPI.java:205) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:27:46 [Server] INFO at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:27:46 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:27:46 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at java.lang.Thread.run(Thread.java:833) ~[?:?]
05.11 21:27:46 [Server] INFO Caused by: java.lang.IllegalArgumentException: object is not an instance of declaring class
05.11 21:27:46 [Server] INFO at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]
05.11 21:27:46 [Server] INFO at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]
05.11 21:27:46 [Server] INFO at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
05.11 21:27:46 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
05.11 21:27:46 [Server] INFO at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:355) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:27:46 [Server] INFO ... 16 more
05.11 21:27:46 [Server] WARN Error during 'ItemMergingTest' test!
05.11 21:27:46 [Server] INFO de.tr7zw.nbtapi.NbtApiException: [?]Error while calling the method 'putString(java.lang.String,java.lang.String)', loaded: true, Enum: COMPOUND_SET_STRING, Passed Class: class java.lang.Boolean
05.11 21:27:46 [Server] INFO at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:358) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:27:46 [Server] INFO at de.tr7zw.nbtapi.NBTReflectionUtil.setData(NBTReflectionUtil.java:615) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:27:46 [Server] INFO at de.tr7zw.nbtapi.NBTCompound.setString(NBTCompound.java:115) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:27:46 [Server] INFO at de.tr7zw.nbtapi.plugin.tests.items.ItemMergingTest.test(ItemMergingTest.java:22) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:27:46 [Server] INFO at de.tr7zw.nbtapi.plugin.NBTAPI.onEnable(NBTAPI.java:205) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:27:46 [Server] INFO at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:27:46 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:27:46 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at java.lang.Thread.run(Thread.java:833) ~[?:?]
05.11 21:27:46 [Server] INFO Caused by: java.lang.IllegalArgumentException: java.lang.ClassCastException@1bf214c1
05.11 21:27:46 [Server] INFO at jdk.internal.reflect.GeneratedMethodAccessor87.invoke(Unknown Source) ~[?:?]
05.11 21:27:46 [Server] INFO at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
05.11 21:27:46 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
05.11 21:27:46 [Server] INFO at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:355) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:27:46 [Server] INFO ... 16 more
05.11 21:27:46 [Server] WARN Error during 'DirectApplyTest' test!
05.11 21:27:46 [Server] INFO de.tr7zw.nbtapi.NbtApiException: [?]Error while calling the method 'putString(java.lang.String,java.lang.String)', loaded: true, Enum: COMPOUND_SET_STRING, Passed Class: class java.lang.Boolean
05.11 21:27:46 [Server] INFO at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:358) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:27:46 [Server] INFO at de.tr7zw.nbtapi.NBTReflectionUtil.setData(NBTReflectionUtil.java:615) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:27:46 [Server] INFO at de.tr7zw.nbtapi.NBTCompound.setString(NBTCompound.java:115) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:27:46 [Server] INFO at de.tr7zw.nbtapi.plugin.tests.items.DirectApplyTest.test(DirectApplyTest.java:17) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:27:46 [Server] INFO at de.tr7zw.nbtapi.plugin.NBTAPI.onEnable(NBTAPI.java:205) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:27:46 [Server] INFO at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:27:46 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:27:46 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at java.lang.Thread.run(Thread.java:833) ~[?:?]
05.11 21:27:46 [Server] INFO Caused by: java.lang.IllegalArgumentException: java.lang.ClassCastException@5616774f
05.11 21:27:46 [Server] INFO at jdk.internal.reflect.GeneratedMethodAccessor87.invoke(Unknown Source) ~[?:?]
05.11 21:27:46 [Server] INFO at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
05.11 21:27:46 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
05.11 21:27:46 [Server] INFO at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:355) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:27:46 [Server] INFO ... 16 more
05.11 21:27:46 [Server] WARN Error during 'DirectApplyMetaTest' test!
05.11 21:27:46 [Server] INFO de.tr7zw.nbtapi.NbtApiException: [?]Error while calling the method 'putString(java.lang.String,java.lang.String)', loaded: true, Enum: COMPOUND_SET_STRING, Passed Class: class java.lang.Boolean
05.11 21:27:46 [Server] INFO at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:358) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:27:46 [Server] INFO at de.tr7zw.nbtapi.NBTReflectionUtil.setData(NBTReflectionUtil.java:615) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:27:46 [Server] INFO at de.tr7zw.nbtapi.NBTCompound.setString(NBTCompound.java:115) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:27:46 [Server] INFO at de.tr7zw.nbtapi.plugin.tests.items.DirectApplyMetaTest.test(DirectApplyMetaTest.java:18) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:27:46 [Server] INFO at de.tr7zw.nbtapi.plugin.NBTAPI.onEnable(NBTAPI.java:205) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:27:46 [Server] INFO at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:27:46 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:27:46 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:27:46 [Server] INFO at java.lang.Thread.run(Thread.java:833) ~[?:?]
05.11 21:27:46 [Server] INFO Caused by: java.lang.IllegalArgumentException: java.lang.ClassCastException@4d5807af
05.11 21:27:46 [Server] INFO at jdk.internal.reflect.GeneratedMethodAccessor87.invoke(Unknown Source) ~[?:?]
05.11 21:27:46 [Server] INFO at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
05.11 21:27:46 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
05.11 21:27:46 [Server] INFO at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:355) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:27:46 [Server] INFO ... 16 more
05.11 21:27:46 [Server] INFO DirectApplyMetaTest: [?]Error while calling the method 'putString(java.lang.String,java.lang.String)', loaded: true, Enum: COMPOUND_SET_STRING, Passed Class: class java.lang.Boolean
05.11 21:27:46 [Server] INFO EqualsTest: [?]Error while calling the method 'getTagType(java.lang.String)', loaded: true, Enum: COMPOUND_GET_TYPE, Passed Class: class java.lang.Boolean
05.11 21:27:46 [Server] INFO DirectApplyTest: [?]Error while calling the method 'putString(java.lang.String,java.lang.String)', loaded: true, Enum: COMPOUND_SET_STRING, Passed Class: class java.lang.Boolean
05.11 21:27:46 [Server] INFO ItemMergingTest: [?]Error while calling the method 'putString(java.lang.String,java.lang.String)', loaded: true, Enum: COMPOUND_SET_STRING, Passed Class: class java.lang.Boolean
05.11 21:27:46 [Server] INFO EmptyItemTest: [?]Error while calling the method 'getBoolean(java.lang.String)', loaded: true, Enum: COMPOUND_GET_BOOLEAN, Passed Class: class java.lang.Boolean
05.11 21:27:46 [Server] WARN WARNING! This version of NBT-API seems to be broken with your Spigot version! Plugins that don't check properly may throw Exeptions, crash or have unexpected behaviors!
05.11 21:27:46 [Server] INFO Enabling BetterRTPAddons v1.8.8
05.11 21:27:47 [Server] INFO Enabling GridSelector v1.3.0
05.11 21:27:47 [Server] INFO Initializing message blocker. Whitelisted terms: [GS]
05.11 21:27:47 [Server] INFO Detected Chat signing support
05.11 21:27:47 [Server] INFO Locale plugins/GridSelector/messages/messages_en_US.properties is up to date.
05.11 21:27:47 [Server] INFO Registered entry of type grid with de.eldoria.gridselector.schematics.GridSchematics at Schematic Registry
05.11 21:27:47 [Server] INFO Enabled. Required 96 ms.
05.11 21:27:47 [Server] INFO Enabling EggWars v6.1.2
05.11 21:27:47 [Server] INFO Loading data for languages...
05.11 21:27:47 [Server] INFO Successfully registered internal expansion: EggWars [6.1.2]
05.11 21:27:47 [Server] INFO Loading data for kits...
05.11 21:27:47 [Server] INFO Loading data for token types...
05.11 21:27:47 [Server] INFO Loading data for generators...
05.11 21:27:47 [Server] INFO Loading data for main trades...
05.11 21:27:47 [Server] INFO Enabling YamipaPlugin v1.2.11
05.11 21:27:47 [Server] INFO Enabled image animation support
05.11 21:27:47 [Server] INFO No placed fake images configuration file found
05.11 21:27:47 [Server] INFO Enabling AdvancedKeep v2.0.1
05.11 21:27:47 [Server] INFO [ACF] Enabled Asynchronous Tab Completion Support!
05.11 21:27:47 [Server] INFO Enabling CrateReloaded v2.3.1
05.11 21:27:47 [Server] INFO Spigot Version: 1_20_R2
05.11 21:27:47 [Server] INFO Plugin is not enabled: HolographicDisplays
05.11 21:27:47 [Server] INFO Provider: Vault
05.11 21:27:47 [Server] INFO Provider: EffectLib
05.11 21:27:47 [Server] INFO Crate Configurations (1): crate.yml
05.11 21:27:47 [Server] INFO Enabling Skywars v5.6.22
05.11 21:27:47 [Server] ERROR Could not find support for this CraftBukkit version: v1_20_R2. Now disabling the plugin!
05.11 21:27:47 [Server] INFO Check for updates at https://gcnt.net/download/skywars
05.11 21:27:47 [Server] INFO Enabling UltraCosmetics v3.4.1
05.11 21:27:48 [Server] INFO Checking for update...
05.11 21:27:48 [Server] INFO -------------------------------------------------------------------
05.11 21:27:48 [Server] INFO Thanks for using UltraCosmetics! Version: 3.4.1-RELEASE (commit c5c2a02)
05.11 21:27:48 [Server] INFO Plugin by Datatags. Original Author: iSach
05.11 21:27:48 [Server] INFO Link: https://bit.ly/UltraCosmetics
05.11 21:27:48 [Server] INFO Initializing module v1_20 (expected version: 1.20.2)
05.11 21:27:48 [Server] INFO Entity registry is not vanilla, skipping unfreeze and refreeze
05.11 21:27:48 [Server] INFO Loaded NMS support
05.11 21:28:00 [Server] WARN Morphs require Lib's Disguises, but it is not installed. Morphs will be disabled.
05.11 21:28:00 [Server] INFO Successfully registered internal expansion: ultracosmetics [3.4.1]
05.11 21:28:00 [Server] INFO Hooked into PlaceholderAPI
05.11 21:28:00 [Server] INFO Registering session handler be.isach.ultracosmetics.worldguard.FlagManager
05.11 21:28:00 [Server] INFO WorldGuard custom flags enabled
05.11 21:28:00 [Server] INFO Hooked into Vault:EssentialsX Economy for economy.
05.11 21:28:00 [Server] INFO Hooked into ChestSort
05.11 21:28:00 [Server] INFO Hooked into Towny
05.11 21:28:00 [Server] INFO UltraCosmetics successfully finished loading in 12816ms!
05.11 21:28:00 [Server] INFO -------------------------------------------------------------------
05.11 21:28:00 [Server] INFO Enabling ZombieApocalypse v1.4.8
05.11 21:28:00 [Server] INFO Configuration has been successfully loaded!
05.11 21:28:00 [Server] INFO If you really love this project, you could consider donating to help me keep this project alive! https://paypal.me/3ricL
05.11 21:28:00 [Server] INFO Enabling JukeLooper v2.5
05.11 21:28:00 [Server] INFO Enabling HeadHunterPlugin v2.0.7
05.11 21:28:00 [Server] INFO Enabling RankVouchers v3.0*
05.11 21:28:00 [Server] INFO ---------------------------
05.11 21:28:01 [Server] INFO ---------------------------
05.11 21:28:01 [Server] INFO Hooked into PlaceholderAPI!
05.11 21:28:01 [Server] INFO Hooked into WorldGuard!
05.11 21:28:01 [Server] INFO Developed by Setups.io.
05.11 21:28:01 [Server] INFO Ready!
05.11 21:28:01 [Server] WARN Plugin 'RankVouchers' is creating timing 'Commands' - this is deprecated behavior, please report it to the authors:
05.11 21:28:01 [Server] INFO [ACF] Minecraft Version: 1.20
05.11 21:28:01 [Server] WARN Plugin 'RankVouchers' is creating timing 'Command: rankvouchers' - this is deprecated behavior, please report it to the authors:
05.11 21:28:01 [Server] WARN Plugin 'RankVouchers' is creating timing 'Command: rankvouchers help' - this is deprecated behavior, please report it to the authors:
05.11 21:28:01 [Server] WARN Plugin 'RankVouchers' is creating timing 'Command: rankvouchers reload' - this is deprecated behavior, please report it to the authors:
05.11 21:28:01 [Server] WARN Plugin 'RankVouchers' is creating timing 'Command: rankvouchers give' - this is deprecated behavior, please report it to the authors:
05.11 21:28:01 [Server] WARN Plugin 'RankVouchers' is creating timing 'Command: rankvouchers giveall' - this is deprecated behavior, please report it to the authors:
05.11 21:28:01 [Server] WARN Plugin 'RankVouchers' is creating timing 'Command: rankvouchers list' - this is deprecated behavior, please report it to the authors:
05.11 21:28:01 [Server] WARN Plugin 'RankVouchers' is creating timing 'Command: rankvouchers create' - this is deprecated behavior, please report it to the authors:
05.11 21:28:01 [Server] WARN Plugin 'RankVouchers' is creating timing 'Command: rankvouchers remove' - this is deprecated behavior, please report it to the authors:
05.11 21:28:01 [Server] INFO Enabling GreetingPlugin v2.0-SNAPSHOT
05.11 21:28:01 [Server] INFO Greeting Plugin has been enabled.
05.11 21:28:01 [Server] INFO Enabling Waypoints v4.2.0
05.11 21:28:01 [Server] INFO Found squaremap plugin
05.11 21:28:01 [Server] INFO Enabling Multiverse-Inventories v4.2.6
05.11 21:28:01 [Server] INFO enabled.
05.11 21:28:01 [Server] INFO Enabling TreeAssist v7.3.49
05.11 21:28:01 [Server] INFO sending full Metrics! You can deactivate this in the config.yml
05.11 21:28:01 [Server] INFO debugging: off
05.11 21:28:01 [Server] INFO Successfully registered internal expansion: ta [0.0.1]
05.11 21:28:01 [Server] INFO Checking for updates...
05.11 21:28:01 [Server] INFO Enabling MusicBox v2.0.13
05.11 21:28:01 [Server] INFO Enabling Guilds v3.5.7.0
05.11 21:28:02 [Server] INFO ________
05.11 21:28:02 [Server] INFO /  _____/
05.11 21:28:02 [Server] INFO /   \  ___   Guilds v3.5.7.0
05.11 21:28:02 [Server] INFO \    \_\  \  Server Version: git-Paper-279 (MC: 1.20.2)
05.11 21:28:02 [Server] INFO \______  /
05.11 21:28:02 [Server] INFO \/
05.11 21:28:02 [Server] INFO Economy Found: EssentialsX Economy
05.11 21:28:02 [Server] INFO Permissions Found: LuckPerms
05.11 21:28:03 [Server] INFO Successfully registered internal expansion: guilds [2.1]
05.11 21:28:03 [Server] INFO [ACF] Enabled Asynchronous Tab Completion Support!
05.11 21:28:03 [Server] INFO Your version of Guilds (3.5.7.0) is up to date!
05.11 21:28:03 [Server] INFO Ready to go! That only took 1045ms
05.11 21:28:03 [Server] INFO Enabling PlayerParticles v8.4
05.11 21:28:03 [Server] INFO Initializing using RoseGarden v1.1.0.52-SNAPSHOT
05.11 21:28:03 [Server] INFO Data handler connected using SQLite.
05.11 21:28:03 [Server] INFO Features
05.11 21:28:03 [Server] INFO - Added initial support for 1.20.X
05.11 21:28:03 [Server] INFO Bug Fixes
05.11 21:28:03 [Server] INFO - Fixed a bug related to banking commands
05.11 21:28:03 [Server] INFO Notes
05.11 21:28:03 [Server] INFO - Currently dealing with some real life stuff, hope to be back soon.
05.11 21:28:04 [Server] INFO Successfully registered internal expansion: playerparticles [8.4]
05.11 21:28:04 [Server] INFO Enabling BigDoorsOpener v2.5.2
05.11 21:28:04 [Server] INFO Enabled. Required 59 ms.
05.11 21:28:04 [Server] INFO Enabling LPC v3.6.0
05.11 21:28:04 [Server] INFO Enabling DeluxeMenus v1.13.7-Release
05.11 21:28:04 [Server] INFO Successfully hooked into PlaceholderAPI!
05.11 21:28:04 [Server] INFO 3 GUI menus loaded!
05.11 21:28:04 [Server] INFO You are running the latest version of DeluxeMenus!
05.11 21:28:04 [Server] INFO Successfully hooked into Vault!
05.11 21:28:04 [Server] INFO Successfully registered internal expansion: deluxemenus [1.13.7-Release]
05.11 21:28:04 [Server] INFO Enabling Chunky v1.3.92
05.11 21:28:04 [Server] INFO Enabling Images v2.3.1
05.11 21:28:04 [Server] INFO ProtocolLib detected. Enabling generic packet handling...
05.11 21:28:04 [Server] INFO Enabling FacilisCommon v1.0.2-SNAPSHOT
05.11 21:28:04 [Server] INFO Enabling Invsee v1.0.0*
05.11 21:28:04 [Server] INFO Enabling AuctionHouse v3.5.1
05.11 21:28:04 [Server] INFO Found locale file en_us.json
05.11 21:28:04 [Server] WARN A backup of the database has been saved with .backup extension.
05.11 21:28:04 [Server] INFO Using NMS version v1_20_R2
05.11 21:28:04 [Server] ERROR Error! This plugin only supports Spigot versions 1.20.x!
05.11 21:28:04 [Server] ERROR Plugin will be disabled!
05.11 21:28:04 [Server] INFO Disabling AuctionHouse v3.5.1
05.11 21:28:04 [Server] INFO Saving auctions data
05.11 21:28:04 [Server] INFO Enabling Arcade v1.55
05.11 21:28:04 [Server] INFO =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
05.11 21:28:04 [Server] INFO Arcade only works for:
05.11 21:28:04 [Server] INFO - 1.20.1
05.11 21:28:04 [Server] INFO =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
05.11 21:28:05 [Server] INFO Enabling FishRewards v1.2.4
05.11 21:28:05 [Server] INFO A new plugin update is available. Download link: https://www.spigotmc.org/resources/111966/
05.11 21:28:05 [Server] INFO loaded 3 packs
05.11 21:28:05 [Server] WARN Plugin Vanillahungergames v2.4 tried to register permission 'admin' but it's already registered
05.11 21:28:05 [Server] INFO Enabling Vanillahungergames v2.4
05.11 21:28:05 [Server] INFO Enabling NotBounties v1.12.1
05.11 21:28:05 [Server] INFO Using Vault as currency!
05.11 21:28:05 [Server] INFO Successfully registered internal expansion: notbounties [1.12.1]
05.11 21:28:05 [Server] INFO Database not connected, using internal storage
05.11 21:28:05 [Server] INFO Enabling ImageOnMap v4.2.2
05.11 21:28:05 [Server] INFO Loaded 0 player map files.
05.11 21:28:05 [Server] INFO Enabling VoxelSniper v8.12.4
05.11 21:28:07 [Server] INFO Registered 70 Sniper Brushes with 136 handles.
05.11 21:28:07 [Server] INFO Registered Sniper Listener.
05.11 21:28:07 [Server] INFO Checking for updates...
05.11 21:28:07 [Server] INFO Enabling UltimateShop v1.7.7
05.11 21:28:07 [Server] INFO Loaded shop: crops1.yml!
05.11 21:28:07 [Server] INFO Loaded shop: baits.yml!
05.11 21:28:07 [Server] INFO Loaded shop: crops.yml!
05.11 21:28:07 [Server] INFO Loaded shop: logs.yml!
05.11 21:28:07 [Server] INFO Loaded shop: drops.yml!
05.11 21:28:07 [Server] INFO Loaded shop: ores.yml!
05.11 21:28:07 [Server] INFO Loaded shop: blocks.yml!
05.11 21:28:07 [Server] INFO Loaded menu: main.yml!
05.11 21:28:07 [Server] INFO Hooking into PlaceholderAPI...
05.11 21:28:07 [Server] INFO Successfully registered internal expansion: ultimateshop [1.0.0]
05.11 21:28:07 [Server] INFO Finished hook!
05.11 21:28:07 [Server] INFO Plugin is loaded. Author: PQguanfang.
05.11 21:28:07 [Server] INFO Enabling TavernBard v1.2
05.11 21:28:07 [Server] INFO MythicMobs detected. Support enabled!
05.11 21:28:09 [Server] INFO Placeholder expansion registration initializing...
05.11 21:28:09 [Server] INFO Running delayed init tasks
05.11 21:28:09 [Server] INFO Fetching version information...
05.11 21:28:09 [Server] INFO Checking for Updates ...
05.11 21:28:09 [Server] INFO You are running the latest version on Spigot.
05.11 21:28:09 [Server] INFO [Iris]: Server type & version: git-Paper-279 (MC: 1.20.2)
05.11 21:28:09 [Server] INFO [Iris]: Bukkit version: 1.20.2-R0.1-SNAPSHOT
05.11 21:28:09 [Server] INFO [Iris]: Java version: 17
05.11 21:28:09 [Server] INFO [Iris]: Custom Biomes: 0
05.11 21:28:09 [Server] INFO [Iris]: Version Information: git-Paper-279 (MC: 1.20.2) | 1.20.2-R0.1-SNAPSHOT
05.11 21:28:09 [Server] INFO [Iris]: ============================================
05.11 21:28:09 [Server] INFO [Iris]: =
05.11 21:28:09 [Server] INFO [Iris]: =
05.11 21:28:09 [Server] INFO [Iris]: =
05.11 21:28:09 [Server] INFO No new version available
05.11 21:28:09 [Server] INFO [Iris]: Iris is not compatible with this version of Minecraft.
05.11 21:28:09 [Server] INFO Please use 1.20.1 or use an older version of Iris.
05.11 21:28:09 [Server] INFO [Iris]: =
05.11 21:28:09 [Server] INFO [Iris]: =
05.11 21:28:09 [Server] INFO [Iris]: =
05.11 21:28:09 [Server] INFO The version v4.3.0 for Waypoints is available.
05.11 21:28:09 [Server] INFO Checkout the release here: https://github.com/Sytm/waypoints/releases/tag/v4.3.0
05.11 21:28:09 [Server] INFO [Iris]: ============================================
05.11 21:28:09 [Server] INFO [Iris]: We recommend using Purpur for the best experience with Iris.
05.11 21:28:09 [Server] INFO [Iris]: Purpur is a fork of Paper that is optimized for performance and stability.
05.11 21:28:09 [Server] INFO [Iris]: Plugins that work on Spigot / Paper work on Purpur.
05.11 21:28:09 [Server] INFO [Iris]: You can download it here: https://purpurmc.org
05.11 21:28:09 [Server] INFO [Iris]: Custom Dimensions: 1
05.11 21:28:09 [Server] INFO [Iris]:   overworld v3700
05.11 21:28:09 [Server] WARN You're 2 EssentialsX dev build(s) out of date!
05.11 21:28:09 [Server] WARN Download it here: https://essentialsx.net/downloads.html
05.11 21:28:10 [Server] INFO [Iris]:
05.11 21:28:10 [Server] INFO @@@@@@@@@@@@@@@@@
05.11 21:28:10 [Server] INFO @@&&&&&&&&&&&&&&&   .(((()))).
05.11 21:28:10 [Server] INFO @@@&&&&&&&&&&&&&  .((((((())))))).
05.11 21:28:10 [Server] INFO @@@&&&&&&&&&&&&  ((((((((()))))))))                @
05.11 21:28:10 [Server] INFO @@@&&&&@@@@@&    ((((((((-)))))))))               @@
05.11 21:28:10 [Server] INFO @@@&&            ((((((({ }))))))))            &&@@@     Iris
05.11 21:28:10 [Server] INFO @@               ((((((((-)))))))))    &@@@@@&&&&@@@     by Volmit Software
05.11 21:28:10 [Server] INFO @                ((((((((()))))))))  &&&&&&&&&&&&@@@     v2.8.0-1.20.1
05.11 21:28:10 [Server] INFO '((((((()))))))'  &&&&&&&&&&&&&@@@
05.11 21:28:10 [Server] INFO '(((())))'   &&&&&&&&&&&&&&&@@
05.11 21:28:10 [Server] INFO @@@@@@@@@@@@@@@@@
05.11 21:28:10 [Server] INFO Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
05.11 21:28:10 [Server] INFO -******* TownyChat enabled *******-
05.11 21:28:10 [Server] INFO Checking for updates...
05.11 21:28:10 [Server] INFO Disabling DiscordSRV v1.26.2
05.11 21:28:10 [Server] INFO [Pack] Extracting internal contents from .jar
05.11 21:28:10 [Server] INFO No new updates available.
05.11 21:28:10 [Server] INFO [Pack] DONE extracting internal contents from .jar
05.11 21:28:12 [Server] WARN Custom entities 'fast_packets_creation' is disabled. This might cause stuttering animations. More info: https://a.devs.beer/ia-delaypackets
05.11 21:28:12 [Server] INFO Loaded 7 recipes
05.11 21:28:13 [Server] INFO Loaded 2 NPCs.
05.11 21:28:13 [Server] INFO Post startup done. Required 14 ms.
05.11 21:28:13 [Server] INFO Post startup done. Required 0 ms.
05.11 21:28:13 [Server] INFO First run!
05.11 21:28:13 [Server] INFO Hooked into Big Doors successfully.
05.11 21:28:13 [Server] INFO World Guard found. Trying to get a hook.
05.11 21:28:13 [Server] INFO Hooked into world guard successfully.
05.11 21:28:13 [Server] INFO Placeholder API found. Enabling placeholder usage.
05.11 21:28:13 [Server] INFO MythicMobs found. Enabling mythic mobs listener.
05.11 21:28:13 [Server] INFO Config is up to date.
05.11 21:28:13 [Server] INFO Config loaded!
05.11 21:28:13 [Server] INFO Java 15 or newer detected. Searching for external Engine.
05.11 21:28:14 [Server] INFO New version of SchematicBrushReborn available.
05.11 21:28:14 [Server] INFO New Version: 2.5.5. Published 9 days ago! 2023.10.27 09:01
05.11 21:28:14 [Server] INFO Current version: 2.5.3 Published 142 days ago! 2023.06.16 12:20
05.11 21:28:14 [Server] INFO Download the new version via Discord: https://discord.gg/zRW9Vpu
05.11 21:28:14 [Server] INFO OpenJDK Nashorn script engine started.
05.11 21:28:14 [Server] INFO Locale plugins/BigDoorsOpener/messages/messages_en_US.properties is up to date.
05.11 21:28:14 [Server] INFO Locale plugins/BigDoorsOpener/messages/messages_de_DE.properties is up to date.
05.11 21:28:14 [Server] INFO Metrics enabled. Thank you very much!
05.11 21:28:14 [Server] INFO Post startup done. Required 951 ms.
05.11 21:28:14 [Server] INFO Successfully registered external expansion: vault [1.8.1]
05.11 21:28:14 [Server] INFO Successfully registered external expansion: essentials [1.5.2]
05.11 21:28:14 [Server] INFO Successfully registered external expansion: luckperms [5.4-R2]
05.11 21:28:14 [Server] INFO 3 placeholder hook(s) registered!
05.11 21:28:14 [Server] INFO You are using the latest version of IridiumSkyblock.
05.11 21:28:14 [Server] INFO Successfully registered internal expansion: iris [2.8.0-1.20.1]
05.11 21:28:14 [Server] Startup Done (103.928s)! For help, type "help"
05.11 21:28:14 [Server] WARN Can't keep up! Is the server overloaded? Running 5102ms or 102 ticks behind
05.11 21:28:14 [Server] INFO Timings Reset
05.11 21:28:14 [Server] INFO Loaded 344 items
05.11 21:28:14 [Server] INFO Used 0/188 REAL block IDs
05.11 21:28:14 [Server] INFO Used 29/750 REAL_NOTE block IDs
05.11 21:28:14 [Server] INFO Used 0/63 REAL_TRANSPARENT block IDs
05.11 21:28:14 [Server] INFO Used 0/127 REAL_WIRE block IDs
05.11 21:28:14 [Server] INFO Used 0/14 FIRE block IDs
05.11 21:28:14 [Server] INFO Used 587/6608 font_images
05.11 21:28:15 [Server] INFO [Init] Loaded 29 categories
05.11 21:28:15 [Server] INFO [Init] Loaded successfully.
05.11 21:28:15 [Server] INFO [Pack] Checking resourcepack url...
05.11 21:28:16 [Server] INFO Successfully registered internal expansion: img [1.0.1]
05.11 21:28:16 [Server] INFO Successfully registered internal expansion: iaplayerstat [1.0.1]
05.11 21:28:16 [Server] INFO Reloading ItemsAdder Custom Entities Citizens NPCs
05.11 21:28:16 [Server] INFO Reloading plugin...
05.11 21:28:16 [Server] INFO Loading Packs...
05.11 21:28:17 [Server] INFO Loading Items...
05.11 21:28:17 [Server] INFO Loading Item Groups...
05.11 21:28:17 [Server] INFO Loading Skills...
05.11 21:28:17 [Server] INFO Loading stat ATTACK_DAMAGE from /plugins/MythicMobs/stats.yml
05.11 21:28:17 [Server] INFO Loading stat ATTACK_SPEED from /plugins/MythicMobs/stats.yml
05.11 21:28:17 [Server] INFO Loading stat BONUS_DAMAGE from /plugins/MythicMobs/stats.yml
05.11 21:28:17 [Server] INFO Loading stat CRITICAL_STRIKE_CHANCE from /plugins/MythicMobs/stats.yml
05.11 21:28:17 [Server] INFO Loading stat CRITICAL_STRIKE_DAMAGE from /plugins/MythicMobs/stats.yml
05.11 21:28:17 [Server] INFO Loading stat CRITICAL_STRIKE_RESILIENCE from /plugins/MythicMobs/stats.yml
05.11 21:28:17 [Server] INFO Loading stat DAMAGE_REDUCTION from /plugins/MythicMobs/stats.yml
05.11 21:28:17 [Server] INFO Loading stat DEFENSE from /plugins/MythicMobs/stats.yml
05.11 21:28:17 [Server] INFO Loading stat DODGE_CHANCE from /plugins/MythicMobs/stats.yml
05.11 21:28:17 [Server] INFO Loading stat DODGE_NEGATION from /plugins/MythicMobs/stats.yml
05.11 21:28:17 [Server] INFO Loading stat HEALTH from /plugins/MythicMobs/stats.yml
05.11 21:28:17 [Server] INFO Loading stat HEALTH_REGENERATION from /plugins/MythicMobs/stats.yml
05.11 21:28:17 [Server] INFO Loading stat LIFESTEAL_CHANCE from /plugins/MythicMobs/stats.yml
05.11 21:28:17 [Server] INFO Loading stat LIFESTEAL_POWER from /plugins/MythicMobs/stats.yml
05.11 21:28:17 [Server] INFO Loading stat MOVEMENT_SPEED from /plugins/MythicMobs/stats.yml
05.11 21:28:17 [Server] INFO Loading stat PARRY_CHANCE from /plugins/MythicMobs/stats.yml
05.11 21:28:17 [Server] INFO Loading stat PARRY_NEGATION from /plugins/MythicMobs/stats.yml
05.11 21:28:17 [Server] INFO Loading stat PARRY_POWER from /plugins/MythicMobs/stats.yml
05.11 21:28:17 [Server] INFO Loading stat PARRY_COUNTERATTACK from /plugins/MythicMobs/stats.yml
05.11 21:28:17 [Server] INFO Loading stat ARMOR_GENERIC from /plugins/MythicMobs/stats.yml
05.11 21:28:17 [Server] INFO Loading stat ARMOR_BLUNT from /plugins/MythicMobs/stats.yml
05.11 21:28:17 [Server] INFO Loading stat ARMOR_SHARP from /plugins/MythicMobs/stats.yml
05.11 21:28:17 [Server] INFO Loading stat DAMAGE_BLUNT from /plugins/MythicMobs/stats.yml
05.11 21:28:17 [Server] INFO Loading stat DAMAGE_SHARP from /plugins/MythicMobs/stats.yml
05.11 21:28:17 [Server] INFO Loading stat FIRE_RESISTANCE from /plugins/MythicMobs/stats.yml
05.11 21:28:17 [Server] INFO Loading stat SPEED from /plugins/MythicMobs/stats.yml
05.11 21:28:17 [Server] INFO Loading Drop Tables...
05.11 21:28:17 [Server] INFO Loading Random Spawns...
05.11 21:28:17 [Server] INFO Loading Spawn Blocks...
05.11 21:28:17 [Server] INFO ✓ Loaded 8 mobs.
05.11 21:28:17 [Server] INFO ✓ Loaded 3 vanilla mob overrides.
05.11 21:28:17 [Server] INFO ✓ Loaded 0 mob stacks.
05.11 21:28:17 [Server] INFO ✓ Loaded 3 skills.
05.11 21:28:17 [Server] INFO ✓ Loaded 0 random spawns.
05.11 21:28:17 [Server] INFO ✓ Loaded 3 mythic items.
05.11 21:28:17 [Server] INFO ✓ Loaded 2 drop tables.
05.11 21:28:17 [Server] INFO ✓ Loaded 0 mob spawners.
05.11 21:28:17 [Server] INFO Mythic has finished reloading!
05.11 21:28:17 [Server] INFO Mythic has finished reloading!
05.11 21:28:17 [Server] INFO Checking for updates...
05.11 21:28:17 [Server] INFO [Pack] Resourcepack URL (self-host): http://147.135.70.77:3645/generated.zip
05.11 21:28:17 [Server] INFO You are running the latest version.
05.11 21:28:19 [Server] INFO [Iris]: Checking Data Packs...
05.11 21:28:19 [Server] INFO Checking plugin version...
05.11 21:28:19 [Server] INFO No updates found
05.11 21:28:20 [Server] INFO Loaded 0 images...
05.11 21:28:20 [Server] INFO [Iris]: Data Packs Setup!
05.11 21:28:20 [Server] INFO [Iris]: ===================================================================================
05.11 21:28:20 [Server] INFO [Iris]: Pack overworld has 94 custom biome(s).
05.11 21:28:20 [Server] INFO [Iris]: Your server version does not yet support datapacks for iris.
05.11 21:28:20 [Server] INFO [Iris]: The world will generate these biomes as backup biomes.
05.11 21:28:20 [Server] INFO [Iris]: ====================================================================================
05.11 21:28:22 [Server] WARN Task #10753 for NotBounties v1.12.1 generated an exception
05.11 21:28:22 [Server] INFO java.lang.IndexOutOfBoundsException: Index 0 out of bounds for length 0
05.11 21:28:22 [Server] INFO at jdk.internal.util.Preconditions.outOfBounds(Preconditions.java:64) ~[?:?]
05.11 21:28:22 [Server] INFO at jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Preconditions.java:70) ~[?:?]
05.11 21:28:22 [Server] INFO at jdk.internal.util.Preconditions.checkIndex(Preconditions.java:266) ~[?:?]
05.11 21:28:22 [Server] INFO at java.util.Objects.checkIndex(Objects.java:359) ~[?:?]
05.11 21:28:22 [Server] INFO at java.util.ArrayList.get(ArrayList.java:427) ~[?:?]
05.11 21:28:22 [Server] INFO at me.jadenp.notbounties.NotBounties$3.run(NotBounties.java:744) ~[NotBounties-LATEST-[1.12.1].jar:?]
05.11 21:28:22 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:28:22 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:28:22 [Server] INFO at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1470) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:28:22 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:28:22 [Server] INFO at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1379) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:28:22 [Server] INFO at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1156) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:28:22 [Server] INFO at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:28:22 [Server] INFO at java.lang.Thread.run(Thread.java:833) ~[?:?]
05.11 21:29:03 [Server] INFO CONSOLE issued server command: /list
05.11 21:29:03 [Server] INFO There are 0 out of maximum 120 players online.
05.11 21:29:51 [Server] INFO CONSOLE issued server command: /list
05.11 21:29:51 [Server] INFO There are 0 out of maximum 120 players online.
05.11 21:30:16 [Server] INFO UUID of player darkclone9 is 3acdfc9e-2ece-4481-b187-19a836d5a5e6
05.11 21:30:17 [Server] INFO [ACF] Can't read players locale, you will be unable to automatically detect players language. Only Bukkit 1.7+ is supported for this.
05.11 21:30:17 [Server] INFO [ACF] java.lang.NoSuchFieldException: locale
05.11 21:30:17 [Server] INFO [ACF]     at java.base/java.lang.Class.getDeclaredField(Class.java:2610)
05.11 21:30:17 [Server] INFO [ACF]     at advancedkeep-2.0.1.jar//dev.anhcraft.advancedkeep.lib.acf.BukkitCommandManager.readPlayerLocale(BukkitCommandManager.java:324)
05.11 21:30:17 [Server] INFO [ACF]     at java.base/java.lang.Iterable.forEach(Iterable.java:75)
05.11 21:30:17 [Server] INFO [ACF]     at java.base/java.util.Collections$UnmodifiableCollection.forEach(Collections.java:1092)
05.11 21:30:17 [Server] INFO [ACF]     at advancedkeep-2.0.1.jar//dev.anhcraft.advancedkeep.lib.acf.BukkitCommandManager.lambda$new$1(BukkitCommandManager.java:135)
05.11 21:30:17 [Server] INFO [ACF]     at advancedkeep-2.0.1.jar//dev.anhcraft.advancedkeep.lib.acf.ACFPaperScheduler.lambda$createLocaleTask$1(ACFPaperScheduler.java:56)
05.11 21:30:17 [Server] INFO [ACF]     at io.papermc.paper.threadedregions.scheduler.FoliaAsyncScheduler$AsyncScheduledTask.run(FoliaAsyncScheduler.java:217)
05.11 21:30:17 [Server] INFO [ACF]     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
05.11 21:30:17 [Server] INFO [ACF]     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
05.11 21:30:17 [Server] INFO [ACF]     at java.base/java.lang.Thread.run(Thread.java:833)
05.11 21:30:17 [Server] INFO [ACF] Can't read players locale, you will be unable to automatically detect players language. Only Bukkit 1.7+ is supported for this.
05.11 21:30:17 [Server] INFO [ACF] java.lang.NoSuchFieldException: locale
05.11 21:30:17 [Server] INFO [ACF]     at java.base/java.lang.Class.getDeclaredField(Class.java:2610)
05.11 21:30:17 [Server] INFO [ACF]     at CrateReloaded.jar//com.hazebyte.libs.aikar.acf.BukkitCommandManager.readPlayerLocale(BukkitCommandManager.java:324)
05.11 21:30:17 [Server] INFO [ACF]     at CrateReloaded.jar//com.hazebyte.libs.aikar.acf.ACFBukkitListener.onPlayerJoin(ACFBukkitListener.java:57)
05.11 21:30:17 [Server] INFO [ACF]     at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:40)
05.11 21:30:17 [Server] INFO [ACF]     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81)
05.11 21:30:17 [Server] INFO [ACF]     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
05.11 21:30:17 [Server] INFO [ACF]     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
05.11 21:30:17 [Server] INFO [ACF]     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126)
05.11 21:30:17 [Server] INFO [ACF]     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.server.players.PlayerList.a(PlayerList.java:346)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.a(ServerConfigurationPacketListenerImpl.java:130)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(ServerboundFinishConfigurationPacket.java:18)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(ServerboundFinishConfigurationPacket.java:9)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.network.protocol.PlayerConnectionUtils.lambda$ensureRunningOnSameThread$0(PlayerConnectionUtils.java:53)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.server.TickTask.run(TickTask.java:18)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.util.thread.IAsyncTaskHandler.d(IAsyncTaskHandler.java:153)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(IAsyncTaskHandlerReentrant.java:24)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1324)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:193)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.util.thread.IAsyncTaskHandler.x(IAsyncTaskHandler.java:126)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.server.MinecraftServer.bg(MinecraftServer.java:1301)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1294)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.util.thread.IAsyncTaskHandler.c(IAsyncTaskHandler.java:136)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.server.MinecraftServer.u_(MinecraftServer.java:1272)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1160)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315)
05.11 21:30:17 [Server] INFO [ACF]     at java.base/java.lang.Thread.run(Thread.java:833)
05.11 21:30:17 [Server] INFO [ACF] Can't read players locale, you will be unable to automatically detect players language. Only Bukkit 1.7+ is supported for this.
05.11 21:30:17 [Server] INFO [ACF] java.lang.NoSuchFieldException: locale
05.11 21:30:17 [Server] INFO [ACF]     at java.base/java.lang.Class.getField(Class.java:2117)
05.11 21:30:17 [Server] INFO [ACF]     at RankVouchers-3.0.jar//com.chazdev.rankvouchers.acf.BukkitCommandManager.readPlayerLocale(BukkitCommandManager.java:276)
05.11 21:30:17 [Server] INFO [ACF]     at RankVouchers-3.0.jar//com.chazdev.rankvouchers.acf.ACFBukkitListener.onPlayerJoin(ACFBukkitListener.java:53)
05.11 21:30:17 [Server] INFO [ACF]     at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:40)
05.11 21:30:17 [Server] INFO [ACF]     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:81)
05.11 21:30:17 [Server] INFO [ACF]     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
05.11 21:30:17 [Server] INFO [ACF]     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
05.11 21:30:17 [Server] INFO [ACF]     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126)
05.11 21:30:17 [Server] INFO [ACF]     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.server.players.PlayerList.a(PlayerList.java:346)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.a(ServerConfigurationPacketListenerImpl.java:130)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(ServerboundFinishConfigurationPacket.java:18)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(ServerboundFinishConfigurationPacket.java:9)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.network.protocol.PlayerConnectionUtils.lambda$ensureRunningOnSameThread$0(PlayerConnectionUtils.java:53)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.server.TickTask.run(TickTask.java:18)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.util.thread.IAsyncTaskHandler.d(IAsyncTaskHandler.java:153)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(IAsyncTaskHandlerReentrant.java:24)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1324)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:193)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.util.thread.IAsyncTaskHandler.x(IAsyncTaskHandler.java:126)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.server.MinecraftServer.bg(MinecraftServer.java:1301)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1294)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.util.thread.IAsyncTaskHandler.c(IAsyncTaskHandler.java:136)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.server.MinecraftServer.u_(MinecraftServer.java:1272)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1160)
05.11 21:30:17 [Server] INFO [ACF]     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315)
05.11 21:30:17 [Server] INFO [ACF]     at java.base/java.lang.Thread.run(Thread.java:833)
05.11 21:30:17 [Server] ERROR Another plugin is trying to load a resourcepack. Please disable it in the other plugin config.
05.11 21:30:17 [Server] ERROR URL: https://download.mc-packs.net/pack/9f264208c737992f973b5f1d83668a02fe0ef0a2.zip
05.11 21:30:17 [Server] ERROR Minecraft only supports 1 server resourcepack.
05.11 21:30:17 [Server] ERROR To use more than 1 resourcepack you have to merge them, please refer to the ItemsAdder wiki
05.11 21:30:17 [Server] ERROR to know how to merge resource packs.
05.11 21:30:17 [Server] INFO + darkclone9 Connected
05.11 21:30:17 [Connect] User darkclone9, IP 50.86.233.116
05.11 21:30:18 [Multicraft] darkclone9 ran command Message of the Day
05.11 21:30:26 [Server] INFO darkclone9 issued server command: /cmi
05.11 21:30:26 [Server] ERROR null
05.11 21:30:26 [Server] INFO org.bukkit.command.CommandException: Cannot execute command 'cmi' in plugin CMI v9.6.5.3 - plugin is disabled.
05.11 21:30:26 [Server] INFO at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:30:26 [Server] INFO at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:155) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:30:26 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.dispatchCommand(CraftServer.java:989) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:30:26 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:30:26 [Server] INFO at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:265) ~[paper-1.20.2.jar:?]
05.11 21:30:26 [Server] INFO at net.minecraft.commands.Commands.performCommand(Commands.java:330) ~[?:?]
05.11 21:30:26 [Server] INFO at net.minecraft.commands.Commands.performCommand(Commands.java:314) ~[?:?]
05.11 21:30:26 [Server] INFO at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2207) ~[?:?]
05.11 21:30:26 [Server] INFO at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$19(ServerGamePacketListenerImpl.java:2167) ~[?:?]
05.11 21:30:26 [Server] INFO at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
05.11 21:30:26 [Server] INFO at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
05.11 21:30:26 [Server] INFO at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:30:26 [Server] INFO at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
05.11 21:30:26 [Server] INFO at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
05.11 21:30:26 [Server] INFO at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1324) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:30:26 [Server] INFO at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:193) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:30:26 [Server] INFO at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
05.11 21:30:26 [Server] INFO at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1301) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:30:26 [Server] INFO at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1294) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:30:26 [Server] INFO at net.minecraft.util.thread.BlockableEventLoop.runAllTasks(BlockableEventLoop.java:114) ~[?:?]
05.11 21:30:26 [Server] INFO at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1410) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:30:26 [Server] INFO at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1156) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:30:26 [Server] INFO at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:30:26 [Server] INFO at java.lang.Thread.run(Thread.java:833) ~[?:?]
05.11 21:30:40 [Server] INFO CONSOLE issued server command: /list
05.11 21:30:40 [Server] INFO There are 1 out of maximum 120 players online.
05.11 21:30:40 [Server] INFO default: [RECRUIT]darkclone9
05.11 21:31:28 [Server] INFO CONSOLE issued server command: /list
05.11 21:31:28 [Server] INFO There are 1 out of maximum 120 players online.
05.11 21:31:28 [Server] INFO default: [RECRUIT]darkclone9
05.11 21:31:37 [Server] INFO darkclone9 issued server command: /restart
05.11 21:31:37 [Server] INFO [org.spigotmc.RestartCommand] Startup script './start.sh' does not exist! Stopping server.
05.11 21:31:37 [Disconnect] User darkclone9 has disconnected, reason: Server is restarting
05.11 21:31:37 [Server] INFO - darkclone9 Disconnected
05.11 21:31:37 [Server] INFO Stopping server
05.11 21:31:37 [Server] INFO Disabling TavernBard v1.2
05.11 21:31:37 [Server] INFO Disabling UltimateShop v1.7.7
05.11 21:31:37 [Server] INFO Plugin is disabled. Author: PQguanfang.
05.11 21:31:37 [Server] INFO Disabling VoxelSniper v8.12.4
05.11 21:31:37 [Server] INFO Disabling ImageOnMap v4.2.2
05.11 21:31:37 [Server] INFO Disabling NotBounties v1.12.1
05.11 21:31:37 [Server] INFO Disabling Vanillahungergames v2.4
05.11 21:31:37 [Server] INFO Disabling FishRewards v1.2.4
05.11 21:31:37 [Server] INFO Disabling PlugManX v2.3.5
05.11 21:31:37 [Server] INFO Disabling Iris v2.8.0-1.20.1
05.11 21:31:37 [Server] INFO Disabling Invsee v1.0.0
05.11 21:31:37 [Server] INFO Disabling FacilisCommon v1.0.2-SNAPSHOT
05.11 21:31:37 [Server] INFO Disabling Images v2.3.1
05.11 21:31:37 [Server] INFO Disabling Chunky v1.3.92
05.11 21:31:37 [Server] INFO Disabling DeluxeMenus v1.13.7-Release
05.11 21:31:37 [Server] INFO Disabling LPC v3.6.0
05.11 21:31:37 [Server] INFO Disabling BigDoorsOpener v2.5.2
05.11 21:31:37 [Server] INFO Disabling PlayerParticles v8.4
05.11 21:31:37 [Server] INFO Disabling Guilds v3.5.7.0
05.11 21:31:37 [Server] INFO Shutting down database...
05.11 21:31:37 [Server] INFO Database has been shut down.
05.11 21:31:37 [Server] INFO Disabling MusicBox v2.0.13
05.11 21:31:37 [Server] INFO Disabling TreeAssist v7.3.49
05.11 21:31:37 [Server] INFO Disabling Multiverse-Inventories v4.2.6
05.11 21:31:37 [Server] INFO Disabling Waypoints v4.2.0
05.11 21:31:37 [Server] INFO Disabling GreetingPlugin v2.0-SNAPSHOT
05.11 21:31:37 [Server] INFO Greeting Plugin has been disabled.
05.11 21:31:37 [Server] INFO Disabling RankVouchers v3.0
05.11 21:31:37 [Server] INFO Disabling HeadHunterPlugin v2.0.7
05.11 21:31:37 [Server] INFO Disabling JukeLooper v2.5
05.11 21:31:37 [Server] INFO Disabling ZombieApocalypse v1.4.8
05.11 21:31:37 [Server] INFO Disabling UltraCosmetics v3.4.1
05.11 21:31:37 [Server] INFO Disabling TerraformGenerator v11.1.1
05.11 21:31:37 [Server] INFO Disabling CrateReloaded v2.3.1
05.11 21:31:37 [Server] INFO Disabling AdvancedKeep v2.0.1
05.11 21:31:37 [Server] INFO Disabling YamipaPlugin v1.2.11
05.11 21:31:37 [Server] INFO Disabling EggWars v6.1.2
05.11 21:31:37 [Server] INFO Disabling GridSelector v1.3.0
05.11 21:31:37 [Server] INFO Disabling BetterRTPAddons v1.8.8
05.11 21:31:37 [Server] INFO Disabling NBTAPI v2.11.3
05.11 21:31:37 [Server] INFO Disabling spark v1.10.34
05.11 21:31:37 [Server] INFO Disabling TNTRun v2.4.5-SNAPSHOT
05.11 21:31:37 [Server] INFO Disabling TAB v4.0.7
05.11 21:31:37 [Server] INFO Disabled in 0ms
05.11 21:31:37 [Server] INFO Disabling GPFlags v5.12.9
05.11 21:31:37 [Server] INFO Disabling ColoredSigns v6.2.1.212
05.11 21:31:37 [Server] INFO &cColored Signs is now disabled!
05.11 21:31:38 [Server] INFO Disabling GWarp v[2.13.0.2]
05.11 21:31:38 [Server] INFO The Plugin was successfully disabled.
05.11 21:31:38 [Server] INFO Disabling GSlotMachine v3.1.1
05.11 21:31:38 [Server] INFO Disabling WorldEditSelectionVisualizer v2.1.5
05.11 21:31:38 [Server] INFO Disabling BedWars v0.2.30
05.11 21:31:38 [Server] INFO Disabling Multiverse-NetherPortals v4.2.3
05.11 21:31:38 [Server] INFO - Disabled
05.11 21:31:38 [Server] INFO Disabling ItemsAdder v3.6.2-beta-r2
05.11 21:31:38 [Server] INFO [Host] Stopped self-host webserver on port: 3645
05.11 21:31:38 [Server] INFO Disabling BigDoors vAlpha 0.1.8.48 (b1151)
05.11 21:31:38 [Server] INFO Disabling NashornJs v1.1.3
05.11 21:31:38 [Server] INFO Disabling NoteBlockAPI v1.6.2
05.11 21:31:38 [Server] INFO Disabling squaremap v1.2.1
05.11 21:31:38 [Server] INFO stopping server: Undertow - 2.3.8.Final
05.11 21:31:38 [Server] INFO Internal webserver stopped
05.11 21:31:38 [Server] INFO Disabling ChestSort v13.6.4
05.11 21:31:38 [Server] INFO Disabling DecentHolograms v2.8.4
05.11 21:31:38 [Server] INFO Disabling SchematicBrushReborn v2.5.3
05.11 21:31:38 [Server] INFO Storage grid shutdown.
05.11 21:31:38 [Server] INFO Entry grid unregistered at Schematic Registry
05.11 21:31:38 [Server] INFO Storage storage shutdown.
05.11 21:31:38 [Server] INFO Entry storage unregistered at Schematic Registry
05.11 21:31:38 [Server] INFO Storage yaml shutdown.
05.11 21:31:38 [Server] INFO Entry yaml unregistered at Storage Registry
05.11 21:31:38 [Server] INFO Disabling GCore v8.48.0
05.11 21:31:38 [Server] INFO Disabled integration for PlaceholderAPI
05.11 21:31:38 [Server] INFO Disabled integration for MythicMobs
05.11 21:31:38 [Server] INFO Disabled integration for Citizens
05.11 21:31:38 [Server] INFO Disabling Multiverse-Portals v4.2.3
05.11 21:31:38 [Server] INFO Disabling LoneLibs v1.0.27
05.11 21:31:38 [Server] INFO Disabling TownyChat v0.109
05.11 21:31:38 [Server] INFO Disabling Factions v1.6.9.5-4.1.3-STABLE
05.11 21:31:38 [Server] INFO ===== Shutdown Start =====
05.11 21:31:38 [Server] INFO Shutdown Successful!
05.11 21:31:38 [Server] INFO Disabling GriefPrevention v16.18.1
05.11 21:31:38 [Server] INFO GriefPrevention disabled.
05.11 21:31:38 [Server] INFO Disabling MythicMobs v5.4.1-${CI_COMMIT_SHORT_SHA}
05.11 21:31:38 [Server] INFO ------------------------------------------------------------
05.11 21:31:38 [Server] INFO -
05.11 21:31:38 [Server] INFO - Unloading Mythic...
05.11 21:31:38 [Server] INFO -
05.11 21:31:38 [Server] INFO ------------------------------------------------------------
05.11 21:31:38 [Server] INFO - Spawners saved and unloaded...
05.11 21:31:38 [Server] INFO - Mobs saved and unloaded...
05.11 21:31:38 [Server] INFO - Variables saved...
05.11 21:31:38 [Server] INFO - All active settings have been saved!
05.11 21:31:38 [Server] INFO - Mythic has been unloaded!
05.11 21:31:38 [Server] INFO ------------------------------------------------------------
05.11 21:31:38 [Server] INFO Disabling mcMMO v2.1.224
05.11 21:31:38 [Server] INFO Server shutdown has been executed, saving and cleaning up data...
05.11 21:31:38 [Server] INFO Saving mcMMOPlayers... (0)
05.11 21:31:38 [Server] INFO Finished save operation for 0 players!
05.11 21:31:38 [Server] INFO Disabling LWC v2.3.1
05.11 21:31:38 [Server] INFO Flushing protection updates (0)
05.11 21:31:38 [Server] INFO Disabling EssentialsChat v2.21.0-dev+17-79449ef
05.11 21:31:38 [Server] INFO Disabling Multiverse-Core v4.3.12
05.11 21:31:38 [Server] INFO Disabling Towny v0.99.6.0
05.11 21:31:38 [Server] INFO ==============================================================
05.11 21:31:38 [Server] INFO Finishing File IO Tasks...
05.11 21:31:38 [Server] INFO Finishing Universe Tasks...
05.11 21:31:38 [Server] INFO Version: 0.99.6.0 - Plugin Disabled
05.11 21:31:38 [Server] INFO =============================================================
05.11 21:31:38 [Server] INFO Disabling IridiumSkyblock v4.0.7
05.11 21:31:38 [Server] INFO -------------------------------
05.11 21:31:38 [Server] INFO IridiumSkyblock Disabled!
05.11 21:31:38 [Server] INFO -------------------------------
05.11 21:31:38 [Server] INFO Disabling Citizens v2.0.33-SNAPSHOT (build 3219)
05.11 21:31:38 [Server] INFO Disabling WorldGuard v7.0.9+5934e49
05.11 21:31:38 [Server] INFO Shutting down executor and cancelling any pending tasks...
05.11 21:31:38 [Server] INFO Disabling ProtocolLib v5.1.1-SNAPSHOT-673
05.11 21:31:38 [Server] INFO Disabling FastAsyncWorldEdit v2.8.2-SNAPSHOT-581;186d24b
05.11 21:31:38 [Server] INFO Unregistering com.sk89q.worldedit.bukkit.BukkitServerInterface from WorldEdit
05.11 21:31:38 [Server] INFO Disabling EnchantsSquared v2.5.7
05.11 21:31:38 [Server] INFO Disabling Essentials v2.21.0-dev+17-79449ef
05.11 21:31:38 [Server] INFO Disabling DeluxeHub v3.5.5
05.11 21:31:38 [Server] INFO Disabling Vault v1.7.3-b131
05.11 21:31:38 [Server] INFO Disabling PlaceholderAPI v2.11.5
05.11 21:31:38 [Server] INFO Disabling LuckPerms v5.4.104
05.11 21:31:38 [Server] INFO Starting shutdown process...
05.11 21:31:38 [Server] INFO Closing storage...
05.11 21:31:38 [Server] INFO Goodbye!
05.11 21:31:38 [Server] INFO Saving players
05.11 21:31:38 [Server] INFO Saving worlds
05.11 21:31:38 [Server] INFO Saving chunks for level 'ServerLevel[lobby]'/minecraft:overworld
05.11 21:31:38 [Server] INFO Waiting 60s for chunk system to halt for world 'lobby'
05.11 21:31:38 [Server] INFO Halted chunk system for world 'lobby'
05.11 21:31:38 [Server] INFO Saving all chunkholders for world 'lobby'
05.11 21:31:39 [Server] INFO Saved 734 block chunks, 734 entity chunks, 0 poi chunks in world 'lobby' in 1.05s
05.11 21:31:39 [Server] INFO ThreadedAnvilChunkStorage (lobby): All chunks are saved
05.11 21:31:39 [Server] INFO Saving chunks for level 'ServerLevel[lobby_nether]'/minecraft:the_nether
05.11 21:31:39 [Server] INFO Waiting 60s for chunk system to halt for world 'lobby_nether'
05.11 21:31:39 [Server] INFO Halted chunk system for world 'lobby_nether'
05.11 21:31:39 [Server] INFO Saving all chunkholders for world 'lobby_nether'
05.11 21:31:40 [Server] INFO Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'lobby_nether' in 0.80s
05.11 21:31:40 [Server] INFO ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
05.11 21:31:40 [Server] INFO Saving chunks for level 'ServerLevel[lobby_the_end]'/minecraft:the_end
05.11 21:31:40 [Server] INFO Waiting 60s for chunk system to halt for world 'lobby_the_end'
05.11 21:31:40 [Server] INFO Halted chunk system for world 'lobby_the_end'
05.11 21:31:40 [Server] INFO Saving all chunkholders for world 'lobby_the_end'
05.11 21:31:40 [Server] INFO Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'lobby_the_end' in 0.24s
05.11 21:31:40 [Server] INFO ThreadedAnvilChunkStorage (DIM1): All chunks are saved
05.11 21:31:40 [Server] INFO Saving chunks for level 'ServerLevel[IridiumSkyblock]'/minecraft:iridiumskyblock
05.11 21:31:40 [Server] INFO Waiting 60s for chunk system to halt for world 'IridiumSkyblock'
05.11 21:31:40 [Server] INFO Halted chunk system for world 'IridiumSkyblock'
05.11 21:31:40 [Server] INFO Saving all chunkholders for world 'IridiumSkyblock'
05.11 21:31:41 [Server] INFO Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'IridiumSkyblock' in 0.49s
05.11 21:31:41 [Server] INFO ThreadedAnvilChunkStorage (IridiumSkyblock): All chunks are saved
05.11 21:31:41 [Server] INFO Saving chunks for level 'ServerLevel[IridiumSkyblock_nether]'/minecraft:iridiumskyblock_nether
05.11 21:31:41 [Server] INFO Waiting 60s for chunk system to halt for world 'IridiumSkyblock_nether'
05.11 21:31:41 [Server] INFO Halted chunk system for world 'IridiumSkyblock_nether'
05.11 21:31:41 [Server] INFO Saving all chunkholders for world 'IridiumSkyblock_nether'
05.11 21:31:41 [Server] INFO Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'IridiumSkyblock_nether' in 0.22s
05.11 21:31:41 [Server] INFO ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
05.11 21:31:41 [Server] INFO Saving chunks for level 'ServerLevel[IridiumSkyblock_the_end]'/minecraft:iridiumskyblock_the_end
05.11 21:31:41 [Server] INFO Waiting 60s for chunk system to halt for world 'IridiumSkyblock_the_end'
05.11 21:31:41 [Server] INFO Halted chunk system for world 'IridiumSkyblock_the_end'
05.11 21:31:41 [Server] INFO Saving all chunkholders for world 'IridiumSkyblock_the_end'
05.11 21:31:41 [Server] INFO Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'IridiumSkyblock_the_end' in 0.21s
05.11 21:31:41 [Server] INFO ThreadedAnvilChunkStorage (DIM1): All chunks are saved
05.11 21:31:41 [Server] INFO Saving chunks for level 'ServerLevel[survival_world_end]'/minecraft:survival_world_end
05.11 21:31:41 [Server] INFO Waiting 60s for chunk system to halt for world 'survival_world_end'
05.11 21:31:41 [Server] INFO Halted chunk system for world 'survival_world_end'
05.11 21:31:41 [Server] INFO Saving all chunkholders for world 'survival_world_end'
05.11 21:31:41 [Server] INFO Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'survival_world_end' in 0.24s
05.11 21:31:41 [Server] INFO ThreadedAnvilChunkStorage (DIM1): All chunks are saved
05.11 21:31:41 [Server] INFO Saving chunks for level 'ServerLevel[survival_world_nether]'/minecraft:survival_world_nether
05.11 21:31:41 [Server] INFO Waiting 60s for chunk system to halt for world 'survival_world_nether'
05.11 21:31:41 [Server] INFO Halted chunk system for world 'survival_world_nether'
05.11 21:31:41 [Server] INFO Saving all chunkholders for world 'survival_world_nether'
05.11 21:31:42 [Server] INFO Saved 550 block chunks, 550 entity chunks, 0 poi chunks in world 'survival_world_nether' in 0.77s
05.11 21:31:42 [Server] INFO ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
05.11 21:31:42 [Server] INFO Saving chunks for level 'ServerLevel[lobby_test]'/minecraft:lobby_test
05.11 21:31:42 [Server] INFO Waiting 60s for chunk system to halt for world 'lobby_test'
05.11 21:31:42 [Server] INFO Halted chunk system for world 'lobby_test'
05.11 21:31:42 [Server] INFO Saving all chunkholders for world 'lobby_test'
05.11 21:31:42 [Server] INFO Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'lobby_test' in 0.37s
05.11 21:31:43 [Server] INFO ThreadedAnvilChunkStorage (lobby_test): All chunks are saved
05.11 21:31:43 [Server] INFO Saving chunks for level 'ServerLevel[world]'/minecraft:world
05.11 21:31:43 [Server] INFO Waiting 60s for chunk system to halt for world 'world'
05.11 21:31:43 [Server] INFO Halted chunk system for world 'world'
05.11 21:31:43 [Server] INFO Saving all chunkholders for world 'world'
05.11 21:31:44 [Server] INFO Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world' in 1.26s
05.11 21:31:44 [Server] INFO ThreadedAnvilChunkStorage (world): All chunks are saved
05.11 21:31:44 [Server] INFO Saving chunks for level 'ServerLevel[world_the_end]'/minecraft:world_the_end
05.11 21:31:44 [Server] INFO Waiting 60s for chunk system to halt for world 'world_the_end'
05.11 21:31:44 [Server] INFO Halted chunk system for world 'world_the_end'
05.11 21:31:44 [Server] INFO Saving all chunkholders for world 'world_the_end'
05.11 21:31:44 [Server] INFO Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world_the_end' in 0.21s
05.11 21:31:44 [Server] INFO ThreadedAnvilChunkStorage (DIM1): All chunks are saved
05.11 21:31:44 [Server] INFO Saving chunks for level 'ServerLevel[world_nether]'/minecraft:world_nether
05.11 21:31:44 [Server] INFO Waiting 60s for chunk system to halt for world 'world_nether'
05.11 21:31:44 [Server] INFO Halted chunk system for world 'world_nether'
05.11 21:31:44 [Server] INFO Saving all chunkholders for world 'world_nether'
05.11 21:31:45 [Server] INFO Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world_nether' in 0.80s
05.11 21:31:45 [Server] INFO ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
05.11 21:31:45 [Server] INFO Saving chunks for level 'ServerLevel[survival_world]'/minecraft:survival_world
05.11 21:31:45 [Server] INFO Waiting 60s for chunk system to halt for world 'survival_world'
05.11 21:31:45 [Server] INFO Halted chunk system for world 'survival_world'
05.11 21:31:45 [Server] INFO Saving all chunkholders for world 'survival_world'
05.11 21:31:46 [Server] INFO Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'survival_world' in 1.23s
05.11 21:31:46 [Server] INFO ThreadedAnvilChunkStorage (survival_world): All chunks are saved
05.11 21:31:46 [Server] INFO ThreadedAnvilChunkStorage: All dimensions are saved
05.11 21:31:46 [Server] INFO Flushing Chunk IO
05.11 21:31:46 [Server] INFO Closing Thread Pool
05.11 21:31:46 [Server] INFO 2023-11-05 21:31:46,597 Log4j2-AsyncAppenderEventDispatcher-1-Async WARN Advanced terminal features are not available in this environment
05.11 21:31:46 [Server] INFO Closing Server
05.11 21:31:48 [Multicraft] Server shut down (running)
05.11 21:31:48 [Multicraft] Restarting crashed server in 2.0 seconds
05.11 21:31:48 [Multicraft] Server stopped
05.11 21:31:50 [Multicraft] Loading server properties
05.11 21:31:50 [Multicraft] Starting server!
05.11 21:31:50 [Multicraft] Loaded config for "AUTO UPDATING: Paper Latest (Java 17 - Current: 1.20.2 #279)"
05.11 21:31:54 [Multicraft] JAR file not found, copying from global JAR directory
05.11 21:31:54 [Multicraft] Updating eula.txt file
05.11 21:31:56 [Server] INFO Starting org.bukkit.craftbukkit.Main
05.11 21:31:57 [Server] INFO System Info: Java 17 (OpenJDK 64-Bit Server VM 17.0.1+12-39) Host: Linux 4.19.0-12-amd64 (amd64)
05.11 21:31:57 [Server] INFO Loading libraries, please wait...
05.11 21:31:57 [Server] INFO 2023-11-05 21:31:57,455 ServerMain WARN Advanced terminal features are not available in this environment
05.11 21:32:06 [Server] INFO Environment: Environment[accountsHost=https://api.mojang.com, sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
05.11 21:32:09 [Server] INFO Loaded 7 recipes
05.11 21:32:09 [Server] INFO Starting minecraft server version 1.20.2
05.11 21:32:09 [Server] INFO Loading properties
05.11 21:32:09 [Server] INFO This server is running Paper version git-Paper-279 (MC: 1.20.2) (Implementing API version 1.20.2-R0.1-SNAPSHOT) (Git: 274e54b)
05.11 21:32:10 [Server] INFO Using 4 threads for Netty based IO
05.11 21:32:10 [Server] INFO Server Ping Player Sample Count: 12
05.11 21:32:10 [Server] WARN The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
05.11 21:32:10 [Server] INFO We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
05.11 21:32:10 [Server] INFO For more information please visit: https://github.com/PaperMC/Paper/issues/8948
05.11 21:32:10 [Server] INFO Chunk system is using 1 I/O threads, 3 worker threads, and gen parallelism of 3 threads
05.11 21:32:11 [Server] INFO Default game type: SURVIVAL
05.11 21:32:11 [Server] INFO Generating keypair
05.11 21:32:11 [Server] INFO Starting Minecraft server on 147.135.70.77:25565
05.11 21:32:11 [Server] INFO Using epoll channel type
05.11 21:32:11 [Server] INFO Paper: Using libdeflate (Linux x86_64) compression from Velocity.
05.11 21:32:11 [Server] INFO Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
05.11 21:32:11 [Server] ERROR Could not load 'plugins/CMI-9.6.5.3.jar' in 'plugins'
05.11 21:32:11 [Server] INFO org.bukkit.plugin.UnknownDependencyException: Unknown/missing dependency plugins: [CMILib]. Please download and install these plugins to run 'CMI'.
05.11 21:32:11 [Server] INFO at io.papermc.paper.plugin.entrypoint.strategy.modern.ModernPluginLoadingStrategy.loadProviders(ModernPluginLoadingStrategy.java:82) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:32:11 [Server] INFO at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:39) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:32:11 [Server] INFO at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:36) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:32:11 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.loadPlugins(CraftServer.java:512) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:32:11 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:273) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:32:11 [Server] INFO at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:32:11 [Server] INFO at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:32:11 [Server] INFO at java.lang.Thread.run(Thread.java:833) ~[?:?]
05.11 21:32:11 [Server] ERROR Could not load 'plugins/Jobs5.2.1.2.jar' in 'plugins'
05.11 21:32:11 [Server] INFO org.bukkit.plugin.UnknownDependencyException: Unknown/missing dependency plugins: [CMILib]. Please download and install these plugins to run 'Jobs'.
05.11 21:32:11 [Server] INFO at io.papermc.paper.plugin.entrypoint.strategy.modern.ModernPluginLoadingStrategy.loadProviders(ModernPluginLoadingStrategy.java:82) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:32:11 [Server] INFO at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:39) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:32:11 [Server] INFO at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:36) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:32:11 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.loadPlugins(CraftServer.java:512) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:32:11 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:273) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:32:11 [Server] INFO at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:32:11 [Server] INFO at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:32:11 [Server] INFO at java.lang.Thread.run(Thread.java:833) ~[?:?]
05.11 21:32:12 [Server] INFO [SchematicBrushReborn] Loading 3 libraries... please wait
05.11 21:32:12 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.15.2/jackson-dataformat-yaml-2.15.2.jar
05.11 21:32:12 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/com/fasterxml/jackson/core/jackson-databind/2.15.2/jackson-databind-2.15.2.jar
05.11 21:32:12 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/com/fasterxml/jackson/core/jackson-annotations/2.15.2/jackson-annotations-2.15.2.jar
05.11 21:32:12 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/org/yaml/snakeyaml/2.0/snakeyaml-2.0.jar
05.11 21:32:12 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/com/fasterxml/jackson/core/jackson-core/2.15.2/jackson-core-2.15.2.jar
05.11 21:32:12 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-platform-bukkit/4.3.0/adventure-platform-bukkit-4.3.0.jar
05.11 21:32:12 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-platform-api/4.3.0/adventure-platform-api-4.3.0.jar
05.11 21:32:12 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.0/adventure-text-serializer-bungeecord-4.3.0.jar
05.11 21:32:12 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-text-serializer-legacy/4.13.0/adventure-text-serializer-legacy-4.13.0.jar
05.11 21:32:12 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-nbt/4.13.0/adventure-nbt-4.13.0.jar
05.11 21:32:12 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
05.11 21:32:12 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
05.11 21:32:12 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
05.11 21:32:12 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-text-serializer-gson/4.13.0/adventure-text-serializer-gson-4.13.0.jar
05.11 21:32:12 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.0/adventure-text-serializer-gson-legacy-impl-4.13.0.jar
05.11 21:32:12 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-platform-facet/4.3.0/adventure-platform-facet-4.3.0.jar
05.11 21:32:12 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-platform-viaversion/4.3.0/adventure-platform-viaversion-4.3.0.jar
05.11 21:32:12 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-text-minimessage/4.14.0/adventure-text-minimessage-4.14.0.jar
05.11 21:32:12 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
05.11 21:32:12 [Server] INFO [SchematicBrushReborn] Loaded library /libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
05.11 21:32:13 [Server] INFO [BigDoors] Loading 1 libraries... please wait
05.11 21:32:13 [Server] INFO [BigDoors] Loaded library /libraries/net/bytebuddy/byte-buddy/1.14.8/byte-buddy-1.14.8.jar
05.11 21:32:13 [Server] WARN Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
05.11 21:32:18 [Server] INFO [TradingCards] Loading 15 libraries... please wait
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/net/lingala/zip4j/zip4j/2.11.5/zip4j-2.11.5.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/org/flywaydb/flyway-mysql/9.19.4/flyway-mysql-9.19.4.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/org/flywaydb/flyway-core/9.19.4/flyway-core-9.19.4.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/org/spongepowered/configurate-yaml/4.1.2/configurate-yaml-4.1.2.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/org/spongepowered/configurate-core/4.1.2/configurate-core-4.1.2.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/io/leangen/geantyref/geantyref/1.3.11/geantyref-1.3.11.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/com/google/errorprone/error_prone_annotations/2.6.0/error_prone_annotations-2.6.0.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/org/yaml/snakeyaml/1.28/snakeyaml-1.28.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/adventure-platform-bukkit/4.3.0/adventure-platform-bukkit-4.3.0.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/adventure-platform-api/4.3.0/adventure-platform-api-4.3.0.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.0/adventure-text-serializer-bungeecord-4.3.0.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/adventure-text-serializer-legacy/4.13.0/adventure-text-serializer-legacy-4.13.0.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/adventure-nbt/4.13.0/adventure-nbt-4.13.0.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/adventure-text-serializer-gson/4.13.0/adventure-text-serializer-gson-4.13.0.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.0/adventure-text-serializer-gson-legacy-impl-4.13.0.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/adventure-platform-facet/4.3.0/adventure-platform-facet-4.3.0.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/net/kyori/adventure-platform-viaversion/4.3.0/adventure-platform-viaversion-4.3.0.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/org/jooq/jooq/3.18.4/jooq-3.18.4.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/io/r2dbc/r2dbc-spi/1.0.0.RELEASE/r2dbc-spi-1.0.0.RELEASE.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/org/jooq/jooq-codegen/3.18.4/jooq-codegen-3.18.4.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/org/jooq/jooq-meta/3.18.4/jooq-meta-3.18.4.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/jakarta/xml/bind/jakarta.xml.bind-api/3.0.0/jakarta.xml.bind-api-3.0.0.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/com/sun/activation/jakarta.activation/2.0.0/jakarta.activation-2.0.0.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/org/apache/commons/commons-rng-client-api/1.5/commons-rng-client-api-1.5.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/org/apache/commons/commons-rng-core/1.5/commons-rng-core-1.5.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/org/apache/commons/commons-rng-sampling/1.5/commons-rng-sampling-1.5.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/org/apache/commons/commons-rng-simple/1.5/commons-rng-simple-1.5.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/com/github/ben-manes/caffeine/caffeine/3.1.6/caffeine-3.1.6.jar
05.11 21:32:18 [Server] INFO [TradingCards] Loaded library /libraries/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.jar
05.11 21:32:19 [Server] WARN Legacy plugin RankVouchers v3.0 does not specify an api-version.
05.11 21:32:19 [Server] INFO [FacilisCommon] Loading 4 libraries... please wait
05.11 21:32:19 [Server] INFO [FacilisCommon] Loaded library /libraries/net/kyori/adventure-api/4.13.0/adventure-api-4.13.0.jar
05.11 21:32:19 [Server] INFO [FacilisCommon] Loaded library /libraries/net/kyori/adventure-key/4.13.0/adventure-key-4.13.0.jar
05.11 21:32:19 [Server] INFO [FacilisCommon] Loaded library /libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
05.11 21:32:19 [Server] INFO [FacilisCommon] Loaded library /libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
05.11 21:32:19 [Server] INFO [FacilisCommon] Loaded library /libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
05.11 21:32:19 [Server] INFO [FacilisCommon] Loaded library /libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
05.11 21:32:19 [Server] INFO [FacilisCommon] Loaded library /libraries/commons-io/commons-io/2.10.0/commons-io-2.10.0.jar
05.11 21:32:19 [Server] INFO [FacilisCommon] Loaded library /libraries/org/apache/maven/maven-artifact/3.6.0/maven-artifact-3.6.0.jar
05.11 21:32:19 [Server] INFO [FacilisCommon] Loaded library /libraries/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.jar
05.11 21:32:19 [Server] WARN Legacy plugin Invsee v1.0.0 does not specify an api-version.
05.11 21:32:19 [Server] INFO [Iris] Loading 11 libraries... please wait
05.11 21:32:19 [Server] INFO [Iris] Loaded library /libraries/com/googlecode/concurrentlinkedhashmap/concurrentlinkedhashmap-lru/1.4.2/concurrentlinkedhashmap-lru-1.4.2.jar
05.11 21:32:19 [Server] INFO [Iris] Loaded library /libraries/com/github/ben-manes/caffeine/caffeine/3.0.5/caffeine-3.0.5.jar
05.11 21:32:19 [Server] INFO [Iris] Loaded library /libraries/org/checkerframework/checker-qual/3.19.0/checker-qual-3.19.0.jar
05.11 21:32:19 [Server] INFO [Iris] Loaded library /libraries/com/google/errorprone/error_prone_annotations/2.10.0/error_prone_annotations-2.10.0.jar
05.11 21:32:19 [Server] INFO [Iris] Loaded library /libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
05.11 21:32:19 [Server] INFO [Iris] Loaded library /libraries/io/timeandspace/smoothie-map/2.0.2/smoothie-map-2.0.2.jar
05.11 21:32:19 [Server] INFO [Iris] Loaded library /libraries/io/timeandspace/jpsg-core/1.4/jpsg-core-1.4.jar
05.11 21:32:19 [Server] INFO [Iris] Loaded library /libraries/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.jar
05.11 21:32:19 [Server] INFO [Iris] Loaded library /libraries/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar
05.11 21:32:19 [Server] INFO [Iris] Loaded library /libraries/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar
05.11 21:32:19 [Server] INFO [Iris] Loaded library /libraries/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar
05.11 21:32:19 [Server] INFO [Iris] Loaded library /libraries/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar
05.11 21:32:19 [Server] INFO [Iris] Loaded library /libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
05.11 21:32:19 [Server] INFO [Iris] Loaded library /libraries/org/zeroturnaround/zt-zip/1.14/zt-zip-1.14.jar
05.11 21:32:19 [Server] INFO [Iris] Loaded library /libraries/org/slf4j/slf4j-api/1.6.6/slf4j-api-1.6.6.jar
05.11 21:32:19 [Server] INFO [Iris] Loaded library /libraries/it/unimi/dsi/fastutil/8.5.6/fastutil-8.5.6.jar
05.11 21:32:19 [Server] INFO [Iris] Loaded library /libraries/org/ow2/asm/asm/9.2/asm-9.2.jar
05.11 21:32:19 [Server] INFO [Iris] Loaded library /libraries/rhino/js/1.7R2/js-1.7R2.jar
05.11 21:32:19 [Server] INFO [Iris] Loaded library /libraries/bsf/bsf/2.4.0/bsf-2.4.0.jar
05.11 21:32:19 [Server] INFO [Iris] Loaded library /libraries/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar
05.11 21:32:19 [Server] INFO Loading server plugin LuckPerms v5.4.104
05.11 21:32:20 [Server] INFO Loading server plugin PlaceholderAPI v2.11.5
05.11 21:32:20 [Server] INFO Loading server plugin Vault v1.7.3-b131
05.11 21:32:20 [Server] INFO Loading server plugin DeluxeHub v3.5.5
05.11 21:32:20 [Server] INFO Loading server plugin EnchantsSquared v2.5.7
05.11 21:32:20 [Server] INFO Loading server plugin FastAsyncWorldEdit v2.8.2-SNAPSHOT-581;186d24b
05.11 21:32:22 [Server] INFO Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@15933b1e]
05.11 21:32:22 [Server] INFO Loading server plugin Essentials v2.21.0-dev+17-79449ef
05.11 21:32:22 [Server] INFO Loading server plugin ProtocolLib v5.1.1-SNAPSHOT-673
05.11 21:32:24 [Server] INFO Loading server plugin WorldGuard v7.0.9+5934e49
05.11 21:32:24 [Server] INFO Loading server plugin IridiumSkyblock v4.0.7
05.11 21:32:25 [Server] INFO Loading server plugin Citizens v2.0.33-SNAPSHOT (build 3219)
05.11 21:32:25 [Server] INFO Loading server plugin Multiverse-Core v4.3.12
05.11 21:32:25 [Server] INFO Loading server plugin EssentialsChat v2.21.0-dev+17-79449ef
05.11 21:32:25 [Server] INFO Loading server plugin Towny v0.99.6.0
05.11 21:32:25 [Server] INFO Loading server plugin MythicMobs v5.4.1-${CI_COMMIT_SHORT_SHA}
05.11 21:32:25 [Server] INFO (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
05.11 21:32:25 [Server] INFO Mythic Enabled!
05.11 21:32:25 [Server] INFO Loading server plugin GriefPrevention v16.18.1
05.11 21:32:25 [Server] INFO Loading server plugin Factions v1.6.9.5-4.1.3-STABLE
05.11 21:32:25 [Server] INFO Loading server plugin mcMMO v2.1.224
05.11 21:32:25 [Server] INFO [D] Registered WG flags successfully!
05.11 21:32:25 [Server] INFO Loading server plugin TownyChat v0.109
05.11 21:32:25 [Server] INFO Loading server plugin LoneLibs v1.0.27
05.11 21:32:25 [Server] INFO Loading server plugin Multiverse-Portals v4.2.3
05.11 21:32:25 [Server] INFO Loading server plugin GCore v8.48.0
05.11 21:32:25 [Server] INFO Loading server plugin BetterRTP v3.6.11
05.11 21:32:25 [Server] INFO Debug logger initialized. Log Level: INFO
05.11 21:32:25 [Server] INFO Loading server plugin SchematicBrushReborn v2.5.3
05.11 21:32:25 [Server] INFO Registered entry of type yaml with de.eldoria.schematicbrush.storage.YamlStorage at Storage Registry
05.11 21:32:25 [Server] INFO Loading server plugin DecentHolograms v2.8.4
05.11 21:32:25 [Server] INFO Loading server plugin ChestSort v13.6.4
05.11 21:32:25 [Server] INFO Loading server plugin DiscordSRV v1.26.2
05.11 21:32:25 [Server] INFO Loading server plugin JukeboxExtendedReborn v1.2.8
05.11 21:32:25 [Server] INFO Loading server plugin squaremap v1.2.1
05.11 21:32:25 [Server] INFO Loading server plugin NoteBlockAPI v1.6.2
05.11 21:32:25 [Server] INFO Loading server plugin NashornJs v1.1.3
05.11 21:32:25 [Server] INFO Registered Nashorn engine with name nashorn
05.11 21:32:25 [Server] INFO Registered Nashorn engine with name Nashorn
05.11 21:32:25 [Server] INFO Registered Nashorn engine with name js
05.11 21:32:25 [Server] INFO Registered Nashorn engine with name JS
05.11 21:32:25 [Server] INFO Registered Nashorn engine with name JavaScript
05.11 21:32:25 [Server] INFO Registered Nashorn engine with name javascript
05.11 21:32:25 [Server] INFO Registered Nashorn engine with name ECMAScript
05.11 21:32:25 [Server] INFO Registered Nashorn engine with name ecmascript
05.11 21:32:25 [Server] INFO Loading server plugin BigDoors vAlpha 0.1.8.48
05.11 21:32:25 [Server] INFO Loading server plugin ItemsAdder v3.6.2-beta-r2
05.11 21:32:25 [Server] INFO Loading server plugin Multiverse-NetherPortals v4.2.3
05.11 21:32:25 [Server] INFO Loading server plugin BedWars v0.2.30
05.11 21:32:25 [Server] INFO Loading server plugin TradingCards v5.7.19
05.11 21:32:25 [Server] INFO Loading server plugin WorldEditSelectionVisualizer v2.1.5
05.11 21:32:25 [Server] INFO Loading server plugin GSlotMachine v3.1.1
05.11 21:32:25 [Server] INFO Loading server plugin GWarp v[2.13.0.2]
05.11 21:32:25 [Server] INFO Loading server plugin ColoredSigns v6.2.1.212
05.11 21:32:25 [Server] INFO Loading server plugin GPFlags v5.12.9
05.11 21:32:25 [Server] INFO Loading server plugin TAB v4.0.7
05.11 21:32:25 [Server] INFO Loading server plugin TNTRun v2.4.5-SNAPSHOT
05.11 21:32:25 [Server] INFO Loading server plugin spark v1.10.34
05.11 21:32:25 [Server] INFO Loading server plugin NBTAPI v2.11.3
05.11 21:32:25 [Server] INFO [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
05.11 21:32:25 [Server] WARN [NBTAPI] This Server-Version(v1_20_R2) is not supported by this NBT-API Version(2.11.3) located in NBTAPI. The NBT-API will try to work as good as it can! Some functions may not work!
05.11 21:32:25 [Server] INFO [NBTAPI] Found Gson: class com.google.gson.Gson
05.11 21:32:25 [Server] INFO [NBTAPI] Using the plugin 'LuckPerms' to create a bStats instance!
05.11 21:32:25 [Server] INFO Loading server plugin BetterRTPAddons v1.8.8
05.11 21:32:25 [Server] INFO Debug logger initialized. Log Level: INFO
05.11 21:32:25 [Server] INFO Loading server plugin GridSelector v1.3.0
05.11 21:32:25 [Server] INFO Loading server plugin EggWars v6.1.2
05.11 21:32:25 [Server] INFO Loading server plugin YamipaPlugin v1.2.11
05.11 21:32:25 [Server] INFO Loading server plugin AdvancedKeep v2.0.1
05.11 21:32:25 [Server] INFO [Integration] Hooked to WorldGuard
05.11 21:32:25 [Server] INFO Loading server plugin CrateReloaded v2.3.1
05.11 21:32:25 [Server] INFO Loading server plugin Skywars v5.6.22
05.11 21:32:25 [Server] INFO Loading server plugin LWC v2.3.1
05.11 21:32:25 [Server] INFO Loading server plugin TerraformGenerator v11.1.1
05.11 21:32:25 [Server] INFO Loading server plugin UltraCosmetics v3.4.1
05.11 21:32:25 [Server] INFO Loading server plugin ZombieApocalypse v1.4.8
05.11 21:32:25 [Server] INFO Loading server plugin JukeLooper v2.5
05.11 21:32:25 [Server] INFO Loading server plugin HeadHunterPlugin v2.0.7
05.11 21:32:25 [Server] INFO Loading server plugin RankVouchers v3.0
05.11 21:32:25 [Server] INFO Loading server plugin GreetingPlugin v2.0-SNAPSHOT
05.11 21:32:25 [Server] INFO Loading server plugin Waypoints v4.2.0
05.11 21:32:25 [Server] WARN [NBTAPI] The NBT-API in 'NBTAPI' seems to be outdated!
05.11 21:32:25 [Server] WARN [NBTAPI] Current Version: '2.11.3' Newest Version: 2.12.1'
05.11 21:32:25 [Server] WARN [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
05.11 21:32:26 [Server] INFO Loading server plugin Multiverse-Inventories v4.2.6
05.11 21:32:26 [Server] INFO Loading server plugin TreeAssist v7.3.49
05.11 21:32:26 [Server] INFO Loading main config file: /config.yml
05.11 21:32:26 [Server] INFO Loading server plugin MusicBox v2.0.13
05.11 21:32:26 [Server] INFO Loading server plugin Guilds v3.5.7.0
05.11 21:32:26 [Server] INFO Loading Libraries...
05.11 21:32:26 [Server] INFO Note: This might take a few minutes on first run. Kindly ensure internet connectivity.
05.11 21:32:27 [Server] INFO Loaded libraries in 0.65 seconds
05.11 21:32:27 [Server] INFO Loading server plugin PlayerParticles v8.4
05.11 21:32:27 [Server] INFO Debug logger initialized. Log Level: INFO
05.11 21:32:27 [Server] INFO Loading server plugin BigDoorsOpener v2.5.2
05.11 21:32:27 [Server] INFO Loading server plugin LPC v3.6.0
05.11 21:32:27 [Server] INFO Loading server plugin DeluxeMenus v1.13.7-Release
05.11 21:32:27 [Server] WARN Could not setup a NMS hook for your server version!
05.11 21:32:27 [Server] INFO Loading server plugin Chunky v1.3.92
05.11 21:32:27 [Server] INFO Loading server plugin Images v2.3.1
05.11 21:32:27 [Server] INFO Loading server plugin FacilisCommon v1.0.2-SNAPSHOT
05.11 21:32:27 [Server] INFO Loading server plugin Invsee v1.0.0
05.11 21:32:27 [Server] INFO Loading server plugin AuctionHouse v3.5.1
05.11 21:32:27 [Server] INFO Loading server plugin Iris v2.8.0-1.20.1
05.11 21:32:27 [Server] INFO Loading server plugin Arcade v1.55
05.11 21:32:27 [Server] INFO Loading server plugin PlugManX v2.3.5
05.11 21:32:27 [Server] INFO Loading server plugin FishRewards v1.2.4
05.11 21:32:27 [Server] INFO Loading server plugin Vanillahungergames v2.4
05.11 21:32:27 [Server] INFO Loading server plugin NotBounties v1.12.1
05.11 21:32:27 [Server] INFO Loading server plugin ImageOnMap v4.2.2
05.11 21:32:27 [Server] INFO Loading server plugin VoxelSniper v8.12.4
05.11 21:32:27 [Server] INFO Loading server plugin UltimateShop v1.7.7
05.11 21:32:27 [Server] INFO Loading server plugin TavernBard v1.2
05.11 21:32:27 [Server] INFO Server permissions file permissions.yml is empty, ignoring it
05.11 21:32:27 [Server] INFO Enabling LuckPerms v5.4.104
05.11 21:32:29 [Server] INFO __
05.11 21:32:29 [Server] INFO |    |__)   LuckPerms v5.4.104
05.11 21:32:29 [Server] INFO |___ |      Running on Bukkit - Paper
05.11 21:32:29 [Server] INFO Loading configuration...
05.11 21:32:30 [Server] INFO Loading storage provider... [H2]
05.11 21:32:31 [Server] INFO Loading internal permission managers...
05.11 21:32:32 [Server] INFO Performing initial data load...
05.11 21:32:32 [Server] INFO Successfully enabled. (took 5525ms)
05.11 21:32:32 [Server] INFO Enabling Vault v1.7.3-b131
05.11 21:32:33 [Server] INFO [Economy] Essentials Economy found: Waiting
05.11 21:32:33 [Server] INFO [Permission] SuperPermissions loaded as backup permission system.
05.11 21:32:33 [Server] INFO Enabled Version 1.7.3-b131
05.11 21:32:33 [Server] INFO Registered Vault permission & chat hook.
05.11 21:32:33 [Server] INFO Enabling FastAsyncWorldEdit v2.8.2-SNAPSHOT-581;186d24b
05.11 21:32:33 [Server] INFO LZ4 Compression Binding loaded successfully
05.11 21:32:33 [Server] INFO ZSTD Compression Binding loaded successfully
05.11 21:32:33 [Server] INFO Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
05.11 21:32:33 [Server] INFO WEPIF: Vault detected! Using Vault for permissions
05.11 21:32:33 [Server] INFO Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_20_R2.PaperweightFaweAdapter as the Bukkit adapter
05.11 21:32:34 [Server] INFO Enabling ProtocolLib v5.1.1-SNAPSHOT-673
05.11 21:32:35 [Server] INFO Enabling LoneLibs v1.0.27
05.11 21:32:35 [Server] INFO Enabling squaremap v1.2.1
05.11 21:32:35 [Server] WARN An update for FastAsyncWorldEdit is available. You are 24 build(s) out of date.
05.11 21:32:35 [Server] INFO You are running build 581, the latest version is build 605.
05.11 21:32:35 [Server] INFO Update at https://www.spigotmc.org/resources/13932/
05.11 21:32:36 [Server] INFO starting server: Undertow - 2.3.8.Final
05.11 21:32:36 [Server] INFO XNIO version 3.8.8.Final
05.11 21:32:36 [Server] INFO XNIO NIO Implementation Version 3.8.8.Final
05.11 21:32:36 [Server] INFO JBoss Threads version 3.5.0.Final
05.11 21:32:36 [Server] INFO Internal webserver running on 147.135.70.77:8080
05.11 21:32:36 [Server] INFO Enabling NashornJs v1.1.3
05.11 21:32:36 [Server] INFO Enabling LWC v2.3.1
05.11 21:32:36 [Server] INFO Connecting to SQLite
05.11 21:32:37 [Server] INFO Enabling TerraformGenerator v11.1.1
05.11 21:32:37 [Server] INFO Custom Logger Initialized
05.11 21:32:37 [Server] INFO bStats Metrics enabled.
05.11 21:32:37 [Server] INFO Detected version: v1_20_R2, number: 20.2
05.11 21:32:37 [Server] INFO Enabling Iris v2.8.0-1.20.1
05.11 21:32:37 [Server] INFO [STDOUT] [Iris]: Locating NMS Binding for v1_20_R2
05.11 21:32:37 [Server] WARN Nag author(s): '[cyberpwn, NextdoorPsycho, Vatuu]' of 'Iris v2.8.0-1.20.1' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
05.11 21:32:37 [Server] INFO [STDOUT] [Iris]: Craftbukkit v1_20_R2  NMSBinding1X Successfully Bound
05.11 21:32:37 [Server] INFO [STDOUT] [Iris]: Note: Some features of Iris may not work the same since you are on an unsupported version of Minecraft.
05.11 21:32:37 [Server] INFO [STDOUT] [Iris]: Note: If this is a new version, expect an update soon.
05.11 21:32:38 [Server] INFO [Iris]: Loading ExternalDataProvider...
05.11 21:32:38 [Server] INFO [Iris]: Version Information: git-Paper-279 (MC: 1.20.2) | 1.20.2-R0.1-SNAPSHOT
05.11 21:32:38 [Server] INFO [Iris]: ============================================
05.11 21:32:38 [Server] INFO [Iris]: =
05.11 21:32:38 [Server] INFO [Iris]: =
05.11 21:32:38 [Server] INFO [Iris]: =
05.11 21:32:38 [Server] INFO [Iris]: Iris is not compatible with this version of Minecraft.
05.11 21:32:38 [Server] INFO Please use 1.20.1 or use an older version of Iris.
05.11 21:32:38 [Server] INFO [Iris]: =
05.11 21:32:38 [Server] INFO [Iris]: =
05.11 21:32:38 [Server] INFO [Iris]: =
05.11 21:32:38 [Server] INFO [Iris]: ============================================
05.11 21:32:38 [Server] INFO [Iris]: We recommend using Purpur for the best experience with Iris.
05.11 21:32:38 [Server] INFO [Iris]: Purpur is a fork of Paper that is optimized for performance and stability.
05.11 21:32:38 [Server] INFO [Iris]: Plugins that work on Spigot / Paper work on Purpur.
05.11 21:32:38 [Server] INFO [Iris]: You can download it here: https://purpurmc.org
05.11 21:32:38 [Server] INFO Enabling PlugManX v2.3.5
05.11 21:32:38 [Server] WARN ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
05.11 21:32:38 [Server] WARN It seems like you're running on paper.
05.11 21:32:38 [Server] WARN This may cause issues.
05.11 21:32:38 [Server] WARN If you encounter any issues, please join my dicord: https://discord.gg/dBhfCzdZxq
05.11 21:32:38 [Server] WARN Or create an issue on GitHub: https://github.com/TheBlackEntity/PlugMan
05.11 21:32:38 [Server] WARN ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
05.11 21:32:38 [Server] INFO Preparing level "lobby"
05.11 21:32:39 [Server] INFO Preparing start region for dimension minecraft:overworld
05.11 21:32:39 [Server] INFO Time elapsed: 376 ms
05.11 21:32:39 [Server] INFO Preparing start region for dimension minecraft:the_nether
05.11 21:32:39 [Server] INFO Time elapsed: 85 ms
05.11 21:32:39 [Server] INFO Preparing start region for dimension minecraft:the_end
05.11 21:32:40 [Server] INFO Time elapsed: 98 ms
05.11 21:32:40 [Server] INFO Enabling PlaceholderAPI v2.11.5
05.11 21:32:40 [Server] INFO Fetching available expansion information...
05.11 21:32:40 [Server] INFO Enabling DeluxeHub v3.5.5
05.11 21:32:40 [Server] INFO _   _            _          _    _
05.11 21:32:40 [Server] INFO | \ |_ |  | | \/ |_ |_| | | |_)   _)
05.11 21:32:40 [Server] INFO |_/ |_ |_ |_| /\ |_ | | |_| |_)   _)
05.11 21:32:40 [Server] INFO Version: 3.5.5
05.11 21:32:40 [Server] INFO Author: ItsLewizzz
05.11 21:32:40 [Server] INFO Hooked into PlaceholderAPI
05.11 21:32:40 [Server] INFO Loaded custom menu 'serverselector'.
05.11 21:32:41 [Server] INFO [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
05.11 21:32:41 [Server] INFO [NBTAPI] NMS support 'MC1_20_R2' loaded!
05.11 21:32:41 [Server] INFO [NBTAPI] Using the plugin 'DeluxeHub' to create a bStats instance!
05.11 21:32:41 [Server] INFO Loaded 15 plugin modules.
05.11 21:32:41 [Server] INFO Successfully loaded in 635ms
05.11 21:32:41 [Server] INFO Enabling EnchantsSquared v2.5.7
05.11 21:32:41 [Server] INFO Enabling Essentials v2.21.0-dev+17-79449ef
05.11 21:32:42 [Server] INFO Attempting to convert old kits in config.yml to new kits.yml
05.11 21:32:42 [Server] INFO No kits found to migrate.
05.11 21:32:42 [Server] INFO Loaded 39094 items from items.json.
05.11 21:32:42 [Server] INFO Using locale en_US
05.11 21:32:42 [Server] INFO ServerListPingEvent: Spigot iterator API
05.11 21:32:43 [Server] INFO Starting Metrics. Opt-out using the global bStats config.
05.11 21:32:43 [Server] INFO [Economy] Essentials Economy hooked.
05.11 21:32:43 [Server] INFO Using Vault based permissions (LuckPerms)
05.11 21:32:43 [Server] INFO Enabling WorldGuard v7.0.9+5934e49
05.11 21:32:43 [Server] INFO (lobby) TNT ignition is PERMITTED.
05.11 21:32:43 [Server] INFO (lobby) Lighters are PERMITTED.
05.11 21:32:43 [Server] INFO (lobby) Lava fire is PERMITTED.
05.11 21:32:43 [Server] INFO (lobby) Fire spread is UNRESTRICTED.
05.11 21:32:43 [Server] INFO Loaded configuration for world 'lobby'
05.11 21:32:43 [Server] INFO (lobby_nether) TNT ignition is PERMITTED.
05.11 21:32:43 [Server] INFO (lobby_nether) Lighters are PERMITTED.
05.11 21:32:43 [Server] INFO (lobby_nether) Lava fire is PERMITTED.
05.11 21:32:43 [Server] INFO (lobby_nether) Fire spread is UNRESTRICTED.
05.11 21:32:43 [Server] INFO Loaded configuration for world 'lobby_nether'
05.11 21:32:43 [Server] INFO (lobby_the_end) TNT ignition is PERMITTED.
05.11 21:32:43 [Server] INFO (lobby_the_end) Lighters are PERMITTED.
05.11 21:32:43 [Server] INFO (lobby_the_end) Lava fire is PERMITTED.
05.11 21:32:43 [Server] INFO (lobby_the_end) Fire spread is UNRESTRICTED.
05.11 21:32:43 [Server] INFO Loaded configuration for world 'lobby_the_end'
05.11 21:32:43 [Server] INFO Loading region data...
05.11 21:32:43 [Server] INFO Enabling IridiumSkyblock v4.0.7
05.11 21:32:43 [Server] INFO Preparing start region for dimension minecraft:iridiumskyblock
05.11 21:32:45 [Server] INFO Time elapsed: 2027 ms
05.11 21:32:45 [Server] INFO (IridiumSkyblock) TNT ignition is PERMITTED.
05.11 21:32:45 [Server] INFO (IridiumSkyblock) Lighters are PERMITTED.
05.11 21:32:45 [Server] INFO (IridiumSkyblock) Lava fire is PERMITTED.
05.11 21:32:45 [Server] INFO (IridiumSkyblock) Fire spread is UNRESTRICTED.
05.11 21:32:45 [Server] INFO Loaded configuration for world 'IridiumSkyblock'
05.11 21:32:46 [Server] INFO Preparing start region for dimension minecraft:iridiumskyblock_nether
05.11 21:32:46 [Server] INFO Time elapsed: 61 ms
05.11 21:32:46 [Server] INFO (IridiumSkyblock_nether) TNT ignition is PERMITTED.
05.11 21:32:46 [Server] INFO (IridiumSkyblock_nether) Lighters are PERMITTED.
05.11 21:32:46 [Server] INFO (IridiumSkyblock_nether) Lava fire is PERMITTED.
05.11 21:32:46 [Server] INFO (IridiumSkyblock_nether) Fire spread is UNRESTRICTED.
05.11 21:32:46 [Server] INFO Loaded configuration for world 'IridiumSkyblock_nether'
05.11 21:32:46 [Server] INFO Preparing start region for dimension minecraft:iridiumskyblock_the_end
05.11 21:32:46 [Server] INFO Time elapsed: 494 ms
05.11 21:32:46 [Server] INFO (IridiumSkyblock_the_end) TNT ignition is PERMITTED.
05.11 21:32:46 [Server] INFO (IridiumSkyblock_the_end) Lighters are PERMITTED.
05.11 21:32:46 [Server] INFO (IridiumSkyblock_the_end) Lava fire is PERMITTED.
05.11 21:32:46 [Server] INFO (IridiumSkyblock_the_end) Fire spread is UNRESTRICTED.
05.11 21:32:46 [Server] INFO Loaded configuration for world 'IridiumSkyblock_the_end'
05.11 21:32:49 [Server] INFO Waiting 60s for chunk system to halt for world 'IridiumSkyblock_the_end'
05.11 21:32:49 [Server] INFO Halted chunk system for world 'IridiumSkyblock_the_end'
05.11 21:32:49 [Server] INFO Saving all chunkholders for world 'IridiumSkyblock_the_end'
05.11 21:32:49 [Server] INFO Saved 0 block chunks, 0 entity chunks, 0 poi chunks in world 'IridiumSkyblock_the_end' in 0.00s
05.11 21:32:49 [Server] INFO [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
05.11 21:32:49 [Server] INFO [NBTAPI] NMS support 'MC1_20_R2' loaded!
05.11 21:32:49 [Server] INFO [NBTAPI] Using the plugin 'IridiumSkyblock' to create a bStats instance!
05.11 21:32:50 [Server] INFO Preparing start region for dimension minecraft:iridiumskyblock_the_end
05.11 21:32:50 [Server] INFO Time elapsed: 93 ms
05.11 21:32:50 [Server] INFO Successfully registered internal expansion: iridiumskyblock [4.0.7]
05.11 21:32:50 [Server] INFO Successfully registered Placeholders for PlaceholderAPI.
05.11 21:32:50 [Server] INFO -------------------------------
05.11 21:32:50 [Server] INFO IridiumSkyblock Enabled!
05.11 21:32:50 [Server] INFO -------------------------------
05.11 21:32:50 [Server] INFO Enabling Citizens v2.0.33-SNAPSHOT (build 3219)
05.11 21:32:50 [Server] INFO Loading external libraries
05.11 21:32:51 [Server] INFO Successfully registered internal expansion: citizensplaceholder [1.0.0]
05.11 21:32:51 [Server] INFO Loaded economy handling via Vault.
05.11 21:32:51 [Server] INFO Enabling Multiverse-Core v4.3.12
05.11 21:32:51 [Server] WARN "Multiverse-Core v4.3.12" 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--].
05.11 21:32:51 [Server] INFO 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.
05.11 21:32:52 [Server] INFO Preparing start region for dimension minecraft:survival_world_end
05.11 21:32:52 [Server] INFO Time elapsed: 105 ms
05.11 21:32:52 [Server] INFO (survival_world_end) TNT ignition is PERMITTED.
05.11 21:32:52 [Server] INFO (survival_world_end) Lighters are PERMITTED.
05.11 21:32:52 [Server] INFO (survival_world_end) Lava fire is PERMITTED.
05.11 21:32:52 [Server] INFO (survival_world_end) Fire spread is UNRESTRICTED.
05.11 21:32:52 [Server] INFO Loaded configuration for world 'survival_world_end'
05.11 21:32:52 [Server] INFO Preparing start region for dimension minecraft:survival_world_nether
05.11 21:32:52 [Server] INFO Time elapsed: 89 ms
05.11 21:32:52 [Server] INFO (survival_world_nether) TNT ignition is PERMITTED.
05.11 21:32:52 [Server] INFO (survival_world_nether) Lighters are PERMITTED.
05.11 21:32:52 [Server] INFO (survival_world_nether) Lava fire is PERMITTED.
05.11 21:32:52 [Server] INFO (survival_world_nether) Fire spread is UNRESTRICTED.
05.11 21:32:52 [Server] INFO Loaded configuration for world 'survival_world_nether'
05.11 21:32:52 [Server] INFO Preparing start region for dimension minecraft:lobby_test
05.11 21:32:53 [Server] INFO Time elapsed: 120 ms
05.11 21:32:53 [Server] INFO (lobby_test) TNT ignition is PERMITTED.
05.11 21:32:53 [Server] INFO (lobby_test) Lighters are PERMITTED.
05.11 21:32:53 [Server] INFO (lobby_test) Lava fire is PERMITTED.
05.11 21:32:53 [Server] INFO (lobby_test) Fire spread is UNRESTRICTED.
05.11 21:32:53 [Server] INFO Loaded configuration for world 'lobby_test'
05.11 21:32:53 [Server] INFO Preparing start region for dimension minecraft:world_the_end
05.11 21:32:53 [Server] INFO Time elapsed: 651 ms
05.11 21:32:53 [Server] INFO (world_the_end) TNT ignition is PERMITTED.
05.11 21:32:53 [Server] INFO (world_the_end) Lighters are PERMITTED.
05.11 21:32:53 [Server] INFO (world_the_end) Lava fire is PERMITTED.
05.11 21:32:53 [Server] INFO (world_the_end) Fire spread is UNRESTRICTED.
05.11 21:32:53 [Server] INFO Loaded configuration for world 'world_the_end'
05.11 21:32:54 [Server] INFO Preparing start region for dimension minecraft:world
05.11 21:32:54 [Server] INFO Time elapsed: 174 ms
05.11 21:32:54 [Server] INFO (world) TNT ignition is PERMITTED.
05.11 21:32:54 [Server] INFO (world) Lighters are PERMITTED.
05.11 21:32:54 [Server] INFO (world) Lava fire is PERMITTED.
05.11 21:32:54 [Server] INFO (world) Fire spread is UNRESTRICTED.
05.11 21:32:54 [Server] INFO Loaded configuration for world 'world'
05.11 21:32:54 [Server] INFO Detected world: survival_world, commencing injection...
05.11 21:32:54 [Server] INFO Injection success! Proceeding with generation.
05.11 21:32:54 [Server] INFO Preparing start region for dimension minecraft:survival_world
05.11 21:32:54 [Server] INFO Time elapsed: 31 ms
05.11 21:32:54 [Server] INFO survival_world loaded.
05.11 21:32:54 [Server] INFO (survival_world) TNT ignition is PERMITTED.
05.11 21:32:54 [Server] INFO (survival_world) Lighters are PERMITTED.
05.11 21:32:54 [Server] INFO (survival_world) Lava fire is PERMITTED.
05.11 21:32:54 [Server] INFO (survival_world) Fire spread is UNRESTRICTED.
05.11 21:32:54 [Server] INFO Loaded configuration for world 'survival_world'
05.11 21:32:54 [Server] INFO Preparing start region for dimension minecraft:world_nether
05.11 21:32:55 [Server] INFO Time elapsed: 195 ms
05.11 21:32:55 [Server] INFO (world_nether) TNT ignition is PERMITTED.
05.11 21:32:55 [Server] INFO (world_nether) Lighters are PERMITTED.
05.11 21:32:55 [Server] INFO (world_nether) Lava fire is PERMITTED.
05.11 21:32:55 [Server] INFO (world_nether) Fire spread is UNRESTRICTED.
05.11 21:32:55 [Server] INFO Loaded configuration for world 'world_nether'
05.11 21:32:55 [Server] INFO 13 - World(s) loaded.
05.11 21:32:55 [Server] WARN 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.
05.11 21:32:55 [Server] INFO Version 4.3.12 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
05.11 21:32:55 [Server] INFO Enabling EssentialsChat v2.21.0-dev+17-79449ef
05.11 21:32:55 [Server] INFO Starting Metrics. Opt-out using the global bStats config.
05.11 21:32:55 [Server] INFO Enabling Towny v0.99.6.0
05.11 21:32:55 [Server] INFO ====================      Towny      ========================
05.11 21:32:57 [Server] INFO Successfully loaded translations for 42 languages.
05.11 21:32:58 [Server] INFO Config: Loaded 9 townblock types: shop, inn, arena, jail, default, bank, wilds, farm, embassy.
05.11 21:32:58 [Server] INFO Database: [Load] flatfile [Save] flatfile
05.11 21:32:58 [Server] INFO Database: Loaded in 198ms.
05.11 21:32:58 [Server] INFO Database: 100% of residents have stored UUIDs.
05.11 21:32:58 [Server] INFO Cleaning up old backups...
05.11 21:32:58 [Server] INFO Successfully cleaned backups.
05.11 21:32:58 [Server] INFO Making backup...
05.11 21:32:58 [Server] INFO Time until a New Day: 14 hours, 27 minutes, 2 seconds
05.11 21:32:58 [Server] INFO Checking for updates...
05.11 21:32:59 [Server] INFO Towny flatfiles and settings successfully backed up.
05.11 21:32:59 [Server] INFO Searching for third-party plugins...
05.11 21:32:59 [Server] INFO Plugins found:
05.11 21:32:59 [Server] INFO Permissions: TownyPerms, LuckPerms v5.4.104 via Vault
05.11 21:32:59 [Server] INFO Chat: LuckPerms v5.4.104 via Vault
05.11 21:32:59 [Server] INFO New update available: 0.100.0.2 | Current version: 0.99.6.0
05.11 21:32:59 [Server] INFO Download it here: https://github.com/TownyAdvanced/Towny/releases/tag/0.100.0.2
05.11 21:32:59 [Server] INFO Economy: EssentialsX Economy via Vault
05.11 21:32:59 [Server] INFO Successfully registered internal expansion: townyadvanced [0.99.6.0]
05.11 21:32:59 [Server] INFO Add-ons: TownyChat v0.109, PlaceholderAPI v2.11.5
05.11 21:32:59 [Server] INFO Warning: EssentialsX Economy has been known to reset
05.11 21:32:59 [Server] INFO town and nation bank accounts on rare occasions.
05.11 21:32:59 [Server] INFO =============================================================
05.11 21:32:59 [Server] INFO Version: 0.99.6.0 - Plugin Enabled
05.11 21:32:59 [Server] INFO =============================================================
05.11 21:32:59 [Server] INFO Enabling MythicMobs v5.4.1-${CI_COMMIT_SHORT_SHA}
05.11 21:33:00 [Server] INFO Loading MythicMobs for Paper (MC: 1.20.2)...
05.11 21:33:00 [Server] INFO The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
05.11 21:33:01 [Server] INFO Mythic GriefPrevention Support has been enabled!
05.11 21:33:01 [Server] INFO Mythic mcMMO Support has been enabled!
05.11 21:33:01 [Server] INFO Successfully registered internal expansion: mythic [5.0.0]
05.11 21:33:01 [Server] INFO Mythic PlaceholderAPI Support has been enabled!
05.11 21:33:01 [Server] INFO Mythic ProtocolLib Support has been enabled!
05.11 21:33:01 [Server] INFO Mythic Vault Support has been enabled!
05.11 21:33:01 [Server] INFO Mythic WorldGuard Support has been enabled!
05.11 21:33:01 [Server] INFO Base directory /plugins/MythicMobs/SavedData
05.11 21:33:01 [Server] INFO Module directory /plugins/MythicMobs/SavedData/worlds
05.11 21:33:03 [Server] INFO Loading Packs...
05.11 21:33:04 [Server] INFO Loading Items...
05.11 21:33:04 [Server] INFO Loading Item Groups...
05.11 21:33:04 [Server] INFO Loading Skills...
05.11 21:33:04 [Server] INFO Loading stat ATTACK_DAMAGE from /plugins/MythicMobs/stats.yml
05.11 21:33:04 [Server] INFO Loading stat ATTACK_SPEED from /plugins/MythicMobs/stats.yml
05.11 21:33:04 [Server] INFO Loading stat BONUS_DAMAGE from /plugins/MythicMobs/stats.yml
05.11 21:33:04 [Server] INFO Loading stat CRITICAL_STRIKE_CHANCE from /plugins/MythicMobs/stats.yml
05.11 21:33:04 [Server] INFO Loading stat CRITICAL_STRIKE_DAMAGE from /plugins/MythicMobs/stats.yml
05.11 21:33:04 [Server] INFO Loading stat CRITICAL_STRIKE_RESILIENCE from /plugins/MythicMobs/stats.yml
05.11 21:33:04 [Server] INFO Loading stat DAMAGE_REDUCTION from /plugins/MythicMobs/stats.yml
05.11 21:33:04 [Server] INFO Loading stat DEFENSE from /plugins/MythicMobs/stats.yml
05.11 21:33:04 [Server] INFO Loading stat DODGE_CHANCE from /plugins/MythicMobs/stats.yml
05.11 21:33:04 [Server] INFO Loading stat DODGE_NEGATION from /plugins/MythicMobs/stats.yml
05.11 21:33:04 [Server] INFO Loading stat HEALTH from /plugins/MythicMobs/stats.yml
05.11 21:33:04 [Server] INFO Loading stat HEALTH_REGENERATION from /plugins/MythicMobs/stats.yml
05.11 21:33:04 [Server] INFO Loading stat LIFESTEAL_CHANCE from /plugins/MythicMobs/stats.yml
05.11 21:33:04 [Server] INFO Loading stat LIFESTEAL_POWER from /plugins/MythicMobs/stats.yml
05.11 21:33:04 [Server] INFO Loading stat MOVEMENT_SPEED from /plugins/MythicMobs/stats.yml
05.11 21:33:04 [Server] INFO Loading stat PARRY_CHANCE from /plugins/MythicMobs/stats.yml
05.11 21:33:04 [Server] INFO Loading stat PARRY_NEGATION from /plugins/MythicMobs/stats.yml
05.11 21:33:04 [Server] INFO Loading stat PARRY_POWER from /plugins/MythicMobs/stats.yml
05.11 21:33:04 [Server] INFO Loading stat PARRY_COUNTERATTACK from /plugins/MythicMobs/stats.yml
05.11 21:33:04 [Server] INFO Loading stat ARMOR_GENERIC from /plugins/MythicMobs/stats.yml
05.11 21:33:04 [Server] INFO Loading stat ARMOR_BLUNT from /plugins/MythicMobs/stats.yml
05.11 21:33:04 [Server] INFO Loading stat ARMOR_SHARP from /plugins/MythicMobs/stats.yml
05.11 21:33:04 [Server] INFO Loading stat DAMAGE_BLUNT from /plugins/MythicMobs/stats.yml
05.11 21:33:04 [Server] INFO Loading stat DAMAGE_SHARP from /plugins/MythicMobs/stats.yml
05.11 21:33:04 [Server] INFO Loading stat FIRE_RESISTANCE from /plugins/MythicMobs/stats.yml
05.11 21:33:04 [Server] INFO Loading stat SPEED from /plugins/MythicMobs/stats.yml
05.11 21:33:04 [Server] INFO Loading Drop Tables...
05.11 21:33:04 [Server] INFO Loading Random Spawns...
05.11 21:33:04 [Server] INFO Loading Spawn Blocks...
05.11 21:33:04 [Server] INFO ✓ Loaded 8 mobs.
05.11 21:33:04 [Server] INFO ✓ Loaded 3 vanilla mob overrides.
05.11 21:33:04 [Server] INFO ✓ Loaded 0 mob stacks.
05.11 21:33:04 [Server] INFO ✓ Loaded 3 skills.
05.11 21:33:04 [Server] INFO ✓ Loaded 0 random spawns.
05.11 21:33:04 [Server] INFO ✓ Loaded 3 mythic items.
05.11 21:33:04 [Server] INFO ✓ Loaded 2 drop tables.
05.11 21:33:04 [Server] INFO ✓ Loaded 0 mob spawners.
05.11 21:33:04 [Server] INFO MythicMobs configuration file loaded successfully.
05.11 21:33:04 [Server] INFO Started up bStats Metrics
05.11 21:33:04 [Server] INFO ✓ MythicMobs v5.4.1 ( build ${CI_COMMIT_SHORT_SHA} ) has been successfully loaded!
05.11 21:33:04 [Server] INFO Enabling GriefPrevention v16.18.1
05.11 21:33:04 [Server] INFO Finished loading configuration.
05.11 21:33:04 [Server] INFO 1 total claims loaded.
05.11 21:33:05 [Server] INFO Customizable messages loaded.
05.11 21:33:05 [Server] INFO Successfully hooked into WorldGuard.
05.11 21:33:05 [Server] INFO Finished loading data (File Mode).
05.11 21:33:05 [Server] INFO Boot finished.
05.11 21:33:05 [Server] INFO Enabling Factions v1.6.9.5-4.1.3-STABLE
05.11 21:33:05 [Server] INFO === ENABLE START ===
05.11 21:33:05 [Server] INFO Loaded 1 players
05.11 21:33:05 [Server] INFO Loaded 3 Factions
05.11 21:33:06 [Server] INFO Loading board from disk
05.11 21:33:06 [Server] INFO Loaded 0 board locations
05.11 21:33:06 [Server] INFO Economy integration through Vault plugin successful.
05.11 21:33:06 [Server] INFO NOTE: Economy is disabled. You can enable it with the command: f config econEnabled true
05.11 21:33:06 [Server] INFO CoreX Integration Starting!
05.11 21:33:06 [Server] INFO Enabling 15 CoreX Features...
05.11 21:33:06 [Server] INFO Loaded 1 timers into list!
05.11 21:33:06 [Server] INFO Internal Factions Top Being Used. NOTE: Very Basic
05.11 21:33:06 [Server] INFO Successfully registered internal expansion: factionsuuid [1.6.9.5-4.1.3-STABLE]
05.11 21:33:06 [Server] INFO Successfully registered placeholders with PlaceholderAPI.
05.11 21:33:06 [Server] INFO === ENABLE DONE (Took 877.927ms) ===
05.11 21:33:06 [Server] INFO Enabling mcMMO v2.1.224
05.11 21:33:07 [Server] INFO Successfully registered internal expansion: mcmmo [1.0,0]
05.11 21:33:07 [Server] INFO Enabling TownyChat v0.109
05.11 21:33:07 [Server] INFO Towny version 0.99.6.0 found.
05.11 21:33:07 [Server] INFO Default Channel set to general
05.11 21:33:07 [Server] INFO Enabling Multiverse-Portals v4.2.3
05.11 21:33:07 [Server] INFO 0 - Portals(s) loaded
05.11 21:33:07 [Server] INFO Found FastAsyncWorldEdit. Using it for selections.
05.11 21:33:07 [Server] INFO Enabled - By Rigby and fernferret
05.11 21:33:07 [Server] INFO Enabling GCore v8.48.0
05.11 21:33:07 [Server] INFO Already processed v7 -> v8 (config)
05.11 21:33:07 [Server] INFO Already processed v7 -> v8 (data)
05.11 21:33:07 [Server] INFO Already processed v8.4 -> v8.5
05.11 21:33:07 [Server] INFO Already processed v8.8 -> v8.9
05.11 21:33:07 [Server] INFO Already processed v8.23 -> v8.24
05.11 21:33:07 [Server] INFO Already processed v8.24 -> v8.25
05.11 21:33:07 [Server] INFO Already processed v8.29 -> v8.30
05.11 21:33:07 [Server] INFO Found server version MC_1_20_R2
05.11 21:33:07 [Server] INFO Loading materials...
05.11 21:33:08 [Server] INFO Loading sounds...
05.11 21:33:09 [Server] INFO Loading particles...
05.11 21:33:09 [Server] INFO Enabled currency VAULT
05.11 21:33:09 [Server] INFO Enabled currency XP_LEVEL
05.11 21:33:09 [Server] INFO Enabled currency XP
05.11 21:33:09 [Server] INFO Loading texts...
05.11 21:33:09 [Server] INFO Text durationformatdays doesn't exist in default files (not even in en_US)
05.11 21:33:09 [Server] INFO Loaded 1 missing text from default lang for generic.yml : durationFormatDays
05.11 21:33:09 [Server] INFO Enabled integration for Citizens
05.11 21:33:09 [Server] INFO Successfully registered internal expansion: gcore [1.0.0]
05.11 21:33:09 [Server] INFO Enabled integration for PlaceholderAPI
05.11 21:33:09 [Server] INFO Enabled integration for MythicMobs
05.11 21:33:09 [Server] INFO Initializing worker and caches
05.11 21:33:09 [Server] INFO Enabled NPC manager with ProtocolLib
05.11 21:33:09 [Server] INFO Registering integrations
05.11 21:33:09 [Server] INFO Initializing tasks and listeners
05.11 21:33:09 [Server] INFO Successfully enabled
05.11 21:33:09 [Server] INFO Enabling BetterRTP v3.6.11
05.11 21:33:09 [Server] INFO Cooldown = 600
05.11 21:33:09 [Server] INFO Successfully registered internal expansion: betterrtp [3.6.11]
05.11 21:33:09 [Server] INFO Enabling SchematicBrushReborn v2.5.3
05.11 21:33:09 [Server] INFO Locale plugins/SchematicBrushReborn/messages/messages_en_US.properties is up to date.
05.11 21:33:09 [Server] INFO Registered entry of type storage with de.eldoria.schematicbrush.schematics.SchematicBrushCache at Schematic Registry
05.11 21:33:09 [Server] INFO Path: plugins/SchematicBrushReborn/schematics does not exists. Skipping watch service registration.
05.11 21:33:09 [Server] INFO Path: plugins/WorldEdit/schematics does not exists. Skipping watch service registration.
05.11 21:33:09 [Server] INFO Metrics enabled. Thank you <3
05.11 21:33:09 [Server] INFO Enabled. Required 148 ms.
05.11 21:33:09 [Server] INFO Enabling DecentHolograms v2.8.4
05.11 21:33:09 [Server] INFO Using ProtocolLib for packet listening.
05.11 21:33:09 [Server] INFO Enabling ChestSort v13.6.4
05.11 21:33:09 [Server] INFO Hooked into WorldGuard 7.0.9+5934e49
05.11 21:33:09 [Server] INFO Use permissions: true
05.11 21:33:09 [Server] INFO Current sorting method: {category},{itemsFirst},{name},{color},{customName}
05.11 21:33:09 [Server] INFO Allow automatic chest sorting:true
05.11 21:33:09 [Server] INFO |- Chest sorting enabled by default: false
05.11 21:33:09 [Server] INFO |- Sort time: close
05.11 21:33:09 [Server] INFO Allow automatic inventory sorting:true
05.11 21:33:09 [Server] INFO |- Inventory sorting enabled by default: false
05.11 21:33:09 [Server] INFO Auto generate category files: true
05.11 21:33:09 [Server] INFO Allow hotkeys: true
05.11 21:33:09 [Server] INFO Hotkeys enabled by default:
05.11 21:33:09 [Server] INFO |- Middle-Click: true
05.11 21:33:09 [Server] INFO |- Shift-Click: true
05.11 21:33:09 [Server] INFO |- Double-Click: true
05.11 21:33:09 [Server] INFO |- Shift-Right-Click: true
05.11 21:33:09 [Server] INFO Allow additional hotkeys: true
05.11 21:33:09 [Server] INFO Additional hotkeys enabled by default:
05.11 21:33:09 [Server] INFO |- Left-Click: false
05.11 21:33:09 [Server] INFO |- Right-Click: false
05.11 21:33:09 [Server] INFO Check for updates: true
05.11 21:33:09 [Server] INFO Check interval: 4 hours (4.0 seconds)
05.11 21:33:09 [Server] INFO Categories: 900-weapons (6), 905-common-tools (4), 907-other-tools (6), 909-food (33), 910-valuables (47), 920-armor-and-arrows (9), 930-brewing (18), 950-redstone (23), 960-wood (60), 970-stone (38), 980-plants (50), 981-corals (1)
05.11 21:33:09 [Server] INFO Successfully registered internal expansion: chestsort [13.6.4]
05.11 21:33:09 [Server] INFO Enabling DiscordSRV v1.26.2
05.11 21:33:09 [Server] INFO Enabling JukeboxExtendedReborn v1.2.8
05.11 21:33:10 [Server] INFO Discs.json file not found please provide it in the plugin directory
05.11 21:33:10 [Server] INFO [https://github.com/spartacus04/jext-reborn/wiki/How-to-set-up-the-plugin]
05.11 21:33:10 [Server] WARN java.io.FileNotFoundException: discs.json file not found!
05.11 21:33:10 [Server] WARN at JEXT-Reborn_1.2.8.jar//me.spartacus04.jext.config.ConfigManager$Companion.load(ConfigManager.kt:75)
05.11 21:33:10 [Server] WARN at JEXT-Reborn_1.2.8.jar//me.spartacus04.jext.Jext.load(Jext.kt:67)
05.11 21:33:10 [Server] WARN at JEXT-Reborn_1.2.8.jar//me.spartacus04.jext.Jext.onEnable(Jext.kt:35)
05.11 21:33:10 [Server] WARN at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281)
05.11 21:33:10 [Server] WARN at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189)
05.11 21:33:10 [Server] WARN at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
05.11 21:33:10 [Server] WARN at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
05.11 21:33:10 [Server] WARN at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644)
05.11 21:33:10 [Server] WARN at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555)
05.11 21:33:10 [Server] WARN at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627)
05.11 21:33:10 [Server] WARN at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424)
05.11 21:33:10 [Server] WARN at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:308)
05.11 21:33:10 [Server] WARN at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1086)
05.11 21:33:10 [Server] WARN at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315)
05.11 21:33:10 [Server] WARN at java.base/java.lang.Thread.run(Thread.java:833)
05.11 21:33:10 [Server] INFO Disabling JukeboxExtendedReborn v1.2.8
05.11 21:33:10 [Server] INFO Disabled Jukebox Extended Reborn, Mi Re Do!
05.11 21:33:10 [Server] INFO Enabling NoteBlockAPI v1.6.2
05.11 21:33:10 [Server] INFO Enabling BigDoors vAlpha 0.1.8.48
05.11 21:33:10 [Server] ERROR No bot token has been set in the config; a bot token is required to connect to Discord.
05.11 21:33:10 [Server] INFO Power Block Types:
05.11 21:33:10 [Server] INFO - GOLD_BLOCK
05.11 21:33:10 [Server] INFO Blacklisted materials:
05.11 21:33:10 [Server] INFO - BEDROCK
05.11 21:33:10 [Server] INFO - END_PORTAL
05.11 21:33:10 [Server] INFO - END_PORTAL_FRAME
05.11 21:33:10 [Server] INFO - NETHER_PORTAL
05.11 21:33:10 [Server] INFO No materials Whitelisted!
05.11 21:33:10 [Server] INFO DestroyListed materials:
05.11 21:33:10 [Server] INFO - LAVA
05.11 21:33:10 [Server] INFO - WATER
05.11 21:33:10 [Server] INFO - SNOW
05.11 21:33:10 [Server] INFO - FERN
05.11 21:33:10 [Server] INFO - GRASS
05.11 21:33:10 [Server] INFO - TALL_GRASS
05.11 21:33:10 [Server] INFO - SEAGRASS
05.11 21:33:10 [Server] INFO - TALL_SEAGRASS
05.11 21:33:10 [Server] INFO New version of SchematicBrushReborn available.
05.11 21:33:10 [Server] INFO New Version: 2.5.5. Published 9 days ago! 2023.10.27 09:01
05.11 21:33:10 [Server] INFO Current version: 2.5.3 Published 142 days ago! 2023.06.16 12:20
05.11 21:33:10 [Server] INFO Download the new version via Discord: https://www.spigotmc.org/resources/98499/
05.11 21:33:10 [Server] WARN mcMMO detected! All ores are blacklisted to avoid item duplication! This can be overridden in the config.
05.11 21:33:10 [Server] INFO Enabling stats! Thanks, it really helps!
05.11 21:33:10 [Server] INFO Successfully hooked into "WorldGuard"!
05.11 21:33:10 [Server] INFO Successfully hooked into "Towny"!
05.11 21:33:10 [Server] INFO Successfully hooked into "GriefPrevention"!
05.11 21:33:10 [Server] INFO Enabling ItemsAdder v3.6.2-beta-r2
05.11 21:33:10 [Server] INFO [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
05.11 21:33:10 [Server] INFO [NBTAPI] NMS support 'MC1_20_R2' loaded!
05.11 21:33:10 [Server] INFO   ___  ___        __        __   __   ___  __      ItemsAdder 3.6.2-beta-r2
05.11 21:33:10 [Server] INFO |  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     LoneLibs 1.0.27
05.11 21:33:10 [Server] INFO |  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     Paper git-Paper-279 (MC: 1.20.2)
05.11 21:33:10 [Server] INFO
05.11 21:33:10 [Server] INFO DiscordSRV is up-to-date. (767828469573c2f0fa3ed5a44feb0b2f15f2c02d)
05.11 21:33:10 [Server] INFO [Host] Starting self-host webserver on port: 3645
05.11 21:33:11 [Server] INFO [Iris]: Enabled ExternalDataProvider for ItemsAdder.
05.11 21:33:11 [Server] INFO Registered Citizens NPC Trait: customentity
05.11 21:33:11 [Server] INFO Enabling Multiverse-NetherPortals v4.2.3
05.11 21:33:11 [Server] INFO Enabled - By Rigby and fernferret
05.11 21:33:11 [Server] INFO Enabling BedWars v0.2.30
05.11 21:33:11 [Server] INFO Successfully loaded messages for BedWars! Language: English
05.11 21:33:11 [Server] INFO Loading statistics from YAML-File ...
05.11 21:33:11 [Server] INFO Successfully registered internal expansion: bedwars [0.2.30]
05.11 21:33:11 [Server] INFO =====================  by ScreamingSandals <Misat11, Iamceph, Pronze>
05.11 21:33:11 [Server] INFO + Screaming BedWars +  Version: 0.2.30 FREE
05.11 21:33:11 [Server] INFO =====================  STABLE VERSION
05.11 21:33:11 [Server] INFO Found Vault
05.11 21:33:11 [Server] INFO Everything is loaded! If you like our work, consider visiting our Patreon! <3
05.11 21:33:11 [Server] INFO https://www.patreon.com/screamingsandals
05.11 21:33:11 [Server] INFO Enabling TradingCards v5.7.19
05.11 21:33:11 [Server] WARN Tried getting children from a non class object, returning empty list.
05.11 21:33:11 [Server] WARN Tried getting children from a non class object, returning empty list.
05.11 21:33:11 [Server] INFO Loading general.yml
05.11 21:33:11 [Server] INFO Loading chances.yml
05.11 21:33:11 [Server] INFO Loading messages.yml
05.11 21:33:11 [Server] INFO Loading storage.yml
05.11 21:33:11 [Server] INFO Loading advanced.yml
05.11 21:33:11 [Server] INFO Using storage YAML
05.11 21:33:11 [Server] INFO Loading decks.yml
05.11 21:33:11 [Server] INFO Loading packs.yml
05.11 21:33:11 [Server] INFO Loading rarities.yml
05.11 21:33:11 [Server] INFO Loading series.yml
05.11 21:33:11 [Server] INFO Loading custom-types.yml
05.11 21:33:11 [Server] INFO Loading cards.yml
05.11 21:33:11 [Server] INFO Loading cards.yml
05.11 21:33:11 [Server] INFO Loading upgrades.yml
05.11 21:33:11 [Server] WARN Could not get the type for goat_horn reason: null
05.11 21:33:11 [Server] WARN Defaulting to passive.
05.11 21:33:11 [Server] INFO Loading player-blacklist.yml
05.11 21:33:11 [Server] INFO Loading world-blacklist.yml
05.11 21:33:11 [Server] INFO Vault hook successful!
05.11 21:33:11 [Server] INFO Initializing managers...
05.11 21:33:11 [Server] INFO Loaded RarityManager.
05.11 21:33:11 [Server] INFO Loaded DropTypeManager.
05.11 21:33:11 [Server] INFO Loaded SeriesManager.
05.11 21:33:11 [Server] INFO Loaded 136 cards.
05.11 21:33:11 [Server] INFO Loaded CardManager.
05.11 21:33:11 [Server] INFO [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
05.11 21:33:11 [Server] WARN [NBTAPI] This Server-Version(v1_20_R2) is not supported by this NBT-API Version(2.11.3) located in TradingCards. The NBT-API will try to work as good as it can! Some functions may not work!
05.11 21:33:11 [Server] INFO [NBTAPI] Found Gson: class com.google.gson.Gson
05.11 21:33:11 [Server] ERROR Error occurred while enabling TradingCards v5.7.19 (Is it up to date?)
05.11 21:33:11 [Server] INFO net.tinetwork.tradingcards.nbt.NbtApiException: [?]Error while calling the method 'getTagType(java.lang.String)', loaded: true, Enum: COMPOUND_GET_TYPE, Passed Class: class java.lang.Boolean
05.11 21:33:11 [Server] INFO at net.tinetwork.tradingcards.nbt.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:358) ~[TradingCards-5.7.19.jar:?]
05.11 21:33:11 [Server] INFO at net.tinetwork.tradingcards.nbt.NBTReflectionUtil.getData(NBTReflectionUtil.java:635) ~[TradingCards-5.7.19.jar:?]
05.11 21:33:11 [Server] INFO at net.tinetwork.tradingcards.nbt.NBTCompound.getType(NBTCompound.java:1016) ~[TradingCards-5.7.19.jar:?]
05.11 21:33:11 [Server] INFO at net.tinetwork.tradingcards.nbt.NBTCompound.addCompound(NBTCompound.java:669) ~[TradingCards-5.7.19.jar:?]
05.11 21:33:11 [Server] INFO at net.tinetwork.tradingcards.nbt.NBTCompound.getOrCreateCompound(NBTCompound.java:709) ~[TradingCards-5.7.19.jar:?]
05.11 21:33:11 [Server] INFO at net.tinetwork.tradingcards.tradingcardsplugin.managers.impl.BoosterPackManager.generatePack(BoosterPackManager.java:115) ~[TradingCards-5.7.19.jar:?]
05.11 21:33:11 [Server] INFO at net.tinetwork.tradingcards.tradingcardsplugin.managers.impl.BoosterPackManager.generatePack(BoosterPackManager.java:88) ~[TradingCards-5.7.19.jar:?]
05.11 21:33:11 [Server] INFO at com.github.benmanes.caffeine.cache.LocalLoadingCache.lambda$newMappingFunction$3(LocalLoadingCache.java:183) ~[?:?]
05.11 21:33:11 [Server] INFO at com.github.benmanes.caffeine.cache.BoundedLocalCache.lambda$doComputeIfAbsent$14(BoundedLocalCache.java:2685) ~[?:?]
05.11 21:33:11 [Server] INFO at java.util.concurrent.ConcurrentHashMap.compute(ConcurrentHashMap.java:1916) ~[?:?]
05.11 21:33:11 [Server] INFO at com.github.benmanes.caffeine.cache.BoundedLocalCache.doComputeIfAbsent(BoundedLocalCache.java:2683) ~[?:?]
05.11 21:33:11 [Server] INFO at com.github.benmanes.caffeine.cache.BoundedLocalCache.computeIfAbsent(BoundedLocalCache.java:2666) ~[?:?]
05.11 21:33:11 [Server] INFO at com.github.benmanes.caffeine.cache.LocalCache.computeIfAbsent(LocalCache.java:112) ~[?:?]
05.11 21:33:11 [Server] INFO at com.github.benmanes.caffeine.cache.LocalLoadingCache.get(LocalLoadingCache.java:58) ~[?:?]
05.11 21:33:11 [Server] INFO at com.github.benmanes.caffeine.cache.LocalLoadingCache.loadSequentially(LocalLoadingCache.java:82) ~[?:?]
05.11 21:33:11 [Server] INFO at com.github.benmanes.caffeine.cache.LocalLoadingCache.getAll(LocalLoadingCache.java:65) ~[?:?]
05.11 21:33:11 [Server] INFO at net.tinetwork.tradingcards.tradingcardsplugin.managers.impl.BoosterPackManager.preLoadItemStackCache(BoosterPackManager.java:70) ~[TradingCards-5.7.19.jar:?]
05.11 21:33:11 [Server] INFO at net.tinetwork.tradingcards.tradingcardsplugin.managers.impl.BoosterPackManager.<init>(BoosterPackManager.java:41) ~[TradingCards-5.7.19.jar:?]
05.11 21:33:11 [Server] INFO at net.tinetwork.tradingcards.tradingcardsplugin.TradingCards.initManagers(TradingCards.java:258) ~[TradingCards-5.7.19.jar:?]
05.11 21:33:11 [Server] INFO at net.tinetwork.tradingcards.tradingcardsplugin.TradingCards.onEnable(TradingCards.java:157) ~[TradingCards-5.7.19.jar:?]
05.11 21:33:11 [Server] INFO at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:33:11 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:11 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:11 [Server] INFO at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:33:11 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:11 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:11 [Server] INFO at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:11 [Server] INFO at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:11 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:11 [Server] INFO at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:11 [Server] INFO at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:11 [Server] INFO at java.lang.Thread.run(Thread.java:833) ~[?:?]
05.11 21:33:11 [Server] INFO Caused by: java.lang.IllegalArgumentException: object is not an instance of declaring class
05.11 21:33:11 [Server] INFO at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]
05.11 21:33:11 [Server] INFO at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]
05.11 21:33:11 [Server] INFO at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
05.11 21:33:11 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
05.11 21:33:11 [Server] INFO at net.tinetwork.tradingcards.nbt.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:355) ~[TradingCards-5.7.19.jar:?]
05.11 21:33:11 [Server] INFO ... 31 more
05.11 21:33:11 [Server] INFO Disabling TradingCards v5.7.19
05.11 21:33:11 [Server] INFO Enabling WorldEditSelectionVisualizer v2.1.5
05.11 21:33:11 [Server] INFO Using WorldEdit 7 api
05.11 21:33:11 [Server] INFO Successfully registered internal expansion: wesv [2.1.5]
05.11 21:33:11 [Server] INFO PlaceholderAPI extension successfully registered.
05.11 21:33:11 [Server] INFO Enabling GSlotMachine v3.1.1
05.11 21:33:11 [Server] INFO Already processed v2 -> v3 (config)
05.11 21:33:11 [Server] INFO Already processed v2 -> v3 (data)
05.11 21:33:11 [Server] INFO Successfully loaded 1 machine type : default
05.11 21:33:11 [Server] INFO Loading texts...
05.11 21:33:11 [Server] INFO Successfully enabled
05.11 21:33:11 [Server] INFO Enabling GWarp v[2.13.0.2]
05.11 21:33:12 [Server] INFO The Plugin was successfully enabled.
05.11 21:33:12 [Server] INFO Enabling ColoredSigns v6.2.1.212
05.11 21:33:12 [Server] INFO Enabling GPFlags v5.12.9
05.11 21:33:12 [Server] INFO Finished loading configuration.
05.11 21:33:12 [Server] INFO Finished loading data.
05.11 21:33:12 [Server] INFO Successfully loaded in 0.88 seconds
05.11 21:33:12 [Server] INFO Enabling TAB v4.0.7
05.11 21:33:13 [Server] INFO Successfully registered internal expansion: tab [4.0.7]
05.11 21:33:13 [Server] INFO Enabled in 235ms
05.11 21:33:13 [Server] INFO Enabling TNTRun v2.4.5-SNAPSHOT
05.11 21:33:13 [Server] INFO Successfully registered internal expansion: tntrun [2.4.5-SNAPSHOT]
05.11 21:33:13 [Server] INFO Initialization finished. Consider donating: https://buymeacoffee.com/despical
05.11 21:33:13 [Server] INFO Enabling spark v1.10.34
05.11 21:33:13 [Server] INFO Using Paper ServerTickStartEvent for tick monitoring
05.11 21:33:13 [Server] INFO Starting background profiler...
05.11 21:33:14 [Server] INFO Successfully registered internal expansion: spark [1.10.34]
05.11 21:33:14 [Server] INFO Registered PlaceholderAPI placeholders
05.11 21:33:14 [Server] INFO Enabling NBTAPI v2.11.3
05.11 21:33:14 [Server] INFO Adding listeners...
05.11 21:33:14 [Server] INFO Gson:
05.11 21:33:14 [Server] INFO Checking bindings...
05.11 21:33:14 [Server] INFO All Classes were able to link!
05.11 21:33:14 [Server] INFO All Methods were able to link!
05.11 21:33:14 [Server] INFO Running NBT reflection test...
05.11 21:33:14 [Server] WARN Error during 'EqualsTest' test!
05.11 21:33:14 [Server] INFO de.tr7zw.nbtapi.NbtApiException: [?]Error while calling the method 'getTagType(java.lang.String)', loaded: true, Enum: COMPOUND_GET_TYPE, Passed Class: class java.lang.Boolean
05.11 21:33:14 [Server] INFO at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:358) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:33:14 [Server] INFO at de.tr7zw.nbtapi.NBTReflectionUtil.getData(NBTReflectionUtil.java:635) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:33:14 [Server] INFO at de.tr7zw.nbtapi.NBTCompound.getType(NBTCompound.java:1016) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:33:14 [Server] INFO at de.tr7zw.nbtapi.NBTCompound.addCompound(NBTCompound.java:669) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:33:14 [Server] INFO at de.tr7zw.nbtapi.plugin.tests.compounds.EqualsTest.test(EqualsTest.java:25) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:33:14 [Server] INFO at de.tr7zw.nbtapi.plugin.NBTAPI.onEnable(NBTAPI.java:205) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:33:14 [Server] INFO at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:33:14 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:33:14 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at java.lang.Thread.run(Thread.java:833) ~[?:?]
05.11 21:33:14 [Server] INFO Caused by: java.lang.IllegalArgumentException: java.lang.ClassCastException@46cd4abb
05.11 21:33:14 [Server] INFO at jdk.internal.reflect.GeneratedMethodAccessor84.invoke(Unknown Source) ~[?:?]
05.11 21:33:14 [Server] INFO at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
05.11 21:33:14 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
05.11 21:33:14 [Server] INFO at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:355) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:33:14 [Server] INFO ... 17 more
05.11 21:33:14 [Server] WARN Error during 'EmptyItemTest' test!
05.11 21:33:14 [Server] INFO de.tr7zw.nbtapi.NbtApiException: [?]Error while calling the method 'getBoolean(java.lang.String)', loaded: true, Enum: COMPOUND_GET_BOOLEAN, Passed Class: class java.lang.Boolean
05.11 21:33:14 [Server] INFO at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:358) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:33:14 [Server] INFO at de.tr7zw.nbtapi.NBTReflectionUtil.getData(NBTReflectionUtil.java:635) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:33:14 [Server] INFO at de.tr7zw.nbtapi.NBTCompound.getBoolean(NBTCompound.java:438) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:33:14 [Server] INFO at de.tr7zw.nbtapi.plugin.tests.items.EmptyItemTest.test(EmptyItemTest.java:16) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:33:14 [Server] INFO at de.tr7zw.nbtapi.plugin.NBTAPI.onEnable(NBTAPI.java:205) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:33:14 [Server] INFO at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:33:14 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:33:14 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at java.lang.Thread.run(Thread.java:833) ~[?:?]
05.11 21:33:14 [Server] INFO Caused by: java.lang.IllegalArgumentException: object is not an instance of declaring class
05.11 21:33:14 [Server] INFO at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]
05.11 21:33:14 [Server] INFO at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]
05.11 21:33:14 [Server] INFO at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
05.11 21:33:14 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
05.11 21:33:14 [Server] INFO at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:355) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:33:14 [Server] INFO ... 16 more
05.11 21:33:14 [Server] WARN Error during 'ItemMergingTest' test!
05.11 21:33:14 [Server] INFO de.tr7zw.nbtapi.NbtApiException: [?]Error while calling the method 'putString(java.lang.String,java.lang.String)', loaded: true, Enum: COMPOUND_SET_STRING, Passed Class: class java.lang.Boolean
05.11 21:33:14 [Server] INFO at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:358) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:33:14 [Server] INFO at de.tr7zw.nbtapi.NBTReflectionUtil.setData(NBTReflectionUtil.java:615) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:33:14 [Server] INFO at de.tr7zw.nbtapi.NBTCompound.setString(NBTCompound.java:115) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:33:14 [Server] INFO at de.tr7zw.nbtapi.plugin.tests.items.ItemMergingTest.test(ItemMergingTest.java:22) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:33:14 [Server] INFO at de.tr7zw.nbtapi.plugin.NBTAPI.onEnable(NBTAPI.java:205) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:33:14 [Server] INFO at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:33:14 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:33:14 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at java.lang.Thread.run(Thread.java:833) ~[?:?]
05.11 21:33:14 [Server] INFO Caused by: java.lang.IllegalArgumentException: java.lang.ClassCastException@75137cc3
05.11 21:33:14 [Server] INFO at jdk.internal.reflect.GeneratedMethodAccessor87.invoke(Unknown Source) ~[?:?]
05.11 21:33:14 [Server] INFO at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
05.11 21:33:14 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
05.11 21:33:14 [Server] INFO at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:355) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:33:14 [Server] INFO ... 16 more
05.11 21:33:14 [Server] WARN Error during 'DirectApplyTest' test!
05.11 21:33:14 [Server] INFO de.tr7zw.nbtapi.NbtApiException: [?]Error while calling the method 'putString(java.lang.String,java.lang.String)', loaded: true, Enum: COMPOUND_SET_STRING, Passed Class: class java.lang.Boolean
05.11 21:33:14 [Server] INFO at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:358) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:33:14 [Server] INFO at de.tr7zw.nbtapi.NBTReflectionUtil.setData(NBTReflectionUtil.java:615) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:33:14 [Server] INFO at de.tr7zw.nbtapi.NBTCompound.setString(NBTCompound.java:115) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:33:14 [Server] INFO at de.tr7zw.nbtapi.plugin.tests.items.DirectApplyTest.test(DirectApplyTest.java:17) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:33:14 [Server] INFO at de.tr7zw.nbtapi.plugin.NBTAPI.onEnable(NBTAPI.java:205) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:33:14 [Server] INFO at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:33:14 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:33:14 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at java.lang.Thread.run(Thread.java:833) ~[?:?]
05.11 21:33:14 [Server] INFO Caused by: java.lang.IllegalArgumentException: java.lang.ClassCastException@3f6cc0e6
05.11 21:33:14 [Server] INFO at jdk.internal.reflect.GeneratedMethodAccessor87.invoke(Unknown Source) ~[?:?]
05.11 21:33:14 [Server] INFO at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
05.11 21:33:14 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
05.11 21:33:14 [Server] INFO at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:355) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:33:14 [Server] INFO ... 16 more
05.11 21:33:14 [Server] WARN Error during 'DirectApplyMetaTest' test!
05.11 21:33:14 [Server] INFO de.tr7zw.nbtapi.NbtApiException: [?]Error while calling the method 'putString(java.lang.String,java.lang.String)', loaded: true, Enum: COMPOUND_SET_STRING, Passed Class: class java.lang.Boolean
05.11 21:33:14 [Server] INFO at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:358) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:33:14 [Server] INFO at de.tr7zw.nbtapi.NBTReflectionUtil.setData(NBTReflectionUtil.java:615) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:33:14 [Server] INFO at de.tr7zw.nbtapi.NBTCompound.setString(NBTCompound.java:115) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:33:14 [Server] INFO at de.tr7zw.nbtapi.plugin.tests.items.DirectApplyMetaTest.test(DirectApplyMetaTest.java:18) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:33:14 [Server] INFO at de.tr7zw.nbtapi.plugin.NBTAPI.onEnable(NBTAPI.java:205) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:33:14 [Server] INFO at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:33:14 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
05.11 21:33:14 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:14 [Server] INFO at java.lang.Thread.run(Thread.java:833) ~[?:?]
05.11 21:33:14 [Server] INFO Caused by: java.lang.IllegalArgumentException: java.lang.ClassCastException@59f89f73
05.11 21:33:14 [Server] INFO at jdk.internal.reflect.GeneratedMethodAccessor87.invoke(Unknown Source) ~[?:?]
05.11 21:33:14 [Server] INFO at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
05.11 21:33:14 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
05.11 21:33:14 [Server] INFO at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:355) ~[item-nbt-api-plugin-2.11.3.jar:?]
05.11 21:33:14 [Server] INFO ... 16 more
05.11 21:33:14 [Server] INFO DirectApplyMetaTest: [?]Error while calling the method 'putString(java.lang.String,java.lang.String)', loaded: true, Enum: COMPOUND_SET_STRING, Passed Class: class java.lang.Boolean
05.11 21:33:14 [Server] INFO DirectApplyTest: [?]Error while calling the method 'putString(java.lang.String,java.lang.String)', loaded: true, Enum: COMPOUND_SET_STRING, Passed Class: class java.lang.Boolean
05.11 21:33:14 [Server] INFO ItemMergingTest: [?]Error while calling the method 'putString(java.lang.String,java.lang.String)', loaded: true, Enum: COMPOUND_SET_STRING, Passed Class: class java.lang.Boolean
05.11 21:33:14 [Server] INFO EmptyItemTest: [?]Error while calling the method 'getBoolean(java.lang.String)', loaded: true, Enum: COMPOUND_GET_BOOLEAN, Passed Class: class java.lang.Boolean
05.11 21:33:14 [Server] INFO EqualsTest: [?]Error while calling the method 'getTagType(java.lang.String)', loaded: true, Enum: COMPOUND_GET_TYPE, Passed Class: class java.lang.Boolean
05.11 21:33:14 [Server] WARN WARNING! This version of NBT-API seems to be broken with your Spigot version! Plugins that don't check properly may throw Exeptions, crash or have unexpected behaviors!
05.11 21:33:14 [Server] INFO Enabling BetterRTPAddons v1.8.8
05.11 21:33:14 [Server] INFO Enabling GridSelector v1.3.0
05.11 21:33:14 [Server] INFO Initializing message blocker. Whitelisted terms: [GS]
05.11 21:33:14 [Server] INFO Detected Chat signing support
05.11 21:33:14 [Server] INFO Locale plugins/GridSelector/messages/messages_en_US.properties is up to date.
05.11 21:33:14 [Server] INFO Registered entry of type grid with de.eldoria.gridselector.schematics.GridSchematics at Schematic Registry
05.11 21:33:14 [Server] INFO Enabled. Required 98 ms.
05.11 21:33:14 [Server] INFO Enabling EggWars v6.1.2
05.11 21:33:14 [Server] INFO Loading data for languages...
05.11 21:33:14 [Server] INFO Successfully registered internal expansion: EggWars [6.1.2]
05.11 21:33:14 [Server] INFO Loading data for kits...
05.11 21:33:14 [Server] INFO Loading data for token types...
05.11 21:33:14 [Server] INFO Loading data for generators...
05.11 21:33:14 [Server] INFO Loading data for main trades...
05.11 21:33:14 [Server] INFO Enabling YamipaPlugin v1.2.11
05.11 21:33:14 [Server] INFO Enabled image animation support
05.11 21:33:14 [Server] INFO No placed fake images configuration file found
05.11 21:33:14 [Server] INFO Enabling AdvancedKeep v2.0.1
05.11 21:33:15 [Server] INFO [ACF] Enabled Asynchronous Tab Completion Support!
05.11 21:33:15 [Server] INFO Enabling CrateReloaded v2.3.1
05.11 21:33:15 [Server] INFO Spigot Version: 1_20_R2
05.11 21:33:15 [Server] INFO Plugin is not enabled: HolographicDisplays
05.11 21:33:15 [Server] INFO Provider: Vault
05.11 21:33:15 [Server] INFO Provider: EffectLib
05.11 21:33:15 [Server] INFO Crate Configurations (1): crate.yml
05.11 21:33:15 [Server] INFO Enabling Skywars v5.6.22
05.11 21:33:15 [Server] ERROR Could not find support for this CraftBukkit version: v1_20_R2. Now disabling the plugin!
05.11 21:33:15 [Server] INFO Check for updates at https://gcnt.net/download/skywars
05.11 21:33:15 [Server] INFO Enabling UltraCosmetics v3.4.1
05.11 21:33:15 [Server] INFO Checking for update...
05.11 21:33:15 [Server] INFO -------------------------------------------------------------------
05.11 21:33:15 [Server] INFO Thanks for using UltraCosmetics! Version: 3.4.1-RELEASE (commit c5c2a02)
05.11 21:33:15 [Server] INFO Plugin by Datatags. Original Author: iSach
05.11 21:33:15 [Server] INFO Link: https://bit.ly/UltraCosmetics
05.11 21:33:15 [Server] INFO Initializing module v1_20 (expected version: 1.20.2)
05.11 21:33:16 [Server] INFO Entity registry is not vanilla, skipping unfreeze and refreeze
05.11 21:33:16 [Server] INFO Loaded NMS support
05.11 21:33:27 [Server] WARN Morphs require Lib's Disguises, but it is not installed. Morphs will be disabled.
05.11 21:33:27 [Server] INFO Successfully registered internal expansion: ultracosmetics [3.4.1]
05.11 21:33:27 [Server] INFO Hooked into PlaceholderAPI
05.11 21:33:27 [Server] INFO Registering session handler be.isach.ultracosmetics.worldguard.FlagManager
05.11 21:33:27 [Server] INFO WorldGuard custom flags enabled
05.11 21:33:27 [Server] INFO Hooked into Vault:EssentialsX Economy for economy.
05.11 21:33:27 [Server] INFO Hooked into ChestSort
05.11 21:33:27 [Server] INFO Hooked into Towny
05.11 21:33:27 [Server] INFO UltraCosmetics successfully finished loading in 11871ms!
05.11 21:33:27 [Server] INFO -------------------------------------------------------------------
05.11 21:33:27 [Server] INFO Enabling ZombieApocalypse v1.4.8
05.11 21:33:27 [Server] INFO Configuration has been successfully loaded!
05.11 21:33:27 [Server] INFO If you really love this project, you could consider donating to help me keep this project alive! https://paypal.me/3ricL
05.11 21:33:27 [Server] INFO Enabling JukeLooper v2.5
05.11 21:33:27 [Server] INFO Enabling HeadHunterPlugin v2.0.7
05.11 21:33:27 [Server] INFO Enabling RankVouchers v3.0*
05.11 21:33:27 [Server] INFO ---------------------------
05.11 21:33:27 [Server] INFO ---------------------------
05.11 21:33:27 [Server] INFO Hooked into PlaceholderAPI!
05.11 21:33:27 [Server] INFO Hooked into WorldGuard!
05.11 21:33:27 [Server] INFO Developed by Setups.io.
05.11 21:33:27 [Server] INFO Ready!
05.11 21:33:27 [Server] WARN Plugin 'RankVouchers' is creating timing 'Commands' - this is deprecated behavior, please report it to the authors:
05.11 21:33:27 [Server] INFO [ACF] Minecraft Version: 1.20
05.11 21:33:27 [Server] WARN Plugin 'RankVouchers' is creating timing 'Command: rankvouchers' - this is deprecated behavior, please report it to the authors:
05.11 21:33:27 [Server] WARN Plugin 'RankVouchers' is creating timing 'Command: rankvouchers help' - this is deprecated behavior, please report it to the authors:
05.11 21:33:27 [Server] WARN Plugin 'RankVouchers' is creating timing 'Command: rankvouchers reload' - this is deprecated behavior, please report it to the authors:
05.11 21:33:27 [Server] WARN Plugin 'RankVouchers' is creating timing 'Command: rankvouchers give' - this is deprecated behavior, please report it to the authors:
05.11 21:33:27 [Server] WARN Plugin 'RankVouchers' is creating timing 'Command: rankvouchers giveall' - this is deprecated behavior, please report it to the authors:
05.11 21:33:27 [Server] WARN Plugin 'RankVouchers' is creating timing 'Command: rankvouchers list' - this is deprecated behavior, please report it to the authors:
05.11 21:33:27 [Server] WARN Plugin 'RankVouchers' is creating timing 'Command: rankvouchers create' - this is deprecated behavior, please report it to the authors:
05.11 21:33:27 [Server] WARN Plugin 'RankVouchers' is creating timing 'Command: rankvouchers remove' - this is deprecated behavior, please report it to the authors:
05.11 21:33:27 [Server] INFO Enabling GreetingPlugin v2.0-SNAPSHOT
05.11 21:33:27 [Server] INFO Greeting Plugin has been enabled.
05.11 21:33:27 [Server] INFO Enabling Waypoints v4.2.0
05.11 21:33:28 [Server] INFO Found squaremap plugin
05.11 21:33:28 [Server] INFO Enabling Multiverse-Inventories v4.2.6
05.11 21:33:28 [Server] INFO enabled.
05.11 21:33:28 [Server] INFO Enabling TreeAssist v7.3.49
05.11 21:33:28 [Server] INFO sending full Metrics! You can deactivate this in the config.yml
05.11 21:33:28 [Server] INFO debugging: off
05.11 21:33:28 [Server] INFO Successfully registered internal expansion: ta [0.0.1]
05.11 21:33:28 [Server] INFO Checking for updates...
05.11 21:33:28 [Server] INFO Enabling MusicBox v2.0.13
05.11 21:33:28 [Server] INFO Enabling Guilds v3.5.7.0
05.11 21:33:28 [Server] INFO ________
05.11 21:33:28 [Server] INFO /  _____/
05.11 21:33:28 [Server] INFO /   \  ___   Guilds v3.5.7.0
05.11 21:33:28 [Server] INFO \    \_\  \  Server Version: git-Paper-279 (MC: 1.20.2)
05.11 21:33:28 [Server] INFO \______  /
05.11 21:33:28 [Server] INFO \/
05.11 21:33:28 [Server] INFO Economy Found: EssentialsX Economy
05.11 21:33:28 [Server] INFO Permissions Found: LuckPerms
05.11 21:33:29 [Server] INFO Successfully registered internal expansion: guilds [2.1]
05.11 21:33:29 [Server] INFO [ACF] Enabled Asynchronous Tab Completion Support!
05.11 21:33:29 [Server] INFO Your version of Guilds (3.5.7.0) is up to date!
05.11 21:33:29 [Server] INFO Ready to go! That only took 916ms
05.11 21:33:29 [Server] INFO Enabling PlayerParticles v8.4
05.11 21:33:29 [Server] INFO Initializing using RoseGarden v1.1.0.52-SNAPSHOT
05.11 21:33:29 [Server] INFO Features
05.11 21:33:29 [Server] INFO - Added initial support for 1.20.X
05.11 21:33:29 [Server] INFO Bug Fixes
05.11 21:33:29 [Server] INFO - Fixed a bug related to banking commands
05.11 21:33:29 [Server] INFO Notes
05.11 21:33:29 [Server] INFO - Currently dealing with some real life stuff, hope to be back soon.
05.11 21:33:29 [Server] INFO Data handler connected using SQLite.
05.11 21:33:30 [Server] INFO Successfully registered internal expansion: playerparticles [8.4]
05.11 21:33:30 [Server] INFO Enabling BigDoorsOpener v2.5.2
05.11 21:33:30 [Server] INFO Enabled. Required 56 ms.
05.11 21:33:30 [Server] INFO Enabling LPC v3.6.0
05.11 21:33:30 [Server] INFO Enabling DeluxeMenus v1.13.7-Release
05.11 21:33:30 [Server] INFO Successfully hooked into PlaceholderAPI!
05.11 21:33:30 [Server] INFO 3 GUI menus loaded!
05.11 21:33:30 [Server] INFO You are running the latest version of DeluxeMenus!
05.11 21:33:30 [Server] INFO Successfully hooked into Vault!
05.11 21:33:30 [Server] INFO Successfully registered internal expansion: deluxemenus [1.13.7-Release]
05.11 21:33:30 [Server] INFO Enabling Chunky v1.3.92
05.11 21:33:30 [Server] INFO Enabling Images v2.3.1
05.11 21:33:30 [Server] INFO ProtocolLib detected. Enabling generic packet handling...
05.11 21:33:30 [Server] INFO Enabling FacilisCommon v1.0.2-SNAPSHOT
05.11 21:33:30 [Server] INFO Enabling Invsee v1.0.0*
05.11 21:33:30 [Server] INFO Enabling AuctionHouse v3.5.1
05.11 21:33:30 [Server] INFO Found locale file en_us.json
05.11 21:33:31 [Server] WARN A backup of the database has been saved with .backup extension.
05.11 21:33:31 [Server] INFO Using NMS version v1_20_R2
05.11 21:33:31 [Server] ERROR Error! This plugin only supports Spigot versions 1.20.x!
05.11 21:33:31 [Server] ERROR Plugin will be disabled!
05.11 21:33:31 [Server] INFO Disabling AuctionHouse v3.5.1
05.11 21:33:31 [Server] INFO Saving auctions data
05.11 21:33:31 [Server] INFO Enabling Arcade v1.55
05.11 21:33:31 [Server] INFO =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
05.11 21:33:31 [Server] INFO Arcade only works for:
05.11 21:33:31 [Server] INFO - 1.20.1
05.11 21:33:31 [Server] INFO =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
05.11 21:33:31 [Server] INFO Enabling FishRewards v1.2.4
05.11 21:33:31 [Server] INFO A new plugin update is available. Download link: https://www.spigotmc.org/resources/111966/
05.11 21:33:31 [Server] INFO loaded 3 packs
05.11 21:33:31 [Server] WARN Plugin Vanillahungergames v2.4 tried to register permission 'admin' but it's already registered
05.11 21:33:31 [Server] INFO Enabling Vanillahungergames v2.4
05.11 21:33:31 [Server] INFO Enabling NotBounties v1.12.1
05.11 21:33:31 [Server] INFO Using Vault as currency!
05.11 21:33:31 [Server] INFO Successfully registered internal expansion: notbounties [1.12.1]
05.11 21:33:31 [Server] INFO Database not connected, using internal storage
05.11 21:33:31 [Server] INFO Enabling ImageOnMap v4.2.2
05.11 21:33:31 [Server] INFO Loaded 0 player map files.
05.11 21:33:32 [Server] INFO Enabling VoxelSniper v8.12.4
05.11 21:33:33 [Server] INFO Registered 70 Sniper Brushes with 136 handles.
05.11 21:33:33 [Server] INFO Registered Sniper Listener.
05.11 21:33:33 [Server] INFO Checking for updates...
05.11 21:33:33 [Server] INFO Enabling UltimateShop v1.7.7
05.11 21:33:33 [Server] INFO Loaded shop: crops1.yml!
05.11 21:33:33 [Server] INFO Loaded shop: baits.yml!
05.11 21:33:33 [Server] INFO Loaded shop: crops.yml!
05.11 21:33:33 [Server] INFO Loaded shop: logs.yml!
05.11 21:33:33 [Server] INFO Loaded shop: drops.yml!
05.11 21:33:33 [Server] INFO Loaded shop: ores.yml!
05.11 21:33:33 [Server] INFO Loaded shop: blocks.yml!
05.11 21:33:33 [Server] INFO Loaded menu: main.yml!
05.11 21:33:33 [Server] INFO Hooking into PlaceholderAPI...
05.11 21:33:33 [Server] INFO Successfully registered internal expansion: ultimateshop [1.0.0]
05.11 21:33:33 [Server] INFO Finished hook!
05.11 21:33:33 [Server] INFO Plugin is loaded. Author: PQguanfang.
05.11 21:33:33 [Server] INFO Enabling TavernBard v1.2
05.11 21:33:33 [Server] INFO MythicMobs detected. Support enabled!
05.11 21:33:35 [Server] INFO Placeholder expansion registration initializing...
05.11 21:33:35 [Server] INFO Running delayed init tasks
05.11 21:33:35 [Server] INFO Plugin 'WorldGuard' found. Using it now.
05.11 21:33:35 [Server] INFO Attempting to use plugin 'WorldGuard'
05.11 21:33:35 [Server] INFO Plugin 'Towny' found. Using it now.
05.11 21:33:35 [Server] INFO Attempting to use plugin 'Towny'
05.11 21:33:35 [Server] INFO Plugin 'GriefPrevention' found. Using it now.
05.11 21:33:35 [Server] INFO Attempting to use plugin 'GriefPrevention'
05.11 21:33:35 [Server] INFO Fetching version information...
05.11 21:33:35 [Server] INFO Fetching version information...
05.11 21:33:35 [Server] INFO [Iris]: Server type & version: git-Paper-279 (MC: 1.20.2)
05.11 21:33:35 [Server] INFO [Iris]: Bukkit version: 1.20.2-R0.1-SNAPSHOT
05.11 21:33:35 [Server] INFO [Iris]: Java version: 17
05.11 21:33:35 [Server] INFO [Iris]: Custom Biomes: 0
05.11 21:33:35 [Server] INFO [Iris]: Version Information: git-Paper-279 (MC: 1.20.2) | 1.20.2-R0.1-SNAPSHOT
05.11 21:33:35 [Server] INFO [Iris]: ============================================
05.11 21:33:35 [Server] INFO [Iris]: =
05.11 21:33:35 [Server] INFO [Iris]: =
05.11 21:33:35 [Server] INFO [Iris]: =
05.11 21:33:35 [Server] INFO [Iris]: Iris is not compatible with this version of Minecraft.
05.11 21:33:35 [Server] INFO Please use 1.20.1 or use an older version of Iris.
05.11 21:33:35 [Server] INFO [Iris]: =
05.11 21:33:35 [Server] INFO [Iris]: =
05.11 21:33:35 [Server] INFO [Iris]: =
05.11 21:33:35 [Server] INFO [Iris]: ============================================
05.11 21:33:35 [Server] INFO [Iris]: We recommend using Purpur for the best experience with Iris.
05.11 21:33:35 [Server] INFO [Iris]: Purpur is a fork of Paper that is optimized for performance and stability.
05.11 21:33:35 [Server] INFO [License] Store product licensed to: darkclone9 (353993)
05.11 21:33:35 [Server] INFO Loading holograms...
05.11 21:33:35 [Server] INFO [Iris]: Plugins that work on Spigot / Paper work on Purpur.
05.11 21:33:35 [Server] INFO [Iris]: You can download it here: https://purpurmc.org
05.11 21:33:35 [Server] INFO [Iris]: Custom Dimensions: 1
05.11 21:33:35 [Server] INFO [Iris]:   overworld v3700
05.11 21:33:35 [Server] INFO Loaded 5 holograms!
05.11 21:33:35 [Server] INFO [Iris]:
05.11 21:33:35 [Server] INFO @@@@@@@@@@@@@@@@@
05.11 21:33:35 [Server] INFO @@&&&&&&&&&&&&&&&   .(((()))).
05.11 21:33:35 [Server] INFO @@@&&&&&&&&&&&&&  .((((((())))))).
05.11 21:33:35 [Server] INFO @@@&&&&&&&&&&&&  ((((((((()))))))))                @
05.11 21:33:35 [Server] INFO @@@&&&&@@@@@&    ((((((((-)))))))))               @@
05.11 21:33:35 [Server] INFO @@@&&            ((((((({ }))))))))            &&@@@     Iris
05.11 21:33:35 [Server] INFO @@               ((((((((-)))))))))    &@@@@@&&&&@@@     by Volmit Software
05.11 21:33:35 [Server] INFO @                ((((((((()))))))))  &&&&&&&&&&&&@@@     v2.8.0-1.20.1
05.11 21:33:35 [Server] INFO '((((((()))))))'  &&&&&&&&&&&&&@@@
05.11 21:33:35 [Server] INFO '(((())))'   &&&&&&&&&&&&&&&@@
05.11 21:33:35 [Server] INFO @@@@@@@@@@@@@@@@@
05.11 21:33:35 [Server] INFO Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
05.11 21:33:35 [Server] INFO Checking for Updates ...
05.11 21:33:35 [Server] INFO You are running the latest version on Spigot.
05.11 21:33:35 [Server] INFO -******* TownyChat enabled *******-
05.11 21:33:35 [Server] INFO Disabling DiscordSRV v1.26.2
05.11 21:33:35 [Server] INFO No new version available
05.11 21:33:35 [Server] INFO Checking for updates...
05.11 21:33:35 [Server] INFO [Pack] Extracting internal contents from .jar
05.11 21:33:35 [Server] INFO No new updates available.
05.11 21:33:35 [Server] INFO [Pack] DONE extracting internal contents from .jar
05.11 21:33:35 [Server] INFO The version v4.3.0 for Waypoints is available.
05.11 21:33:35 [Server] INFO Checkout the release here: https://github.com/Sytm/waypoints/releases/tag/v4.3.0
05.11 21:33:35 [Server] WARN You're 2 EssentialsX dev build(s) out of date!
05.11 21:33:35 [Server] WARN Download it here: https://essentialsx.net/downloads.html
05.11 21:33:36 [Server] WARN Custom entities 'fast_packets_creation' is disabled. This might cause stuttering animations. More info: https://a.devs.beer/ia-delaypackets
05.11 21:33:37 [Server] INFO Loaded 7 recipes
05.11 21:33:38 [Server] INFO Loaded 2 NPCs.
05.11 21:33:38 [Server] INFO Post startup done. Required 27 ms.
05.11 21:33:38 [Server] INFO Post startup done. Required 0 ms.
05.11 21:33:38 [Server] INFO First run!
05.11 21:33:38 [Server] INFO Hooked into Big Doors successfully.
05.11 21:33:38 [Server] INFO World Guard found. Trying to get a hook.
05.11 21:33:38 [Server] INFO Hooked into world guard successfully.
05.11 21:33:38 [Server] INFO Placeholder API found. Enabling placeholder usage.
05.11 21:33:38 [Server] INFO MythicMobs found. Enabling mythic mobs listener.
05.11 21:33:38 [Server] INFO Config is up to date.
05.11 21:33:38 [Server] INFO Config loaded!
05.11 21:33:38 [Server] INFO Java 15 or newer detected. Searching for external Engine.
05.11 21:33:39 [Server] INFO New version of SchematicBrushReborn available.
05.11 21:33:39 [Server] INFO New Version: 2.5.5. Published 9 days ago! 2023.10.27 09:01
05.11 21:33:39 [Server] INFO Current version: 2.5.3 Published 142 days ago! 2023.06.16 12:20
05.11 21:33:39 [Server] INFO Download the new version via Discord: https://discord.gg/zRW9Vpu
05.11 21:33:39 [Server] INFO OpenJDK Nashorn script engine started.
05.11 21:33:39 [Server] INFO Locale plugins/BigDoorsOpener/messages/messages_en_US.properties is up to date.
05.11 21:33:39 [Server] INFO Locale plugins/BigDoorsOpener/messages/messages_de_DE.properties is up to date.
05.11 21:33:39 [Server] INFO Metrics enabled. Thank you very much!
05.11 21:33:39 [Server] INFO Post startup done. Required 1104 ms.
05.11 21:33:39 [Server] INFO Successfully registered internal expansion: iris [2.8.0-1.20.1]
05.11 21:33:39 [Server] INFO You are using the latest version of IridiumSkyblock.
05.11 21:33:39 [Server] INFO Successfully registered external expansion: vault [1.8.1]
05.11 21:33:39 [Server] INFO Successfully registered external expansion: essentials [1.5.2]
05.11 21:33:39 [Server] INFO Successfully registered external expansion: luckperms [5.4-R2]
05.11 21:33:39 [Server] INFO 3 placeholder hook(s) registered!
05.11 21:33:39 [Server] Startup Done (90.268s)! For help, type "help"
05.11 21:33:39 [Server] INFO Timings Reset
05.11 21:33:40 [Server] INFO Loaded 344 items
05.11 21:33:40 [Server] INFO Used 0/188 REAL block IDs
05.11 21:33:40 [Server] INFO Used 29/750 REAL_NOTE block IDs
05.11 21:33:40 [Server] INFO Used 0/63 REAL_TRANSPARENT block IDs
05.11 21:33:40 [Server] INFO Used 0/127 REAL_WIRE block IDs
05.11 21:33:40 [Server] INFO Used 0/14 FIRE block IDs
05.11 21:33:40 [Server] INFO Used 587/6608 font_images
05.11 21:33:40 [Server] INFO [Init] Loaded 29 categories
05.11 21:33:40 [Server] INFO [Init] Loaded successfully.
05.11 21:33:40 [Server] INFO [Pack] Checking resourcepack url...
05.11 21:33:41 [Server] INFO Successfully registered internal expansion: img [1.0.1]
05.11 21:33:41 [Server] INFO Successfully registered internal expansion: iaplayerstat [1.0.1]
05.11 21:33:41 [Server] INFO Reloading ItemsAdder Custom Entities Citizens NPCs
05.11 21:33:41 [Server] INFO Reloading plugin...
05.11 21:33:42 [Server] INFO Loading Packs...
05.11 21:33:42 [Server] INFO Loading Items...
05.11 21:33:42 [Server] INFO Loading Item Groups...
05.11 21:33:42 [Server] INFO Loading Skills...
05.11 21:33:42 [Server] INFO Loading stat ATTACK_DAMAGE from /plugins/MythicMobs/stats.yml
05.11 21:33:42 [Server] INFO Loading stat ATTACK_SPEED from /plugins/MythicMobs/stats.yml
05.11 21:33:42 [Server] INFO Loading stat BONUS_DAMAGE from /plugins/MythicMobs/stats.yml
05.11 21:33:42 [Server] INFO Loading stat CRITICAL_STRIKE_CHANCE from /plugins/MythicMobs/stats.yml
05.11 21:33:42 [Server] INFO Loading stat CRITICAL_STRIKE_DAMAGE from /plugins/MythicMobs/stats.yml
05.11 21:33:42 [Server] INFO Loading stat CRITICAL_STRIKE_RESILIENCE from /plugins/MythicMobs/stats.yml
05.11 21:33:42 [Server] INFO Loading stat DAMAGE_REDUCTION from /plugins/MythicMobs/stats.yml
05.11 21:33:42 [Server] INFO Loading stat DEFENSE from /plugins/MythicMobs/stats.yml
05.11 21:33:42 [Server] INFO Loading stat DODGE_CHANCE from /plugins/MythicMobs/stats.yml
05.11 21:33:42 [Server] INFO Loading stat DODGE_NEGATION from /plugins/MythicMobs/stats.yml
05.11 21:33:42 [Server] INFO Loading stat HEALTH from /plugins/MythicMobs/stats.yml
05.11 21:33:42 [Server] INFO Loading stat HEALTH_REGENERATION from /plugins/MythicMobs/stats.yml
05.11 21:33:42 [Server] INFO Loading stat LIFESTEAL_CHANCE from /plugins/MythicMobs/stats.yml
05.11 21:33:42 [Server] INFO Loading stat LIFESTEAL_POWER from /plugins/MythicMobs/stats.yml
05.11 21:33:42 [Server] INFO Loading stat MOVEMENT_SPEED from /plugins/MythicMobs/stats.yml
05.11 21:33:42 [Server] INFO Loading stat PARRY_CHANCE from /plugins/MythicMobs/stats.yml
05.11 21:33:42 [Server] INFO Loading stat PARRY_NEGATION from /plugins/MythicMobs/stats.yml
05.11 21:33:42 [Server] INFO Loading stat PARRY_POWER from /plugins/MythicMobs/stats.yml
05.11 21:33:42 [Server] INFO Loading stat PARRY_COUNTERATTACK from /plugins/MythicMobs/stats.yml
05.11 21:33:42 [Server] INFO Loading stat ARMOR_GENERIC from /plugins/MythicMobs/stats.yml
05.11 21:33:42 [Server] INFO Loading stat ARMOR_BLUNT from /plugins/MythicMobs/stats.yml
05.11 21:33:42 [Server] INFO Loading stat ARMOR_SHARP from /plugins/MythicMobs/stats.yml
05.11 21:33:42 [Server] INFO Loading stat DAMAGE_BLUNT from /plugins/MythicMobs/stats.yml
05.11 21:33:42 [Server] INFO Loading stat DAMAGE_SHARP from /plugins/MythicMobs/stats.yml
05.11 21:33:42 [Server] INFO Loading stat FIRE_RESISTANCE from /plugins/MythicMobs/stats.yml
05.11 21:33:42 [Server] INFO Loading stat SPEED from /plugins/MythicMobs/stats.yml
05.11 21:33:42 [Server] INFO Loading Drop Tables...
05.11 21:33:42 [Server] INFO Loading Random Spawns...
05.11 21:33:42 [Server] INFO Loading Spawn Blocks...
05.11 21:33:42 [Server] INFO ✓ Loaded 8 mobs.
05.11 21:33:42 [Server] INFO ✓ Loaded 3 vanilla mob overrides.
05.11 21:33:42 [Server] INFO ✓ Loaded 0 mob stacks.
05.11 21:33:42 [Server] INFO ✓ Loaded 3 skills.
05.11 21:33:42 [Server] INFO ✓ Loaded 0 random spawns.
05.11 21:33:42 [Server] INFO ✓ Loaded 3 mythic items.
05.11 21:33:42 [Server] INFO ✓ Loaded 2 drop tables.
05.11 21:33:42 [Server] INFO ✓ Loaded 0 mob spawners.
05.11 21:33:42 [Server] INFO Mythic has finished reloading!
05.11 21:33:42 [Server] INFO Mythic has finished reloading!
05.11 21:33:43 [Disconnect] User darkclone9 (/50.86.233.116:64883) has disconnected, reason: Disconnected
05.11 21:33:43 [Server] WARN Can't keep up! Is the server overloaded? Running 7968ms or 159 ticks behind
05.11 21:33:43 [Server] INFO Checking for updates...
05.11 21:33:43 [Server] INFO [Pack] Resourcepack URL (self-host): http://147.135.70.77:3645/generated.zip
05.11 21:33:43 [Server] INFO You are running the latest version.
05.11 21:33:44 [Server] INFO [Iris]: Checking Data Packs...
05.11 21:33:44 [Server] INFO Checking plugin version...
05.11 21:33:44 [Server] INFO No updates found
05.11 21:33:45 [Server] INFO Loaded 0 images...
05.11 21:33:45 [Server] INFO [Iris]: Data Packs Setup!
05.11 21:33:45 [Server] INFO [Iris]: ===================================================================================
05.11 21:33:45 [Server] INFO [Iris]: Pack overworld has 94 custom biome(s).
05.11 21:33:45 [Server] INFO [Iris]: Your server version does not yet support datapacks for iris.
05.11 21:33:45 [Server] INFO [Iris]: The world will generate these biomes as backup biomes.
05.11 21:33:45 [Server] INFO [Iris]: ====================================================================================
05.11 21:33:48 [Server] WARN Task #5781 for NotBounties v1.12.1 generated an exception
05.11 21:33:48 [Server] INFO java.lang.IndexOutOfBoundsException: Index 0 out of bounds for length 0
05.11 21:33:48 [Server] INFO at jdk.internal.util.Preconditions.outOfBounds(Preconditions.java:64) ~[?:?]
05.11 21:33:48 [Server] INFO at jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Preconditions.java:70) ~[?:?]
05.11 21:33:48 [Server] INFO at jdk.internal.util.Preconditions.checkIndex(Preconditions.java:266) ~[?:?]
05.11 21:33:48 [Server] INFO at java.util.Objects.checkIndex(Objects.java:359) ~[?:?]
05.11 21:33:48 [Server] INFO at java.util.ArrayList.get(ArrayList.java:427) ~[?:?]
05.11 21:33:48 [Server] INFO at me.jadenp.notbounties.NotBounties$3.run(NotBounties.java:744) ~[NotBounties-LATEST-[1.12.1].jar:?]
05.11 21:33:48 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:48 [Server] INFO at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:48 [Server] INFO at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1470) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:48 [Server] INFO at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:48 [Server] INFO at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1379) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:48 [Server] INFO at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1156) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:48 [Server] INFO at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
05.11 21:33:48 [Server] INFO at java.lang.Thread.run(Thread.java:833) ~[?:?]