Paste #116316: Unnamed Server Log Paste

Date: 2023/10/11 11:56:06 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953


[18:36:57] [ServerMain/INFO]: Environment: Environment[accountsHost=https://api.mojang.com, sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[18:36:59] [Worker-Main-1/ERROR]: Couldn't load tag stellarity:custom_damage_related as it is missing following references: stellarity:custom_damage/knockback (from file/Voidwalker), stellarity:custom_damage/effects/burning (from file/Voidwalker), stellarity:custom_damage/effects/drowning (from file/Voidwalker), stellarity:custom_damage/effects/freezing (from file/Voidwalker), stellarity:custom_damage/effects/poking (from file/Voidwalker), stellarity:custom_damage/effects/thorns (from file/Voidwalker)
[18:36:59] [Worker-Main-1/ERROR]: Couldn't load tag minecraft:bypasses_cooldown as it is missing following references: #stellarity:custom_damage_related (from file/Voidwalker)
[18:36:59] [ServerMain/WARN]: Found loot table element validation problem in {loot_tables:minecraft:entities/wither}.pools[0].entries[0]: Unknown loot table called incendium:artifact/patron/warping_witherblade
[18:36:59] [ServerMain/INFO]: Loaded 7 recipes
[18:36:59] [ServerMain/ERROR]: Couldn't load tag stellarity:dot/tick as it is missing following references: stellarity:utils/dot/dark_decay/tick (from file/Voidwalker), stellarity:utils/dot/frostburn/tick (from file/Voidwalker), stellarity:utils/dot/prismatic_inferno/tick (from file/Voidwalker)
[18:36:59] [ServerMain/ERROR]: Couldn't load tag stellarity:on_respawn as it is missing following references: stellarity:utils/respawn_detection/remove_tag (from file/Voidwalker)
[18:36:59] [ServerMain/ERROR]: Couldn't load tag stellarity:dot/load as it is missing following references: stellarity:utils/dot/dark_decay/load (from file/Voidwalker), stellarity:utils/dot/frostburn/load (from file/Voidwalker), stellarity:utils/dot/prismatic_inferno/load (from file/Voidwalker)
[18:36:59] [ServerMain/ERROR]: Couldn't load tag minecraft:tick as it is missing following references: stellarity:main (from file/Voidwalker)
[18:36:59] [ServerMain/ERROR]: Couldn't load tag stellarity:dot/clear_all as it is missing following references: stellarity:utils/dot/dark_decay/remove (from file/Voidwalker), stellarity:utils/dot/frostburn/remove (from file/Voidwalker), stellarity:utils/dot/prismatic_inferno/remove (from file/Voidwalker)
[18:36:59] [ServerMain/ERROR]: Couldn't load tag load:load as it is missing following references: #incendium:load (from file/E-Incendium_1.20_5.3.0.zip)
[18:36:59] [ServerMain/ERROR]: Couldn't load tag minecraft:load as it is missing following references: far_end:init (from file/Voidwalker), stellarity:init (from file/Voidwalker)
[18:37:00] [Server thread/INFO]: Starting minecraft server version 1.20.2
[18:37:00] [Server thread/INFO]: Loading properties
[18:37:00] [Server thread/INFO]: This server is running Paper version git-Paper-233 (MC: 1.20.2) (Implementing API version 1.20.2-R0.1-SNAPSHOT) (Git: 2f5bb7e)
[18:37:00] [Server thread/INFO]: Server Ping Player Sample Count: 12
[18:37:00] [Server thread/INFO]: Using 4 threads for Netty based IO
[18:37:00] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and gen parallelism of 1 threads
[18:37:00] [Server thread/INFO]: Default game type: SURVIVAL
[18:37:00] [Server thread/INFO]: Generating keypair
[18:37:00] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25565
[18:37:00] [Server thread/INFO]: Using epoll channel type
[18:37:00] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[18:37:00] [Server thread/INFO]: Paper: Using OpenSSL 3.0.x (Linux x86_64) cipher from Velocity.
[18:37:01] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loading 2 libraries... please wait
[18:37:01] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
[18:37:01] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
[18:37:01] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[18:37:01] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[18:37:01] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[18:37:01] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.14.0/adventure-text-serializer-gson-4.14.0.jar
[18:37:01] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json/4.14.0/adventure-text-serializer-json-4.14.0.jar
[18:37:01] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[18:37:01] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loading 2 libraries... please wait
[18:37:01] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[18:37:01] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[18:37:01] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.11/fastutil-8.5.11.jar
[18:37:01] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loading 2 libraries... please wait
[18:37:01] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/mongodb-driver-sync/4.8.1/mongodb-driver-sync-4.8.1.jar
[18:37:01] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/bson/4.8.1/bson-4.8.1.jar
[18:37:01] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/mongodb-driver-core/4.8.1/mongodb-driver-core-4.8.1.jar
[18:37:01] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/bson-record-codec/4.8.1/bson-record-codec-4.8.1.jar
[18:37:01] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/redis/clients/jedis/4.3.1/jedis-4.3.1.jar
[18:37:01] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[18:37:01] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar
[18:37:01] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/json/json/20220320/json-20220320.jar
[18:37:01] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[18:37:01] [Server thread/INFO]: [SpigotLibraryLoader] [EnchantSlots] Loading 1 libraries... please wait
[18:37:01] [Server thread/INFO]: [SpigotLibraryLoader] [EnchantSlots] Loaded library /home/container/libraries/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loading 37 libraries... please wait
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/org/apache/commons/commons-compress/1.24.0/commons-compress-1.24.0.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/org/apache/commons/commons-lang3/3.13.0/commons-lang3-3.13.0.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/com/rollbar/rollbar-java/1.9.0/rollbar-java-1.9.0.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/com/rollbar/rollbar-api/1.9.0/rollbar-api-1.9.0.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/commons-codec/commons-codec/1.15/commons-codec-1.15.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/cc/carm/lib/easysql-hikaricp/0.4.7/easysql-hikaricp-0.4.7.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/cc/carm/lib/easysql-impl/0.4.7/easysql-impl-0.4.7.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/cc/carm/lib/easysql-api/0.4.7/easysql-api-0.4.7.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/com/h2database/h2/2.1.214/h2-2.1.214.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/com/ghostchu/simplereloadlib/1.1.2/simplereloadlib-1.1.2.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/com/konghq/unirest-java/3.14.5/unirest-java-3.14.5.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/org/apache/httpcomponents/httpmime/4.5.13/httpmime-4.5.13.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/org/apache/httpcomponents/httpcore-nio/4.4.13/httpcore-nio-4.4.13.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/org/apache/httpcomponents/httpasyncclient/4.1.5/httpasyncclient-4.1.5.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/com/github/juliomarcopineda/jdbc-stream/0.1.1/jdbc-stream-0.1.1.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/one/util/streamex/0.8.2/streamex-0.8.2.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/commons-lang/commons-lang/2.6/commons-lang-2.6.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/sourceforge/csvjdbc/csvjdbc/1.0.40/csvjdbc-1.0.40.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/org/dom4j/dom4j/2.1.4/dom4j-2.1.4.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/org/slf4j/slf4j-jdk14/2.0.7/slf4j-jdk14-2.0.7.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/com/vdurmont/semver4j/3.1.0/semver4j-3.1.0.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/com/ghostchu/crowdin/crowdinota/1.0.3/crowdinota-1.0.3.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/com/konghq/unirest-java/3.14.1/unirest-java-3.14.1-standalone.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-nbt/4.14.0/adventure-nbt-4.14.0.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-platform-api/4.3.0/adventure-platform-api-4.3.0.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-platform-bukkit/4.3.0/adventure-platform-bukkit-4.3.0.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.13.0/adventure-text-serializer-gson-4.13.0.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-platform-facet/4.3.0/adventure-platform-facet-4.3.0.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-platform-viaversion/4.3.0/adventure-platform-viaversion-4.3.0.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-serializer-configurate4/4.14.0/adventure-serializer-configurate4-4.14.0.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/org/spongepowered/configurate-core/4.1.2/configurate-core-4.1.2.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/io/leangen/geantyref/geantyref/1.3.11/geantyref-1.3.11.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/com/google/errorprone/error_prone_annotations/2.6.0/error_prone_annotations-2.6.0.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-text-logger-slf4j/4.14.0/adventure-text-logger-slf4j-4.14.0.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-text-minimessage/4.14.0/adventure-text-minimessage-4.14.0.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-ansi/4.14.0/adventure-text-serializer-ansi-4.14.0.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/ansi/1.0.0/ansi-1.0.0.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.0/adventure-text-serializer-bungeecord-4.3.0.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.14.0/adventure-text-serializer-gson-legacy-impl-4.14.0.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json/4.14.0/adventure-text-serializer-json-4.14.0.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json-legacy-impl/4.14.0/adventure-text-serializer-json-legacy-impl-4.14.0.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.14.0/adventure-text-serializer-legacy-4.14.0.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-plain/4.14.0/adventure-text-serializer-plain-4.14.0.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [RoseLoot] Loading 1 libraries... please wait
[18:37:02] [Server thread/INFO]: [SpigotLibraryLoader] [RoseLoot] Loaded library /home/container/libraries/org/xerial/sqlite-jdbc/3.42.0.0/sqlite-jdbc-3.42.0.0.jar
[18:37:02] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.102
[18:37:03] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-CMI
[18:37:03] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.8.2-SNAPSHOT-581;186d24b
[18:37:04] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@4e3f1391]
[18:37:04] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.9-beta1+2249-223b80c
[18:37:04] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.4
[18:37:04] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.4.1-SNAPSHOT-8e3bde57
[18:37:04] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[18:37:04] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[18:37:04] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.1.1-SNAPSHOT-669
[18:37:05] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR4.0.2
[18:37:05] [Server thread/INFO]: [BKCommonLib] Loading server plugin BKCommonLib v1.20.2-v1
[18:37:07] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_20_R2.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[18:37:09] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.4
[18:37:09] [Server thread/INFO]: [NexEngine] Loading server plugin NexEngine v2.2.12
[18:37:09] [Server thread/INFO]: [MCPets] Loading server plugin MCPets v4.1.0
[18:37:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mcpets [1.0.0]
[18:37:09] [Server thread/INFO]: [MCPets] : mcpets-dismount flag registered successfully !
[18:37:09] [Server thread/INFO]: [MCPets] : mcpets-despawn flag registered successfully !
[18:37:09] [Server thread/INFO]: [MCPets] : mcpets-dismount-flying flag registered successfully !
[18:37:09] [Server thread/INFO]: [MCPets] : mcpets-pet-player-damage flag registered successfully !
[18:37:09] [Server thread/INFO]: [Votifier] Loading server plugin Votifier v2.7.3
[18:37:09] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.4.2.1
[18:37:09] [Server thread/INFO]: [My_Worlds] Loading server plugin My_Worlds v1.20.2-v1
[18:37:09] [Server thread/INFO]: [AdvancedMobArena] Loading server plugin AdvancedMobArena v7.9.5
[18:37:09] [Server thread/INFO]: [CMI] Loading server plugin CMI v9.6.5.3
[18:37:09] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.33-SNAPSHOT (build 3219)
[18:37:09] [Server thread/INFO]: [MythicLib] Loading server plugin MythicLib v1.6.2-SNAPSHOT
[18:37:09] [Server thread/INFO]: [MythicLib] Plugin file is called 'MythicLib-dist-1.6.2-20231001.231415-17.jar'
[18:37:09] [Server thread/INFO]: [MythicLib] Detected Bukkit Version: v1_20_R2
[18:37:09] [Server thread/INFO]: [MythicLib] Hooked onto WorldGuard
[18:37:09] [Server thread/INFO]: [Denizen] Loading server plugin Denizen v1.2.9-SNAPSHOT (build 6889-DEV)
[18:37:09] [Server thread/INFO]: [AureliumSkills] Loading server plugin AureliumSkills vBeta 1.3.23
[18:37:09] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.27
[18:37:09] [Server thread/INFO]: [MMOItems] Loading server plugin MMOItems v6.9.5-SNAPSHOT
[18:37:09] [Server thread/INFO]: [MMOItems] Plugin file is called 'MMOItems-6.9.5-20230930.231109-4.jar'
[18:37:09] [Server thread/INFO]: [MMOItems] Hooked onto WorldEdit
[18:37:10] [Server thread/WARN]: [MMOItems] Could not register stat 'ITEM_DAMAGE' as a stat with the same ID already exists.
[18:37:10] [Server thread/INFO]: [Vulcan] Loading server plugin Vulcan v2.7.7
[18:37:10] [Server thread/INFO]: [squaremap] Loading server plugin squaremap v1.2.1
[18:37:10] [Server thread/INFO]: [ItemsAdder] Loading server plugin ItemsAdder v3.6.0
[18:37:10] [Server thread/INFO]: [PlayerPoints] Loading server plugin PlayerPoints v3.2.6
[18:37:10] [Server thread/INFO]: [Lands] Loading server plugin Lands v6.36.1
[18:37:10] [Server thread/INFO]: [Lands] Using SQLite.
[18:37:10] [Server thread/INFO]: [Lands] Setting up tables...
[18:37:10] [Server thread/INFO]: [Lands] Your SQL DBMS version: 3.42.0 (SQLite) Wiki: https://github.com/Angeschossen/Lands/wiki/Database
[18:37:10] [Server thread/INFO]: [Lands] Successfully connected to SQL database.
[18:37:10] [Server thread/WARN]: [Lands] [GUI] Invalid slot. Can't be negative: -1 Path: gui.land.items.default.level
[18:37:10] [Server thread/WARN]: [Lands] [GUI] No valid slots configured for item: gui.land.items.default.level
[18:37:10] [Server thread/INFO]: [Lands] Added flag 'lands-claim' to the plugin WorldGuard.
[18:37:11] [Server thread/WARN]: [Lands] [levels.yml] The option 'creation.level' in nations.yml is invalid. The level with the index '5' does not exist. Using latest instead.
[18:37:11] [Server thread/INFO]: [RealisticSeasons] Loading server plugin RealisticSeasons v10.6.0
[18:37:11] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.12.0
[18:37:11] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
[18:37:11] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R2' loaded!
[18:37:11] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'NBTAPI' to create a bStats instance!
[18:37:11] [Server thread/INFO]: [EnchantSlots] Loading server plugin EnchantSlots v1.3.2
[18:37:11] [Server thread/INFO]: [ShopGUIPlus] Loading server plugin ShopGUIPlus v1.92.0
[18:37:11] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.3.92
[18:37:11] [Server thread/INFO]: [CustomCrops] Loading server plugin CustomCrops v3.3.1.5
[18:37:11] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v22.2
[18:37:11] [Server thread/INFO]: [MythicCrucible] Loading server plugin MythicCrucible v2.0.0-SNAPSHOT
[18:37:11] [Server thread/INFO]: [ExcellentEnchants] Loading server plugin ExcellentEnchants v3.6.0
[18:37:11] [Server thread/INFO]: [WorldGuardEvents] Loading server plugin WorldGuardEvents v1.18.1
[18:37:11] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.26.2
[18:37:11] [Server thread/INFO]: [MissionPouches] Loading server plugin MissionPouches v1.11.0
[18:37:11] [Server thread/INFO]: [QuickShop-Hikari] Loading server plugin QuickShop-Hikari v5.2.0.4
[18:37:11] [Server thread/INFO]: [QuickShop-Hikari] QuickShop-Hikari - Bootloader
[18:37:11] [Server thread/INFO]: [QuickShop-Hikari] Bootloader preparing for startup, please stand by...
[18:37:11] [Server thread/INFO]: [QuickShop-Hikari] Initializing libraries...
[18:37:11] [Server thread/INFO]: [QuickShop-Hikari] Initialing Unirest...
[18:37:11] [Thread-9/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[18:37:11] [Server thread/INFO]: [QuickShop-Hikari] Loading the Adventure Chat Processor...
[18:37:11] [Server thread/INFO]: [QuickShop-Hikari] Adventure API loaded from: /home/container/libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
[18:37:11] [Server thread/INFO]: [QuickShop-Hikari] Adventure Bukkit Platform loaded from: /home/container/libraries/net/kyori/adventure-platform-bukkit/4.3.0/adventure-platform-bukkit-4.3.0.jar
[18:37:11] [Server thread/INFO]: [QuickShop-Hikari] Adventure Text Serializer (Legacy) loaded from: /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.14.0/adventure-text-serializer-legacy-4.14.0.jar
[18:37:11] [Server thread/INFO]: [QuickShop-Hikari] Adventure Text Serializer (Gson) loaded from: /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.14.0/adventure-text-serializer-gson-4.14.0.jar
[18:37:11] [Server thread/INFO]: [QuickShop-Hikari] Adventure Text Serializer (Json) loaded from: /home/container/libraries/net/kyori/adventure-text-serializer-json/4.14.0/adventure-text-serializer-json-4.14.0.jar
[18:37:11] [Server thread/INFO]: [QuickShop-Hikari] Adventure Text Serializer (BungeeChat) loaded from: /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.0/adventure-text-serializer-bungeecord-4.3.0.jar
[18:37:11] [Server thread/INFO]: [QuickShop-Hikari] Adventure Text Serializer (ViaVersion Facet) loaded from: /home/container/libraries/net/kyori/adventure-platform-viaversion/4.3.0/adventure-platform-viaversion-4.3.0.jar
[18:37:11] [Server thread/INFO]: [QuickShop-Hikari] Adventure Text Serializer (ANSI) loaded from: /home/container/libraries/net/kyori/adventure-text-serializer-ansi/4.14.0/adventure-text-serializer-ansi-4.14.0.jar
[18:37:11] [Server thread/INFO]: [QuickShop-Hikari] Adventure Text Serializer (Plain) loaded from: /home/container/libraries/net/kyori/adventure-text-serializer-plain/4.14.0/adventure-text-serializer-plain-4.14.0.jar
[18:37:11] [Server thread/INFO]: [QuickShop-Hikari] Adventure MiniMessage Lib loaded from: /home/container/libraries/net/kyori/adventure-text-minimessage/4.14.0/adventure-text-minimessage-4.14.0.jar
[18:37:11] [Server thread/INFO]: [QuickShop-Hikari] Initializing platform...
[18:37:11] [Server thread/INFO]: [QuickShop-Hikari] Platform detected: Paper
[18:37:11] [Server thread/INFO]: [QuickShop-Hikari] Platform initialized: com.ghostchu.quickshop.platform.paper.PaperPlatform
[18:37:11] [Server thread/INFO]: [QuickShop-Hikari] Boot QuickShop instance...
[18:37:11] [Server thread/INFO]: [QuickShop-Hikari] Creating QuickShop instance...
[18:37:11] [Server thread/INFO]: [QuickShop-Hikari] Forwarding onLoad() to QuickShop instance...
[18:37:11] [Server thread/INFO]: [QuickShop-Hikari] Registering Bukkit Service: com.ghostchu.quickshop.api.QuickShopProvider
[18:37:11] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari - Early boot step - Booting up
[18:37:11] [Server thread/INFO]: [QuickShop-Hikari] Self testing...
[18:37:11] [Server thread/INFO]: [QuickShop-Hikari] Reading the configuration...
[18:37:11] [Server thread/INFO]: [QuickShop-Hikari] [ConfigUpdater] Saving configuration changes...
[18:37:11] [Server thread/INFO]: [QuickShop-Hikari] Setting up privacy controller...
[18:37:11] [Server thread/INFO]: [QuickShop-Hikari] Setting up metrics manager...
[18:37:11] [Server thread/INFO]: [QuickShop-Hikari] Loading player name and unique id mapping...
[18:37:11] [Server thread/INFO]: [QuickShop-Hikari] Loading translations (This may take a while)...
[18:37:11] [Server thread/INFO]: [QuickShop-Hikari] Please wait us fetch the translation updates from Crowdin OTA service...
[18:37:11] [Server thread/INFO]: [CrowdinOTA] Downloading Crowdin distribution manifest from remote server...
[18:37:11] [Server thread/INFO]: [OTAFileInstance-0] Downloading translations for 0 locales...
[18:37:11] [Server thread/INFO]: [OTAFileInstance-1] Downloading translations for 0 locales...
[18:37:11] [Server thread/INFO]: [QuickShop-Hikari] Loading up translations from Crowdin OTA, this may need a while...
[18:37:12] [Server thread/INFO]: [QuickShop-Hikari] Loading up translations from Crowdin OTA, this may need a while...
[18:37:13] [Server thread/INFO]: [QuickShop-Hikari] Register InventoryWrapper...
[18:37:13] [Server thread/INFO]: [QuickShop-Hikari] Initializing NexusManager...
[18:37:13] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari - Early boot step - Complete
[18:37:13] [Server thread/INFO]: [QuickShop-Hikari] Finishing up onLoad() in Bootloader...
[18:37:13] [Server thread/INFO]: [QuickShop-Hikari] QuickShop-Hikari - Booting...
[18:37:13] [Server thread/INFO]: [MIReplacer] Loading server plugin MIReplacer v3.0
[18:37:13] [Server thread/INFO]: [LevelledMobs] Loading server plugin LevelledMobs v3.12.1 b781
[18:37:13] [Server thread/INFO]: [RapidLeafDecay] Loading server plugin RapidLeafDecay v1.0
[18:37:13] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v4.4.2
[18:37:13] [Server thread/INFO]: [ShopGUIPlus Sell GUI] Loading server plugin ShopGUIPlus-SellGUI v1.1.7
[18:37:13] [Server thread/INFO]: [MyCommand] Loading server plugin MyCommand v5.7.4
[18:37:13] [Server thread/INFO]: [ServerVariables] Loading server plugin ServerVariables v2.2.2
[18:37:13] [Server thread/INFO]: [Pl-Hide-Pro] Loading server plugin Pl-Hide-Pro v2.7.4
[18:37:13] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.8.0
[18:37:13] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[18:37:13] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[18:37:13] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[18:37:13] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[18:37:13] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[18:37:13] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[18:37:13] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[18:37:13] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[18:37:13] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[18:37:13] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[18:37:13] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[18:37:13] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[18:37:13] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[18:37:13] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[18:37:13] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[18:37:13] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[18:37:13] [Server thread/INFO]: [PlayerWarps] Loading server plugin PlayerWarps v6.29.0
[18:37:13] [Server thread/INFO]: [UnlimitAnvil] Loading server plugin UnlimitAnvil v0.3.0_breaking-change
[18:37:13] [Server thread/INFO]: [VoidGen] Loading server plugin VoidGen v2.2.1
[18:37:13] [Server thread/INFO]: [CommandPanels] Loading server plugin CommandPanels v3.19.1.5
[18:37:13] [Server thread/INFO]: [AdvancedChests] Loading server plugin AdvancedChests v29.1
[18:37:13] [Server thread/INFO]: [DisplayEntityEditor] Loading server plugin DisplayEntityEditor v1.0.13
[18:37:13] [Server thread/INFO]: [CraftingStore] Loading server plugin CraftingStore v2.9.1
[18:37:13] [Server thread/INFO]: [ChunkyBorder] Loading server plugin ChunkyBorder v1.1.50
[18:37:13] [Server thread/INFO]: [CustomFishing] Loading server plugin CustomFishing v1.3.2.6
[18:37:13] [Server thread/INFO]: [ExcellentChallenges] Loading server plugin ExcellentChallenges v2.0.11
[18:37:13] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.1
[18:37:13] [Server thread/INFO]: [InventoryRollbackPlus] Loading server plugin InventoryRollbackPlus v1.6.12
[18:37:13] [Server thread/INFO]: [Drop2InventoryPlus] Loading server plugin Drop2InventoryPlus v4.3.1
[18:37:13] [Server thread/INFO]: [LiteBans] Loading server plugin LiteBans v2.12.5
[18:37:13] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.0.6
[18:37:13] [Server thread/INFO]: [FarmingUpgrade] Loading server plugin FarmingUpgrade v1.6.0
[18:37:13] [Server thread/INFO]: [MobArena] Loading server plugin MobArena v0.107
[18:37:13] [Server thread/INFO]: [SnC] Loading server plugin StaminaClimb v0.20.4
[18:37:13] [Server thread/INFO]: [RoseLoot] Loading server plugin RoseLoot v1.2.5
[18:37:13] [Server thread/INFO]: [RoseLoot] Initializing using RoseGarden v1.3.0.2-DEV-SNAPSHOT
[18:37:13] [Server thread/INFO]: [HMCCosmetics] Loading server plugin HMCCosmetics v2.6.4
[18:37:13] [Server thread/INFO]: [spark] Loading server plugin spark v1.10.34
[18:37:13] [Server thread/INFO]: [TradeSystem] Loading server plugin TradeSystem v2.5.1
[18:37:13] [Server thread/INFO]: [TinyOnline] Loading server plugin TinyOnline v2.0
[18:37:13] [Server thread/INFO]: [SafariNet] Loading server plugin SafariNet v1.15.54-SNAPSHOT
[18:37:13] [Server thread/INFO]: [PetNameFix] Loading server plugin PetNameFix v1.0.1
[18:37:13] [Server thread/INFO]: [OraxenUIFilter] Loading server plugin OraxenUIFilter v1.2
[18:37:13] [Server thread/INFO]: [MythicDungeons] Loading server plugin MythicDungeons v1.2.1-SNAPSHOT
[18:37:13] [Server thread/INFO]: [WildRegeneration] Loading server plugin WildRegeneration v1.5.0
[18:37:13] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: WildRegeneration
[18:37:13] [Server thread/INFO]: [NightMarket] Loading server plugin NightMarket v1.8.0
[18:37:13] [Server thread/INFO]: [Tooltips] Loading server plugin Tooltips v1.6.5
[18:37:13] [Server thread/INFO]: [PlugManX] Loading server plugin PlugManX v2.3.5
[18:37:13] [Server thread/INFO]: [Tweakin] Loading server plugin Tweakin v6.0.2
[18:37:14] [Server thread/INFO]: [Tweakin] Found WorldGuard, initializing flags support
[18:37:14] [Server thread/INFO]: [Tweakin] Worldguard flag: tweakin-better-sign-edit registered successfully
[18:37:14] [Server thread/INFO]: [Tweakin] Worldguard flag: tweakin-shear-item-frame registered successfully
[18:37:14] [Server thread/INFO]: [Tweakin] Worldguard flag: tweakin-snowball-knockback registered successfully
[18:37:14] [Server thread/INFO]: [Tweakin] Worldguard flag: tweakin-reach-around registered successfully
[18:37:14] [Server thread/INFO]: [BossBarHealth] Loading server plugin BossBarHealth v4.1.13-SNAPSHOT
[18:37:14] [Server thread/INFO]: [ExtraContexts] Loading server plugin ExtraContexts v2.0-SNAPSHOT
[18:37:14] [Server thread/INFO]: [HappyHud] Loading server plugin HappyHUD v1.0.6-RELEASE
[18:37:14] [Server thread/INFO]: [TheSearch] Loading server plugin TheSearch v1.25.3
[18:37:14] [Server thread/INFO]: [AquaticCrates] Loading server plugin AquaticCrates v2.5.2
[18:37:14] [Server thread/INFO]: [RedLimiter] Loading server plugin RedLimiter v1.2.0
[18:37:14] [Server thread/INFO]: [FarmLimiter] Loading server plugin FarmLimiter v1.6.0
[18:37:14] [Server thread/INFO]: [AquaticGliders] Loading server plugin AquaticGliders v0.0.8
[18:37:14] [Server thread/INFO]: [InteractiveChat] Loading server plugin InteractiveChat v4.2.8.0
[18:37:14] [Server thread/INFO]: [PlayerBiomes] Loading server plugin PlayerBiomes v4.2.0
[18:37:14] [Server thread/INFO]: [Celebrate] Loading server plugin Celebrate v1.0.6
[18:37:14] [Server thread/INFO]: [Celebrate] Successfully hooked WorldGuard.
[18:37:14] [Server thread/INFO]: [MythicGraveyards] Loading server plugin MythicGraveyards v5.1.0
[18:37:14] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[18:37:14] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.102
[18:37:16] [LiteBans-0/ERROR]: [LiteBans] [STDERR] SLF4J: No SLF4J providers were found.
[18:37:16] [LiteBans-0/WARN]: Nag author(s): '[Ruan]' of 'LiteBans v2.12.5' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[18:37:16] [LiteBans-0/ERROR]: [LiteBans] [STDERR] SLF4J: Defaulting to no-operation (NOP) logger implementation
[18:37:16] [LiteBans-0/ERROR]: [LiteBans] [STDERR] SLF4J: See http://www.slf4j.org/codes.html#noProviders for further details.
[18:37:16] [Server thread/ERROR]: [LuckPerms] [STDERR] SLF4J: No SLF4J providers were found.
[18:37:16] [Server thread/WARN]: Nag author(s): '[Luck]' of 'LuckPerms v5.4.102' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[18:37:16] [Server thread/ERROR]: [LuckPerms] [STDERR] SLF4J: Defaulting to no-operation (NOP) logger implementation
[18:37:16] [Server thread/ERROR]: [LuckPerms] [STDERR] SLF4J: See http://www.slf4j.org/codes.html#noProviders for further details.
[18:37:17] [Server thread/INFO]:         __    
[18:37:17] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.102
[18:37:17] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[18:37:17] [Server thread/INFO]: 
[18:37:17] [Server thread/INFO]: [LuckPerms] Loading configuration...
[18:37:17] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[18:37:18] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[18:37:19] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[18:37:19] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 3152ms)
[18:37:19] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-CMI
[18:37:20] [Server thread/INFO]: [Vault] [Economy] CMI Economy found: Waiting
[18:37:20] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[18:37:20] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-CMI
[18:37:20] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[18:37:20] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.8.2-SNAPSHOT-581;186d24b
[18:37:21] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[18:37:21] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[18:37:21] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[18:37:21] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[18:37:21] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_20_R2.PaperweightFaweAdapter as the Bukkit adapter
[18:37:22] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.1.1-SNAPSHOT-669
[18:37:22] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR4.0.2
[18:37:22] [Server thread/INFO]: [BKCommonLib] Enabling BKCommonLib v1.20.2-v1
[18:37:23] [Server thread/INFO]: [BKCommonLib] BKCommonLib is running on Paper (git-Paper-233) : v1_20_R2 (Minecraft 1.20.2)
[18:37:23] [Server thread/INFO]: [BKCommonLib.Network] Now using the ProtocolLib library to provide Packet Listener and Monitor support
[18:37:24] [Server thread/INFO]: [BKCommonLib] [RegionChangeTracker] Region block changes will be notified from FastAsyncWorldEdit (>= v1.17)
[18:37:25] [Server thread/INFO]: [BKCommonLib] For all the haters out there: BKCommonLib at least tries!
[18:37:25] [Server thread/INFO]: [BKCommonLib] BKCommonLib version 1.20.2-v1 (build: 1634) enabled! (1.933s)
[18:37:25] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.12
[18:37:28] [Server thread/INFO]: [NexEngine] Seems like we have Paper based fork here...
[18:37:28] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[18:37:28] [Server thread/INFO]: [NexEngine] Successfully hooked with CMIEconomy economy
[18:37:28] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[18:37:28] [Server thread/INFO]: [NexEngine] Plugin loaded in 55 ms!
[18:37:28] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.27
[18:37:29] [Server thread/INFO]: [squaremap] Enabling squaremap v1.2.1
[18:37:31] [Server thread/INFO]: [io.undertow] starting server: Undertow - 2.3.8.Final
[18:37:31] [Server thread/INFO]: [org.xnio] XNIO version 3.8.8.Final
[18:37:31] [Server thread/INFO]: [org.xnio.nio] XNIO NIO Implementation Version 3.8.8.Final
[18:37:31] [Server thread/INFO]: [org.jboss.threads] JBoss Threads version 3.5.0.Final
[18:37:31] [Server thread/INFO]: [squaremap] Internal webserver running on 0.0.0.0:8880
[18:37:31] [Server thread/INFO]: [PlayerPoints] Enabling PlayerPoints v3.2.6
[18:37:32] [Server thread/INFO]: [PlayerPoints] Initializing using RoseGarden v1.2.5
[18:37:32] [Server thread/INFO]: [PlayerPoints] Data handler connected using SQLite.
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Enabling ExcellentEnchants v3.6.0
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Powered by: NexEngine
[18:37:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentenchants [3.6.0]
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Tiers Loaded: 5
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: auto_reel
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: double_catch
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: seasoned_angler
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: survivalist
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_drowned
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: river_master
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_breaking
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_misfortune
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: haste
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: lucky_miner
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: replanter
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: smelter
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: veinminer
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: bane_of_netherspawn
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: blindness
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: confusion
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_death
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: decapitator
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: double_strike
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: exhaust
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: exp_hunter
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: ice_aspect
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: infernus
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: paralyze
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: cure
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: rage
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: rocket
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: scavenger
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: surprise
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: swiper
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: temper
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: vampire
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: venom
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: village_defender
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: wither
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: aquaman
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: bunny_hop
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: cold_steel
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: ice_shield
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: elemental_protection
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: fire_shield
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: flame_walker
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: hardened
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: night_vision
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: regrowth
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: self_destruction
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: stopping_force
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: sonic
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: confusing_arrows
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: dragonfire_arrows
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: electrified_arrows
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: ender_bow
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: explosive_arrows
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: flare
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: ghast
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: hover
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: sniper
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: poisoned_arrows
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: vampiric_arrows
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: withered_arrows
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: darkness_arrows
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: darkness_cloak
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_fragility
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_mediocrity
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: soulbound
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: restore
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Enchantments Registered: 66
[18:37:32] [Server thread/INFO]: [ExcellentEnchants] Plugin loaded in 174 ms!
[18:37:32] [Server thread/INFO]: [VoidGen] Enabling VoidGen v2.2.1
[18:37:33] [Server thread/INFO]: [VoidGen] Using VoidChunkGen: VERSION_UNKNOWN
[18:37:33] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.3.5
[18:37:34] [Server thread/WARN]: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[18:37:34] [Server thread/WARN]: It seems like you're running on paper.
[18:37:34] [Server thread/WARN]: This may cause issues.
[18:37:34] [Server thread/WARN]: If you encounter any issues, please join my dicord: https://discord.gg/dBhfCzdZxq
[18:37:34] [Server thread/WARN]: Or create an issue on GitHub: https://github.com/TheBlackEntity/PlugMan
[18:37:34] [Server thread/WARN]: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[18:37:34] [Server thread/INFO]: Preparing level "world"
[18:37:35] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[18:37:38] [Server thread/INFO]: Time elapsed: 3014 ms
[18:37:38] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[18:37:38] [Server thread/INFO]: Time elapsed: 22 ms
[18:37:38] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[18:37:38] [Server thread/INFO]: Time elapsed: 19 ms
[18:37:38] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.9-beta1+2249-223b80c
[18:37:39] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[18:37:39] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[18:37:39] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[18:37:39] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[18:37:39] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[18:37:39] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[18:37:39] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[18:37:39] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[18:37:39] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[18:37:39] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[18:37:39] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[18:37:39] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[18:37:39] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[18:37:39] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[18:37:39] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[18:37:39] [Server thread/INFO]: [WorldGuard] Loading region data...
[18:37:40] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.4
[18:37:41] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[18:37:41] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.4.1-SNAPSHOT-8e3bde57
[18:37:42] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.20.2)...
[18:37:42] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[18:37:43] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: MythicMobs
[18:37:43] [Server thread/INFO]: [Lands] Nag author(s) of plugin MythicMobs. It uses the deprecated LandsIntegration of Lands: https://github.com/Angeschossen/LandsAPI/wiki/API-Update
[18:37:43] [Server thread/INFO]: [MythicMobs] Mythic Lands Support has been enabled!
[18:37:43] [Server thread/INFO]: [MythicMobs] Mythic MMOItems Support has been enabled!
[18:37:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[18:37:43] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[18:37:43] [Server thread/INFO]: [MythicMobs] Mythic ProtocolLib Support has been enabled!
[18:37:43] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[18:37:43] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[18:37:43] [Server thread/INFO]: [MythicMobs] Base directory /home/container/plugins/MythicMobs/SavedData
[18:37:43] [Server thread/INFO]: [MythicMobs] Module directory /home/container/plugins/MythicMobs/SavedData/worlds
[18:37:44] [Server thread/INFO]: [MythicMobs] Loading Packs...
[18:37:44] [Server thread/INFO]: [MythicMobs] Loading Items...
[18:37:44] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[18:37:44] [Server thread/INFO]: [MythicMobs] Loading Skills...
[18:37:44] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '': invalid syntax.
[18:37:44] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic effect:sound
[18:37:44] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Skills/archer_skills.yml
[18:37:44] [Server thread/WARN]: [MythicMobs] --| Error Message: Invalid SoundCategory specified
[18:37:44] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: effect:sound{s=archer_sounds:samus.arrow_shoot;volume=1;pitch=;sc=PLAYERS1}
[18:37:45] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic runaitargetselector
[18:37:45] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Skills/littleroom/minotaur.yml
[18:37:45] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'goal' attribute is required.
[18:37:45] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: runaitargetselector{goal=clear}
[18:37:45] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic runaitargetselector
[18:37:45] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Skills/littleroom/minotaur.yml
[18:37:45] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'goal' attribute is required.
[18:37:45] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: runaitargetselector{goal=players}
[18:37:45] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic effect:particles
[18:37:45] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Skills/NPC Skill/NPCvol4.yml
[18:37:45] [Server thread/WARN]: [MythicMobs] --| Error Message: Invalid format for direction: must be x,y,z vector
[18:37:45] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: effect:particles{particle=large_smoke;amount=50;hS=.5;vS=0;speed=0.01;dir=true;d=0,1,0;repeat=5;repeatInterval=2}
[18:37:45] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic effect:particles
[18:37:45] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Skills/NPC Skill/NPCvol4.yml
[18:37:45] [Server thread/WARN]: [MythicMobs] --| Error Message: Invalid format for direction: must be x,y,z vector
[18:37:45] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: effect:particles{particle=large_smoke;amount=50;hS=.5;vS=0;speed=0.01;dir=true;d=0,1,0;repeat=5;repeatInterval=2}
[18:37:45] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic effect:particles
[18:37:45] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Skills/NPC Skill/NPCvol4.yml
[18:37:45] [Server thread/WARN]: [MythicMobs] --| Error Message: Invalid format for direction: must be x,y,z vector
[18:37:45] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: effect:particles{particle=large_smoke;amount=50;hS=.5;vS=0;speed=0.01;dir=true;d=0,1,0;repeat=5;repeatInterval=2}
[18:37:45] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic effect:particles
[18:37:45] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Skills/NPC Skill/NPCvol4.yml
[18:37:45] [Server thread/WARN]: [MythicMobs] --| Error Message: Invalid format for direction: must be x,y,z vector
[18:37:45] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: effect:particles{particle=large_smoke;amount=50;hS=.5;vS=0;speed=0.01;dir=true;d=0,1,0;repeat=5;repeatInterval=2}
[18:37:45] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic effect:particles
[18:37:45] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Skills/NPC Skill/NPCvol4.yml
[18:37:45] [Server thread/WARN]: [MythicMobs] --| Error Message: Invalid format for direction: must be x,y,z vector
[18:37:45] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: effect:particles{particle=large_smoke;amount=50;hS=.5;vS=0;speed=0.01;dir=true;d=0,1,0;repeat=5;repeatInterval=2}
[18:37:48] [Server thread/WARN]: [MythicMobs] Could not load MythicMob toro_deep_creature_debris_large! Invalid type specified.
[18:37:48] [Server thread/WARN]: [MythicMobs] Could not load MythicMob toro_deep_creature_debris_small! Invalid type specified.
[18:37:48] [Server thread/WARN]: [MythicMobs] Could not load MythicMob toro_blue_explosion_large! Invalid type specified.
[18:37:48] [Server thread/WARN]: [MythicMobs] Could not load MythicMob toro_blue_explosion_small! Invalid type specified.
[18:37:48] [Server thread/WARN]: [MythicMobs] Could not load MythicMob toro_deep_creature_dust_ring! Invalid type specified.
[18:37:48] [Server thread/WARN]: [MythicMobs] Could not load MythicMob toro_deep_creature_dust_double! Invalid type specified.
[18:37:48] [Server thread/WARN]: [MythicMobs] Could not load MythicMob toro_deep_shine! Invalid type specified.
[18:37:48] [Server thread/WARN]: [MythicMobs] Could not load MythicMob toro_wither_skull_shoot! Invalid type specified.
[18:37:48] [Server thread/WARN]: [MythicMobs] Could not load MythicMob toro_wither_pool! Invalid type specified.
[18:37:48] [Server thread/WARN]: [MythicMobs] Could not load MythicMob NPCGREETFX! Invalid type specified.
[18:37:48] [Server thread/WARN]: [MythicMobs] Could not load MythicMob NPCGREETFX! Invalid type specified.
[18:37:48] [Server thread/WARN]: [MythicMobs] Could not load MythicMob NPCVOL4GREETFX! Invalid type specified.
[18:37:48] [Server thread/WARN]: [MythicMobs] Could not load MythicMob meteor! Invalid type specified.
[18:37:48] [Server thread/WARN]: [MythicMobs] Could not load MythicMob azriel_book! Invalid type specified.
[18:37:48] [Server thread/WARN]: [MythicMobs] Could not load MythicMob azriel_pierce_dummy! Invalid type specified.
[18:37:48] [Server thread/WARN]: [MythicMobs] Could not load MythicMob dungeon_candelabra! Invalid type specified.
[18:37:48] [Server thread/WARN]: [MythicMobs] Could not load MythicMob dungeon_rat! Invalid type specified.
[18:37:48] [Server thread/WARN]: [MythicMobs] Could not load MythicMob dungeon_chandelier! Invalid type specified.
[18:37:48] [Server thread/WARN]: [MythicMobs] Could not load MythicMob dungeon_chandelier_falling! Invalid type specified.
[18:37:48] [Server thread/WARN]: [MythicMobs] Could not load MythicMob dungeon_spawn_crystal! Invalid type specified.
[18:37:48] [Server thread/WARN]: [MythicMobs] Could not load MythicMob hedgehog! Invalid type specified.
[18:37:48] [Server thread/WARN]: [MythicMobs] Could not load MythicMob raccoon! Invalid type specified.
[18:37:48] [Server thread/WARN]: [MythicMobs] Could not load MythicMob frog! Invalid type specified.
[18:37:48] [Server thread/WARN]: [MythicMobs] Could not load MythicMob cacti! Invalid type specified.
[18:37:48] [Server thread/WARN]: [MythicMobs] Could not load MythicMob TROLL_GREETFX! Invalid type specified.
[18:37:48] [Server thread/WARN]: [MythicMobs] Could not load MythicMob lr_anubis_obelisk! Invalid type specified.
[18:37:48] [Server thread/WARN]: [MythicMobs] Could not load MythicMob ANUBISobeliskLASERFX! Invalid type specified.
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error: Particle 'campfire_smoke' is not supported by this version of MythicMobs.
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error: Particle 'campfire_smoke' is not supported by this version of MythicMobs.
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error: Particle 'campfire_smoke' is not supported by this version of MythicMobs.
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic effect:sound
[18:37:49] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Packs/Explorer/Mobs/qct_exp_mobs.yml
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Error Message: Invalid SoundCategory specified
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: sound{s=minecraft:block.amethyst_block.chime;v=1;p=1;sc=BLOCK}
[18:37:49] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[18:37:49] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in RandomSpawn RandomFrog
[18:37:49] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Error Message: No valid mob types configured
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in RandomSpawn Randomrat
[18:37:49] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Error Message: No valid mob types configured
[18:37:49] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[18:37:49] [Server thread/WARN]: org.yaml.snakeyaml.error.YAMLException: Unexpected referential mapping structure. Node: <org.yaml.snakeyaml.nodes.MappingNode (tag=tag:yaml.org,2002:map, values={ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=MobName)>; value=1598842743 }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=World)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=World)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=world_spawn)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=X)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=X)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=-91)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Y)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Y)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=59)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Z)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Z)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=-50)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Yaw)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Yaw)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:float, value=0.0)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Pitch)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Pitch)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:float, value=0.0)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Radius)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Radius)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=0)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=RadiusY)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=RadiusY)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=1)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=UseTimer)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=UseTimer)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:bool, value=true)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=MaxMobs)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=MaxMobs)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=1)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=MobLevel)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=MobLevel)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=1)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=MobsPerSpawn)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=MobsPerSpawn)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=1)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Cooldown)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Cooldown)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=0)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=CooldownTimer)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=CooldownTimer)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=0)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Warmup)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Warmup)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=240)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=WarmupTimer)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=WarmupTimer)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=0)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=CheckForPlayers)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=CheckForPlayers)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:bool, value=true)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=ActivationRange)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=ActivationRange)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=40)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=ScalingRange)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=ScalingRange)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:float, value=25.0)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=LeashRange)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=LeashRange)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=32)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=HealOnLeash)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=HealOnLeash)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:bool, value=false)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=ResetThreatOnLeash)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=ResetThreatOnLeash)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:bool, value=false)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=ShowFlames)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=ShowFlames)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:bool, value=false)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Breakable)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Breakable)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:bool, value=false)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Conditions)>; value=621312628 }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=ActiveMobs)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=ActiveMobs)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=0)>> })>
[18:37:49] [Server thread/WARN]:     at MythicMobs-5.4.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:41)
[18:37:49] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:264)
[18:37:49] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:247)
[18:37:49] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:576)
[18:37:49] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:210)
[18:37:49] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:552)
[18:37:49] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:597)
[18:37:49] [Server thread/WARN]:     at MythicMobs-5.4.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:44)
[18:37:49] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:264)
[18:37:49] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:247)
[18:37:49] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructDocument(BaseConstructor.java:201)
[18:37:49] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:185)
[18:37:49] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:493)
[18:37:49] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.load(Yaml.java:422)
[18:37:49] [Server thread/WARN]:     at MythicMobs-5.4.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadFromString(YamlConfiguration.java:52)
[18:37:49] [Server thread/WARN]:     at MythicMobs-5.4.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.config.file.FileConfiguration.load(FileConfiguration.java:149)
[18:37:49] [Server thread/WARN]:     at MythicMobs-5.4.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.config.file.FileConfiguration.load(FileConfiguration.java:117)
[18:37:49] [Server thread/WARN]:     at MythicMobs-5.4.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:178)
[18:37:49] [Server thread/WARN]:     at MythicMobs-5.4.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.config.properties.types.NodeListProp.getNodes(NodeListProp.java:33)
[18:37:49] [Server thread/WARN]:     at MythicMobs-5.4.1-SNAPSHOT.jar//io.lumine.mythic.core.spawning.spawners.SpawnerManager.loadSpawners(SpawnerManager.java:85)
[18:37:49] [Server thread/WARN]:     at MythicMobs-5.4.1-SNAPSHOT.jar//io.lumine.mythic.core.config.ConfigExecutor.load(ConfigExecutor.java:235)
[18:37:49] [Server thread/WARN]:     at MythicMobs-5.4.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:184)
[18:37:49] [Server thread/WARN]:     at MythicMobs-5.4.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:80)
[18:37:49] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281)
[18:37:49] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189)
[18:37:49] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[18:37:49] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[18:37:49] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644)
[18:37:49] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555)
[18:37:49] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627)
[18:37:49] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424)
[18:37:49] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:308)
[18:37:49] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1086)
[18:37:49] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315)
[18:37:49] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[18:37:49] [Server thread/ERROR]: [MythicMobs] Cannot load /home/container/plugins/MythicMobs/Spawners/spawnpot4.yml
[18:37:49] [Server thread/WARN]: io.lumine.mythic.bukkit.utils.config.InvalidConfigurationException: org.yaml.snakeyaml.error.YAMLException: Unexpected referential mapping structure. Node: <org.yaml.snakeyaml.nodes.MappingNode (tag=tag:yaml.org,2002:map, values={ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=MobName)>; value=1598842743 }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=World)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=World)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=world_spawn)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=X)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=X)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=-91)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Y)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Y)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=59)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Z)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Z)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=-50)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Yaw)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Yaw)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:float, value=0.0)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Pitch)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Pitch)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:float, value=0.0)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Radius)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Radius)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=0)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=RadiusY)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=RadiusY)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=1)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=UseTimer)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=UseTimer)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:bool, value=true)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=MaxMobs)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=MaxMobs)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=1)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=MobLevel)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=MobLevel)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=1)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=MobsPerSpawn)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=MobsPerSpawn)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=1)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Cooldown)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Cooldown)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=0)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=CooldownTimer)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=CooldownTimer)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=0)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Warmup)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Warmup)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=240)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=WarmupTimer)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=WarmupTimer)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=0)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=CheckForPlayers)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=CheckForPlayers)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:bool, value=true)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=ActivationRange)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=ActivationRange)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=40)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=ScalingRange)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=ScalingRange)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:float, value=25.0)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=LeashRange)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=LeashRange)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=32)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=HealOnLeash)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=HealOnLeash)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:bool, value=false)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=ResetThreatOnLeash)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=ResetThreatOnLeash)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:bool, value=false)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=ShowFlames)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=ShowFlames)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:bool, value=false)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Breakable)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Breakable)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:bool, value=false)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Conditions)>; value=621312628 }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=ActiveMobs)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=ActiveMobs)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=0)>> })>
[18:37:49] [Server thread/WARN]:     at MythicMobs-5.4.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadFromString(YamlConfiguration.java:55)
[18:37:49] [Server thread/WARN]:     at MythicMobs-5.4.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.config.file.FileConfiguration.load(FileConfiguration.java:149)
[18:37:49] [Server thread/WARN]:     at MythicMobs-5.4.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.config.file.FileConfiguration.load(FileConfiguration.java:117)
[18:37:49] [Server thread/WARN]:     at MythicMobs-5.4.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:178)
[18:37:49] [Server thread/WARN]:     at MythicMobs-5.4.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.config.properties.types.NodeListProp.getNodes(NodeListProp.java:33)
[18:37:49] [Server thread/WARN]:     at MythicMobs-5.4.1-SNAPSHOT.jar//io.lumine.mythic.core.spawning.spawners.SpawnerManager.loadSpawners(SpawnerManager.java:85)
[18:37:49] [Server thread/WARN]:     at MythicMobs-5.4.1-SNAPSHOT.jar//io.lumine.mythic.core.config.ConfigExecutor.load(ConfigExecutor.java:235)
[18:37:49] [Server thread/WARN]:     at MythicMobs-5.4.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:184)
[18:37:49] [Server thread/WARN]:     at MythicMobs-5.4.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:80)
[18:37:49] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281)
[18:37:49] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189)
[18:37:49] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[18:37:49] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[18:37:49] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644)
[18:37:49] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555)
[18:37:49] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627)
[18:37:49] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424)
[18:37:49] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:308)
[18:37:49] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1086)
[18:37:49] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315)
[18:37:49] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[18:37:49] [Server thread/WARN]: Caused by: org.yaml.snakeyaml.error.YAMLException: Unexpected referential mapping structure. Node: <org.yaml.snakeyaml.nodes.MappingNode (tag=tag:yaml.org,2002:map, values={ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=MobName)>; value=1598842743 }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=World)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=World)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=world_spawn)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=X)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=X)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=-91)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Y)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Y)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=59)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Z)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Z)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=-50)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Yaw)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Yaw)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:float, value=0.0)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Pitch)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Pitch)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:float, value=0.0)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Radius)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Radius)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=0)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=RadiusY)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=RadiusY)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=1)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=UseTimer)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=UseTimer)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:bool, value=true)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=MaxMobs)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=MaxMobs)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=1)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=MobLevel)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=MobLevel)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=1)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=MobsPerSpawn)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=MobsPerSpawn)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=1)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Cooldown)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Cooldown)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=0)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=CooldownTimer)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=CooldownTimer)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=0)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Warmup)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Warmup)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=240)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=WarmupTimer)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=WarmupTimer)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=0)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=CheckForPlayers)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=CheckForPlayers)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:bool, value=true)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=ActivationRange)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=ActivationRange)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=40)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=ScalingRange)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=ScalingRange)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:float, value=25.0)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=LeashRange)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=LeashRange)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=32)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=HealOnLeash)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=HealOnLeash)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:bool, value=false)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=ResetThreatOnLeash)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=ResetThreatOnLeash)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:bool, value=false)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=ShowFlames)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=ShowFlames)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:bool, value=false)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Breakable)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Breakable)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:bool, value=false)>> }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=Conditions)>; value=621312628 }{ key=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=ActiveMobs)>; value=<NodeTuple keyNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:str, value=ActiveMobs)>; valueNode=<org.yaml.snakeyaml.nodes.ScalarNode (tag=tag:yaml.org,2002:int, value=0)>> })>
[18:37:49] [Server thread/WARN]:     at MythicMobs-5.4.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:41)
[18:37:49] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:264)
[18:37:49] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:247)
[18:37:49] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:576)
[18:37:49] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:210)
[18:37:49] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:552)
[18:37:49] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:597)
[18:37:49] [Server thread/WARN]:     at MythicMobs-5.4.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:44)
[18:37:49] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:264)
[18:37:49] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:247)
[18:37:49] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructDocument(BaseConstructor.java:201)
[18:37:49] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:185)
[18:37:49] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:493)
[18:37:49] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.load(Yaml.java:422)
[18:37:49] [Server thread/WARN]:     at MythicMobs-5.4.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadFromString(YamlConfiguration.java:52)
[18:37:49] [Server thread/WARN]:     ... 20 more
[18:37:49] [Server thread/WARN]: [MythicMobs] WARNING: HashCode collision detected when loading spawners.
[18:37:49] [Server thread/WARN]: [MythicMobs] Spawner 1 Hash: -1157724092 Type: spawnprop39
[18:37:49] [Server thread/WARN]: [MythicMobs] Spawner 2 Hash: -1157724092 Type: spawnprop39
[18:37:49] [Server thread/WARN]: [MythicMobs] We recommend changing one of these spawners' names to avoid issues resolving mob type.
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Skill: slime_princess_spawn | File: /home/container/plugins/MythicMobs/Skills/torotoro/slime_princess.yml
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{type=slime_princess;amount=1}
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic randomskill
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Skill: random_stun_sound | File: /home/container/plugins/MythicMobs/Skills/littleroom/kriger.yml
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill random_stun04_sound
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: randomskill{skills=random_stun01_sound,random_stun02_sound,random_stun03_sound,random_stun04_sound}
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Skill: kurrot_DEATH | File: /home/container/plugins/MythicMobs/Skills/littleroom/kur_rot.yml
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{t=w1_rider}
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Skill: voras_death | File: /home/container/plugins/MythicMobs/Skills/littleroom/voras.yml
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{t=w2_deadspider}
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Skill: gigasRAVEskill | File: /home/container/plugins/MythicMobs/Skills/littleroom/gigas.yml
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{type=gigasbabyred;a=1}
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Skill: gigasRAVEskill | File: /home/container/plugins/MythicMobs/Skills/littleroom/gigas.yml
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{type=gigasbabyred;a=1}
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Skill: gigasRAVEskill | File: /home/container/plugins/MythicMobs/Skills/littleroom/gigas.yml
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{type=gigasbabyred;a=1}
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Skill: gigasRAVEskill | File: /home/container/plugins/MythicMobs/Skills/littleroom/gigas.yml
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{type=gigasbabyblue;a=1}
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic randomskill
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Skill: cerberusRANDOMBARK | File: /home/container/plugins/MythicMobs/Skills/littleroom/cerberus.yml
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill cerberusbark3
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: randomskill{skills=cerberusbark1,cerberusbark2,cerberusbark3,cerberusbark4}
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Skill: Event_Goblin_Jump | File: /home/container/plugins/MythicMobs/Skills/Ethereal/GoblinSkills.yml
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{type=event_box;amount=1;yRadius=0.1;sip=true}
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Skill: summonnemesis | File: /home/container/plugins/MythicMobs/Skills/Ethereal/GoblinSkills.yml
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{t=nemesis;r=4}
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Skill: summonlootgoblin | File: /home/container/plugins/MythicMobs/Skills/Ethereal/GoblinSkills.yml
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{t=loot_goblin;r=4}
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Skill: summontotem | File: /home/container/plugins/MythicMobs/Skills/Ethereal/GoblinSkills.yml
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{t=buff_totem;r=4}
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Skill: boxdrops | File: /home/container/plugins/MythicMobs/Skills/Ethereal/GoblinSkills.yml
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{t=w1_gold;amount=5to10;onSurface=true;radius=2}
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic randomskill
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Skill: assassinNPCrandomimpact | File: /home/container/plugins/MythicMobs/Skills/NPC Skill/NPCvol4.yml
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill assassinNPCrandomimpact5
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: randomskill{s=assassinNPCrandomimpact1,assassinNPCrandomimpact2,assassinNPCrandomimpact3,assassinNPCrandomimpact4,assassinNPCrandomimpact5}
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic randomskill
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Skill: assassinNPCrandomvocal | File: /home/container/plugins/MythicMobs/Skills/NPC Skill/NPCvol4.yml
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill assassinNPCrandomvocal5
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: randomskill{s=assassinNPCrandomvocal1,assassinNPCrandomvocal2,assassinNPCrandomvocal3,assassinNPCrandomvocal4,assassinNPCrandomvocal5}
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Skill: tinkererNPCrobot | File: /home/container/plugins/MythicMobs/Skills/NPC Skill/NPCvol4.yml
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{t=NPCtinkererbot;r=1}
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Skill: qct_wagon_skeleton1 | File: /home/container/plugins/MythicMobs/Packs/Explorer/Skills/explorers_skills.yml
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{t=qct_skeleton1}
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mob: KUR_GROUNDROCKS | File: /home/container/plugins/MythicMobs/Mobs/littleroom/kur_rot.yml
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill kurrot_groundrocks
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=kurrot_groundrocks}
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mob: hat_duck | File: /home/container/plugins/MythicMobs/Mobs/littleroom/hat_duck.yml
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill duckDEATH
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=duckDEATH}
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mob: lr_fountain_left_north | File: /home/container/plugins/MythicMobs/Mobs/littleroom/showcase_extras.yml
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill showcaseREMOVE
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=showcaseREMOVE}
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mob: lr_fountain_right_north | File: /home/container/plugins/MythicMobs/Mobs/littleroom/showcase_extras.yml
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill showcaseREMOVE
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=showcaseREMOVE}
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MobsInRadius{r=2}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MobsInRadius{r=3}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mob: stone_player | File: /home/container/plugins/MythicMobs/Mobs/littleroom/medusa.yml
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{t=w1_gold}
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'mir{r=2;t=troll}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'mir{r=2;t=troll}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mob: boss_aura | File: /home/container/plugins/MythicMobs/Mobs/Ethereal/BossSummoner.yml
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill bosssummonertoss
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=bosssummonertoss}
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition mobsinradius
[18:37:49] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mobsInRadius{types=skeleton,skeleton_summon;amount=<1;radius=48}
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition mobsinradius
[18:37:49] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mobsInRadius{types=GoblinMoney,GoblinLapis,GoblinExp;amount=<1;radius=128}
[18:37:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition mobsinradius
[18:37:49] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[18:37:49] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mobsInRadius{types=GoblinMoney,GoblinLapis,GoblinExp;amount=<1;radius=128}
[18:37:49] [Server thread/INFO]: [MythicMobs] ✓ Loaded 779 mobs.
[18:37:49] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[18:37:49] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[18:37:49] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3463 skills.
[18:37:49] [Server thread/INFO]: [MythicMobs] ✓ Loaded 34 random spawns.
[18:37:49] [Server thread/INFO]: [MythicMobs] ✓ Loaded 781 mythic items.
[18:37:49] [Server thread/INFO]: [MythicMobs] ✓ Loaded 76 drop tables.
[18:37:49] [Server thread/INFO]: [MythicMobs] ✓ Loaded 161 mob spawners.
[18:37:49] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[18:37:49] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[18:37:49] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs Premium v5.4.1 ( build 8e3bde57 ) has been successfully loaded!
[18:37:49] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
[18:37:49] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.4
[18:37:50] [Server thread/INFO]: [DecentHolograms] Using ProtocolLib for packet listening.
[18:37:50] [Server thread/INFO]: [MCPets] Enabling MCPets v4.1.0
[18:37:51] [Server thread/INFO]: [MCPets] : Language file reloaded.
[18:37:51] [Server thread/INFO]: [MCPets] : Blacklist file reloaded.
[18:37:51] [Server thread/INFO]: Loading pets... 
[18:37:51] [Server thread/INFO]:   - F_Pet_Ice_Dragon loaded succesfully.
[18:37:51] [Server thread/INFO]:   - B_Pet_Eagle loaded succesfully.
[18:37:51] [Server thread/INFO]:   - F_Pet_Nature_Dragon loaded succesfully.
[18:37:51] [Server thread/INFO]:   - E_Pet_Lunar_Wolf loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Hippogryph_Common loaded succesfully.
[18:37:51] [Server thread/INFO]:   - w6_chibi_frank loaded succesfully.
[18:37:51] [Server thread/INFO]:   - w6_chibi_scarecrow loaded succesfully.
[18:37:51] [Server thread/INFO]:   - w6_chibi_mummy loaded succesfully.
[18:37:51] [Server thread/INFO]:   - w6_chibi_devil loaded succesfully.
[18:37:51] [Server thread/INFO]:   - DF_Pet_Martial_Artist loaded succesfully.
[18:37:51] [Server thread/INFO]:   - CE_Pet_Ice_Penguin loaded succesfully.
[18:37:51] [Server thread/INFO]:   - BB_Pet_Water_And_Fire loaded succesfully.
[18:37:51] [Server thread/INFO]:   - BA_Pet_Sun_And_Moon loaded succesfully.
[18:37:51] [Server thread/INFO]:   - CB_Pet_Angel_Slime loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Basilisk_Wild loaded succesfully.
[18:37:51] [Server thread/INFO]:   - DB_Pet_Dark_Knight loaded succesfully.
[18:37:51] [Server thread/INFO]:   - DD_Pet_Dragon_Warrior loaded succesfully.
[18:37:51] [Server thread/INFO]:   - CC_Pet_Archangel_Slime loaded succesfully.
[18:37:51] [Server thread/INFO]:   - B_Pet_Thunderbird loaded succesfully.
[18:37:51] [Server thread/INFO]:   - AA_Pet_Ent loaded succesfully.
[18:37:51] [Server thread/INFO]:   - DE_Pet_Assassin loaded succesfully.
[18:37:51] [Server thread/INFO]:   - C_Pet_Dark_Kitsune loaded succesfully.
[18:37:51] [Server thread/INFO]:   - E_Pet_Hellhound loaded succesfully.
[18:37:51] [Server thread/INFO]:   - CF_Pet_Ice_Emperor_Penguin loaded succesfully.
[18:37:51] [Server thread/INFO]:   - BD_Pet_Nether_And_Ender loaded succesfully.
[18:37:51] [Server thread/INFO]:   - A_Pet_Demon loaded succesfully.
[18:37:51] [Server thread/INFO]:   - D_Pet_Shuriken_Ninja loaded succesfully.
[18:37:51] [Server thread/INFO]:   - DH_Pet_Reaper loaded succesfully.
[18:37:51] [Server thread/INFO]:   - CA_Pet_Slime loaded succesfully.
[18:37:51] [Server thread/INFO]:   - F_Pet_Wind_Dragon loaded succesfully.
[18:37:51] [Server thread/INFO]:   - C_Pet_Kitsune loaded succesfully.
[18:37:51] [Server thread/INFO]:   - BC_Pet_Yin_And_Yang loaded succesfully.
[18:37:51] [Server thread/INFO]:   - D_Pet_Sai_Ninja loaded succesfully.
[18:37:51] [Server thread/INFO]:   - F_Pet_Shadow_Dragon loaded succesfully.
[18:37:51] [Server thread/INFO]:   - DC_Pet_Paladin loaded succesfully.
[18:37:51] [Server thread/INFO]:   - F_Pet_Undead_Dragon loaded succesfully.
[18:37:51] [Server thread/INFO]:   - A_Pet_Angel loaded succesfully.
[18:37:51] [Server thread/INFO]:   - F_Pet_Aether_Dragon loaded succesfully.
[18:37:51] [Server thread/INFO]:   - AB_Pet_Undead_Ent loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Sky_Serpent_Jade loaded succesfully.
[18:37:51] [Server thread/INFO]:   - C_Pet_Spirit_Fox loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Manticore_Soul loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Capybara_Mount loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Kitsune_Normal loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Phoenix_Darkflame loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Phoenix_Thunder loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Kitsune_Inferno loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Phantom_Ghost loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Sabertooth_Midnight loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Manticore_Venom loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Phantom_Ender loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Phoenix_Flame loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Phoenix_Light loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Dragon_Desert loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Horse_Glacial loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Horse_Pegasus loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Kitsune_Demonic loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Frog_Prince loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Dragon_Sculk loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Manticore_Aether loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Lizard_Aqua loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Horse_Magma loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Horse_Unicorn loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Horse_Spartan loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Lizard_Lava loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Panda loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Sabertooth_Arctic loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Dragon_Glacial loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Manticore_Dusk loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Sabertooth_Savanna loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Dragon_Nether loaded succesfully.
[18:37:51] [Server thread/INFO]:   - D_Pet_Samurai loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Raptor_Red loaded succesfully.
[18:37:51] [Server thread/INFO]:   - F_Pet_Thunder_Dragon loaded succesfully.
[18:37:51] [Server thread/INFO]:   - CD_Pet_Penguin loaded succesfully.
[18:37:51] [Server thread/INFO]:   - DA_Pet_Warrior loaded succesfully.
[18:37:51] [Server thread/INFO]:   - F_Pet_Fire_Dragon loaded succesfully.
[18:37:51] [Server thread/INFO]:   - AC_Pet_Elder_Ent loaded succesfully.
[18:37:51] [Server thread/INFO]:   - B_Pet_Phoenix loaded succesfully.
[18:37:51] [Server thread/INFO]:   - Stag_Rune loaded succesfully.
[18:37:51] [Server thread/INFO]:   - E_Pet_Frost_Wolf loaded succesfully.
[18:37:51] [Server thread/INFO]:   - DG_Pet_Ninja_Samurai loaded succesfully.
[18:37:51] [Server thread/INFO]: [MCPets] : 82 pets registered successfully !
[18:37:51] [Server thread/INFO]: Environment: Environment[accountsHost=https://api.mojang.com, sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[18:37:51] [Server thread/INFO]: [MCPets] : 2 categories registered successfully !
[18:37:51] [Server thread/ERROR]: [MCPets] Could not reach SQL database. Please configure your database parameters.
[18:37:51] [Server thread/INFO]: [MCPets] [Database] Can't initialize MySQL.
[18:37:51] [Server thread/INFO]: [MCPets] [Database] Will be using YAML support instead (no worry it's not a bug).
[18:37:51] [Server thread/INFO]: -=-=-=-= MCPets loaded =-=-=-=-
[18:37:51] [Server thread/INFO]:       Plugin made by Nocsy
[18:37:51] [Server thread/INFO]: -=-=-=-= -=-=-=-=-=-=- =-=-=-=-
[18:37:51] [Server thread/INFO]: -=- Launching Flags -=-
[18:37:51] [Server thread/INFO]: [MCPets] : Starting flag mcpets-dismount.
[18:37:51] [Server thread/INFO]: [MCPets] : Starting flag mcpets-despawn.
[18:37:51] [Server thread/INFO]: [MCPets] : Starting flag mcpets-dismount-flying.
[18:37:51] [Server thread/INFO]: 3 flags launched.
[18:37:51] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[18:37:52] [Server thread/INFO]: [Votifier] Loaded token for website: default
[18:37:52] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[18:37:52] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[18:37:52] [Server thread/INFO]: [CMILib] Enabling CMILib v1.4.2.1
[18:37:52] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /0.0.0.0:8192.
[18:37:56] [Server thread/INFO]: Server version: v1_20_R2 - 1.20.2 - paper
[18:37:56] [Server thread/INFO]: CMI hooked.
[18:37:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.4.2.1]
[18:37:56] [Server thread/INFO]: PlaceholderAPI hooked.
[18:37:56] [Server thread/INFO]: Updated (EN) language file. Took 21ms
[18:37:56] [Server thread/INFO]: [My_Worlds] Enabling My_Worlds v1.20.2-v1
[18:37:56] [Server thread/INFO]: [My_Worlds] Loading world 'world_warden'
[18:37:56] [Server thread/INFO]: Preparing start region for dimension minecraft:world_warden
[18:37:57] [Server thread/INFO]: Time elapsed: 603 ms
[18:37:57] [Server thread/INFO]: [WorldGuard] (world_warden) TNT ignition is PERMITTED.
[18:37:57] [Server thread/INFO]: [WorldGuard] (world_warden) Lighters are PERMITTED.
[18:37:57] [Server thread/INFO]: [WorldGuard] (world_warden) Lava fire is PERMITTED.
[18:37:57] [Server thread/INFO]: [WorldGuard] (world_warden) Fire spread is UNRESTRICTED.
[18:37:57] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_warden'
[18:37:57] [Server thread/INFO]: [My_Worlds] Set auto-load for world 'world' to 'no' because it uses chunk generator plugin 'Iris'!
[18:37:57] [Server thread/INFO]: [My_Worlds] Loading world 'world_pve' using chunk generator: 'VoidGen'
[18:37:57] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[18:37:57] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[18:37:57] [Server thread/INFO]: Preparing start region for dimension minecraft:world_pve
[18:37:57] [Server thread/INFO]: Time elapsed: 9 ms
[18:37:57] [Server thread/INFO]: [WorldGuard] (world_pve) TNT ignition is PERMITTED.
[18:37:57] [Server thread/INFO]: [WorldGuard] (world_pve) Lighters are PERMITTED.
[18:37:57] [Server thread/INFO]: [WorldGuard] (world_pve) Lava fire is PERMITTED.
[18:37:57] [Server thread/INFO]: [WorldGuard] (world_pve) Fire spread is UNRESTRICTED.
[18:37:57] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_pve'
[18:37:57] [Server thread/INFO]: [My_Worlds] Loading world 'world_pvp' using chunk generator: 'VoidGen'
[18:37:57] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[18:37:57] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[18:37:57] [Server thread/INFO]: Preparing start region for dimension minecraft:world_pvp
[18:37:57] [Server thread/INFO]: Time elapsed: 9 ms
[18:37:57] [Server thread/INFO]: [WorldGuard] (world_pvp) TNT ignition is PERMITTED.
[18:37:57] [Server thread/INFO]: [WorldGuard] (world_pvp) Lighters are PERMITTED.
[18:37:57] [Server thread/INFO]: [WorldGuard] (world_pvp) Lava fire is PERMITTED.
[18:37:57] [Server thread/INFO]: [WorldGuard] (world_pvp) Fire spread is UNRESTRICTED.
[18:37:57] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_pvp'
[18:37:57] [Server thread/INFO]: [My_Worlds] Loading world 'world_dungeon' using chunk generator: 'VoidGen'
[18:37:57] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[18:37:57] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[18:37:57] [Server thread/INFO]: Preparing start region for dimension minecraft:world_dungeon
[18:37:57] [Server thread/INFO]: Time elapsed: 7 ms
[18:37:57] [Server thread/INFO]: [WorldGuard] (world_dungeon) TNT ignition is PERMITTED.
[18:37:57] [Server thread/INFO]: [WorldGuard] (world_dungeon) Lighters are PERMITTED.
[18:37:57] [Server thread/INFO]: [WorldGuard] (world_dungeon) Lava fire is PERMITTED.
[18:37:57] [Server thread/INFO]: [WorldGuard] (world_dungeon) Fire spread is UNRESTRICTED.
[18:37:57] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_dungeon'
[18:37:57] [Server thread/INFO]: [My_Worlds] Loading world 'world_spawn' using chunk generator: 'VoidGen'
[18:37:57] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[18:37:57] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[18:37:57] [Server thread/INFO]: Preparing start region for dimension minecraft:world_spawn
[18:37:57] [Server thread/INFO]: Time elapsed: 11 ms
[18:37:57] [Server thread/INFO]: [WorldGuard] (world_spawn) TNT ignition is PERMITTED.
[18:37:57] [Server thread/INFO]: [WorldGuard] (world_spawn) Lighters are PERMITTED.
[18:37:57] [Server thread/INFO]: [WorldGuard] (world_spawn) Lava fire is PERMITTED.
[18:37:57] [Server thread/INFO]: [WorldGuard] (world_spawn) Fire spread is UNRESTRICTED.
[18:37:57] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_spawn'
[18:37:57] [Server thread/INFO]: [My_Worlds] Loading world 'world_mines' using chunk generator: 'VoidGen'
[18:37:57] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[18:37:57] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[18:37:58] [Server thread/INFO]: Preparing start region for dimension minecraft:world_mines
[18:37:58] [Server thread/INFO]: Time elapsed: 10 ms
[18:37:58] [Server thread/INFO]: [WorldGuard] (world_mines) TNT ignition is PERMITTED.
[18:37:58] [Server thread/INFO]: [WorldGuard] (world_mines) Lighters are PERMITTED.
[18:37:58] [Server thread/INFO]: [WorldGuard] (world_mines) Lava fire is PERMITTED.
[18:37:58] [Server thread/INFO]: [WorldGuard] (world_mines) Fire spread is UNRESTRICTED.
[18:37:58] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_mines'
[18:37:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: myworlds [1.20.2-v1]
[18:37:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mw [1.20.2-v1]
[18:37:58] [Server thread/INFO]: [My_Worlds] PlaceholderAPI integration enabled
[18:37:58] [Server thread/INFO]: [My_Worlds] My_Worlds version 1.20.2-v1 (build: 251) enabled! (1.446s)
[18:37:58] [Server thread/INFO]: [AdvancedMobArena] Enabling AdvancedMobArena v7.9.5
[18:37:58] [Server thread/INFO]: [AdvancedMobArena] Powered by: NexEngine
[18:37:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ama [7.9.5]
[18:37:58] [Server thread/INFO]: [AdvancedMobArena] Registered mob provider: MythicMobs
[18:37:58] [Server thread/INFO]: [AdvancedMobArena] Registered pet provider: MCPets
[18:37:58] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[18:37:58] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@7f1a4acf
[18:37:58] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[18:37:58] [Server thread/INFO]: [AdvancedMobArena] Registered currency: coins
[18:37:58] [Server thread/INFO]: [AdvancedMobArena] Registered currency: vault
[18:37:58] [Server thread/INFO]: [AdvancedMobArena] Found compatible holograms plugin! Let's use hologram features.
[18:37:58] [Server thread/INFO]: [AdvancedMobArena] Mobs Loaded: 63
[18:37:58] [Server thread/INFO]: [AdvancedMobArena] Registered mob provider: AMA
[18:37:58] [Server thread/INFO]: [AdvancedMobArena] Kits Loaded: 7
[18:37:58] [Server thread/INFO]: [AdvancedMobArena] Plugin loaded in 193 ms!
[18:37:58] [Server thread/INFO]: [CMI] Enabling CMI v9.6.5.3
[18:37:59] [Server thread/INFO]: ┏━━━┓ ┏━┓┏━┓ ┏━━┓
[18:37:59] [Server thread/INFO]: ┃┏━┓┃ ┃ ┗┛ ┃ ┗┫┣┛
[18:37:59] [Server thread/INFO]: ┃┃ ┗┛ ┃┏┓┏┓┃  ┃┃ 
[18:37:59] [Server thread/INFO]: ┃┃ ┏┓ ┃┃┃┃┃┃  ┃┃ 
[18:37:59] [Server thread/INFO]: ┃┗━┛┃ ┃┃┃┃┃┃ ┏┫┣┓
[18:37:59] [Server thread/INFO]: ┗━━━┛ ┗┛┗┛┗┛ ┗━━┛
[18:37:59] [Server thread/INFO]: _______________________________________________________
[18:37:59] [Server thread/INFO]:   Integrating PaperSpigot async methods
[18:37:59] [Server thread/INFO]:   Vault found. (Loaded: true)
[18:37:59] [Server thread/INFO]:   Citizens found. (Loaded: false)
[18:37:59] [Server thread/INFO]:   AureliumSkills found. (Loaded: false)
[18:37:59] [Server thread/INFO]:   48 Enabled and 11 Disabled modules
[18:37:59] [Server thread/INFO]:   Votifier found. (Loaded: true)
[18:37:59] [Server thread/INFO]:   Loaded (5) dynamic signs into memory. Took 2ms
[18:37:59] [Server thread/INFO]:   ProtocolLib found. (Loaded: true)
[18:37:59] [Server thread/INFO]:   Permission plugin: LuckPerms5.4.102
[18:37:59] [Server thread/INFO]:   Initialized Cipher256 AES
[18:38:00] [Server thread/INFO]:   Loaded (61) regular alias into memory. Took 26ms
[18:38:00] [Server thread/INFO]:   Loaded (1) custom text's into memory. Took 9ms
[18:38:00] [Server thread/INFO]:   3.42.0 data base type detected
[18:38:00] [Server thread/INFO]:   Started SqLite data base. Took 82ms
[18:38:00] [Server thread/INFO]:   Vault was found - Enabling capabilities. Economy: CMIEconomy
[18:38:00] [Server thread/INFO]:   Loaded (5) warning categories into memory. Took 0ms
[18:38:00] [Server thread/INFO]:   Loaded (3) warning commands into memory. Took 1ms
[18:38:00] [Server thread/INFO]:   Loaded (140) custom mob heads into memory. Took 8ms
[18:38:00] [Server thread/INFO]:   Loaded (0) cooldowns into memory. Took 17ms
[18:38:00] [Server thread/INFO]:   Loaded (6) warmups into memory. Took 0ms
[18:38:00] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (resource_world) name
[18:38:00] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (nether) name
[18:38:00] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (the_void) name
[18:38:00] [Server thread/INFO]:   Loaded (2) kits into memory. Took 5ms
[18:38:00] [Server thread/INFO]:   Loaded (7) ranks into memory. Took 5ms
[18:38:00] [Server thread/INFO]:   Loaded (1) playtime rewards into memory. Took 1ms
[18:38:00] [Server thread/INFO]:   Loaded (1) jails into memory. Took 2ms
[18:38:00] [Server thread/INFO]:   Loaded (2346) player data into memory. Took 116ms
[18:38:00] [Server thread/INFO]:   Loaded (12784) playtime records into memory. Took 74ms
[18:38:00] [Server thread/INFO]:   Loaded (3) playtime reward records into memory. Took 0ms
[18:38:00] [Server thread/INFO]:   Loaded (7) custom alias into memory. Took 1ms
[18:38:00] [Server thread/INFO]:   Registered events. Took 58ms
[18:38:00] [Server thread/INFO]:   Loaded (13) event action commands into memory. Took 2ms
[18:38:00] [Server thread/INFO]:   Loaded (EN) language file into memory. Took 66ms
[18:38:00] [Server thread/INFO]:   Loaded (245) worth values into memory. Took 35ms
[18:38:00] [Server thread/INFO]:   Loaded (14) warps into memory. Took 2ms
[18:38:00] [Server thread/INFO]:   VaultPermissions found. (Loaded: true)
[18:38:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmi [9.6.5.3]
[18:38:00] [Server thread/INFO]:   PlaceholderAPI hooked.
[18:38:00] [Server thread/INFO]:   PlaceholderAPI found. (Loaded: true)
[18:38:00] [Server thread/INFO]:   Starting world timer.
[18:38:00] [Server thread/INFO]:   Initializing world manager.
[18:38:00] [Server thread/INFO]:   Loaded (9) schedules into memory. Took 4ms
[18:38:00] [Server thread/INFO]:   Loaded GeoIP
[18:38:00] [Server thread/INFO]:   Loaded (2) skin cache entries into memory. Took 1ms
[18:38:00] [Server thread/INFO]:   Loaded (1) custom recipes into memory. Took 6ms
[18:38:00] [Server thread/INFO]:   Loaded (0) ArmorStand templates into memory. Took 0ms
[18:38:00] [Server thread/INFO]:   Version 9.6.5.3 has been enabled
[18:38:00] [Server thread/INFO]: ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
[18:38:00] [Server thread/INFO]: [Vault][Economy] CMI Economy hooked.
[18:38:00] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.33-SNAPSHOT (build 3219)
[18:38:02] [Server thread/INFO]: [Citizens] Loading external libraries
[18:38:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[18:38:02] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[18:38:02] [Server thread/INFO]: [MythicLib] Enabling MythicLib v1.6.2-SNAPSHOT
[18:38:03] [Server thread/WARN]: [MythicLib] You may be using an outdated config.yml!
[18:38:03] [Server thread/WARN]: [MythicLib] (Your config version: '4' | Expected config version: '5')
[18:38:03] [Server thread/INFO]: [MythicLib] Hooked onto DecentHolograms
[18:38:03] [Server thread/INFO]: [MythicLib] Hooked onto CMI
[18:38:03] [Server thread/INFO]: [MythicMobs] MMO Plugin Support has been enabled!
[18:38:03] [Server thread/INFO]: [MythicLib] Hooked onto MythicMobs
[18:38:03] [Server thread/INFO]: [MythicLib] Hooked onto ProtocolLib
[18:38:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythiclib [1.6.2-SNAPSHOT]
[18:38:03] [Server thread/INFO]: [MythicLib] Hooked onto PlaceholderAPI
[18:38:03] [Server thread/WARN]: [MythicLib] Found a dependency cycle! Please make sure that the plugins involved load with no errors.
[18:38:03] [Server thread/WARN]: [MythicLib] Plugin dependency cycle: [CustomFishing, CustomCrops, ItemsAdder, ModelEngine, Citizens, CMI, AdvancedMobArena, MCPets, ModelEngine]
[18:38:03] [Server thread/INFO]: [Denizen] Enabling Denizen v1.2.9-SNAPSHOT (build 6889-DEV)
[18:38:04] [Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.91.0-SNAPSHOT (Build 1357), impl for Spigot v1.2.9-SNAPSHOT (build 6889-DEV) 
[18:38:04] [Server thread/INFO]: +> [Denizen] Running on java version: 18.0.2.1 
[18:38:04] [Server thread/WARN]: [Denizen] Running unreliable future Java version. modern Minecraft versions are built for Java 17. Other Java versions are not guaranteed to function properly.
[18:38:04] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[18:38:04] [Server thread/INFO]: +> [Denizen]  Denizen  scriptable minecraft 
[18:38:04] [Server thread/INFO]: +> [Denizen]  
[18:38:04] [Server thread/INFO]: +> [Denizen] by: The DenizenScript team 
[18:38:04] [Server thread/INFO]: +> [Denizen] Chat with us at: https://discord.gg/Q6pZGSR 
[18:38:04] [Server thread/INFO]: +> [Denizen] Or learn more at: https://denizenscript.com 
[18:38:04] [Server thread/INFO]: +> [Denizen] version: 1.2.9-SNAPSHOT (build 6889-DEV) 
[18:38:04] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[18:38:04] [Server thread/INFO]: +> [TriggerRegistry] Loaded 4 core triggers 
[18:38:05] [Server thread/INFO]: +> [PaperModule] Loading Paper support module... 
[18:38:05] [Server thread/INFO]: +> [Denizen] Loaded 149 core commands and 29 core object types, at 905ms from start. 
[18:38:05] [Server thread/INFO]: +> [ScriptRegistry] Loading 1 script files... 
[18:38:05] [Server thread/INFO]: +> [DenizenCore] Scripts loaded! File load took 3ms, processing 4ms. 
[18:38:05] [Server thread/INFO]: +> [Denizen] Final full init took 934ms. 
[18:38:05] [Server thread/INFO]: [AureliumSkills] Enabling AureliumSkills vBeta 1.3.23
[18:38:05] [Server thread/INFO]: [AureliumSkills] WorldGuard Support Enabled!
[18:38:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aureliumskills [Beta 1.3.23]
[18:38:05] [Server thread/INFO]: [AureliumSkills] PlaceholderAPI Support Enabled!
[18:38:05] [Server thread/INFO]: [AureliumSkills] Vault Support Enabled!
[18:38:05] [Server thread/INFO]: [AureliumSkills] Loaded 194 config options in 0 ms
[18:38:05] [Server thread/INFO]: [AureliumSkills] Loaded 312 sources and 10 tags in 7ms
[18:38:05] [Server thread/INFO]: [AureliumSkills] [ACF] Enabled Asynchronous Tab Completion Support!
[18:38:05] [Server thread/INFO]: [AureliumSkills] Loading languages...
[18:38:06] [Server thread/INFO]: [AureliumSkills] Loaded 16 languages in 657ms
[18:38:06] [Server thread/INFO]: [AureliumSkills] Loaded 34 pattern rewards and 9 level rewards
[18:38:06] [Server thread/INFO]: [AureliumSkills] Disabled 8 Abilities
[18:38:06] [Server thread/INFO]: [AureliumSkills] Loaded 78 Ability Options in 2ms
[18:38:06] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
[18:38:06] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R2' loaded!
[18:38:06] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AureliumSkills' to create a bStats instance!
[18:38:06] [Server thread/INFO]: [AureliumSkills] Loaded 6 menus
[18:38:06] [Server thread/INFO]: [AureliumSkills] Loaded 27 loot entries in 5 pools and 2 tables
[18:38:06] [Server thread/INFO]: [AureliumSkills] Loaded 3 blocked worlds.
[18:38:06] [Server thread/INFO]: [AureliumSkills] Aurelium Skills has been enabled
[18:38:06] [Server thread/INFO]: [MMOItems] Enabling MMOItems v6.9.5-SNAPSHOT
[18:38:07] [Server thread/WARN]: [MMOItems] Could not register stat 'FACTION_DAMAGE_PIGLIN' as a stat with the same ID already exists.
[18:38:07] [Server thread/INFO]: [MMOItems] Hooked onto MythicMobs
[18:38:07] [Server thread/INFO]: [MMOItems] Hooked onto AureliumSkills
[18:38:07] [Server thread/INFO]: [MMOItems] Now using AureliumSkills as RPG core plugin
[18:38:07] [Server thread/INFO]: [MMOItems Upgrade Template weapon-default] Stat 'FACTION_DAMAGE_CREATURE' not found.
[18:38:07] [Server thread/INFO]: [MMOItems Upgrade Template weapon-default] Stat 'FACTION_DAMAGE_GOBLIN' not found.
[18:38:07] [Server thread/INFO]: [MMOItems Upgrade Template weapon-default] Stat 'FACTION_DAMAGE_ANIMAL' not found.
[18:38:07] [Server thread/INFO]: [MMOItems Upgrade Template weapon-default] Stat 'FACTION_DAMAGE_UNDEAD' not found.
[18:38:07] [Server thread/INFO]: [MMOItems Upgrade Template weapon-default] Stat 'FACTION_DAMAGE_HOBGOBLIN' not found.
[18:38:07] [Server thread/INFO]: [MMOItems Upgrade Template weapon-default] Stat 'FACTION_DAMAGE_DEMON' not found.
[18:38:07] [Server thread/INFO]: [MMOItems Upgrade Template weapon-default] Stat 'FACTION_DAMAGE_BOSS' not found.
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR LEATHER_HELMET] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR LEATHER_CHESTPLATE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR LEATHER_LEGGINGS] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR LEATHER_BOOTS] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR CHAINMAIL_HELMET] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR CHAINMAIL_CHESTPLATE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR CHAINMAIL_LEGGINGS] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR CHAINMAIL_BOOTS] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR IRON_HELMET] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR IRON_CHESTPLATE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR IRON_LEGGINGS] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR IRON_BOOTS] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR GOLDEN_HELMET] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR GOLDEN_CHESTPLATE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR GOLDEN_LEGGINGS] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR GOLDEN_BOOTS] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR DIAMOND_HELMET] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR DIAMOND_CHESTPLATE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR DIAMOND_LEGGINGS] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR DIAMOND_BOOTS] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR NETHERITE_HELMET] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR NETHERITE_CHESTPLATE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR NETHERITE_LEGGINGS] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR NETHERITE_BOOTS] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR TURTLE_HELMET] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR AMBER_HELMET] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR AMBER_CHESTPLATE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR AMBER_LEGGINGS] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR AMBER_BOOTS] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR RUBY_HELMET] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR RUBY_CHESTPLATE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR RUBY_LEGGINGS] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR RUBY_BOOTS] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR JADE_HELMET] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR JADE_CHESTPLATE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR JADE_LEGGINGS] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR JADE_BOOTS] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR MYTHRIL_HELMET] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR MYTHRIL_CHESTPLATE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR MYTHRIL_LEGGINGS] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR MYTHRIL_BOOTS] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR IRIDIUM_HELMET] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR IRIDIUM_CHESTPLATE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR IRIDIUM_LEGGINGS] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems ARMOR IRIDIUM_BOOTS] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems THRUSTING_SWORD SKILLED_SWORD] Could not load base item data 'required-dexterity': Could not find stat with ID 'REQUIRED_DEXTERITY'
[18:38:07] [Server thread/INFO]: [MMOItems SWORD WOODEN_SWORD] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SWORD STONE_SWORD] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SWORD IRON_SWORD] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SWORD GOLDEN_SWORD] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SWORD DIAMOND_SWORD] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SWORD NETHERITE_SWORD] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SWORD AMBER_SWORD] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SWORD RUBY_SWORD] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SWORD JADE_SWORD] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SWORD MYTHRIL_SWORD] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SWORD IRIDIUM_SWORD] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems BOW BOW] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems BOW STONE_BOW] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems BOW IRON_BOW] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems BOW GOLDEN_BOW] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems BOW DIAMOND_BOW] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems BOW NETHERITE_BOW] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems BOW AMBER_BOW] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems BOW RUBY_BOW] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems BOW JADE_BOW] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems BOW MYTHRIL_BOW] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems BOW IRIDIUM_BOW] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems BOW CROSSBOW] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems OFF_CATALYST QUICKCASTER_CATALYST] Could not load base item data 'mana-regeneration': Could not find stat with ID 'MANA_REGENERATION'
[18:38:07] [Server thread/INFO]: [MMOItems OFF_CATALYST CHARM_OF_LEVITATION] Could not load base item data 'max-stellium': Could not find stat with ID 'MAX_STELLIUM'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL FISHING_ROD] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL STONE_FISHING_ROD] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL IRON_FISHING_ROD] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL GOLDEN_FISHING_ROD] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL DIAMOND_FISHING_ROD] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL NETHERITE_FISHING_ROD] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL WOODEN_PICKAXE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL STONE_PICKAXE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL IRON_PICKAXE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL GOLDEN_PICKAXE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL DIAMOND_PICKAXE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL NETHERITE_PICKAXE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL AMBER_PICKAXE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL RUBY_PICKAXE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL JADE_PICKAXE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL MYTHRIL_PICKAXE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL IRIDIUM_PICKAXE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL WOODEN_AXE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL STONE_AXE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL IRON_AXE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL GOLDEN_AXE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL DIAMOND_AXE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL NETHERITE_AXE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL AMBER_AXE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL RUBY_AXE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL JADE_AXE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL MYTHRIL_AXE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL IRIDIUM_AXE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL WOODEN_SHOVEL] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL STONE_SHOVEL] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL IRON_SHOVEL] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL GOLDEN_SHOVEL] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL DIAMOND_SHOVEL] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL NETHERITE_SHOVEL] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL AMBER_SHOVEL] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL RUBY_SHOVEL] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL JADE_SHOVEL] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL MYTHRIL_SHOVEL] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL IRIDIUM_SHOVEL] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL WOODEN_HOE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL STONE_HOE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL IRON_HOE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL GOLDEN_HOE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL DIAMOND_HOE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL NETHERITE_HOE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL AMBER_HOE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL RUBY_HOE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL JADE_HOE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL MYTHRIL_HOE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TOOL IRIDIUM_HOE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems KRIS WOODEN_KRIS] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems KRIS STONE_KRIS] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems KRIS IRON_KRIS] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems KRIS GOLDEN_KRIS] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems KRIS DIAMOND_KRIS] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems KRIS NETHERITE_KRIS] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems KRIS AMBER_KRIS] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems KRIS RUBY_KRIS] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems KRIS JADE_KRIS] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems KRIS MYTHRIL_KRIS] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems KRIS IRIDIUM_KRIS] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems DAGGER WOODEN_DAGGER] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems DAGGER STONE_DAGGER] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems DAGGER IRON_DAGGER] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems DAGGER GOLDEN_DAGGER] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems DAGGER DIAMOND_DAGGER] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems DAGGER NETHERITE_DAGGER] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems DAGGER AMBER_DAGGER] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems DAGGER RUBY_DAGGER] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems DAGGER JADE_DAGGER] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems DAGGER MYTHRIL_DAGGER] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems DAGGER IRIDIUM_DAGGER] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems KATANA MASTER_KATANA] Could not load base item data 'required-dexterity': Could not find stat with ID 'REQUIRED_DEXTERITY'
[18:38:07] [Server thread/INFO]: [MMOItems CATALYST LUCK_CHARM] Could not load base item data 'additional-experience': Could not find stat with ID 'ADDITIONAL_EXPERIENCE'
[18:38:07] [Server thread/INFO]: [MMOItems CATALYST LUCK_CHARM] Could not load base item data 'additional-experience-enchanting': Could not find stat with ID 'ADDITIONAL_EXPERIENCE_ENCHANTING'
[18:38:07] [Server thread/INFO]: [MMOItems GREATSWORD WOODEN_GREATSWORD] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems GREATSWORD STONE_GREATSWORD] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems GREATSWORD IRON_GREATSWORD] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems GREATSWORD GOLDEN_GREATSWORD] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems GREATSWORD DIAMOND_GREATSWORD] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems GREATSWORD NETHERITE_GREATSWORD] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems GREATSWORD AMBER_GREATSWORD] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems GREATSWORD RUBY_GREATSWORD] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems GREATSWORD JADE_GREATSWORD] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems GREATSWORD MYTHRIL_GREATSWORD] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems GREATSWORD IRIDIUM_GREATSWORD] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TWINBLADE WOODEN_TWINBLADE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TWINBLADE STONE_TWINBLADE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TWINBLADE IRON_TWINBLADE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TWINBLADE GOLDEN_TWINBLADE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TWINBLADE DIAMOND_TWINBLADE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TWINBLADE NETHERITE_TWINBLADE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TWINBLADE AMBER_TWINBLADE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TWINBLADE RUBY_TWINBLADE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TWINBLADE JADE_TWINBLADE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TWINBLADE MYTHRIL_TWINBLADE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems TWINBLADE IRIDIUM_TWINBLADE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems GLAIVE WOODEN_GLAIVE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems GLAIVE STONE_GLAIVE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems GLAIVE IRON_GLAIVE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems GLAIVE GOLDEN_GLAIVE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems GLAIVE DIAMOND_GLAIVE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems GLAIVE NETHERITE_GLAIVE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems GLAIVE AMBER_GLAIVE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems GLAIVE RUBY_GLAIVE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems GLAIVE JADE_GLAIVE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems GLAIVE MYTHRIL_GLAIVE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems GLAIVE IRIDIUM_GLAIVE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SPEAR TRIDENT] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SPEAR WOODEN_SPEAR] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SPEAR STONE_SPEAR] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SPEAR IRON_SPEAR] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SPEAR GOLDEN_SPEAR] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SPEAR DIAMOND_SPEAR] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SPEAR NETHERITE_SPEAR] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SPEAR AMBER_SPEAR] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SPEAR RUBY_SPEAR] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SPEAR JADE_SPEAR] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SPEAR MYTHRIL_SPEAR] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SPEAR IRIDIUM_SPEAR] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems HAMMER THOR_HAMMER] Could not load base item data 'additional-experience': Could not find stat with ID 'ADDITIONAL_EXPERIENCE'
[18:38:07] [Server thread/INFO]: [MMOItems SHIELD BUCKLER] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SHIELD SMALL_SHIELD] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SHIELD SHIELD] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SHIELD TOWER_SHIELD] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SCYTHE WOODEN_SCYTHE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SCYTHE STONE_SCYTHE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SCYTHE IRON_SCYTHE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SCYTHE GOLDEN_SCYTHE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SCYTHE DIAMOND_SCYTHE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SCYTHE NETHERITE_SCYTHE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SCYTHE AMBER_SCYTHE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SCYTHE RUBY_SCYTHE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SCYTHE JADE_SCYTHE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SCYTHE MYTHRIL_SCYTHE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems SCYTHE IRIDIUM_SCYTHE] Could not load base item data 'enchant-slots': Could not find stat with ID 'ENCHANT_SLOTS'
[18:38:07] [Server thread/INFO]: [MMOItems CONSUMABLE DECONSTRUCTION_KIT] Could not load base item data 'inedible': Must specify a number (chance) or true/false
[18:38:07] [Server thread/INFO]: [MMOItems CONSUMABLE GEM_REMOVER] Could not load base item data 'extract-skin-gem': Could not find stat with ID 'EXTRACT_SKIN_GEM'
[18:38:07] [Server thread/INFO]: [MMOItems CONSUMABLE GEM_REMOVER] Could not load base item data 'remove-skins': Could not find stat with ID 'REMOVE_SKINS'
[18:38:07] [Server thread/INFO]: [MMOItems Item Templates] Loading template modifiers, please wait..
[18:38:07] [Server thread/INFO]: [MMOItems Item Templates] Loading item templates, please wait...
[18:38:07] [Server thread/WARN]: [MMOItems] Could not load custom block '1': Could not find gen template with ID 'basic-template'
[18:38:07] [Server thread/WARN]: [MMOItems] Could not register stat 'CUSTOM_MYLUCK' as a stat with the same ID already exists.
[18:38:07] [Server thread/INFO]: [MMOItems] Hooked onto Vault
[18:38:07] [Server thread/INFO]: [MMOItems] Loading crafting stations, please wait..
[18:38:07] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'magic-essence' from crafting station 'arcane-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=MAGIC_FRAGMENT,amount=3,display="Magic Fragment"}': Could not find a template with ID 'MAGIC_FRAGMENT'
[18:38:07] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'arcane-helmet' from crafting station 'arcane-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=MAGIC_FRAGMENT,amount=6,display="Magic Fragment"}': Could not find a template with ID 'MAGIC_FRAGMENT'
[18:38:07] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-chestplate' from crafting station 'arcane-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=MAGIC_FRAGMENT,amount=9,display="Magic Fragment"}': Could not find a template with ID 'MAGIC_FRAGMENT'
[18:38:07] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-leggings' from crafting station 'arcane-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=MAGIC_FRAGMENT,amount=8,display="Magic Fragment"}': Could not find a template with ID 'MAGIC_FRAGMENT'
[18:38:07] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-boots' from crafting station 'arcane-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=MAGIC_FRAGMENT,amount=5,display="Magic Fragment"}': Could not find a template with ID 'MAGIC_FRAGMENT'
[18:38:07] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'soulstealer' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=SWORD,id=STEEL_SWORD,amount=1,display="Steel Sword"}': Could not find a template with ID 'STEEL_SWORD'
[18:38:07] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'fire-essence' from crafting station 'mythical-forge': Invalid MMOItem MATERIAL FIRE_ESSENCE: No such MMOItem for Type MATERIAL. 
[18:38:07] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'fire-totem' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=FIRE_ESSENCE,amount=8,display="Fire Essence"}': Could not find a template with ID 'FIRE_ESSENCE'
[18:38:07] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'blaze-soul' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=FIRE_ESSENCE,amount=5,display="Fire Essence"}': Could not find a template with ID 'FIRE_ESSENCE'
[18:38:07] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'hell-bow' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=FIRE_ESSENCE,amount=2,display="Fire Essence"}': Could not find a template with ID 'FIRE_ESSENCE'
[18:38:07] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'fire-greatlance' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=FIRE_ESSENCE,amount=4,display="Fire Essence"}': Could not find a template with ID 'FIRE_ESSENCE'
[18:38:07] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'molten-blade' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=FIRE_ESSENCE,amount=13,display="Fire Essence"}': Could not find a template with ID 'FIRE_ESSENCE'
[18:38:07] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'wither-essence' from crafting station 'mythical-forge': Invalid MMOItem MATERIAL WITHER_ESSENCE: No such MMOItem for Type MATERIAL. 
[18:38:07] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'marking-bow' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=WITHER_ESSENCE,amount=1,display="Wither Essence"}': Could not find a template with ID 'WITHER_ESSENCE'
[18:38:07] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'cursed-wither-skull' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=WITHER_ESSENCE,amount=1,display="Wither Essence"}': Could not find a template with ID 'WITHER_ESSENCE'
[18:38:07] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'dead-pharaoh-helmet' from crafting station 'mythical-forge': Invalid MMOItem ARMOR DEAD_PHARAOH_HELMET: No such MMOItem for Type ARMOR. 
[18:38:07] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'mossy-skeleton-skull' from crafting station 'mythical-forge': Invalid MMOItem ARMOR MOSSY_SKELETON_SKULL: No such MMOItem for Type ARMOR. 
[18:38:07] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-sword' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=4,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[18:38:07] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-sword-upgrade' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=4,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[18:38:07] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'two-handed-steel-sword' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=SWORD,id=STEEL_SWORD,amount=1,display="Steel Sword"}': Could not find a template with ID 'STEEL_SWORD'
[18:38:07] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'katana' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=6,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[18:38:07] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-helmet' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=6,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[18:38:07] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-chestplate' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=9,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[18:38:07] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-leggings' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=8,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[18:38:07] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-boots' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=5,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[18:38:07] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-ingot' from crafting station 'steel-crafting-station': Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[18:38:07] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-dagger' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=4,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[18:38:07] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'hardened-steel-claymore' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=15,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[18:38:07] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'stiff-greatstaff' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=4,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[18:38:07] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-pickaxe' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=4,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[18:38:07] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-shovel' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=2,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[18:38:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mmoitems [6.9.5-SNAPSHOT]
[18:38:07] [Server thread/INFO]: [MMOItems] Hooked onto PlaceholderAPI
[18:38:07] [Server thread/INFO]: [MMOItems] Loading recipes, please wait...
[18:38:07] [Server thread/WARN]: [MMOItems] An error occurred while trying to generate item 'EARTH_STAFF' with stat 'TIER': Could not find item tier with ID 'VERY_RARE'
[18:38:07] [Server thread/WARN]: [MMOItems] An error occurred while trying to generate item 'LUCK_CHARM' with stat 'TIER': Could not find item tier with ID 'MAGICAL'
[18:38:07] [Server thread/WARN]: [MMOItems] An error occurred while trying to generate item 'BUTCHER_AXE' with stat 'TIER': Could not find item tier with ID 'UNCOMMON'
[18:38:07] [Server thread/WARN]: [MMOItems] An error occurred while trying to generate item 'BUTCHER_AXE' with stat 'TIER': Could not find item tier with ID 'UNCOMMON'
[18:38:07] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL SILVER_INGOT 1.0..] Invalid MMOItem MATERIAL SILVER_INGOT: No such MMOItem for Type MATERIAL. 
[18:38:07] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL SILVER_INGOT 1.0..] Invalid MMOItem MATERIAL SILVER_INGOT: No such MMOItem for Type MATERIAL. 
[18:38:07] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL SILVER_INGOT 1.0..] Invalid MMOItem MATERIAL SILVER_INGOT: No such MMOItem for Type MATERIAL. 
[18:38:07] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL SILVER_INGOT 1.0..] Invalid MMOItem MATERIAL SILVER_INGOT: No such MMOItem for Type MATERIAL. 
[18:38:07] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL SILVER_INGOT 1.0..] Invalid MMOItem MATERIAL SILVER_INGOT: No such MMOItem for Type MATERIAL. 
[18:38:07] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL SILVER_INGOT 1.0..] Invalid MMOItem MATERIAL SILVER_INGOT: No such MMOItem for Type MATERIAL. 
[18:38:07] [Server thread/INFO]: [MythicLib Ingredient m material steel_ingot 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[18:38:07] [Server thread/INFO]: [MythicLib Ingredient m material steel_ingot 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[18:38:07] [Server thread/INFO]: [MythicLib Ingredient m material steel_ingot 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[18:38:07] [Server thread/INFO]: [MythicLib Ingredient m material steel_ingot 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[18:38:07] [Server thread/INFO]: [Vulcan] Enabling Vulcan v2.7.7
[18:38:07] [Server thread/INFO]: [Vulcan] Server Version: 1.20.2 detected!
[18:38:07] [Server thread/INFO]: [Vulcan] MythicMobs found. Enabling hook!
[18:38:07] [Server thread/INFO]: [Vulcan] BStats enabled!
[18:38:07] [Server thread/INFO]: [Vulcan] Registered MythicMobs listener!
[18:38:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: Vulcan [2.7.7]
[18:38:07] [Server thread/INFO]: [Vulcan] PlaceholderAPI found. Enabling hook!
[18:38:07] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v3.6.0
[18:38:11] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
[18:38:11] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R2' loaded!
[18:38:11] [Server thread/INFO]: 
  ___  ___        __        __   __   ___  __      ItemsAdder 3.6.0
|  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     LoneLibs 1.0.27
|  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     Paper git-Paper-233 (MC: 1.20.2)
                                               
[18:38:11] [Server thread/INFO]: [Host] Starting self-host webserver on port: 8123
[18:38:11] [Server thread/INFO]: [Lands] Enabling Lands v6.36.1
[18:38:12] [Server thread/INFO]: [Lands]  _                        _      
[18:38:12] [Server thread/INFO]: [Lands] | |                      | |     
[18:38:12] [Server thread/INFO]: [Lands] | |      __ _  _ __    __| | ___ 
[18:38:12] [Server thread/INFO]: [Lands] | |     / _` || '_ \  / _` |/ __|
[18:38:12] [Server thread/INFO]: [Lands] | |____| (_| || | | || (_| |\__ \
[18:38:12] [Server thread/INFO]: [Lands] \_____/ \__,_||_| |_| \__,_||___/
[18:38:12] [Server thread/INFO]: [Lands] Version: 6.36.1 Previous: 6.36.1
[18:38:12] [Server thread/INFO]: [Lands] Server: 1.20.x running Paper
[18:38:12] [Server thread/INFO]: [Lands] Licensed to: 128455
[18:38:12] [Server thread/INFO]: [Lands] Experiencing issues or having questions? Join our Discord!
[18:38:12] [Server thread/INFO]: [Lands] Discord: https://discord.gg/B4MAJVk
[18:38:12] [Server thread/INFO]: [Lands] Wiki: https://github.com/Angeschossen/Lands/wiki
[18:38:12] [Server thread/INFO]: [Lands]  
[18:38:12] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated CMI as hologram manager.
[18:38:12] [Server thread/INFO]: [Lands] Performing initial data load.
[18:38:12] [Server thread/INFO]: [Lands] There are currently 0 created land(s).
[18:38:12] [Server thread/INFO]: [Lands] Initial data load took 9 ms.
[18:38:12] [Server thread/INFO]: [RealisticSeasons] Enabling RealisticSeasons v10.6.0
[18:38:13] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.12.0
[18:38:14] [Server thread/INFO]: [NBTAPI] Adding listeners...
[18:38:14] [Server thread/INFO]: [NBTAPI] Checking bindings...
[18:38:14] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[18:38:14] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[18:38:14] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[18:38:14] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[18:38:14] [Server thread/INFO]: [EnchantSlots] Enabling EnchantSlots v1.3.2
[18:38:15] [Server thread/INFO]: [MMOItems Upgrade Template weapon-default] Stat 'FACTION_DAMAGE_CREATURE' not found.
[18:38:15] [Server thread/INFO]: [MMOItems Upgrade Template weapon-default] Stat 'FACTION_DAMAGE_GOBLIN' not found.
[18:38:15] [Server thread/INFO]: [MMOItems Upgrade Template weapon-default] Stat 'FACTION_DAMAGE_ANIMAL' not found.
[18:38:15] [Server thread/INFO]: [MMOItems Upgrade Template weapon-default] Stat 'FACTION_DAMAGE_UNDEAD' not found.
[18:38:15] [Server thread/INFO]: [MMOItems Upgrade Template weapon-default] Stat 'FACTION_DAMAGE_HOBGOBLIN' not found.
[18:38:15] [Server thread/INFO]: [MMOItems Upgrade Template weapon-default] Stat 'FACTION_DAMAGE_DEMON' not found.
[18:38:15] [Server thread/INFO]: [MMOItems Upgrade Template weapon-default] Stat 'FACTION_DAMAGE_BOSS' not found.
[18:38:15] [Server thread/WARN]: [MMOItems] Could not load custom block '1': Could not find gen template with ID 'basic-template'
[18:38:15] [Server thread/INFO]: [MMOItems HAMMER THOR_HAMMER] Could not load base item data 'additional-experience': Could not find stat with ID 'ADDITIONAL_EXPERIENCE'
[18:38:15] [Server thread/INFO]: [MMOItems CATALYST LUCK_CHARM] Could not load base item data 'additional-experience': Could not find stat with ID 'ADDITIONAL_EXPERIENCE'
[18:38:15] [Server thread/INFO]: [MMOItems CATALYST LUCK_CHARM] Could not load base item data 'additional-experience-enchanting': Could not find stat with ID 'ADDITIONAL_EXPERIENCE_ENCHANTING'
[18:38:15] [Server thread/INFO]: [MMOItems OFF_CATALYST QUICKCASTER_CATALYST] Could not load base item data 'mana-regeneration': Could not find stat with ID 'MANA_REGENERATION'
[18:38:15] [Server thread/INFO]: [MMOItems OFF_CATALYST CHARM_OF_LEVITATION] Could not load base item data 'max-stellium': Could not find stat with ID 'MAX_STELLIUM'
[18:38:15] [Server thread/INFO]: [MMOItems CONSUMABLE DECONSTRUCTION_KIT] Could not load base item data 'inedible': Must specify a number (chance) or true/false
[18:38:15] [Server thread/INFO]: [MMOItems CONSUMABLE GEM_REMOVER] Could not load base item data 'extract-skin-gem': Could not find stat with ID 'EXTRACT_SKIN_GEM'
[18:38:15] [Server thread/INFO]: [MMOItems CONSUMABLE GEM_REMOVER] Could not load base item data 'remove-skins': Could not find stat with ID 'REMOVE_SKINS'
[18:38:15] [Server thread/INFO]: [MMOItems KATANA MASTER_KATANA] Could not load base item data 'required-dexterity': Could not find stat with ID 'REQUIRED_DEXTERITY'
[18:38:15] [Server thread/INFO]: [MMOItems THRUSTING_SWORD SKILLED_SWORD] Could not load base item data 'required-dexterity': Could not find stat with ID 'REQUIRED_DEXTERITY'
[18:38:15] [Server thread/INFO]: [MMOItems Item Templates] Loading template modifiers, please wait..
[18:38:15] [Server thread/INFO]: [MMOItems Item Templates] Loading item templates, please wait...
[18:38:15] [Server thread/WARN]: [MMOItems] Could not register stat 'CUSTOM_MYLUCK' as a stat with the same ID already exists.
[18:38:15] [Server thread/INFO]: [MMOItems] MMOItems 6.9.5-SNAPSHOT reloaded.
[18:38:15] [Server thread/INFO]: [MMOItems] - 45 Item Types
[18:38:15] [Server thread/INFO]: [MMOItems] - 6 Item Tiers
[18:38:15] [Server thread/INFO]: [MMOItems] - 14 Item Sets
[18:38:15] [Server thread/INFO]: [MMOItems] - 2 Upgrade Templates
[18:38:15] [Server thread/INFO]: [ShopGUIPlus] Enabling ShopGUIPlus v1.92.0
[18:38:15] [ForkJoinPool.commonPool-worker-3/INFO]: [EnchantSlots] You are running on the latest version v1.3.2
[18:38:16] [Server thread/INFO]: [Chunky] Enabling Chunky v1.3.92
[18:38:21] [Server thread/INFO]: [CustomCrops] Enabling CustomCrops v3.3.1.5
[18:38:21] [Server thread/INFO]: [CustomCrops] Platform: ItemsAdder
[18:38:21] [Server thread/INFO]: [CustomCrops] Running on git-Paper-233 (MC: 1.20.2)
[18:38:21] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: CustomCrops
[18:38:21] [Server thread/INFO]: [CustomCrops] AureliumSkills hooked!
[18:38:21] [Server thread/INFO]: [CustomCrops] RealisticSeasons hooked!
[18:38:21] [Server thread/INFO]: [CustomCrops] MythicMobs hooked!
[18:38:21] [Server thread/INFO]: [CustomCrops] MMOItems hooked!
[18:38:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: customcrops [3.0]
[18:38:21] [Server thread/INFO]: [CustomCrops] Loaded 10 crop(s)
[18:38:21] [Server thread/INFO]: [CustomCrops] Loaded 3 sprinkler(s)
[18:38:21] [Server thread/INFO]: [CustomCrops] Loaded 4 watering-can(s)
[18:38:21] [Server thread/INFO]: [CustomCrops] Loaded 15 fertilizer(s)
[18:38:21] [Server thread/INFO]: [CustomCrops] Loaded 1 pot(s)
[18:38:21] [Server thread/INFO]: [CustomCrops] Plugin Enabled!
[18:38:21] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v22.2
[18:38:22] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[18:38:22] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[18:38:22] [Server thread/INFO]: --------------------
[18:38:22] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[18:38:22] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[18:38:22] [Server thread/INFO]: --------------------
[18:38:22] [Server thread/INFO]: [MythicCrucible] Enabling MythicCrucible v2.0.0-SNAPSHOT
[18:38:22] [Server thread/INFO]: [MythicMobs] ------------------------------------------------
[18:38:22] [Server thread/INFO]: [MythicMobs] + Loading MythicCrucible for Bukkit
[18:38:22] [Server thread/INFO]: [MythicMobs] ------------------------------------------------
[18:38:22] [Server thread/INFO]: [MythicMobs] Registering Durability Listener
[18:38:22] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[18:38:22] [Server thread/INFO]: [MythicMobs] MythicCrucible Support has been enabled!
[18:38:22] [Server thread/INFO]: [MythicMobs] MythicCrucible WorldEdit support enabled!
[18:38:22] [Server thread/INFO]: [MythicMobs] ✓ MythicCrucible  v2.0.0 has been successfully loaded!
[18:38:22] [Server thread/INFO]: [WorldGuardEvents] Enabling WorldGuardEvents v1.18.1
[18:38:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.raidstone.wgevents.Entry
[18:38:23] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.26.2
[18:38:24] [Server thread/INFO]: [MissionPouches] Enabling MissionPouches v1.11.0
[18:38:25] [DiscordSRV - Initialization/ERROR]: [DiscordSRV] ===================================================
[18:38:25] [DiscordSRV - Initialization/ERROR]: [DiscordSRV]  
[18:38:25] [DiscordSRV - Initialization/ERROR]: [DiscordSRV]  DiscordSRV could not connect to Discord because:
[18:38:25] [DiscordSRV - Initialization/ERROR]: [DiscordSRV]  The bot token is invalid
[18:38:25] [DiscordSRV - Initialization/ERROR]: [DiscordSRV]  
[18:38:25] [DiscordSRV - Initialization/ERROR]: [DiscordSRV] ===================================================
[18:38:25] [Server thread/ERROR]: Error occurred while enabling MissionPouches v1.11.0 (Is it up to date?)
java.lang.NullPointerException: Cannot invoke "org.bukkit.configuration.ConfigurationSection.getString(String)" because "<parameter1>" is null
    at com.mysticalkingdoms.missionpouches.pouches.PouchItem.loadFromConfig(PouchItem.java:27) ~[missionpouches-plugin-1.11.0.jar:?]
    at com.mysticalkingdoms.missionpouches.pouches.PouchManager.reload(PouchManager.java:83) ~[missionpouches-plugin-1.11.0.jar:?]
    at com.mysticalkingdoms.missionpouches.pouches.PouchManager.<init>(PouchManager.java:34) ~[missionpouches-plugin-1.11.0.jar:?]
    at com.mysticalkingdoms.missionpouches.MissionPouches.onEnable(MissionPouches.java:58) ~[missionpouches-plugin-1.11.0.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.2.jar:git-Paper-233]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-233]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644) ~[paper-1.20.2.jar:git-Paper-233]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555) ~[paper-1.20.2.jar:git-Paper-233]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-233]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-233]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-233]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-233]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-233]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:38:25] [Server thread/INFO]: [MissionPouches] Disabling MissionPouches v1.11.0
[18:38:25] [Server thread/INFO]: [QuickShop-Hikari] Enabling QuickShop-Hikari v5.2.0.4
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] Forwarding onEnable() to QuickShop instance...
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] Registering Bukkit Service: com.ghostchu.quickshop.api.QuickShopProvider
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] Starting plugin self-test, please wait...
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] [OK] Spigot Based Server Test
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] [OK] Old QuickShop Test
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] [OK] ModdedServer Based Test
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] [OK] ModdedServer Database Driver Test
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] [OK] CoreSupport Test
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] [OK] Virtual DisplayItem Support Test
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] [OK] ProtocolLib Incorrect Locate Test
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] [OK] GameVersion supporting Test
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] [OK] Permission Manager Test
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] [OK] PacketListenerAPI Conflict Test
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] [OK] Reremake Test
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] [OK] End of life Test
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] Reading the configuration...
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] [ConfigUpdater] Saving configuration changes...
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] Developers: Ghost_chu, PotatoCraft Studio, Netherfoam, Timtower, KaiNoMood (KaiKikuchi), sandtechnology, jho5245, cakoyo, Andre601, Ectabro, Chris6ix, portlek, log4b0at, deadman96385, tiararinne, DoctaEnkoda, CarmJos, YuanYuanOwO, Mgazul, mart-r, Tim269, raphtaliapt, creatorfromhell, LoneDev6, Steven-OS, confuxeon, ibmibmibm, judgetread, mfnalex, Warriorrrr, PyvesB, yannicklamprecht, ORelio, RMSCA, Starmism, yiwenwang2090, PaulBGD, Nlkomaru, harry0198, Draesia, Localized community members on Crowdin
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] Original author: Netherfoam, Timtower, KaiNoMood, sandtechnology
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] Let's start loading the plugin
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] Using Virtual Item display, loading ProtocolLib support...
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] Successfully loaded ProtocolLib support!
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] Setting up database...
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] Create database backup...
[18:38:26] [Server thread/INFO]: [cc.carm.lib.easysql.hikari.HikariDataSource] HikariPool-1 - Starting...
[18:38:26] [Server thread/INFO]: [cc.carm.lib.easysql.hikari.HikariDataSource] HikariPool-1 - Start completed.
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] Checking and updating database columns, it may take a while...
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] Finished!
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] Selected permission provider: Bukkit
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] Registering commands...
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] Loaded 1 rules for listener blacklist.
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] EventManager selected: QSEventManager
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] Loading shops from database...
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] Used 4ms to fetch 0 shops from database.
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] Loading shops into memory...
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] Used 0ms to load 0 shops into memory (0 shops will be loaded after chunks loaded).
[18:38:26] [Server thread/INFO]: [QuickShop-Hikari] Registering listeners...
[18:38:29] [Server thread/INFO]: [QuickShop-Hikari] Cleaning MsgUtils...
[18:38:29] [Server thread/INFO]: [QuickShop-Hikari] Cleaning purchase messages from the database that are over a week old...
[18:38:29] [Server thread/INFO]: [QuickShop-Hikari] Log actions is enabled. Actions will be logged in the qs.log file!
[18:38:29] [Server thread/INFO]: [QuickShop-Hikari] [Shop Purger] Purge not enabled!
[18:38:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: qs [5.2.0.4]
[18:38:29] [Server thread/INFO]: [QuickShop-Hikari] Successfully loaded PlaceHolderAPI support!
[18:38:30] [Server thread/INFO]: [QuickShop-Hikari] [OK] Virtual DisplayItem Support Test
[18:38:30] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Loaded! 3635 ms.
[18:38:30] [Server thread/INFO]: [QuickShop-Hikari] Finishing up onEnable() in Bootloader...
[18:38:30] [Server thread/INFO]: [MIReplacer] Enabling MIReplacer v3.0
[18:38:30] [pool-122-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (767828469573c2f0fa3ed5a44feb0b2f15f2c02d)
[18:38:30] [Server thread/INFO]: [MIReplacer] Loading furnace recipes...
[18:38:30] [Server thread/INFO]: [LevelledMobs] Enabling LevelledMobs v3.12.1 b781
[18:38:31] [Server thread/INFO]: LevelledMobs: Using NMS version v1_20_R2 for nametag support
[18:38:31] [Server thread/INFO]: LevelledMobs: File Loader: Loading files...
[18:38:31] [Server thread/INFO]: LevelledMobs: File Loader: Loading file 'rules.yml'...
[18:38:31] [Server thread/INFO]: LevelledMobs: Current rules hash: a9d8ce9948aa183c9166be4c59af9d31f91710e0a893d2b4780d143f84db0b39
[18:38:31] [Server thread/INFO]: LevelledMobs: File Loader: Loading file 'settings.yml'...
[18:38:31] [Server thread/INFO]: LevelledMobs: File Loader: Loading file 'messages.yml'...
[18:38:31] [Server thread/INFO]: LevelledMobs: Listeners: Registering event listeners...
[18:38:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: LevelledMobs [3.12.1 b781]
[18:38:31] [Server thread/INFO]: LevelledMobs: Commands: Registering commands...
[18:38:31] [Server thread/INFO]: LevelledMobs: Running misc procedures
[18:38:31] [Server thread/INFO]: LevelledMobs: Tasks: Starting async nametag auto update task...
[18:38:31] [Server thread/INFO]: LevelledMobs: File Loader: Loading file 'customdrops.yml'...
[18:38:31] [Server thread/INFO]: LevelledMobs: Start-up complete (took 89ms)
[18:38:31] [Server thread/INFO]: [RapidLeafDecay] Enabling RapidLeafDecay v1.0
[18:38:32] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v4.4.2
[18:38:32] [Server thread/INFO]: [ExcellentCrates] Powered by: NexEngine
[18:38:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [4.4.2]
[18:38:32] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Starting...
[18:38:32] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-2 - Added connection org.sqlite.jdbc4.JDBC4Connection@6490cedf
[18:38:32] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Start completed.
[18:38:32] [Server thread/INFO]: [ExcellentCrates] Loaded 4 crate keys.
[18:38:32] [Server thread/INFO]: [ExcellentCrates] Loaded 5 rarities!
[18:38:32] [Server thread/INFO]: [ExcellentCrates] Loaded 2 crates.
[18:38:32] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[18:38:32] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 139 ms!
[18:38:32] [Server thread/INFO]: [ShopGUIPlus Sell GUI] Enabling ShopGUIPlus-SellGUI v1.1.7
[18:38:33] [Server thread/INFO]: [ShopGUIPlus Sell GUI] Your server is running version '1_20_R2'.
[18:38:33] [Server thread/INFO]: [ShopGUIPlus Sell GUI] *-*
[18:38:33] [Server thread/INFO]: [ShopGUIPlus Sell GUI] ShopGUIPlus SellGUI
[18:38:33] [Server thread/INFO]: [ShopGUIPlus Sell GUI] Made by Mackenzie Molloy
[18:38:33] [Server thread/INFO]: [ShopGUIPlus Sell GUI] *-*
[18:38:33] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.7.4
[18:38:34] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.4*-=-=-=-=-=-=-=-=-=-*
[18:38:34] [Server thread/INFO]: | Hooked on Vault 1.7.3-CMI
[18:38:34] [Server thread/INFO]: | Command file(s) found : 2
[18:38:34] [Server thread/INFO]: | Config : Ready.
[18:38:34] [Server thread/INFO]: | ProtocolLib found, features availables (SignMenu)
[18:38:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mycommand [1.0.0]
[18:38:34] [Server thread/INFO]: | Placeholder_API : Hooked, Ok.
[18:38:34] [Server thread/INFO]: | Custom commands loaded : 44
[18:38:34] [Server thread/INFO]: | You're running the latest version of MyCommand.
[18:38:34] [Server thread/INFO]: |          by emmerrei a.k.a. ivanfromitaly.           
[18:38:34] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*   Done!   *-=-=-=-=-=-=-=-=-=-=-*
[18:38:34] [Server thread/INFO]: [ServerVariables] Enabling ServerVariables v2.2.2
[18:38:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: servervariables [2.2.2]
[18:38:39] [Server thread/INFO]: [ServerVariables] Has been enabled! Version: 2.2.2
[18:38:39] [Server thread/INFO]: [ServerVariables] Thanks for using my plugin!   ~Ajneb97
[18:38:39] [Server thread/INFO]: [Pl-Hide-Pro] Enabling Pl-Hide-Pro v2.7.4
[18:38:39] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.8.0
[18:38:41] [Server thread/INFO]: [ajLeaderboards] Using MySQL for board cache. (mysql)
[18:38:41] [Server thread/INFO]: [us.ajg0702.leaderboards.libs.hikari.HikariDataSource] HikariPool-1 - Starting...
[18:38:41] [Server thread/INFO]: [us.ajg0702.leaderboards.libs.hikari.HikariDataSource] HikariPool-1 - Start completed.
[18:38:41] [Server thread/INFO]: [ajLeaderboards] Loaded 1 boards
[18:38:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.8.0]
[18:38:41] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[18:38:41] [Server thread/INFO]: [ajLeaderboards] LuckPerms position context calculator registered!
[18:38:41] [Server thread/WARN]: [ajLeaderboards] Luckperms Contexts are enabled, but only-register-lpc-for has not been configured! Configuring only-register-lpc-for is strongly recommended to improve performance!
[18:38:41] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.8.0 by ajgeiss0702 enabled!
[18:38:41] [Server thread/INFO]: [PlayerWarps] Enabling PlayerWarps v6.29.0
[18:38:41] [Server thread/INFO]: [PlayerWarps] Vault found, now enabling PlayerWarps...
[18:38:41] [Server thread/INFO]: [PlayerWarps] Found 22 config files to load!
[18:38:41] [Server thread/INFO]: [PlayerWarps] Permissions plugin found! (LuckPerms)
[18:38:41] [Server thread/INFO]: [PlayerWarps] Economy plugin found! (CMIEconomy)
[18:38:41] [Server thread/INFO]: [PlayerWarps] Chat plugin found! (LuckPerms)
[18:38:41] [Server thread/INFO]: [PlayerWarps] Found PlaceholderAPI integrating support...
[18:38:41] [Server thread/INFO]: [PlayerWarps] Found Lands Addon integrating support...
[18:38:41] [Server thread/INFO]: [PlayerWarps] Found WorldGuard Addon integrating support...
[18:38:42] [Server thread/INFO]: [PlayerWarps] Found SquareMap Addon integrating support...
[18:38:42] [Server thread/INFO]: [PlayerWarps] SQLite database is enabling...
[18:38:42] [Server thread/INFO]: [PlayerWarps] Loading Metrics...
[18:38:42] [Server thread/INFO]: [PlayerWarps] Successfully loaded Metrics!
[18:38:42] [Server thread/INFO]: [UnlimitAnvil] Enabling UnlimitAnvil v0.3.0_breaking-change
[18:38:42] [Server thread/INFO]: [betteranvil]插件初始化完毕
[18:38:42] [Server thread/INFO]: [CommandPanels] Enabling CommandPanels v3.19.1.5
[18:38:43] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.19.1.5 Plugin Loading...
[18:38:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: commandpanels [1.0.0]
[18:38:44] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.19.1.5 Plugin Loaded!
[18:38:44] [Server thread/INFO]: [AdvancedChests] Enabling AdvancedChests v29.1
[18:38:44] [Server thread/INFO]: [AdvancedChests] NBTAPI was found, please make sure to have it enabled on config for a better experience
[18:38:44] [Server thread/INFO]: [DisplayEntityEditor] Enabling DisplayEntityEditor v1.0.13
[18:38:49] [Server thread/INFO]: [CraftingStore] Enabling CraftingStore v2.9.1
[18:38:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: craftingstore [2.9.1]
[18:38:49] [Server thread/INFO]: [CraftingStore] Hooked with PlaceholderAPI
[18:38:49] [Server thread/INFO]: [CraftingStore] Hooked with Vault
[18:38:49] [Server thread/INFO]: [ChunkyBorder] Enabling ChunkyBorder v1.1.50
[18:38:50] [Server thread/INFO]: [CustomFishing] Enabling CustomFishing v1.3.2.6
[18:38:51] [Server thread/INFO]: [CustomFishing] Loaded 6 rod(s)
[18:38:51] [Server thread/INFO]: [CustomFishing] Loaded 3 bait(s)
[18:38:51] [Server thread/INFO]: [CustomFishing] Loaded 4 enchantment(s)
[18:38:51] [Server thread/INFO]: [CustomFishing] Loaded 5 util(s)
[18:38:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: competition [1.3]
[18:38:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: fishingstats [1.3]
[18:38:51] [Server thread/INFO]: [CustomFishing] RealisticSeasons hooked!
[18:38:51] [Server thread/INFO]: [CustomFishing] AureliumSkills hooked!
[18:38:51] [Server thread/INFO]: [CustomFishing] ItemsAdder hooked!
[18:38:51] [Server thread/INFO]: [CustomFishing] MMOItems hooked!
[18:38:51] [Server thread/INFO]: [CustomFishing] MythicMobs hooked!
[18:38:51] [Server thread/INFO]: [CustomFishing] Vault hooked!
[18:38:51] [Server thread/INFO]: [CustomFishing] Loaded 18 bar(s)
[18:38:51] [Server thread/INFO]: [CustomFishing] Loaded 1 game(s)
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID tuna_fish doesn't exist in category normal_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID pike_fish doesn't exist in category normal_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID gold_fish doesn't exist in category normal_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID perch_fish doesn't exist in category normal_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID mullet_fish doesn't exist in category normal_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID sardine_fish doesn't exist in category normal_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID carp_fish doesn't exist in category normal_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID cat_fish doesn't exist in category normal_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID octopus doesn't exist in category normal_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID sunfish doesn't exist in category normal_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID red_snapper_fish doesn't exist in category normal_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID salmon_void_fish doesn't exist in category normal_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID woodskip_fish doesn't exist in category normal_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID sturgeon_fish doesn't exist in category normal_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID tuna_fish_silver_star doesn't exist in category sliver_star_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID pike_fish_silver_star doesn't exist in category sliver_star_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID gold_fish_silver_star doesn't exist in category sliver_star_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID perch_fish_silver_star doesn't exist in category sliver_star_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID mullet_fish_silver_star doesn't exist in category sliver_star_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID sardine_fish_silver_star doesn't exist in category sliver_star_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID carp_fish_silver_star doesn't exist in category sliver_star_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID cat_fish_silver_star doesn't exist in category sliver_star_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID octopus_silver_star doesn't exist in category sliver_star_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID sunfish_silver_star doesn't exist in category sliver_star_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID red_snapper_fish_silver_star doesn't exist in category sliver_star_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID salmon_void_fish_silver_star doesn't exist in category sliver_star_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID woodskip_fish_silver_star doesn't exist in category sliver_star_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID sturgeon_fish_silver_star doesn't exist in category sliver_star_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID tuna_fish_golden_star doesn't exist in category golden_star_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID pike_fish_golden_star doesn't exist in category golden_star_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID gold_fish_golden_star doesn't exist in category golden_star_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID perch_fish_golden_star doesn't exist in category golden_star_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID mullet_fish_golden_star doesn't exist in category golden_star_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID sardine_fish_golden_star doesn't exist in category golden_star_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID carp_fish_golden_star doesn't exist in category golden_star_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID cat_fish_golden_star doesn't exist in category golden_star_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID octopus_golden_star doesn't exist in category golden_star_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID sunfish_golden_star doesn't exist in category golden_star_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID red_snapper_fish_golden_star doesn't exist in category golden_star_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID salmon_void_fish_golden_star doesn't exist in category golden_star_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID woodskip_fish_golden_star doesn't exist in category golden_star_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loot ID sturgeon_fish_golden_star doesn't exist in category golden_star_fish
[18:38:51] [Server thread/INFO]: [CustomFishing] Loaded 20 loot(s)
[18:38:51] [Server thread/INFO]: [CustomFishing] Loaded 3 category(s)
[18:38:51] [Server thread/INFO]: [CustomFishing] Loaded 1 totem(s)
[18:38:52] [Server thread/INFO]: [CustomFishing] Plugin Enabled!
[18:38:52] [Server thread/INFO]: [ExcellentChallenges] Enabling ExcellentChallenges v2.0.11
[18:38:52] [pool-129-thread-1/INFO]: [CustomFishing] You are using the latest version.
[18:38:52] [Server thread/INFO]: [ExcellentChallenges] Powered by: NexEngine
[18:38:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentchallenges [2.0.11]
[18:38:52] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-3 - Starting...
[18:38:52] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-3 - Added connection org.sqlite.jdbc4.JDBC4Connection@21c9720
[18:38:52] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-3 - Start completed.
[18:38:52] [Server thread/INFO]: [ExcellentChallenges] Loaded 75 generators.
[18:38:52] [Server thread/INFO]: [ExcellentChallenges] Loaded 19 templates.
[18:38:52] [Server thread/INFO]: [ExcellentChallenges] Loaded 18 rewards.
[18:38:52] [Server thread/INFO]: [ExcellentChallenges] Plugin loaded in 155 ms!
[18:38:52] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.1
[18:38:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[18:38:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[18:38:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[18:38:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[18:38:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[18:38:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[18:38:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[18:38:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[18:38:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[18:38:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[18:38:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[18:38:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[18:38:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[18:38:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[18:38:53] [Server thread/INFO]: [InventoryRollbackPlus] Enabling InventoryRollbackPlus v1.6.12
[18:38:53] [Server thread/INFO]: [InventoryRollbackPlus] Inventory backup data is set to save to: YAML
[18:38:53] [Server thread/INFO]: [InventoryRollbackPlus] bStats are enabled
[18:38:53] [Server thread/INFO]: [Drop2InventoryPlus] Enabling Drop2InventoryPlus v4.3.1
[18:38:54] [Server thread/INFO]: [Drop2InventoryPlus] Hooked into WorldGuard 7.0.9-beta1+2249-223b80c
[18:38:54] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: Drop2InventoryPlus
[18:38:54] [Server thread/INFO]: [Lands] Nag author(s) of plugin Drop2InventoryPlus. It uses the deprecated LandsIntegration of Lands: https://github.com/Angeschossen/LandsAPI/wiki/API-Update
[18:38:54] [Server thread/INFO]: [Drop2InventoryPlus] Hooked into Lands 6.36.1
[18:38:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: drop2inventory [GENERIC]
[18:38:55] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.12.5
[18:38:55] [Server thread/INFO]: [LiteBans] Using default database drivers (version:8).
[18:38:55] [Server thread/INFO]: [LiteBans] Using system locale (en)
[18:38:55] [Server thread/INFO]: [LiteBans] Loaded 11 templates from templates.yml!
[18:38:55] [Server thread/INFO]: [LiteBans] Loading SQL driver: mysql 8.0.29 (com.mysql.cj.jdbc.Driver)
[18:38:55] [Server thread/INFO]: [LiteBans] Connecting to database...
[18:38:55] [Server thread/INFO]: [LiteBans] litebans-pool - Starting...
[18:39:03] [Server thread/ERROR]: [LiteBans] litebans-pool - Exception during pool initialization.
[18:39:03] [Server thread/ERROR]: [LiteBans] Failed to connect to [jdbc:mysql://discus.bloom.host:3306/s17983_litebans;useSSL=false&serverTimezone=UTC].
[18:39:03] [Server thread/ERROR]: [LiteBans] Cause: Connection refused
[18:39:03] [Server thread/INFO]: [LiteBans] v2.12.5 enabled. Startup took 8208 ms.
[18:39:03] [Server thread/INFO]: [TAB] Enabling TAB v4.0.6
[18:39:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [4.0.6]
[18:39:04] [Server thread/INFO]: [TAB] [Hint] Refresh interval of %server_uptime% is same as default interval, therefore there is no need to override it.
[18:39:04] [Server thread/INFO]: [TAB] [Hint] Refresh interval of %server_tps_1_colored% is same as default interval, therefore there is no need to override it.
[18:39:04] [Server thread/INFO]: [TAB] [Hint] Refresh interval of %player_ping% is same as default interval, therefore there is no need to override it.
[18:39:04] [Server thread/INFO]: [TAB] [Hint] Refresh interval of %vault_prefix% is same as default interval, therefore there is no need to override it.
[18:39:04] [Server thread/INFO]: [TAB] Enabled in 131ms
[18:39:04] [Server thread/INFO]: [FarmingUpgrade] Enabling FarmingUpgrade v1.6.0
[18:39:05] [Server thread/INFO]: [MobArena] Enabling MobArena v0.107
[18:39:06] [Server thread/INFO]: [MobArena] Vault found; economy rewards enabled.
[18:39:06] [Server thread/INFO]: [MobArena] Loaded arena 'default'
[18:39:06] [Server thread/INFO]: [MobArena] Loaded 3 sign templates.
[18:39:06] [Server thread/INFO]: [SnC] Enabling StaminaClimb v0.20.4
[18:39:07] [Server thread/INFO]: [StaminaClimb] Loaded config: config.yml
[18:39:07] [Server thread/ERROR]: Error occurred while enabling StaminaClimb v0.20.4 (Is it up to date?)
java.lang.NoClassDefFoundError: com/mineinabyss/geary/modules/GearyModuleKt
    at com.mineinabyss.staminaclimb.StaminaClimbPlugin.onEnable(StaminaClimbPlugin.kt:35) ~[stamina-climb-0.20.4.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.2.jar:git-Paper-233]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-233]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644) ~[paper-1.20.2.jar:git-Paper-233]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555) ~[paper-1.20.2.jar:git-Paper-233]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-233]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-233]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-233]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-233]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-233]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.ClassNotFoundException: com.mineinabyss.geary.modules.GearyModuleKt
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:183) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:150) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:521) ~[?:?]
    ... 13 more
[18:39:07] [Server thread/INFO]: [SnC] Disabling StaminaClimb v0.20.4
[18:39:07] [Server thread/INFO]: [SnC] onDisable has been invoked!
[18:39:07] [Server thread/INFO]: [RoseLoot] Enabling RoseLoot v1.2.5
[18:39:10] [Server thread/INFO]: [HMCCosmetics] Enabling HMCCosmetics v2.6.4
[18:39:10] [Server thread/ERROR]: Error occurred while enabling HMCCosmetics v2.6.4 (Is it up to date?)
java.lang.NullPointerException: Cannot invoke "com.hibiscusmc.hmccosmetics.nms.NMSHandler.getSupported()" because the return value of "com.hibiscusmc.hmccosmetics.nms.NMSHandlers.getHandler()" is null
    at com.hibiscusmc.hmccosmetics.HMCCosmeticsPlugin.onEnable(HMCCosmeticsPlugin.java:64) ~[HMCCosmeticsRemapped-2.6.4.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.2.jar:git-Paper-233]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-233]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644) ~[paper-1.20.2.jar:git-Paper-233]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555) ~[paper-1.20.2.jar:git-Paper-233]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-233]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-233]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-233]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-233]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-233]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:39:10] [Server thread/INFO]: [HMCCosmetics] Disabling HMCCosmetics v2.6.4
[18:39:10] [Server thread/INFO]: [spark] Enabling spark v1.10.34
[18:39:11] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[18:39:11] [Server thread/INFO]: [spark] Starting background profiler...
[18:39:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: spark [1.10.34]
[18:39:12] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[18:39:12] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.5.1
[18:39:13] [Server thread/INFO]:  
[18:39:13] [Server thread/INFO]: __________________________________________________________
[18:39:13] [Server thread/INFO]:  
[18:39:13] [Server thread/INFO]:                        TradeSystem [2.5.1]
[18:39:13] [Server thread/INFO]:  
[18:39:13] [Server thread/INFO]: Status:
[18:39:13] [Server thread/INFO]:  
[18:39:13] [Server thread/INFO]: MC-Version: 1.20.2 (R0.1-SNAPSHOT, Paper)
[18:39:13] [Server thread/INFO]:  
[18:39:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tradesystem [1.2]
[18:39:13] [Server thread/INFO]:   > Loading sounds
[18:39:13] [Server thread/INFO]:   > Loading blacklist
[18:39:13] [Server thread/INFO]:     ...got 3 blocked item(s)
[18:39:13] [Server thread/INFO]:   > Loading layouts
[18:39:13] [Server thread/INFO]:     ...got 4 layout(s)
[18:39:13] [Server thread/INFO]:   > Queuing database initializing task
[18:39:13] [Server thread/INFO]:  
[18:39:13] [Server thread/INFO]: Finished (162ms)
[18:39:13] [Server thread/INFO]:  
[18:39:13] [Server thread/INFO]: __________________________________________________________
[18:39:13] [Server thread/INFO]:  
[18:39:13] [Server thread/INFO]: [TinyOnline] Enabling TinyOnline v2.0
[18:39:14] [Server thread/INFO]: [TinyOnline] Successfully loaded files!
[18:39:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tinyonline [1.0]
[18:39:14] [Server thread/INFO]: [TinyOnline] PlaceholderAPI found!
[18:39:14] [Server thread/INFO]: [TinyOnline] Tiny Online has been enabled!
[18:39:14] [Server thread/INFO]: [SafariNet] Enabling SafariNet v1.15.54-SNAPSHOT
[18:39:14] [Server thread/INFO]: [SafariNet] Using v1_20_R2
[18:39:14] [Server thread/INFO]: [SafariNet] [SafariNet] WorldGuard found and using it.
[18:39:14] [Server thread/INFO]: [SafariNet] [SafariNet] Citizens found and using it.
[18:39:14] [Server thread/INFO]: [SafariNet] [SafariNet] MythicMobs found and using it.
[18:39:14] [Server thread/INFO]: [SafariNet] [SafariNet] Lands found and using it.
[18:39:14] [Server thread/INFO]: [PetNameFix] Enabling PetNameFix v1.0.1
[18:39:15] [Server thread/INFO]: [OraxenUIFilter] Enabling OraxenUIFilter v1.2
[18:39:20] [Server thread/INFO]: [OraxenUIFilter] Hooked onto MythicLib
[18:39:20] [Server thread/INFO]: [OraxenUIFilter] ItemsAdder detected. Hooking with ItemsAdder
[18:39:20] [Server thread/INFO]: [OraxenUIFilter] MMOItems detected, reloading config files...
[18:39:20] [Server thread/INFO]: [MMOItems Upgrade Template weapon-default] Stat 'FACTION_DAMAGE_CREATURE' not found.
[18:39:20] [Server thread/INFO]: [MMOItems Upgrade Template weapon-default] Stat 'FACTION_DAMAGE_GOBLIN' not found.
[18:39:20] [Server thread/INFO]: [MMOItems Upgrade Template weapon-default] Stat 'FACTION_DAMAGE_ANIMAL' not found.
[18:39:20] [Server thread/INFO]: [MMOItems Upgrade Template weapon-default] Stat 'FACTION_DAMAGE_UNDEAD' not found.
[18:39:20] [Server thread/INFO]: [MMOItems Upgrade Template weapon-default] Stat 'FACTION_DAMAGE_HOBGOBLIN' not found.
[18:39:20] [Server thread/INFO]: [MMOItems Upgrade Template weapon-default] Stat 'FACTION_DAMAGE_DEMON' not found.
[18:39:20] [Server thread/INFO]: [MMOItems Upgrade Template weapon-default] Stat 'FACTION_DAMAGE_BOSS' not found.
[18:39:20] [Server thread/WARN]: [MMOItems] Could not load custom block '1': Could not find gen template with ID 'basic-template'
[18:39:20] [Server thread/INFO]: [MMOItems HAMMER THOR_HAMMER] Could not load base item data 'additional-experience': Could not find stat with ID 'ADDITIONAL_EXPERIENCE'
[18:39:20] [Server thread/INFO]: [MMOItems CATALYST LUCK_CHARM] Could not load base item data 'additional-experience': Could not find stat with ID 'ADDITIONAL_EXPERIENCE'
[18:39:20] [Server thread/INFO]: [MMOItems CATALYST LUCK_CHARM] Could not load base item data 'additional-experience-enchanting': Could not find stat with ID 'ADDITIONAL_EXPERIENCE_ENCHANTING'
[18:39:20] [Server thread/INFO]: [MMOItems OFF_CATALYST QUICKCASTER_CATALYST] Could not load base item data 'mana-regeneration': Could not find stat with ID 'MANA_REGENERATION'
[18:39:20] [Server thread/INFO]: [MMOItems OFF_CATALYST CHARM_OF_LEVITATION] Could not load base item data 'max-stellium': Could not find stat with ID 'MAX_STELLIUM'
[18:39:20] [Server thread/INFO]: [MMOItems CONSUMABLE DECONSTRUCTION_KIT] Could not load base item data 'inedible': Must specify a number (chance) or true/false
[18:39:20] [Server thread/INFO]: [MMOItems CONSUMABLE GEM_REMOVER] Could not load base item data 'extract-skin-gem': Could not find stat with ID 'EXTRACT_SKIN_GEM'
[18:39:20] [Server thread/INFO]: [MMOItems CONSUMABLE GEM_REMOVER] Could not load base item data 'remove-skins': Could not find stat with ID 'REMOVE_SKINS'
[18:39:20] [Server thread/INFO]: [MMOItems KATANA MASTER_KATANA] Could not load base item data 'required-dexterity': Could not find stat with ID 'REQUIRED_DEXTERITY'
[18:39:20] [Server thread/INFO]: [MMOItems THRUSTING_SWORD SKILLED_SWORD] Could not load base item data 'required-dexterity': Could not find stat with ID 'REQUIRED_DEXTERITY'
[18:39:20] [Server thread/INFO]: [MMOItems Item Templates] Loading template modifiers, please wait..
[18:39:20] [Server thread/INFO]: [MMOItems Item Templates] Loading item templates, please wait...
[18:39:20] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'magic-essence' from crafting station 'arcane-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=MAGIC_FRAGMENT,amount=3,display="Magic Fragment"}': Could not find a template with ID 'MAGIC_FRAGMENT'
[18:39:20] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'arcane-helmet' from crafting station 'arcane-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=MAGIC_FRAGMENT,amount=6,display="Magic Fragment"}': Could not find a template with ID 'MAGIC_FRAGMENT'
[18:39:20] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-chestplate' from crafting station 'arcane-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=MAGIC_FRAGMENT,amount=9,display="Magic Fragment"}': Could not find a template with ID 'MAGIC_FRAGMENT'
[18:39:20] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-leggings' from crafting station 'arcane-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=MAGIC_FRAGMENT,amount=8,display="Magic Fragment"}': Could not find a template with ID 'MAGIC_FRAGMENT'
[18:39:20] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-boots' from crafting station 'arcane-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=MAGIC_FRAGMENT,amount=5,display="Magic Fragment"}': Could not find a template with ID 'MAGIC_FRAGMENT'
[18:39:20] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'soulstealer' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=SWORD,id=STEEL_SWORD,amount=1,display="Steel Sword"}': Could not find a template with ID 'STEEL_SWORD'
[18:39:20] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'fire-essence' from crafting station 'mythical-forge': Invalid MMOItem MATERIAL FIRE_ESSENCE: No such MMOItem for Type MATERIAL. 
[18:39:20] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'fire-totem' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=FIRE_ESSENCE,amount=8,display="Fire Essence"}': Could not find a template with ID 'FIRE_ESSENCE'
[18:39:20] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'blaze-soul' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=FIRE_ESSENCE,amount=5,display="Fire Essence"}': Could not find a template with ID 'FIRE_ESSENCE'
[18:39:20] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'hell-bow' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=FIRE_ESSENCE,amount=2,display="Fire Essence"}': Could not find a template with ID 'FIRE_ESSENCE'
[18:39:20] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'fire-greatlance' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=FIRE_ESSENCE,amount=4,display="Fire Essence"}': Could not find a template with ID 'FIRE_ESSENCE'
[18:39:20] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'molten-blade' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=FIRE_ESSENCE,amount=13,display="Fire Essence"}': Could not find a template with ID 'FIRE_ESSENCE'
[18:39:20] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'wither-essence' from crafting station 'mythical-forge': Invalid MMOItem MATERIAL WITHER_ESSENCE: No such MMOItem for Type MATERIAL. 
[18:39:20] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'marking-bow' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=WITHER_ESSENCE,amount=1,display="Wither Essence"}': Could not find a template with ID 'WITHER_ESSENCE'
[18:39:20] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'cursed-wither-skull' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=WITHER_ESSENCE,amount=1,display="Wither Essence"}': Could not find a template with ID 'WITHER_ESSENCE'
[18:39:20] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'dead-pharaoh-helmet' from crafting station 'mythical-forge': Invalid MMOItem ARMOR DEAD_PHARAOH_HELMET: No such MMOItem for Type ARMOR. 
[18:39:20] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'mossy-skeleton-skull' from crafting station 'mythical-forge': Invalid MMOItem ARMOR MOSSY_SKELETON_SKULL: No such MMOItem for Type ARMOR. 
[18:39:20] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-sword' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=4,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[18:39:20] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-sword-upgrade' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=4,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[18:39:20] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'two-handed-steel-sword' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=SWORD,id=STEEL_SWORD,amount=1,display="Steel Sword"}': Could not find a template with ID 'STEEL_SWORD'
[18:39:20] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'katana' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=6,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[18:39:20] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-helmet' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=6,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[18:39:20] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-chestplate' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=9,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[18:39:20] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-leggings' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=8,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[18:39:20] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-boots' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=5,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[18:39:20] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-ingot' from crafting station 'steel-crafting-station': Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[18:39:20] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-dagger' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=4,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[18:39:20] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'hardened-steel-claymore' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=15,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[18:39:20] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'stiff-greatstaff' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=4,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[18:39:20] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-pickaxe' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=4,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[18:39:20] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-shovel' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=2,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[18:39:20] [Server thread/INFO]: [MythicDungeons] Enabling MythicDungeons v1.2.1-SNAPSHOT
[18:39:21] [Server thread/INFO]: [DungeonParties] Loading server plugin DungeonParties v1.0-SNAPSHOT
[18:39:21] [Server thread/INFO]: [DungeonParties] Enabling DungeonParties v1.0-SNAPSHOT
[18:39:21] [Server thread/INFO]: [MythicDungeons] DungeonParties plugin found! Enabled party support.
[18:39:21] [Server thread/INFO]: [MythicDungeons] MythicMobs plugin found! Enabled MythicMobs support.
[18:39:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: md [1.2.1]
[18:39:21] [Server thread/INFO]: [MythicDungeons] * Loaded 30 functions.
[18:39:21] [Server thread/INFO]: [MythicDungeons] * Loaded 13 triggers.
[18:39:21] [Server thread/INFO]: [MythicDungeons] * Loaded 4 conditions.
[18:39:21] [Server thread/INFO]: [MythicDungeons] GUI menus initialized!
[18:39:21] [Server thread/INFO]: [MythicDungeons] Mythic Dungeons v1.2.1 initialized! Happy dungeon-ing!
[18:39:21] [Server thread/INFO]: [WildRegeneration] Enabling WildRegeneration v1.5.0
[18:39:23] [Server thread/INFO]: [WildRegeneration] Version: 1.5.0 Previous: 1.5.0
[18:39:23] [Server thread/INFO]: [WildRegeneration] Server: 1.20.x running Paper
[18:39:23] [Server thread/INFO]: [WildRegeneration] Licensed to: 3034
[18:39:23] [Server thread/INFO]: [WildRegeneration] Experiencing issues or having questions? Join our Discord!
[18:39:23] [Server thread/INFO]: [WildRegeneration] Discord: https://discord.gg/B4MAJVk
[18:39:23] [Server thread/INFO]: [WildRegeneration] Wiki: https://github.com/Angeschossen/WildRegeneration/wiki
[18:39:23] [Server thread/INFO]: [WildRegeneration]  
[18:39:23] [Server thread/INFO]: [WildRegeneration] Looking for expirations every 20 second(s). Initial delay: 10 second(s)
[18:39:23] [Server thread/INFO]: [WildRegeneration] Looking into regeneration queue every 2 second(s). Initial delay: 12 second(s)
[18:39:23] [Server thread/INFO]: [WildRegeneration] Using SQLite.
[18:39:23] [Server thread/INFO]: [WildRegeneration] Your SQL DBMS version: 3.42.0 (SQLite)
[18:39:23] [Server thread/INFO]: [WildRegeneration] Successfully connected to SQL database.
[18:39:23] [Server thread/INFO]: [NightMarket] Enabling NightMarket v1.8.0
[18:39:25] [Server thread/INFO]: [NightMarket] Loading menus
[18:39:25] [Server thread/INFO]: [NightMarket] Permissions plugin found! (LuckPerms)
[18:39:25] [Server thread/INFO]: [NightMarket] Economy plugin found! (CMIEconomy)
[18:39:25] [Server thread/INFO]: [NightMarket] Chat plugin found! (LuckPerms)
[18:39:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: nightmarket [1.8.0]
[18:39:25] [Server thread/INFO]: [NightMarket] Loading Metrics...
[18:39:25] [Server thread/INFO]: [NightMarket] Successfully loaded Metrics!
[18:39:25] [Server thread/INFO]: [Tooltips] Enabling Tooltips v1.6.5
[18:39:26] [Server thread/INFO]: [Tooltips] Used furniture plugin: ItemsAdderFurnitureProvider
[18:39:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tooltips [1.1]
[18:39:26] [Server thread/INFO]: [Tooltips] Loading schemas...
[18:39:26] [Server thread/INFO]: [Tooltips] Loading icons...
[18:39:26] [Server thread/INFO]: [Tooltips] Loaded 3 icons.
[18:39:26] [Server thread/INFO]: [Tooltips] Loading themes...
[18:39:26] [Server thread/INFO]: [Tooltips] Loaded 5 themes.
[18:39:26] [Server thread/INFO]: [Tooltips] Loading presets...
[18:39:26] [Server thread/INFO]: [Tooltips] Loaded 66 presets.
[18:39:26] [Server thread/INFO]: [Tooltips] Generating resources...
[18:39:26] [Server thread/INFO]: [Tweakin] Enabling Tweakin v6.0.2
[18:39:27] [Server thread/INFO]: [Tweakin] Running papermc..
[18:39:27] [Server thread/INFO]: [Tweakin] Lands grief plugin enabled, initializing compat
[18:39:27] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: Tweakin
[18:39:27] [Server thread/INFO]: [Lands] Nag author(s) of plugin Tweakin. It uses the deprecated LandsIntegration of Lands: https://github.com/Angeschossen/LandsAPI/wiki/API-Update
[18:39:27] [Server thread/INFO]: [Tweakin] Running Vulcan, registering listener for reacharound
[18:39:27] [Server thread/INFO]: [Tweakin] Running 1.20.2 minecraft version...
[18:39:27] [Server thread/INFO]: [Tweakin] [ACF] Enabled Asynchronous Tab Completion Support!
[18:39:27] [Server thread/INFO]: [Tweakin] Loading tweakin...
[18:39:27] [Server thread/INFO]: [Tweakin] Generating Head Map, this might take a while...
[18:39:27] [Server thread/INFO]: [Tweakin] Generated 176 mob heads..
[18:39:27] [Server thread/INFO]: [Tweakin] Registered 86 recipes
[18:39:27] [Server thread/INFO]: [Tweakin] Using 0,16,0 as color for reach-around, due to other color channels being removed after 1.17
[18:39:27] [Server thread/INFO]: [Tweakin] Registered 13 tweaks successfully
[18:39:27] [Server thread/INFO]: [Tweakin] Registering permissions
[18:39:28] [Server thread/INFO]: [Tweakin] Registered 61 permissions
[18:39:28] [Server thread/INFO]: [Tweakin] Enabling bstats...
[18:39:28] [Server thread/INFO]: [Tweakin] Tweakin loaded successfully
[18:39:28] [Server thread/INFO]: [BossBarHealth] Enabling BossBarHealth v4.1.13-SNAPSHOT
[18:39:29] [Server thread/INFO]: [BossBarHealth] PlaceholderAPI was found. You may use its placeholders in config.
[18:39:29] [Server thread/INFO]: [BossBarHealth] WorldGuard and WorldGuardEvents were found. WorldGuard hook settings in config will now work.
[18:39:29] [Server thread/INFO]: [BossBarHealth] Citizens was found. Citizens hook settings in config will now work.
[18:39:29] [Server thread/INFO]: [BossBarHealth] MythicMobs was found. MythicMobs hook settings in config will now work.
[18:39:29] [Server thread/INFO]: [ExtraContexts] Enabling ExtraContexts v2.0-SNAPSHOT
[18:39:29] [Server thread/INFO]: [ExtraContexts] Registering 'worldguard-region' calculator.
[18:39:29] [Server thread/INFO]: [ExtraContexts] Registering 'placeholderapi' calculator.
[18:39:29] [Server thread/INFO]: [HappyHud] Enabling HappyHUD v1.0.6-RELEASE
[18:39:34] [Server thread/INFO]: [HappyHud] ProtocolLib support detected.
[18:39:34] [Server thread/INFO]: [HappyHud] PlaceholderAPI parser has been registered.
[18:39:35] [Server thread/INFO]: [HappyHud] [ACF] Enabled Asynchronous Tab Completion Support!
[18:39:35] [Server thread/INFO]: [TheSearch] Enabling TheSearch v1.25.3
[18:39:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: thesearch [1.25.3]
[18:39:36] [Server thread/INFO]: [TheSearch] Has been enabled! Version: 1.25.3
[18:39:36] [Server thread/INFO]: [TheSearch] Thanks for using my plugin!  ~Ajneb97
[18:39:36] [Server thread/INFO]: [AquaticCrates] Enabling AquaticCrates v2.5.2
[18:39:37] [Server thread/INFO]: AquaticCrates | Loading the plugin...
[18:39:37] [Server thread/INFO]: AquaticCrates | Loading NMS Version!
[18:39:37] [Server thread/INFO]: AquaticCrates | Using NMS version v1_20_R2.
[18:39:37] [Server thread/INFO]: AquaticCrates | Loading PlaceholderAPI Hook!
[18:39:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aquaticcrates [1.0.0]
[18:39:37] [Server thread/INFO]: AquaticCrates | Loading Database!
[18:39:37] [Server thread/INFO]: [RedLimiter] Enabling RedLimiter v1.2.0
[18:39:38] [Server thread/INFO]: [RedLimiter] RedLimiter enabled
[18:39:38] [Server thread/INFO]: [FarmLimiter] Enabling FarmLimiter v1.6.0
[18:39:38] [Server thread/INFO]: [AquaticGliders] Enabling AquaticGliders v0.0.8
[18:39:39] [Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v4.2.8.0
[18:39:40] [Server thread/INFO]: [InteractiveChat] Opened Sqlite database successfully
[18:39:40] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into CMI!
[18:39:40] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into DiscordSRV!
[18:39:40] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechat.hooks.discordsrv.DiscordSRVEvents subscribed (2 methods)
[18:39:40] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ExcellentEnchants!
[18:39:40] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into LuckPerms!
[18:39:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactivechat [4.2.8.0]
[18:39:40] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[18:39:40] [Server thread/INFO]: [PlayerBiomes] Enabling PlayerBiomes v4.2.0
[18:39:44] [Server thread/INFO]: [PlayerBiomes] Hooked into WorldGuard 7.0.9-beta1+2249-223b80c
[18:39:44] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: PlayerBiomes
[18:39:44] [Server thread/INFO]: [Lands] Nag author(s) of plugin PlayerBiomes. It uses the deprecated LandsIntegration of Lands: https://github.com/Angeschossen/LandsAPI/wiki/API-Update
[18:39:44] [Server thread/INFO]: [PlayerBiomes] Hooked into Lands 6.36.1
[18:39:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerbiomes [4.2.0]
[18:39:44] [Server thread/INFO]: [Celebrate] Enabling Celebrate v1.0.6
[18:39:45] [Server thread/INFO]: [MythicGraveyards] Enabling MythicGraveyards v5.1.0
[18:39:45] [Server thread/INFO]: [MythicMobs] Loading MythicGraveyards...
[18:39:45] [Server thread/INFO]: [MythicMobs] Loaded 0 graveyards
[18:39:45] [Server thread/INFO]: [MythicMobs] Graveyards Mythic Support has been enabled!
[18:39:45] [Server thread/INFO]: [MythicMobs] Graveyards Vault Support has been enabled!
[18:39:45] [Server thread/INFO]: [MythicMobs] v5.1.0 has been successfully loaded!
[18:39:45] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[18:39:45] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[18:39:46] [Server thread/INFO]: Running delayed init tasks
[18:39:46] [Craft Scheduler Thread - 33 - QuickShop-Hikari/INFO]: [QuickShop-Hikari] Start to caching usernames (async)...
[18:39:46] [Craft Scheduler Thread - 42 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] Checking for updates...
[18:39:46] [Craft Scheduler Thread - 12 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[18:39:46] [Craft Scheduler Thread - 37 - PlayerWarps/INFO]: [PlayerWarps] Loading player warps...
[18:39:46] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[18:39:46] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[18:39:46] [Craft Scheduler Thread - 40 - DisplayEntityEditor/INFO]: [DisplayEntityEditor] You are on the latest version!
[18:39:46] [Craft Scheduler Thread - 39 - ShopGUIPlus-SellGUI/INFO]: [ShopGUIPlus Sell GUI] You are running the LATEST release.
[18:39:46] [Craft Scheduler Thread - 12 - DecentHolograms/INFO]: [DecentHolograms] Loaded 12 holograms!
[18:39:46] [Craft Scheduler Thread - 28 - ItemsAdder/INFO]: [License] Spigot product licensed to: Sixsoul (128455)
[18:39:46] [Craft Scheduler Thread - 44 - TradeSystem/INFO]: [TradeSystem] Database was started successfully.
[18:39:46] [Craft Scheduler Thread - 28 - Vault/INFO]: [Vault] Checking for Updates ... 
[18:39:46] [Craft Scheduler Thread - 49 - InteractiveChat/INFO]: [InteractiveChat] Loading languages...
[18:39:46] [Craft Scheduler Thread - 42 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] You are running the latest version.
[18:39:46] [Craft Scheduler Thread - 28 - Vault/INFO]: [Vault] No new version available
[18:39:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerpoints [3.2.6]
[18:39:46] [ForkJoinPool.commonPool-worker-2/INFO]: [squaremap] Fetching version information...
[18:39:46] [Server thread/INFO]: [AdvancedMobArena] Arenas Loaded: 0
[18:39:46] [Server thread/INFO]: [Pack] Extracting internal contents from .jar
[18:39:46] [Server thread/INFO]: [Pack] DONE extracting internal contents from .jar
[18:39:46] [Server thread/WARN]: Detected legacy ItemsAdder pack (pre 3.3.0).
[18:39:46] [Server thread/WARN]: Trying to load files, unexpected results might occur.
[18:39:46] [Server thread/WARN]: It's adviced to follow the new guidelines: https://a.devs.beer/ia-new-guidelines-330
[18:39:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rs [1.0.0]
[18:39:48] [Server thread/INFO]: [RealisticSeasons] Total biomes registered on server: 496
[18:39:49] [Server thread/INFO]: [Chunky] No tasks to continue.
[18:39:49] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[18:39:49] [Server thread/INFO]: [DiscordSRV] Disabling DiscordSRV v1.26.2
[18:39:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pw [1.0.0]
[18:39:49] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: PlayerWarps
[18:39:49] [Server thread/INFO]: [RoseLoot] Registered 198 loot table conditions.
[18:39:49] [Server thread/INFO]: [RoseLoot] Registered 10 loot table types.
[18:39:49] [Server thread/INFO]: [RoseLoot] Registered 19 loot item types.
[18:39:49] [Server thread/WARN]: [RoseLoot] Failed to parse condition [placeholder:%servervariables_value_gathering_profession%] due to invalid values: Invalid tag arguments for placeholder
[18:39:49] [Server thread/WARN]: [RoseLoot] Skipped loading part of loottables/excavation.yml: Invalid condition [placeholder:%servervariables_value_gathering_profession%!=excavator]
[18:39:49] [Server thread/WARN]: [RoseLoot] Failed to parse condition [placeholder:%servervariables_value_gathering_profession%] due to invalid values: Invalid tag arguments for placeholder
[18:39:49] [Server thread/WARN]: [RoseLoot] Skipped loading part of loottables/excavation.yml: Invalid condition [placeholder:%servervariables_value_gathering_profession%!=excavator]
[18:39:49] [Server thread/WARN]: [RoseLoot] Failed to parse condition [placeholder:%servervariables_value_gathering_profession%] due to invalid values: Invalid tag arguments for placeholder
[18:39:49] [Server thread/WARN]: [RoseLoot] Skipped loading part of loottables/excavation.yml: Invalid condition [placeholder:%servervariables_value_gathering_profession%!=excavator]
[18:39:49] [Server thread/WARN]: [RoseLoot] Failed to parse condition [placeholder:%servervariables_value_gathering_profession%] due to invalid values: Invalid tag arguments for placeholder
[18:39:49] [Server thread/WARN]: [RoseLoot] Skipped loading part of loottables/excavation.yml: Invalid condition [placeholder:%servervariables_value_gathering_profession%!=excavator]
[18:39:49] [Server thread/WARN]: [RoseLoot] Failed to parse condition [placeholder:%servervariables_value_gathering_profession%] due to invalid values: Invalid tag arguments for placeholder
[18:39:49] [Server thread/WARN]: [RoseLoot] Skipped loading part of loottables/excavation.yml: Invalid condition [placeholder:%servervariables_value_gathering_profession%!=excavator]
[18:39:49] [Server thread/WARN]: [RoseLoot] Failed to parse condition [placeholder:%servervariables_value_gathering_profession%] due to invalid values: Invalid tag arguments for placeholder
[18:39:49] [Server thread/WARN]: [RoseLoot] Skipped loading part of loottables/excavation.yml: Invalid condition [placeholder:%servervariables_value_gathering_profession%!=excavator]
[18:39:49] [Server thread/WARN]: [RoseLoot] Failed to parse condition [placeholder:%servervariables_value_gathering_profession%] due to invalid values: Invalid tag arguments for placeholder
[18:39:49] [Server thread/WARN]: [RoseLoot] Skipped loading part of loottables/woodcutting.yml: Invalid condition [placeholder:%servervariables_value_gathering_profession%!=lumberjack]
[18:39:49] [Server thread/WARN]: [RoseLoot] Failed to parse condition [placeholder:%servervariables_value_gathering_profession%] due to invalid values: Invalid tag arguments for placeholder
[18:39:49] [Server thread/WARN]: [RoseLoot] Skipped loading part of loottables/woodcutting.yml: Invalid condition [placeholder:%servervariables_value_gathering_profession%!=lumberjack]
[18:39:49] [Server thread/WARN]: [RoseLoot] Failed to parse condition [placeholder:%servervariables_value_gathering_profession%] due to invalid values: Invalid tag arguments for placeholder
[18:39:49] [Server thread/WARN]: [RoseLoot] Skipped loading part of loottables/woodcutting.yml: Invalid condition [placeholder:%servervariables_value_gathering_profession%!=lumberjack]
[18:39:49] [Server thread/WARN]: [RoseLoot] Failed to parse condition [placeholder:%servervariables_value_gathering_profession%] due to invalid values: Invalid tag arguments for placeholder
[18:39:49] [Server thread/WARN]: [RoseLoot] Skipped loading part of loottables/woodcutting.yml: Invalid condition [placeholder:%servervariables_value_gathering_profession%!=lumberjack]
[18:39:49] [Server thread/WARN]: [RoseLoot] Failed to parse condition [placeholder:%servervariables_value_gathering_profession%] due to invalid values: Invalid tag arguments for placeholder
[18:39:49] [Server thread/WARN]: [RoseLoot] Skipped loading part of loottables/woodcutting.yml: Invalid condition [placeholder:%servervariables_value_gathering_profession%!=lumberjack]
[18:39:49] [Server thread/WARN]: [RoseLoot] Failed to parse condition [placeholder:%servervariables_value_gathering_profession%] due to invalid values: Invalid tag arguments for placeholder
[18:39:49] [Server thread/WARN]: [RoseLoot] Skipped loading part of loottables/woodcutting.yml: Invalid condition [placeholder:%servervariables_value_gathering_profession%!=lumberjack]
[18:39:49] [Server thread/WARN]: [RoseLoot] Failed to parse condition [placeholder:%servervariables_value_gathering_profession%] due to invalid values: Invalid tag arguments for placeholder
[18:39:49] [Server thread/WARN]: [RoseLoot] Skipped loading part of loottables/hunting.yml: Invalid condition [placeholder:%servervariables_value_gathering_profession%!=hunter]
[18:39:49] [Server thread/WARN]: [RoseLoot] Failed to parse condition [placeholder:%servervariables_value_gathering_profession%] due to invalid values: Invalid tag arguments for placeholder
[18:39:49] [Server thread/WARN]: [RoseLoot] Skipped loading part of loottables/hunting.yml: Invalid condition [placeholder:%servervariables_value_gathering_profession%!=hunter]
[18:39:49] [Server thread/WARN]: [RoseLoot] Failed to parse condition [placeholder:%servervariables_value_gathering_profession%] due to invalid values: Invalid tag arguments for placeholder
[18:39:49] [Server thread/WARN]: [RoseLoot] Skipped loading part of loottables/hunting.yml: Invalid condition [placeholder:%servervariables_value_gathering_profession%!=hunter]
[18:39:49] [Server thread/WARN]: [RoseLoot] Failed to parse condition [placeholder:%servervariables_value_gathering_profession%] due to invalid values: Invalid tag arguments for placeholder
[18:39:49] [Server thread/WARN]: [RoseLoot] Skipped loading part of loottables/hunting.yml: Invalid condition [placeholder:%servervariables_value_gathering_profession%!=hunter]
[18:39:49] [Server thread/WARN]: [RoseLoot] Failed to parse condition [placeholder:%servervariables_value_gathering_profession%] due to invalid values: Invalid tag arguments for placeholder
[18:39:49] [Server thread/WARN]: [RoseLoot] Skipped loading part of loottables/hunting.yml: Invalid condition [placeholder:%servervariables_value_gathering_profession%!=hunter]
[18:39:49] [Server thread/WARN]: [RoseLoot] Failed to parse condition [placeholder:%servervariables_value_gathering_profession%] due to invalid values: Invalid tag arguments for placeholder
[18:39:49] [Server thread/WARN]: [RoseLoot] Skipped loading part of loottables/hunting.yml: Invalid condition [placeholder:%servervariables_value_gathering_profession%!=hunter]
[18:39:49] [Server thread/WARN]: [RoseLoot] Failed to parse condition [placeholder:%servervariables_value_gathering_profession%] due to invalid values: Invalid tag arguments for placeholder
[18:39:49] [Server thread/WARN]: [RoseLoot] Skipped loading part of loottables/mining.yml: Invalid condition [placeholder:%servervariables_value_gathering_profession%!=miner]
[18:39:49] [Server thread/WARN]: [RoseLoot] Failed to parse condition [placeholder:%servervariables_value_gathering_profession%] due to invalid values: Invalid tag arguments for placeholder
[18:39:49] [Server thread/WARN]: [RoseLoot] Skipped loading part of loottables/mining.yml: Invalid condition [placeholder:%servervariables_value_gathering_profession%!=miner]
[18:39:49] [Server thread/WARN]: [RoseLoot] Failed to parse condition [placeholder:%servervariables_value_gathering_profession%] due to invalid values: Invalid tag arguments for placeholder
[18:39:49] [Server thread/WARN]: [RoseLoot] Skipped loading part of loottables/mining.yml: Invalid condition [placeholder:%servervariables_value_gathering_profession%!=miner]
[18:39:49] [Server thread/WARN]: [RoseLoot] Failed to parse condition [placeholder:%servervariables_value_gathering_profession%] due to invalid values: Invalid tag arguments for placeholder
[18:39:49] [Server thread/WARN]: [RoseLoot] Skipped loading part of loottables/mining.yml: Invalid condition [placeholder:%servervariables_value_gathering_profession%!=miner]
[18:39:49] [Server thread/WARN]: [RoseLoot] Failed to parse condition [placeholder:%servervariables_value_gathering_profession%] due to invalid values: Invalid tag arguments for placeholder
[18:39:49] [Server thread/WARN]: [RoseLoot] Skipped loading part of loottables/mining.yml: Invalid condition [placeholder:%servervariables_value_gathering_profession%!=miner]
[18:39:49] [Server thread/WARN]: [RoseLoot] Failed to parse condition [placeholder:%servervariables_value_gathering_profession%] due to invalid values: Invalid tag arguments for placeholder
[18:39:49] [Server thread/WARN]: [RoseLoot] Skipped loading part of loottables/mining.yml: Invalid condition [placeholder:%servervariables_value_gathering_profession%!=miner]
[18:39:49] [Server thread/WARN]: [RoseLoot] Failed to parse condition [placeholder:%servervariables_value_gathering_profession%] due to invalid values: Invalid tag arguments for placeholder
[18:39:49] [Server thread/WARN]: [RoseLoot] Skipped loading part of loottables/farming.yml: Invalid condition [placeholder:%servervariables_value_gathering_profession%!=farmer]
[18:39:49] [Server thread/WARN]: [RoseLoot] Failed to parse condition [placeholder:%servervariables_value_gathering_profession%] due to invalid values: Invalid tag arguments for placeholder
[18:39:49] [Server thread/WARN]: [RoseLoot] Skipped loading part of loottables/farming.yml: Invalid condition [placeholder:%servervariables_value_gathering_profession%!=farmer]
[18:39:49] [Server thread/WARN]: [RoseLoot] Failed to parse condition [placeholder:%servervariables_value_gathering_profession%] due to invalid values: Invalid tag arguments for placeholder
[18:39:49] [Server thread/WARN]: [RoseLoot] Skipped loading part of loottables/farming.yml: Invalid condition [placeholder:%servervariables_value_gathering_profession%!=farmer]
[18:39:49] [Server thread/WARN]: [RoseLoot] Failed to parse condition [placeholder:%servervariables_value_gathering_profession%] due to invalid values: Invalid tag arguments for placeholder
[18:39:49] [Server thread/WARN]: [RoseLoot] Skipped loading part of loottables/farming.yml: Invalid condition [placeholder:%servervariables_value_gathering_profession%!=farmer]
[18:39:49] [Server thread/WARN]: [RoseLoot] Failed to parse condition [placeholder:%servervariables_value_gathering_profession%] due to invalid values: Invalid tag arguments for placeholder
[18:39:49] [Server thread/WARN]: [RoseLoot] Skipped loading part of loottables/farming.yml: Invalid condition [placeholder:%servervariables_value_gathering_profession%!=farmer]
[18:39:49] [Server thread/WARN]: [RoseLoot] Failed to parse condition [placeholder:%servervariables_value_gathering_profession%] due to invalid values: Invalid tag arguments for placeholder
[18:39:49] [Server thread/WARN]: [RoseLoot] Skipped loading part of loottables/farming.yml: Invalid condition [placeholder:%servervariables_value_gathering_profession%!=farmer]
[18:39:49] [Server thread/INFO]: [RoseLoot] Loaded 11 loot tables.
[18:39:51] [Server thread/WARN]: [MMOItems] An error occurred while trying to generate item 'EARTH_STAFF' with stat 'TIER': Could not find item tier with ID 'VERY_RARE'
[18:39:51] [Server thread/WARN]: [MMOItems] An error occurred while trying to generate item 'LUCK_CHARM' with stat 'TIER': Could not find item tier with ID 'MAGICAL'
[18:39:51] [Server thread/WARN]: [MMOItems] An error occurred while trying to generate item 'BUTCHER_AXE' with stat 'TIER': Could not find item tier with ID 'UNCOMMON'
[18:39:51] [Server thread/WARN]: [MMOItems] An error occurred while trying to generate item 'BUTCHER_AXE' with stat 'TIER': Could not find item tier with ID 'UNCOMMON'
[18:39:51] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL SILVER_INGOT 1.0..] Invalid MMOItem MATERIAL SILVER_INGOT: No such MMOItem for Type MATERIAL. 
[18:39:51] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL SILVER_INGOT 1.0..] Invalid MMOItem MATERIAL SILVER_INGOT: No such MMOItem for Type MATERIAL. 
[18:39:51] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL SILVER_INGOT 1.0..] Invalid MMOItem MATERIAL SILVER_INGOT: No such MMOItem for Type MATERIAL. 
[18:39:51] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL SILVER_INGOT 1.0..] Invalid MMOItem MATERIAL SILVER_INGOT: No such MMOItem for Type MATERIAL. 
[18:39:51] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL SILVER_INGOT 1.0..] Invalid MMOItem MATERIAL SILVER_INGOT: No such MMOItem for Type MATERIAL. 
[18:39:51] [Server thread/INFO]: [MythicLib Ingredient m MATERIAL SILVER_INGOT 1.0..] Invalid MMOItem MATERIAL SILVER_INGOT: No such MMOItem for Type MATERIAL. 
[18:39:51] [Server thread/INFO]: [MythicLib Ingredient m material steel_ingot 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[18:39:51] [Server thread/INFO]: [MythicLib Ingredient m material steel_ingot 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[18:39:51] [Server thread/INFO]: [MythicLib Ingredient m material steel_ingot 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[18:39:51] [Server thread/INFO]: [MythicLib Ingredient m material steel_ingot 1.0..] Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[18:39:51] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop voras_bow
[18:39:51] [Server thread/WARN]: [MythicMobs] --| File: DropItemMechanic
[18:39:51] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[18:39:51] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop voras_shield
[18:39:51] [Server thread/WARN]: [MythicMobs] --| File: DropItemMechanic
[18:39:51] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[18:39:51] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop capra_horns
[18:39:51] [Server thread/WARN]: [MythicMobs] --| File: DropItemMechanic
[18:39:51] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[18:39:51] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop yeti_axe
[18:39:51] [Server thread/WARN]: [MythicMobs] --| File: DropItemMechanic
[18:39:51] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[18:39:51] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop yeti_shield
[18:39:51] [Server thread/WARN]: [MythicMobs] --| File: DropItemMechanic
[18:39:51] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[18:39:51] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop yeti_hat
[18:39:51] [Server thread/WARN]: [MythicMobs] --| File: DropItemMechanic
[18:39:51] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[18:39:51] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[18:39:51] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[18:39:51] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition lasthitbox
[18:39:51] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: lasthitbox{h=clusterbox}
[18:39:51] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'selff': Failed to load custom targeter SELFF
[18:39:51] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[18:39:51] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[18:39:51] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition LastHitbox
[18:39:51] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: LastHitbox{h=topbox}
[18:39:51] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop SkogBonsai
[18:39:51] [Server thread/WARN]: [MythicMobs] --| File: DropItemMechanic
[18:39:51] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[18:39:51] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop YggdrasilFruit
[18:39:51] [Server thread/WARN]: [MythicMobs] --| File: DropItemMechanic
[18:39:51] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[18:39:51] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop YggdrasilFruit
[18:39:51] [Server thread/WARN]: [MythicMobs] --| File: DropItemMechanic
[18:39:51] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[18:39:51] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop YggdrasilFruit
[18:39:51] [Server thread/WARN]: [MythicMobs] --| File: DropItemMechanic
[18:39:51] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[18:39:51] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop pelt
[18:39:51] [Server thread/WARN]: [MythicMobs] --| File: DropItemMechanic
[18:39:51] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[18:39:51] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop pelt
[18:39:51] [Server thread/WARN]: [MythicMobs] --| File: DropItemMechanic
[18:39:51] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[18:39:51] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop pelt
[18:39:51] [Server thread/WARN]: [MythicMobs] --| File: DropItemMechanic
[18:39:51] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[18:39:51] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop palm_coconut
[18:39:51] [Server thread/WARN]: [MythicMobs] --| File: DropItemMechanic
[18:39:51] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[18:39:51] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop palm_coconut
[18:39:51] [Server thread/WARN]: [MythicMobs] --| File: DropItemMechanic
[18:39:51] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[18:39:51] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop coconut_milk
[18:39:51] [Server thread/WARN]: [MythicMobs] --| File: DropItemMechanic
[18:39:51] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[18:39:51] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop coconut_milk
[18:39:51] [Server thread/WARN]: [MythicMobs] --| File: DropItemMechanic
[18:39:51] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[18:39:51] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop sand_castleDROPTABLE
[18:39:51] [Server thread/WARN]: [MythicMobs] --| File: DropItemMechanic
[18:39:51] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[18:39:51] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop lootchestdrops
[18:39:51] [Server thread/WARN]: [MythicMobs] --| File: DropItemMechanic
[18:39:51] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[18:39:51] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop qct_skeleton_drop_shoulder
[18:39:51] [Server thread/WARN]: [MythicMobs] --| File: DropItemMechanic
[18:39:51] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[18:39:51] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop qct_skeleton_drop_boot
[18:39:51] [Server thread/WARN]: [MythicMobs] --| File: DropItemMechanic
[18:39:51] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[18:39:51] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop SkeletonKingDrops
[18:39:51] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Mobs/ExampleMobs.yml
[18:39:51] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[18:39:51] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop redstone_dust 2-4 1
[18:39:51] [Server thread/WARN]: [MythicMobs] --| File: ExampleDropTables.yml
[18:39:51] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[18:39:53] [Server thread/INFO]: [Citizens] Loaded 72 NPCs.
[18:39:53] [Server thread/INFO]: +> [ScriptEvent] Processed 0 script event paths. 
[18:39:53] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[18:39:54] [Server thread/INFO]: +> [Denizen] Denizen fully loaded at: 2023/10/11 18:38:04 
[18:39:54] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated PlaceholderAPI for parsing placeholders from 3rd party plugins in chat messages and GUI menus
[18:39:54] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated LuckPerms for offline permission lookups.
[18:39:54] [Server thread/INFO]: [Lands] Successfully added region provider: WorldGuard Type: SERVER
[18:39:54] [Server thread/INFO]: [QuickShop-Hikari] Using economy system: CMIEconomy
[18:39:54] [Server thread/INFO]: [QuickShop-Hikari] Selected economy bridge: BuiltIn-Vault
[18:39:54] [Server thread/INFO]: [WildRegeneration] [Integrations] Successfully integrated PlaceholderAPI for parsing placeholders from 3rd party plugins in chat messages and GUI menus
[18:39:54] [Server thread/INFO]: [WildRegeneration] [Integrations] Successfully integrated LuckPerms for offline permission lookups.
[18:39:54] [Server thread/INFO]: [WildRegeneration] Successfully added region provider: Lands Type: CLAIMING
[18:39:54] [Server thread/INFO]: [WildRegeneration] Successfully added region provider: WorldGuard Type: SERVER
[18:39:54] [Server thread/INFO]: [WildRegeneration] Setting up table for world: world
[18:39:54] [Server thread/INFO]: [Drop2InventoryPlus] You are using the latest version of Drop2InventoryPlus.
[18:39:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: formatter [2.1.1]
[18:39:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[18:39:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.5]
[18:39:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: checkitem [2.7.1]
[18:39:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[18:39:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.6.2]
[18:39:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: progress [2.1]
[18:39:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: math [2.0.2]
[18:39:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: localtime [1.2]
[18:39:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: parseother [1.4.6]
[18:39:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: random [1.0.0]
[18:39:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: shortcut [1.2.1]
[18:39:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.1]
[18:39:54] [Server thread/INFO]: 13 placeholder hook(s) registered! 2 placeholder hook(s) have an update available.
[18:39:54] [Server thread/INFO]: Done (174.515s)! For help, type "help"
[18:39:54] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 8482ms or 169 ticks behind
[18:39:54] [Server thread/INFO]: Timings Reset
[18:39:54] [Craft Scheduler Thread - 31 - ItemsAdder/ERROR]: Solid hitbox too big (max 3) for item elitecreatures:medieval_market_decoration_v1_cargo_2'. File /data/items_packs/elitecreatures/medieval_market_decoration_v1/pack_medieval_market_decoration_v1.yml
[18:39:54] [Craft Scheduler Thread - 31 - ItemsAdder/INFO]: Loaded 2328 items
[18:39:54] [Server thread/INFO]: [CMI] DiscordSRV found. (Loaded: false)
[18:39:54] [Craft Scheduler Thread - 31 - ItemsAdder/INFO]: Used 0/188 REAL block IDs
[18:39:54] [Craft Scheduler Thread - 31 - ItemsAdder/INFO]: Used 100/750 REAL_NOTE block IDs
[18:39:54] [Craft Scheduler Thread - 31 - ItemsAdder/INFO]: Used 3/63 REAL_TRANSPARENT block IDs
[18:39:54] [Craft Scheduler Thread - 31 - ItemsAdder/INFO]: Used 49/127 REAL_WIRE block IDs
[18:39:54] [Craft Scheduler Thread - 31 - ItemsAdder/INFO]: Used 0/14 FIRE block IDs
[18:39:54] [Craft Scheduler Thread - 31 - ItemsAdder/INFO]: Used 979/6608 font_images
[18:39:55] [Server thread/WARN]: Skipping Entity with id 
[18:39:55] [Server thread/WARN]: Skipping Entity with id 
[18:39:55] [Server thread/WARN]: Skipping Entity with id 
[18:39:55] [Craft Scheduler Thread - 31 - ItemsAdder/ERROR]: GUI error: can't find font_image. Check ia_gui.yml, attribute: settings.categories_view.font_image.name
[18:39:55] [Craft Scheduler Thread - 31 - ItemsAdder/INFO]: [Init] Loaded 32 categories
[18:39:55] [Craft Scheduler Thread - 31 - ItemsAdder/INFO]: [Init] Loaded successfully.
[18:39:55] [Craft Scheduler Thread - 31 - ItemsAdder/INFO]: [Pack] Checking resourcepack url... 
[18:39:55] [Craft Scheduler Thread - 48 - ItemsAdder/INFO]: [Pack] Resourcepack URL (self-host): http://170.205.25.253:8123/generated.zip
[18:39:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: img [1.0.1]
[18:39:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iaplayerstat [1.0.1]
[18:39:55] [Server thread/INFO]: AquaticCrates | Loading Item Database!
[18:39:55] [Server thread/INFO]: AquaticCrates | Loading Crates!
[18:39:55] [Server thread/INFO]: AquaticCrates | Loading Players!
[18:39:55] [Server thread/INFO]: AquaticCrates | Loading Messages!
[18:39:55] [Server thread/INFO]: AquaticCrates | Plugin Loaded!
[18:39:55] [Server thread/WARN]: java.lang.IllegalArgumentException: No enum constant org.bukkit.Material.ASSASSINNPC_SHURIKEN
[18:39:55] [Server thread/WARN]:     at java.base/java.lang.Enum.valueOf(Enum.java:273)
[18:39:55] [Server thread/WARN]:     at org.bukkit.Material.valueOf(Material.java:121)
[18:39:55] [Server thread/WARN]:     at MythicMobs-5.4.1-SNAPSHOT.jar//io.lumine.mythic.core.skills.projectiles.bullet.ItemBullet.lambda$new$1(ItemBullet.java:72)
[18:39:55] [Server thread/WARN]:     at MythicMobs-5.4.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[18:39:55] [Server thread/WARN]:     at MythicMobs-5.4.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[18:39:55] [Server thread/WARN]:     at MythicMobs-5.4.1-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[18:39:55] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftTask.run(CraftTask.java:101)
[18:39:55] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480)
[18:39:55] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1470)
[18:39:55] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:446)
[18:39:55] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1379)
[18:39:55] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1156)
[18:39:55] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315)
[18:39:55] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[18:39:55] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic projectile
[18:39:55] [Server thread/WARN]: [MythicMobs] --| Skill: assassinNPCprojectile | File: /home/container/plugins/MythicMobs/Skills/NPC Skill/NPCvol4.yml
[18:39:55] [Server thread/WARN]: [MythicMobs] --| Error Message: Specified bullet material does not exist
[18:39:55] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: projectile{bulletSpin=29;bulletType=MYTHICITEM;material=assassinNPC_shuriken;onTick=assassinNPCprojectileTICK;onHit=assassinNPCprojectileHIT;v=20;i=.5;hR=1;vR=1;hnp=false}
[18:39:58] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Item bufobufo_shield
[18:39:58] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Items/littleroom/bufobufo.yml
[18:39:58] [Server thread/WARN]: [MythicMobs] --| Error Message: The shield color is configured incorrectly, must use a color from the Bukkit DyeColor ENUM.
[18:39:58] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Item viking_shield
[18:39:58] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Items/littleroom/vikings.yml
[18:39:58] [Server thread/WARN]: [MythicMobs] --| Error Message: The shield color is configured incorrectly, must use a color from the Bukkit DyeColor ENUM.
[18:39:58] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Item troll_shield
[18:39:58] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Items/littleroom/troll.yml
[18:39:58] [Server thread/WARN]: [MythicMobs] --| Error Message: The shield color is configured incorrectly, must use a color from the Bukkit DyeColor ENUM.
[18:39:59] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition blockType
[18:39:59] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[18:39:59] [Server thread/WARN]: [MythicMobs] --| Error Message: 'dripstone' is not a valid block type.
[18:39:59] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: blocktype{m=dripstone}
[18:39:59] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic setBlockType
[18:39:59] [Server thread/WARN]: [MythicMobs] --| Skill: capraLAVA | File: /home/container/plugins/MythicMobs/Skills/littleroom/capra.yml
[18:39:59] [Server thread/WARN]: [MythicMobs] --| Error Message: 'MAGMA' is not a valid block type.
[18:39:59] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: setblock{m=MAGMA;md=0}
[18:39:59] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated Vault economy into economy system. Name: CMIEconomy Banks: true
[18:39:59] [Server thread/INFO]: [Lands] [Integrations] Preventing Mythicmobs to spawn in areas where monster spawning is disabled.
[18:39:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lands [6.36.1]
[18:39:59] [Server thread/INFO]: [Lands] [Integrations] Successfully registered placeholders at PlaceholderAPI. More info: https://github.com/Angeschossen/Lands/wiki/PlaceholderAPI-Placeholders#placeholders
[18:39:59] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated squaremap into web-map system.
[18:39:59] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated FastAsyncWorldEdit. 
[18:39:59] [Server thread/INFO]: [Lands] [Integrations] Successfully loaded LuckPerms contexts. More information: https://github.com/Angeschossen/Lands/wiki/Luckperms-Context
[18:39:59] [Server thread/INFO]: [Lands] [Economy] Next economic tasks (taxes, upkeep, nations upkeep) execution is in 5 hour(s), 20 minute(s). Interval: 7 day(s), 0 hour(s)
[18:39:59] [Server thread/INFO]: [MythicMobs] Loading ProtocolLib listeners...
[18:39:59] [Server thread/INFO]: [MythicMobs] Attached traits to items.
[18:39:59] [Server thread/INFO]: [MythicMobs] Loaded 781 items.
[18:39:59] [Server thread/INFO]: [ShopGUIPlus] ================================[ ShopGUI+ 1.92.0 ]================================
[18:39:59] [Server thread/INFO]: [ShopGUIPlus]  
[18:39:59] [Server thread/INFO]: [ShopGUIPlus] Vault economy registered.
[18:39:59] [Server thread/INFO]: [ShopGUIPlus] PlayerPoints economy registered.
[18:39:59] [Server thread/INFO]: [ShopGUIPlus] Vault economy enabled.
[18:39:59] [Server thread/INFO]: [ShopGUIPlus] PlayerPoints economy enabled.
[18:39:59] [Server thread/INFO]: [ShopGUIPlus] Using Vault as default economy provider.
[18:39:59] [Server thread/INFO]: [ShopGUIPlus] Permissions support enabled.
[18:39:59] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for MMOItems.
[18:39:59] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for ItemsAdder.
[18:39:59] [Server thread/INFO]: [ShopGUIPlus] No external spawner plugins registered, using built-in spawners support.
[18:39:59] [Server thread/INFO]: [ShopGUIPlus] Loaded 14 main menu items.
[18:39:59] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'enchants' with 5 items.
[18:39:59] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'ores' with 10 items.
[18:39:59] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'fishing' with 14 items.
[18:39:59] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'voidloot' with 4 items.
[18:39:59] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'backpacks' with 7 items.
[18:39:59] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'food' with 13 items.
[18:39:59] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'farming' with 5 items.
[18:39:59] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'woodcutting' with 3 items.
[18:39:59] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'mining' with 9 items.
[18:39:59] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'drops' with 21 items.
[18:39:59] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'farm' with 18 items.
[18:39:59] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'wood' with 37 items.
[18:39:59] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'hunting' with 9 items.
[18:39:59] [Server thread/INFO]: [ShopGUIPlus] Loaded 13 shops with total of 155 items.
[18:39:59] [Server thread/INFO]: [ShopGUIPlus] Loaded 4 permission-based price modifiers.
[18:39:59] [Server thread/INFO]: [ShopGUIPlus] Loaded 7 sounds.
[18:39:59] [Server thread/INFO]: [ShopGUIPlus]  
[18:39:59] [Server thread/INFO]: [ShopGUIPlus] ====================================================================================
[18:39:59] [Server thread/WARN]: java.lang.IllegalStateException: Already have player EntityHumanNPC['► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄'/611, uuid='fceead95-e90a-21a5-bff2-b1dacf4c0feb', l='ServerLevel[world_spawn]', x=-34.11, y=47.00, z=14.29, cpos=[-3, 0], tl=19, v=true](► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄ at -34.1104,47.0,14.2852)
[18:39:59] [Server thread/WARN]:     at io.papermc.paper.util.player.NearbyPlayers.addPlayer(NearbyPlayers.java:48)
[18:39:59] [Server thread/WARN]:     at net.minecraft.server.level.PlayerChunkMap.addPlayerToDistanceMaps(PlayerChunkMap.java:155)
[18:39:59] [Server thread/WARN]:     at net.minecraft.server.level.PlayerChunkMap.a(PlayerChunkMap.java:934)
[18:39:59] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.nms.v1_20_R2.util.NMSImpl.addOrRemoveFromPlayerList(NMSImpl.java:407)
[18:39:59] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.util.NMS.addOrRemoveFromPlayerList(NMS.java:81)
[18:39:59] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.nms.v1_20_R2.entity.HumanController.lambda$createEntity$0(HumanController.java:56)
[18:39:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftTask.run(CraftTask.java:101)
[18:39:59] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480)
[18:39:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1470)
[18:39:59] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:446)
[18:39:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1379)
[18:39:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1156)
[18:39:59] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315)
[18:39:59] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[18:40:00] [Server thread/WARN]: java.lang.IllegalStateException: Already have player EntityHumanNPC['► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄'/747, uuid='015be8a4-4224-2f22-b7f5-cf7ae516a7b6', l='ServerLevel[world_spawn]', x=-84.52, y=46.00, z=-49.51, cpos=[-6, -4], tl=20, v=true](► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄ at -84.5201,46.0,-49.5101)
[18:40:00] [Server thread/WARN]:     at io.papermc.paper.util.player.NearbyPlayers.addPlayer(NearbyPlayers.java:48)
[18:40:00] [Server thread/WARN]:     at net.minecraft.server.level.PlayerChunkMap.addPlayerToDistanceMaps(PlayerChunkMap.java:155)
[18:40:00] [Server thread/WARN]:     at net.minecraft.server.level.PlayerChunkMap.a(PlayerChunkMap.java:934)
[18:40:00] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.nms.v1_20_R2.util.NMSImpl.addOrRemoveFromPlayerList(NMSImpl.java:407)
[18:40:00] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.util.NMS.addOrRemoveFromPlayerList(NMS.java:81)
[18:40:00] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.nms.v1_20_R2.entity.HumanController.lambda$createEntity$0(HumanController.java:56)
[18:40:00] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftTask.run(CraftTask.java:101)
[18:40:00] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480)
[18:40:00] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1470)
[18:40:00] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:446)
[18:40:00] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1379)
[18:40:00] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1156)
[18:40:00] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315)
[18:40:00] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[18:40:00] [Server thread/WARN]: java.lang.IllegalStateException: Already have player EntityHumanNPC['► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄'/759, uuid='9e37a0d0-763c-2419-8ff1-e612022e3c5d', l='ServerLevel[world_spawn]', x=-88.98, y=60.00, z=-37.15, cpos=[-6, -3], tl=20, v=true](► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄ at -88.9769,60.0,-37.1513)
[18:40:00] [Server thread/WARN]:     at io.papermc.paper.util.player.NearbyPlayers.addPlayer(NearbyPlayers.java:48)
[18:40:00] [Server thread/WARN]:     at net.minecraft.server.level.PlayerChunkMap.addPlayerToDistanceMaps(PlayerChunkMap.java:155)
[18:40:00] [Server thread/WARN]:     at net.minecraft.server.level.PlayerChunkMap.a(PlayerChunkMap.java:934)
[18:40:00] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.nms.v1_20_R2.util.NMSImpl.addOrRemoveFromPlayerList(NMSImpl.java:407)
[18:40:00] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.util.NMS.addOrRemoveFromPlayerList(NMS.java:81)
[18:40:00] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.nms.v1_20_R2.entity.HumanController.lambda$createEntity$0(HumanController.java:56)
[18:40:00] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftTask.run(CraftTask.java:101)
[18:40:00] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480)
[18:40:00] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1470)
[18:40:00] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:446)
[18:40:00] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1379)
[18:40:00] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1156)
[18:40:00] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315)
[18:40:00] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[18:40:02] [ForkJoinPool.commonPool-worker-3/INFO]: [Lands] You're using the latest version.
[18:40:02] [Server thread/INFO]: [EnchantSlots] Product licensed for: Sixsoul(284035)
[18:40:06] [Craft Scheduler Thread - 10 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[18:40:54] [Server thread/WARN]: Skipping Entity with id 
[18:40:54] [Server thread/WARN]: Skipping Entity with id 
[18:40:54] [Server thread/WARN]: Skipping Entity with id 
[18:49:55] [Server thread/WARN]: Skipping Entity with id 
[18:49:55] [Server thread/WARN]: Skipping Entity with id 
[18:49:55] [Server thread/WARN]: Skipping Entity with id 
[18:50:02] [User Authenticator #0/INFO]: UUID of player Sixsoul is 34de9efa-5109-4acd-8ba5-b975e89ac53c
[18:50:03] [Folia Async Scheduler Thread #0/INFO]: [Tweakin] [ACF] Can't read players locale, you will be unable to automatically detect players language. Only Bukkit 1.7+ is supported for this.
[18:50:03] [Folia Async Scheduler Thread #1/INFO]: [HappyHud] [ACF] Can't read players locale, you will be unable to automatically detect players language. Only Bukkit 1.7+ is supported for this.
[18:50:03] [Folia Async Scheduler Thread #0/INFO]: [Tweakin] [ACF] java.lang.NoSuchFieldException: locale
[18:50:03] [Folia Async Scheduler Thread #0/INFO]: [Tweakin] [ACF]     at java.base/java.lang.Class.getDeclaredField(Class.java:2642)
[18:50:03] [Folia Async Scheduler Thread #0/INFO]: [Tweakin] [ACF]     at Tweakin-6.0.2.jar//com.github.sachin.tweakin.acf.BukkitCommandManager.readPlayerLocale(BukkitCommandManager.java:324)
[18:50:03] [Folia Async Scheduler Thread #0/INFO]: [Tweakin] [ACF]     at java.base/java.lang.Iterable.forEach(Iterable.java:75)
[18:50:03] [Folia Async Scheduler Thread #0/INFO]: [Tweakin] [ACF]     at java.base/java.util.Collections$UnmodifiableCollection.forEach(Collections.java:1092)
[18:50:03] [Folia Async Scheduler Thread #0/INFO]: [Tweakin] [ACF]     at Tweakin-6.0.2.jar//com.github.sachin.tweakin.acf.BukkitCommandManager.lambda$new$1(BukkitCommandManager.java:135)
[18:50:03] [Folia Async Scheduler Thread #0/INFO]: [Tweakin] [ACF]     at Tweakin-6.0.2.jar//com.github.sachin.tweakin.acf.ACFPaperScheduler.lambda$createLocaleTask$1(ACFPaperScheduler.java:56)
[18:50:03] [Folia Async Scheduler Thread #0/INFO]: [Tweakin] [ACF]     at io.papermc.paper.threadedregions.scheduler.FoliaAsyncScheduler$AsyncScheduledTask.run(FoliaAsyncScheduler.java:217)
[18:50:03] [Folia Async Scheduler Thread #0/INFO]: [Tweakin] [ACF]     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
[18:50:03] [Folia Async Scheduler Thread #0/INFO]: [Tweakin] [ACF]     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
[18:50:03] [Folia Async Scheduler Thread #0/INFO]: [Tweakin] [ACF]     at java.base/java.lang.Thread.run(Thread.java:833)
[18:50:03] [Folia Async Scheduler Thread #1/INFO]: [HappyHud] [ACF] java.lang.NoSuchFieldException: locale
[18:50:03] [Folia Async Scheduler Thread #1/INFO]: [HappyHud] [ACF]     at java.base/java.lang.Class.getDeclaredField(Class.java:2642)
[18:50:03] [Folia Async Scheduler Thread #1/INFO]: [HappyHud] [ACF]     at HappyHUD-1.0.6-RELEASE.jar//com.ehhthan.libraries.acf.BukkitCommandManager.readPlayerLocale(BukkitCommandManager.java:324)
[18:50:03] [Folia Async Scheduler Thread #1/INFO]: [HappyHud] [ACF]     at java.base/java.lang.Iterable.forEach(Iterable.java:75)
[18:50:03] [Folia Async Scheduler Thread #1/INFO]: [HappyHud] [ACF]     at java.base/java.util.Collections$UnmodifiableCollection.forEach(Collections.java:1092)
[18:50:03] [Folia Async Scheduler Thread #1/INFO]: [HappyHud] [ACF]     at HappyHUD-1.0.6-RELEASE.jar//com.ehhthan.libraries.acf.BukkitCommandManager.lambda$new$1(BukkitCommandManager.java:135)
[18:50:03] [Folia Async Scheduler Thread #1/INFO]: [HappyHud] [ACF]     at HappyHUD-1.0.6-RELEASE.jar//com.ehhthan.libraries.acf.ACFPaperScheduler.lambda$createLocaleTask$1(ACFPaperScheduler.java:56)
[18:50:03] [Folia Async Scheduler Thread #1/INFO]: [HappyHud] [ACF]     at io.papermc.paper.threadedregions.scheduler.FoliaAsyncScheduler$AsyncScheduledTask.run(FoliaAsyncScheduler.java:217)
[18:50:03] [Folia Async Scheduler Thread #1/INFO]: [HappyHud] [ACF]     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
[18:50:03] [Folia Async Scheduler Thread #1/INFO]: [HappyHud] [ACF]     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
[18:50:03] [Folia Async Scheduler Thread #1/INFO]: [HappyHud] [ACF]     at java.base/java.lang.Thread.run(Thread.java:833)
[18:50:03] [Server thread/ERROR]: Could not pass event PlayerJoinEvent to TradeSystem v2.5.1
java.lang.NoSuchMethodError: 'java.lang.String com.mojang.authlib.properties.Property.getValue()'
    at de.codingair.tradesystem.lib.codingapi.player.data.Skin.lambda$new$1(Skin.java:88) ~[TradeSystem_v2.5.1.jar:?]
    at java.lang.Iterable.forEach(Iterable.java:75) ~[?:?]
    at de.codingair.tradesystem.lib.codingapi.player.data.Skin.<init>(Skin.java:87) ~[TradeSystem_v2.5.1.jar:?]
    at de.codingair.tradesystem.lib.codingapi.player.data.GameProfileUtils$1.<init>(GameProfileUtils.java:35) ~[TradeSystem_v2.5.1.jar:?]
    at de.codingair.tradesystem.lib.codingapi.player.data.GameProfileUtils.extractSkinId(GameProfileUtils.java:35) ~[TradeSystem_v2.5.1.jar:?]
    at de.codingair.tradesystem.spigot.trade.listeners.PublishSkinListener.sync(PublishSkinListener.java:31) ~[TradeSystem_v2.5.1.jar:?]
    at de.codingair.tradesystem.spigot.trade.listeners.PublishSkinListener.sync(PublishSkinListener.java:24) ~[TradeSystem_v2.5.1.jar:?]
    at de.codingair.tradesystem.spigot.trade.listeners.PublishSkinListener.onJoin(PublishSkinListener.java:20) ~[TradeSystem_v2.5.1.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor1709.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:77) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:git-Paper-233]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.20.2.jar:git-Paper-233]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[paper-1.20.2.jar:git-Paper-233]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.players.PlayerList.placeNewPlayer(PlayerList.java:325) ~[paper-1.20.2.jar:git-Paper-233]
    at net.minecraft.server.network.ServerConfigurationPacketListenerImpl.handleConfigurationFinished(ServerConfigurationPacketListenerImpl.java:130) ~[paper-1.20.2.jar:git-Paper-233]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.handle(ServerboundFinishConfigurationPacket.java:18) ~[paper-1.20.2.jar:git-Paper-233]
    at net.minecraft.network.protocol.configuration.ServerboundFinishConfigurationPacket.a(ServerboundFinishConfigurationPacket.java:9) ~[paper-1.20.2.jar:git-Paper-233]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:53) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.20.2.jar:git-Paper-233]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1324) ~[paper-1.20.2.jar:git-Paper-233]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:193) ~[paper-1.20.2.jar:git-Paper-233]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1301) ~[paper-1.20.2.jar:git-Paper-233]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1294) ~[paper-1.20.2.jar:git-Paper-233]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1272) ~[paper-1.20.2.jar:git-Paper-233]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1160) ~[paper-1.20.2.jar:git-Paper-233]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-233]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:50:03] [Server thread/INFO]: Sixsoul[/73.198.183.211:57229] logged in with entity id 12860 at ([world_spawn]-53.15433632790715, 45.9375, -10.468190518533815)
[18:50:55] [Server thread/WARN]: Skipping Entity with id 
[18:50:55] [Server thread/WARN]: Skipping Entity with id 
[18:50:55] [Server thread/WARN]: Skipping Entity with id 
[18:51:55] [Server thread/WARN]: Skipping Entity with id 
[18:51:55] [Server thread/WARN]: Skipping Entity with id 
[18:51:55] [Server thread/WARN]: Skipping Entity with id 
[18:52:55] [Server thread/WARN]: Skipping Entity with id 
[18:52:55] [Server thread/WARN]: Skipping Entity with id 
[18:52:55] [Server thread/WARN]: Skipping Entity with id 
[18:53:55] [Server thread/WARN]: Skipping Entity with id 
[18:53:55] [Server thread/WARN]: Skipping Entity with id 
[18:53:55] [Server thread/WARN]: Skipping Entity with id 
[18:54:04] [Server thread/INFO]: Sixsoul issued server command: /citizens reload
[18:54:05] [Server thread/INFO]: Sixsoul issued server command: /citizens reload
[18:54:05] [Server thread/INFO]: [Citizens] Tried to despawn 119{, PLAYER} while already despawned, DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Tried to despawn 118{, PLAYER} while already despawned, DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Tried to despawn 117{, PLAYER} while already despawned, DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Tried to despawn 116{, PLAYER} while already despawned, DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Tried to despawn 115{, PLAYER} while already despawned, DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Tried to despawn 114{, PLAYER} while already despawned, DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Tried to despawn 113{, PLAYER} while already despawned, DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 112{cat, CAT} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 112{cat, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 111{cat, CAT} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 111{cat, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 110{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 110{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 109{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 109{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 108{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 108{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 107{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 107{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 104{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 104{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 103{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 103{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 102{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 102{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 101{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 101{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 100{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 100{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 99{, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 99{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 98{, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 98{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 97{, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 97{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 96{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 96{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 95{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 95{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.papermc.paper.util.player.NearbyPlayers$TrackedPlayer.remove()" because "tracker" is null
[18:54:05] [Server thread/WARN]:     at io.papermc.paper.util.player.NearbyPlayers.removePlayer(NearbyPlayers.java:69)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.level.PlayerChunkMap.removePlayerFromDistanceMaps(PlayerChunkMap.java:163)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.level.PlayerChunkMap.a(PlayerChunkMap.java:943)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.level.PlayerChunkMap.b(PlayerChunkMap.java:1069)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.level.ChunkProviderServer.a(ChunkProviderServer.java:781)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.nms.v1_20_R2.util.NMSImpl.removeFromWorld(NMSImpl.java:1301)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.util.NMS.removeFromWorld(NMS.java:708)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.npc.AbstractEntityController.remove(AbstractEntityController.java:44)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.npc.CitizensNPC.despawn(CitizensNPC.java:118)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.npc.CitizensNPCRegistry.despawnNPCs(CitizensNPCRegistry.java:134)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.Citizens.despawnNPCs(Citizens.java:206)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.Citizens.reload(Citizens.java:485)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.commands.AdminCommands.reload(AdminCommands.java:56)
[18:54:05] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104)
[18:54:05] [Server thread/WARN]:     at java.base/java.lang.reflect.Method.invoke(Method.java:577)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.api.command.CommandManager.executeCommand(CommandManager.java:196)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.api.command.CommandManager.execute(CommandManager.java:102)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.api.command.CommandManager.executeSafe(CommandManager.java:237)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.Citizens.onCommand(Citizens.java:348)
[18:54:05] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[18:54:05] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:155)
[18:54:05] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.CraftServer.dispatchCommand(CraftServer.java:989)
[18:54:05] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64)
[18:54:05] [Server thread/WARN]:     at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:265)
[18:54:05] [Server thread/WARN]:     at net.minecraft.commands.CommandDispatcher.performCommand(CommandDispatcher.java:330)
[18:54:05] [Server thread/WARN]:     at net.minecraft.commands.CommandDispatcher.a(CommandDispatcher.java:314)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2207)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.lambda$handleChatCommand$19(PlayerConnection.java:2167)
[18:54:05] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.b(IAsyncTaskHandler.java:59)
[18:54:05] [Server thread/WARN]:     at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[18:54:05] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.d(IAsyncTaskHandler.java:153)
[18:54:05] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(IAsyncTaskHandlerReentrant.java:24)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1324)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:193)
[18:54:05] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.x(IAsyncTaskHandler.java:126)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.bg(MinecraftServer.java:1301)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1294)
[18:54:05] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.c(IAsyncTaskHandler.java:136)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.u_(MinecraftServer.java:1272)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1160)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315)
[18:54:05] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 94{, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 94{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 93{, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 93{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 92{, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 92{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 91{, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 91{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 89{, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 89{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 88{, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 88{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 87{, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 87{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 86{, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 86{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 85{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 85{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 84{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 84{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 83{, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 83{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 82{, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 82{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 81{, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 81{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 80{, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 80{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 79{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 79{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 78{, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 78{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 77{, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 77{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 76{, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 76{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 75{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 75{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 73{, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 73{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 72{, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 72{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 71{, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 71{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 70{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 70{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 68{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 68{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 67{, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 67{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 66{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 66{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 65{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 65{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 64{, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 64{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 63{, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 63{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 62{, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 62{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 61{, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 61{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 60{, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 60{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 58{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 58{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 57{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 57{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 55{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 55{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 52{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 52{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 50{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 50{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 49{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 49{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 38{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 38{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.papermc.paper.util.player.NearbyPlayers$TrackedPlayer.remove()" because "tracker" is null
[18:54:05] [Server thread/WARN]:     at io.papermc.paper.util.player.NearbyPlayers.removePlayer(NearbyPlayers.java:69)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.level.PlayerChunkMap.removePlayerFromDistanceMaps(PlayerChunkMap.java:163)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.level.PlayerChunkMap.a(PlayerChunkMap.java:943)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.level.PlayerChunkMap.b(PlayerChunkMap.java:1069)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.level.ChunkProviderServer.a(ChunkProviderServer.java:781)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.nms.v1_20_R2.util.NMSImpl.removeFromWorld(NMSImpl.java:1301)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.util.NMS.removeFromWorld(NMS.java:708)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.npc.AbstractEntityController.remove(AbstractEntityController.java:44)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.npc.CitizensNPC.despawn(CitizensNPC.java:118)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.npc.CitizensNPCRegistry.despawnNPCs(CitizensNPCRegistry.java:134)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.Citizens.despawnNPCs(Citizens.java:206)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.Citizens.reload(Citizens.java:485)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.commands.AdminCommands.reload(AdminCommands.java:56)
[18:54:05] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104)
[18:54:05] [Server thread/WARN]:     at java.base/java.lang.reflect.Method.invoke(Method.java:577)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.api.command.CommandManager.executeCommand(CommandManager.java:196)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.api.command.CommandManager.execute(CommandManager.java:102)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.api.command.CommandManager.executeSafe(CommandManager.java:237)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.Citizens.onCommand(Citizens.java:348)
[18:54:05] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[18:54:05] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:155)
[18:54:05] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.CraftServer.dispatchCommand(CraftServer.java:989)
[18:54:05] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64)
[18:54:05] [Server thread/WARN]:     at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:265)
[18:54:05] [Server thread/WARN]:     at net.minecraft.commands.CommandDispatcher.performCommand(CommandDispatcher.java:330)
[18:54:05] [Server thread/WARN]:     at net.minecraft.commands.CommandDispatcher.a(CommandDispatcher.java:314)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2207)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.lambda$handleChatCommand$19(PlayerConnection.java:2167)
[18:54:05] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.b(IAsyncTaskHandler.java:59)
[18:54:05] [Server thread/WARN]:     at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[18:54:05] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.d(IAsyncTaskHandler.java:153)
[18:54:05] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(IAsyncTaskHandlerReentrant.java:24)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1324)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:193)
[18:54:05] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.x(IAsyncTaskHandler.java:126)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.bg(MinecraftServer.java:1301)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1294)
[18:54:05] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.c(IAsyncTaskHandler.java:136)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.u_(MinecraftServer.java:1272)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1160)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315)
[18:54:05] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 37{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 37{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 36{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 36{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 31{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 31{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "io.papermc.paper.util.player.NearbyPlayers$TrackedPlayer.remove()" because "tracker" is null
[18:54:05] [Server thread/WARN]:     at io.papermc.paper.util.player.NearbyPlayers.removePlayer(NearbyPlayers.java:69)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.level.PlayerChunkMap.removePlayerFromDistanceMaps(PlayerChunkMap.java:163)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.level.PlayerChunkMap.a(PlayerChunkMap.java:943)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.level.PlayerChunkMap.b(PlayerChunkMap.java:1069)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.level.ChunkProviderServer.a(ChunkProviderServer.java:781)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.nms.v1_20_R2.util.NMSImpl.removeFromWorld(NMSImpl.java:1301)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.util.NMS.removeFromWorld(NMS.java:708)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.npc.AbstractEntityController.remove(AbstractEntityController.java:44)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.npc.CitizensNPC.despawn(CitizensNPC.java:118)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.npc.CitizensNPCRegistry.despawnNPCs(CitizensNPCRegistry.java:134)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.Citizens.despawnNPCs(Citizens.java:206)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.Citizens.reload(Citizens.java:485)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.commands.AdminCommands.reload(AdminCommands.java:56)
[18:54:05] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104)
[18:54:05] [Server thread/WARN]:     at java.base/java.lang.reflect.Method.invoke(Method.java:577)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.api.command.CommandManager.executeCommand(CommandManager.java:196)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.api.command.CommandManager.execute(CommandManager.java:102)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.api.command.CommandManager.executeSafe(CommandManager.java:237)
[18:54:05] [Server thread/WARN]:     at Citizens (1).jar//net.citizensnpcs.Citizens.onCommand(Citizens.java:348)
[18:54:05] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[18:54:05] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:155)
[18:54:05] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.CraftServer.dispatchCommand(CraftServer.java:989)
[18:54:05] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64)
[18:54:05] [Server thread/WARN]:     at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:265)
[18:54:05] [Server thread/WARN]:     at net.minecraft.commands.CommandDispatcher.performCommand(CommandDispatcher.java:330)
[18:54:05] [Server thread/WARN]:     at net.minecraft.commands.CommandDispatcher.a(CommandDispatcher.java:314)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2207)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.lambda$handleChatCommand$19(PlayerConnection.java:2167)
[18:54:05] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.b(IAsyncTaskHandler.java:59)
[18:54:05] [Server thread/WARN]:     at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[18:54:05] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.d(IAsyncTaskHandler.java:153)
[18:54:05] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(IAsyncTaskHandlerReentrant.java:24)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1324)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:193)
[18:54:05] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.x(IAsyncTaskHandler.java:126)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.bg(MinecraftServer.java:1301)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1294)
[18:54:05] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.c(IAsyncTaskHandler.java:136)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.u_(MinecraftServer.java:1272)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1160)
[18:54:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315)
[18:54:05] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 30{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 30{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 14{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 14{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 13{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 13{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 12{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 12{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 11{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 11{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 10{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 10{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 9{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 9{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 1{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 1{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 1{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 1{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 1{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 1{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 1{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 1{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 1{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 1{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 1{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 1{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 1005{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 1005{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 1004{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 1004{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 1{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 1{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 89{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 89{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 88{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 88{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 1{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 1{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 1{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 1{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 1{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 1{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 1{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 1{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 1{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 1{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 1{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 1{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 1{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 1{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 1{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 1{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 1{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 1{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 1{, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 1{, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, null} DespawnReason.RELOAD
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 12{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 0{, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 0{, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 12{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 11{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 0{, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 0{, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 11{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 10{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 0{, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 0{, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 10{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 9{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 0{, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 0{, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 9{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 14{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 0{, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 0{, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 14{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 13{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 0{, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 0{, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 13{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 36{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 1{, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 1{, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 36{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} SpawnReason.RESPAWN
[18:54:05] [Server thread/WARN]: [EntityLookup] Entity uuid already exists: fceead95-e90a-21a5-bff2-b1dacf4c0feb, mapped to EntityHumanNPC['► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄'/611, uuid='fceead95-e90a-21a5-bff2-b1dacf4c0feb', l='ServerLevel[world_spawn]', x=-34.11, y=47.00, z=14.29, cpos=[-3, 0], tl=17012, v=true](► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄ at -34.1104,47.0,14.2852), can't add EntityHumanNPC['► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄'/13323, uuid='fceead95-e90a-21a5-bff2-b1dacf4c0feb', l='ServerLevel[world_spawn]', x=-47.50, y=72.00, z=-111.50, cpos=[-3, -7], tl=0, v=false](► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄ at -47.5,72.0,-111.5)
[18:54:05] [Server thread/INFO]: [Citizens] Retrying spawn of 31{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded true
[18:54:05] [Server thread/INFO]: [Citizens] Stored 31{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} for respawn from NPCNeedsRespawnEvent
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 30{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 1{, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 1{, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 30{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 37{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 1{, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 1{, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 37{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} SpawnReason.RESPAWN
[18:54:05] [Server thread/WARN]: [EntityLookup] Entity uuid already exists: 015be8a4-4224-2f22-b7f5-cf7ae516a7b6, mapped to EntityHumanNPC['► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄'/747, uuid='015be8a4-4224-2f22-b7f5-cf7ae516a7b6', l='ServerLevel[world_spawn]', x=-84.52, y=46.00, z=-49.51, cpos=[-6, -4], tl=17005, v=true](► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄ at -84.5201,46.0,-49.5101), can't add EntityHumanNPC['► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄'/13345, uuid='015be8a4-4224-2f22-b7f5-cf7ae516a7b6', l='ServerLevel[world_spawn]', x=-47.50, y=72.00, z=-111.50, cpos=[-3, -7], tl=0, v=false](► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄ at -47.5,72.0,-111.5)
[18:54:05] [Server thread/INFO]: [Citizens] Retrying spawn of 38{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded true
[18:54:05] [Server thread/INFO]: [Citizens] Stored 38{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} for respawn from NPCNeedsRespawnEvent
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 49{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 1{, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 1{, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 49{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 50{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 1{, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 1{, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 50{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 52{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 1{, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 1{, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 52{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 55{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 1{, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 1{, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 55{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 58{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 0{, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 0{, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 58{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 57{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 0{, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 0{, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 57{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 60{, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 60{, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 61{, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 61{, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 62{, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 62{, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 63{, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 63{, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 64{, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 64{, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 67{, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 67{, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 66{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 1{, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 1{, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 66{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 65{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 1{, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 1{, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 65{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 68{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 0{, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 0{, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 68{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 70{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 1{, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 1{, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 70{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 72{, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 72{, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 71{, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 71{, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 73{, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 73{, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 75{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 0{, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 0{, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 75{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 76{, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 76{, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 78{, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 78{, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 77{, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 77{, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 82{, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 82{, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 81{, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 81{, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 80{, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 80{, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 79{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 1{, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 1{, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 79{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 85{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 1{, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 1{, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 85{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 84{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 0{, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 0{, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 84{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 83{, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 83{, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 89{, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 89{, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 88{, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 88{, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 87{, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 87{, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 86{, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 86{, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 94{, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 94{, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 93{, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 93{, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 92{, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 92{, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 91{, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 91{, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/WARN]: [EntityLookup] Entity uuid already exists: 9e37a0d0-763c-2419-8ff1-e612022e3c5d, mapped to EntityHumanNPC['► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄'/759, uuid='9e37a0d0-763c-2419-8ff1-e612022e3c5d', l='ServerLevel[world_spawn]', x=-88.98, y=60.00, z=-37.15, cpos=[-6, -3], tl=17005, v=true](► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄ at -88.9769,60.0,-37.1513), can't add EntityHumanNPC['► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄'/13563, uuid='9e37a0d0-763c-2419-8ff1-e612022e3c5d', l='ServerLevel[world_spawn]', x=-47.50, y=72.00, z=-111.50, cpos=[-3, -7], tl=0, v=false](► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄ at -47.5,72.0,-111.5)
[18:54:05] [Server thread/INFO]: [Citizens] Retrying spawn of 95{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded true
[18:54:05] [Server thread/INFO]: [Citizens] Stored 95{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} for respawn from NPCNeedsRespawnEvent
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 96{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 0{, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 0{, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 96{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 99{, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 99{, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 98{, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 98{, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 97{, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 97{, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 100{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 0{, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 0{, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 100{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 101{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 1{, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 1{, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 101{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 103{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 1{, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 1{, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 103{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 102{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 1{, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 1{, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 102{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 104{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 1{, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 1{, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 104{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 107{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 1{, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 1{, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 107{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 108{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 1{, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 1{, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 108{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 109{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 0{, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 0{, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 109{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, PLAYER} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 110{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 0{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 1{, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 1{, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 110{► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄, SLIME} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 112{cat, CAT} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 112{cat, CAT} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 111{cat, CAT} due to SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 111{cat, CAT} SpawnReason.RESPAWN
[18:54:05] [Server thread/INFO]: [Citizens] Loading shops from disk...
[18:54:05] [Server thread/INFO]: [Citizens] Loading shops... 0 0
[18:54:05] [Server thread/INFO]: [Citizens] Preventing further respawns of 0{DenizNPCSit, null} due to DespawnReason.REMOVAL
[18:54:05] [Server thread/INFO]: [Citizens] Despawned 0{DenizNPCSit, null} DespawnReason.REMOVAL
[18:54:05] [Server thread/INFO]: [Citizens] (Denizen/SittingTrait) Spawning chair for 89 as id 1
[18:54:05] [Server thread/INFO]: [Citizens] Removing respawns of 1{DenizNPCSit, ARMOR_STAND} due to SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] Spawned 1{DenizNPCSit, ARMOR_STAND} SpawnReason.PLUGIN
[18:54:05] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:05] [Server thread/INFO]: [Citizens] 83{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-78.5,y=45.0,z=60.5,pitch=0.0,yaw=0.0}]
[18:54:05] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:05] [Server thread/INFO]: [Citizens] 83{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-78.5,y=43.0,z=85.5,pitch=0.0,yaw=0.0}]
[18:54:05] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:05] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:05] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:05] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:05] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:05] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:05] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:05] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:05] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:05] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:05] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:05] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:05] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Craft Scheduler Thread - 56 - Citizens/INFO]: [Citizens] Profile lookup for player '► ʀɪɢʜᴛ-ᴄʟɪᴄᴋ ◄' failed: getProfileName.profileNames[0].<list element>: Invalid profile name
[18:54:07] [Craft Scheduler Thread - 56 - Citizens/INFO]: [Citizens] com.mojang.authlib.exceptions.AuthenticationException: getProfileName.profileNames[0].<list element>: Invalid profile name
    at com.mojang.authlib.exceptions.MinecraftClientHttpException.toAuthenticationException(MinecraftClientHttpException.java:66)
    at com.mojang.authlib.yggdrasil.YggdrasilGameProfileRepository.findProfilesByNames(YggdrasilGameProfileRepository.java:96)
    at com.destroystokyo.paper.profile.PaperGameProfileRepository.findProfilesByNames(PaperGameProfileRepository.java:43)
    at Citizens (1).jar//net.citizensnpcs.util.NMS.findProfilesByNames(NMS.java:185)
    at Citizens (1).jar//net.citizensnpcs.npc.profile.ProfileFetchThread.fetchRequests(ProfileFetchThread.java:130)
    at Citizens (1).jar//net.citizensnpcs.npc.profile.ProfileFetchThread.run(ProfileFetchThread.java:196)
    at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftTask.run(CraftTask.java:101)
    at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
    at java.base/java.lang.Thread.run(Thread.java:833)
Caused by: MinecraftClientHttpException[type=HTTP_ERROR, status=400, response=ErrorResponse[path=/profiles/minecraft, error=CONSTRAINT_VIOLATION, errorMessage=getProfileName.profileNames[0].<list element>: Invalid profile name, details=null]]
    at com.mojang.authlib.minecraft.client.MinecraftClient.readInputStream(MinecraftClient.java:100)
    at com.mojang.authlib.minecraft.client.MinecraftClient.post(MinecraftClient.java:76)
    at com.mojang.authlib.yggdrasil.YggdrasilGameProfileRepository.findProfilesByNames(YggdrasilGameProfileRepository.java:59)
    ... 10 more

[18:54:07] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:09] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:09] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:09] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:12] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:12] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:15] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:15] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:15] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:15] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:15] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:15] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:15] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:15] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:18] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:18] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:18] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:18] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:18] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:18] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:18] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:19] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:20] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:21] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:21] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:21] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:21] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:21] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:21] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:21] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:21] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:21] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:21] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:21] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:21] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:21] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:21] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:21] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:21] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:21] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:21] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:21] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:21] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:21] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:21] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:21] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:21] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:21] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:21] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:21] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:21] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:21] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:21] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:21] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:21] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:21] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:22] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:22] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:22] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:22] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:22] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:22] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:22] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:22] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:22] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:22] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:22] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:22] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:22] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:22] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:22] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:22] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:22] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:22] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:22] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:22] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:23] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:23] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:23] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:23] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:23] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:23] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:23] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:23] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:23] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:23] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:23] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:23] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:23] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:23] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:23] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:23] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:23] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:23] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:23] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:23] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:24] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:24] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:24] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:24] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:24] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:24] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:24] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:24] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:24] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:24] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:24] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:24] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:24] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:24] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:24] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:24] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:24] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:24] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:24] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:24] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:24] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:24] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:24] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:24] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:24] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:24] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:24] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:24] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:24] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:24] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:24] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:24] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:25] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:26] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:27] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:28] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:28] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:28] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:28] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:28] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:28] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:28] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:28] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:28] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:28] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:28] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:28] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:28] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:28] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:28] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:28] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:28] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:28] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:28] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:28] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:28] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:28] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:28] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:28] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:28] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:28] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:28] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:28] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:29] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:29] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:29] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:29] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:29] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:29] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:29] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:29] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:29] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:29] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:29] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:29] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:29] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:29] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:29] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:29] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:29] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:29] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:29] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:29] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:30] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:30] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:30] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:30] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:30] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:30] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:30] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:30] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:30] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:30] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:30] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:30] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:30] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:30] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:30] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:30] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:30] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:30] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:30] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:30] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:30] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:30] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:30] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:30] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:30] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:30] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:30] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:30] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:30] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:30] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:30] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:30] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:31] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:32] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:33] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:34] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:35] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:36] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:37] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:37] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:37] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:37] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:37] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:37] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:37] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:37] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:37] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:37] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:37] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:37] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:37] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=42.5,pitch=0.0,yaw=0.0}]
[18:54:37] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:37] [Server thread/INFO]: [Citizens] 60{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-65.5,y=46.0,z=14.5,pitch=0.0,yaw=0.0}]
[18:54:37] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:37] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:37] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:37] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:37] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:37] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:37] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:37] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:37] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:37] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:37] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:37] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:37] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:38] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:38] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:38] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:38] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:38] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:38] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:38] [Server thread/INFO]: [Citizens] 83{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-78.5,y=45.0,z=60.5,pitch=0.0,yaw=0.0}]
[18:54:38] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:38] [Server thread/INFO]: [Citizens] 83{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-78.5,y=43.0,z=85.5,pitch=0.0,yaw=0.0}]
[18:54:38] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:38] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:38] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:38] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:38] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:38] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:38] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:38] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:38] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:38] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:38] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:38] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:38] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:39] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:39] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:39] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:39] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:39] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:39] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:39] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:39] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:39] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:39] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:39] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:39] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:39] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:39] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:39] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:39] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:39] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:39] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:39] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:39] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:40] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:40] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:40] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:40] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:40] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:40] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:40] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:40] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:40] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:40] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:40] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:40] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:40] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:40] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:40] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:40] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:40] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:40] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:40] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:40] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:41] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:41] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:41] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:41] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:41] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:41] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:41] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:41] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:41] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:41] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:41] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:41] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:41] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:41] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:41] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:41] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:41] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:41] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:41] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:41] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:42] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:42] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:42] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:42] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:42] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:42] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:42] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:42] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:42] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:42] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:42] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:42] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:42] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:42] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:42] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:42] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:42] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:42] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:42] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:42] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:43] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:43] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:43] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:43] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:43] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:43] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:43] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:43] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:43] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:43] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:43] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:43] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:43] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:43] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:43] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:43] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:43] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:43] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:43] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:43] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:44] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:44] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:44] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:44] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:44] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:44] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:44] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:44] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:44] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:44] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:44] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:44] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:44] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:44] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:44] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:44] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:44] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:44] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:44] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:44] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:45] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:45] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:45] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:45] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:45] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:45] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:45] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:45] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:45] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:45] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:45] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:45] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:45] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:45] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:45] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:45] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:45] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:45] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:45] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:45] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:46] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:46] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:46] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:46] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:46] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:46] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:46] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:46] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:46] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:46] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:46] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:46] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:46] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:46] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:46] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:46] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:46] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:46] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:46] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:46] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:47] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:47] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:47] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:47] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:47] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:47] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:47] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:47] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:47] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:47] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:47] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:47] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:47] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:47] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:47] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:47] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:47] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:47] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:47] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:47] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:48] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:48] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:48] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:48] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:48] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:48] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:48] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:48] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:48] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:48] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:48] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:48] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:48] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:48] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:48] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:48] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:48] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:48] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:48] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:48] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:49] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:49] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:49] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:49] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:49] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:49] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:49] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:49] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:49] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:49] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:49] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:49] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:49] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:49] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:49] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:49] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:49] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:49] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:49] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:49] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:50] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:50] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:50] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:50] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:50] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:50] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:50] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:50] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:50] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:50] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:50] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:50] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:50] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:50] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:50] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:50] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:50] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:50] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:50] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:50] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:51] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:51] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:51] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:51] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:51] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:51] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:51] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:51] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:51] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:51] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:51] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:51] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:51] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:51] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:51] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:51] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:51] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:51] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:51] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:51] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:52] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:52] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:52] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:52] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:52] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:52] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:52] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:52] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:52] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:52] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:52] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:52] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:52] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:52] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:52] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:52] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:52] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:52] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:52] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:52] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:53] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:53] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:53] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:53] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:53] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:53] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:53] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:53] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:53] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:53] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:53] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:53] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:53] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:53] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:53] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:53] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:53] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:53] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:53] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:53] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:54] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:54] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:54] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:54] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:54] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:54] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:54] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:54] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:54] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:54] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:55] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:55] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:55] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:55] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:55] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:55] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:55] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:55] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:55] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:55] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:55] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:55] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:55] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:55] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:55] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:55] [Server thread/WARN]: Skipping Entity with id 
[18:54:55] [Server thread/WARN]: Skipping Entity with id 
[18:54:55] [Server thread/WARN]: Skipping Entity with id 
[18:54:55] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:55] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:55] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:55] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:55] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:55] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:55] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:55] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:55] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:55] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:55] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:55] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:55] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:55] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:55] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:56] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:56] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:56] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:56] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:56] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:56] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:56] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:56] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:56] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:56] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:56] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:56] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:56] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:56] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:56] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:56] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:56] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:56] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:56] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:56] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:57] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:57] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:57] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:57] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:57] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:57] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:57] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:57] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:57] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:57] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:57] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:57] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:57] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:57] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:57] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:57] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:57] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:57] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:57] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:57] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:58] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:58] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:58] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:58] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:58] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:58] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:58] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:58] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:58] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:58] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:58] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:58] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:58] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:58] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:58] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:58] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:58] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:58] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:58] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:58] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:59] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:59] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:59] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:59] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:59] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:59] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:59] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:59] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:59] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:59] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:59] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:59] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:59] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:59] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:59] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:59] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:59] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:59] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:59] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:54:59] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:00] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:00] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:00] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:00] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:00] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:00] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:00] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:00] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:00] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:00] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:00] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:00] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:00] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:00] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:00] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:00] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:00] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:00] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:00] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:00] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:01] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:01] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:01] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:01] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:01] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:01] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:01] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:01] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:01] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:01] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:01] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:01] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:01] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:01] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:01] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:01] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:01] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:01] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:01] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:01] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:02] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:02] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:02] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:02] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:02] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:02] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:02] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:02] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:02] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:02] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:02] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:02] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:02] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:02] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:02] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:02] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:02] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:02] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:02] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:02] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:03] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:03] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:03] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:03] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:03] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:03] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:03] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:03] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:03] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:03] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:03] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:03] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:03] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:03] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:03] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:03] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:03] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:03] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:03] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:03] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:04] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:04] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:04] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:04] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:04] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:04] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:04] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:04] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:04] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:04] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:04] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:04] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:04] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:04] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:04] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:04] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:04] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:04] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:04] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:04] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:05] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:06] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:07] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:08] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:09] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:10] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:11] [Server thread/INFO]: [Citizens] 83{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-78.5,y=45.0,z=60.5,pitch=0.0,yaw=0.0}]
[18:55:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:11] [Server thread/INFO]: [Citizens] 83{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-78.5,y=43.0,z=85.5,pitch=0.0,yaw=0.0}]
[18:55:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:11] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:12] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:13] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:14] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:15] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:16] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:17] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-53.5,y=43.0,z=80.5,pitch=0.0,yaw=0.0}]
[18:55:18] [Server thread/INFO]: [Citizens] 81{, PLAYER} navigation ended, stuck MCNavigationStrategy [target=Location{world=CraftWorld{name=world_spawn},x=-26.5,y=41.0,z=80.5,pitch=0.0,yaw=0.0}]