Paste #123867: citizens

Date: 2024/06/18 09:46:44 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


[12:59:20] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[12:59:22] [ServerMain/INFO]: Loaded 1175 recipes
[12:59:22] [ServerMain/INFO]: Loaded 1276 advancements
[12:59:22] [Server thread/INFO]: Starting minecraft server version 1.20.6
[12:59:22] [Server thread/INFO]: Loading properties
[12:59:22] [Server thread/INFO]: This server is running Paper version 1.20.6-147-ver/1.20.6@e41d44f (2024-06-17T19:24:35Z) (Implementing API version 1.20.6-R0.1-SNAPSHOT)
[12:59:23] [Server thread/INFO]: Server Ping Player Sample Count: 12
[12:59:23] [Server thread/INFO]: Using 4 threads for Netty based IO
[12:59:23] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
    For more information please visit: https://github.com/PaperMC/Paper/issues/8948
[12:59:23] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 5 worker threads, and gen parallelism of 5 threads
[12:59:24] [Server thread/INFO]: Default game type: SURVIVAL
[12:59:24] [Server thread/INFO]: Generating keypair
[12:59:24] [Server thread/INFO]: Starting Minecraft server on *:22301
[12:59:24] [Server thread/INFO]: Using default channel type
[12:59:24] [Server thread/INFO]: Paper: Using Java compression from Velocity.
[12:59:24] [Server thread/INFO]: Paper: Using Java cipher from Velocity.
[12:59:25] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loading 2 libraries... please wait
[12:59:25] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\com\zaxxer\HikariCP\5.0.1\HikariCP-5.0.1.jar
[12:59:25] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\org\slf4j\slf4j-api\2.0.0-alpha1\slf4j-api-2.0.0-alpha1.jar
[12:59:25] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\it\unimi\dsi\fastutil-core\8.5.13\fastutil-core-8.5.13.jar
[12:59:25] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loading 1 libraries... please wait
[12:59:25] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\org\openjdk\nashorn\nashorn-core\15.3\nashorn-core-15.3.jar
[12:59:25] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\org\ow2\asm\asm\7.3.1\asm-7.3.1.jar
[12:59:25] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\org\ow2\asm\asm-commons\7.3.1\asm-commons-7.3.1.jar
[12:59:25] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\org\ow2\asm\asm-analysis\7.3.1\asm-analysis-7.3.1.jar
[12:59:25] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\org\ow2\asm\asm-tree\7.3.1\asm-tree-7.3.1.jar
[12:59:25] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\org\ow2\asm\asm-util\7.3.1\asm-util-7.3.1.jar
[12:59:25] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[12:59:31] [Server thread/WARN]: Legacy plugin UnknownCommand v1.0-SNAPSHOT does not specify an api-version.
[12:59:31] [Server thread/WARN]: Legacy plugin SpawnPlugin v1.0.0 does not specify an api-version.
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loading 4 libraries... please wait
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\com\zaxxer\HikariCP\5.1.0\HikariCP-5.1.0.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\com\github\ben-manes\caffeine\caffeine\3.1.8\caffeine-3.1.8.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\org\checkerframework\checker-qual\3.37.0\checker-qual-3.37.0.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\com\google\errorprone\error_prone_annotations\2.21.1\error_prone_annotations-2.21.1.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\it\unimi\dsi\fastutil\8.5.12\fastutil-8.5.12.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\org\slf4j\slf4j-api\2.0.13\slf4j-api-2.0.13.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loading 6 libraries... please wait
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\net\kyori\adventure-api\4.14.0\adventure-api-4.14.0.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\net\kyori\adventure-key\4.14.0\adventure-key-4.14.0.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\org\jetbrains\annotations\24.0.1\annotations-24.0.1.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\net\kyori\adventure-platform-bukkit\4.3.1\adventure-platform-bukkit-4.3.1.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\net\kyori\adventure-platform-api\4.3.1\adventure-platform-api-4.3.1.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\net\kyori\adventure-text-serializer-bungeecord\4.3.1\adventure-text-serializer-bungeecord-4.3.1.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\net\kyori\adventure-nbt\4.13.1\adventure-nbt-4.13.1.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\net\kyori\adventure-text-serializer-gson-legacy-impl\4.13.1\adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\net\kyori\adventure-platform-facet\4.3.1\adventure-platform-facet-4.3.1.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\net\kyori\adventure-platform-viaversion\4.3.1\adventure-platform-viaversion-4.3.1.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\net\kyori\adventure-text-minimessage\4.14.0\adventure-text-minimessage-4.14.0.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\net\kyori\adventure-text-serializer-legacy\4.14.0\adventure-text-serializer-legacy-4.14.0.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\net\kyori\adventure-text-serializer-gson\4.14.0\adventure-text-serializer-gson-4.14.0.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\net\kyori\adventure-text-serializer-json\4.14.0\adventure-text-serializer-json-4.14.0.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\com\google\code\gson\gson\2.8.0\gson-2.8.0.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [PlotBorders] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\net\kyori\adventure-text-serializer-plain\4.14.0\adventure-text-serializer-plain-4.14.0.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [MobsToEggs] Loading 1 libraries... please wait
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [MobsToEggs] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\org\jetbrains\kotlin\kotlin-stdlib\1.9.22\kotlin-stdlib-1.9.22.jar
[12:59:31] [Server thread/INFO]: [SpigotLibraryLoader] [MobsToEggs] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\org\jetbrains\annotations\13.0\annotations-13.0.jar
[12:59:32] [Server thread/WARN]: Legacy plugin HideJoinLeaveMessages v0.1 does not specify an api-version.
[12:59:32] [Server thread/WARN]: Legacy plugin Head v1.0 does not specify an api-version.
[12:59:32] [Server thread/WARN]: Legacy plugin ClearLag v1.0 does not specify an api-version.
[12:59:32] [Server thread/INFO]: [SpigotLibraryLoader] [BreweryX] Loading 1 libraries... please wait
[12:59:32] [Server thread/INFO]: [SpigotLibraryLoader] [BreweryX] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\org\jetbrains\kotlin\kotlin-stdlib-jdk8\1.9.10\kotlin-stdlib-jdk8-1.9.10.jar
[12:59:32] [Server thread/INFO]: [SpigotLibraryLoader] [BreweryX] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\org\jetbrains\kotlin\kotlin-stdlib\1.9.10\kotlin-stdlib-1.9.10.jar
[12:59:32] [Server thread/INFO]: [SpigotLibraryLoader] [BreweryX] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\org\jetbrains\kotlin\kotlin-stdlib-common\1.9.10\kotlin-stdlib-common-1.9.10.jar
[12:59:32] [Server thread/INFO]: [SpigotLibraryLoader] [BreweryX] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\org\jetbrains\annotations\13.0\annotations-13.0.jar
[12:59:32] [Server thread/INFO]: [SpigotLibraryLoader] [BreweryX] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\org\jetbrains\kotlin\kotlin-stdlib-jdk7\1.9.10\kotlin-stdlib-jdk7-1.9.10.jar
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loading 1 libraries... please wait
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\io\netty\netty-all\4.1.82.Final\netty-all-4.1.82.Final.jar
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\io\netty\netty-buffer\4.1.82.Final\netty-buffer-4.1.82.Final.jar
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\io\netty\netty-codec\4.1.82.Final\netty-codec-4.1.82.Final.jar
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\io\netty\netty-codec-dns\4.1.82.Final\netty-codec-dns-4.1.82.Final.jar
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\io\netty\netty-codec-haproxy\4.1.82.Final\netty-codec-haproxy-4.1.82.Final.jar
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\io\netty\netty-codec-http\4.1.82.Final\netty-codec-http-4.1.82.Final.jar
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\io\netty\netty-codec-http2\4.1.82.Final\netty-codec-http2-4.1.82.Final.jar
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\io\netty\netty-codec-memcache\4.1.82.Final\netty-codec-memcache-4.1.82.Final.jar
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\io\netty\netty-codec-mqtt\4.1.82.Final\netty-codec-mqtt-4.1.82.Final.jar
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\io\netty\netty-codec-redis\4.1.82.Final\netty-codec-redis-4.1.82.Final.jar
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\io\netty\netty-codec-smtp\4.1.82.Final\netty-codec-smtp-4.1.82.Final.jar
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\io\netty\netty-codec-socks\4.1.82.Final\netty-codec-socks-4.1.82.Final.jar
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\io\netty\netty-codec-stomp\4.1.82.Final\netty-codec-stomp-4.1.82.Final.jar
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\io\netty\netty-codec-xml\4.1.82.Final\netty-codec-xml-4.1.82.Final.jar
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\io\netty\netty-common\4.1.82.Final\netty-common-4.1.82.Final.jar
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\io\netty\netty-handler\4.1.82.Final\netty-handler-4.1.82.Final.jar
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\io\netty\netty-transport-native-unix-common\4.1.82.Final\netty-transport-native-unix-common-4.1.82.Final.jar
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\io\netty\netty-handler-proxy\4.1.82.Final\netty-handler-proxy-4.1.82.Final.jar
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\io\netty\netty-resolver\4.1.82.Final\netty-resolver-4.1.82.Final.jar
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\io\netty\netty-resolver-dns\4.1.82.Final\netty-resolver-dns-4.1.82.Final.jar
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\io\netty\netty-transport\4.1.82.Final\netty-transport-4.1.82.Final.jar
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\io\netty\netty-transport-rxtx\4.1.82.Final\netty-transport-rxtx-4.1.82.Final.jar
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\io\netty\netty-transport-sctp\4.1.82.Final\netty-transport-sctp-4.1.82.Final.jar
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\io\netty\netty-transport-udt\4.1.82.Final\netty-transport-udt-4.1.82.Final.jar
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\io\netty\netty-transport-classes-epoll\4.1.82.Final\netty-transport-classes-epoll-4.1.82.Final.jar
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\io\netty\netty-transport-classes-kqueue\4.1.82.Final\netty-transport-classes-kqueue-4.1.82.Final.jar
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\io\netty\netty-resolver-dns-classes-macos\4.1.82.Final\netty-resolver-dns-classes-macos-4.1.82.Final.jar
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\io\netty\netty-transport-native-epoll\4.1.82.Final\netty-transport-native-epoll-4.1.82.Final-linux-x86_64.jar
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\io\netty\netty-transport-native-epoll\4.1.82.Final\netty-transport-native-epoll-4.1.82.Final-linux-aarch_64.jar
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\io\netty\netty-transport-native-kqueue\4.1.82.Final\netty-transport-native-kqueue-4.1.82.Final-osx-x86_64.jar
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\io\netty\netty-transport-native-kqueue\4.1.82.Final\netty-transport-native-kqueue-4.1.82.Final-osx-aarch_64.jar
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\io\netty\netty-resolver-dns-native-macos\4.1.82.Final\netty-resolver-dns-native-macos-4.1.82.Final-osx-x86_64.jar
[12:59:33] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSeasons] Loaded library C:\Users\Dennis\Desktop\Minecraft Server\citybuild\libraries\io\netty\netty-resolver-dns-native-macos\4.1.82.Final\netty-resolver-dns-native-macos-4.1.82.Final-osx-aarch_64.jar
[12:59:33] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.0.0
[12:59:33] [Server thread/INFO]: [ViaVersion] ViaVersion 5.0.0 is now loaded. Registering protocol transformers and injecting...
[12:59:33] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[12:59:33] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[12:59:34] [Server thread/INFO]: [ViaBackwards] Loading translations...
[12:59:34] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[12:59:34] [Server thread/INFO]: [FancyPerks] Loading server plugin FancyPerks v1.1.1
[12:59:34] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.128
[12:59:34] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[12:59:34] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[12:59:34] [Server thread/INFO]: [WorldEdit] Loading server plugin WorldEdit v7.3.2+6779-3aca580
[12:59:35] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@4c262285]
[12:59:35] [Server thread/INFO]: [BroadcastPlus] Loading server plugin BroadcastPlus v2.9.3
[12:59:35] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.10+d9424b1
[12:59:35] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[12:59:35] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0-dev+91-e7a4167
[12:59:35] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.8.6
[12:59:35] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.27.0
[12:59:35] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.2.1-SNAPSHOT-689
[12:59:35] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.20.6) has not yet been tested! Proceed with caution.
[12:59:37] [Server thread/INFO]: [SimpleClans] Loading server plugin SimpleClans v2.19.3-SNAPSHOT-c9df6ac
[12:59:37] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.34-SNAPSHOT (build 3422)
[12:59:37] [Server thread/INFO]: [PlotSquared] Loading server plugin PlotSquared v7.3.8-Premium
[12:59:37] [Server thread/INFO]: [floodgate] Loading server plugin floodgate v2.2.3-SNAPSHOT (b109-49bd564)
[12:59:37] [Thread-9/WARN]: [NBTAPI] [NBTAPI] The NBT-API in 'NBTAPI' seems to be outdated!
[12:59:37] [Thread-9/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.12.4' Newest Version: 2.13.0'
[12:59:37] [Thread-9/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[12:59:37] [Server thread/INFO]: [floodgate] Floodgate wurde in 583 ms gestartet
[12:59:37] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.8
[12:59:37] [Server thread/INFO]: [Quests] Loading server plugin Quests v5.0.3-b474
[12:59:37] [Server thread/INFO]: [PlayerWarps] Loading server plugin PlayerWarps v7.5.0-pre27
[12:59:38] [Server thread/INFO]: [QuickShop-Hikari] Loading server plugin QuickShop-Hikari v6.2.0.4
[12:59:38] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Execute the initialization sequence
[12:59:38] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Bootloader preparing for startup, please wait...
[12:59:38] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Initializing libraries...
[12:59:39] [Server thread/INFO]: [QuickShop-Hikari] Maven repository mirror test result:
[12:59:39] [Server thread/INFO]: [QuickShop-Hikari] [US] CENTRAL: 148ms
[12:59:39] [Server thread/INFO]: [QuickShop-Hikari] [US] APACHE: 148ms
[12:59:39] [Server thread/INFO]: [QuickShop-Hikari] [CN] TENCENT: 407ms
[12:59:39] [Server thread/INFO]: [QuickShop-Hikari] [CN] HUAWEI: 815ms
[12:59:39] [Server thread/INFO]: [QuickShop-Hikari] [CN] ALIYUN: 1770ms
[12:59:39] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading 13 libraries (0 skipped libraries)...
[12:59:39] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library org.apache.commons:commons-lang3:3.14.0 [1/13]
[12:59:39] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
[12:59:39] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: Defaulting to no-operation (NOP) logger implementation
[12:59:39] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
[12:59:39] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library org.apache.commons:commons-compress:1.25.0 [2/13]
[12:59:39] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.google.code.gson:gson:2.10.1 [3/13]
[12:59:39] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.google.guava:guava:33.1.0-jre [4/13]
[12:59:40] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.rollbar:rollbar-java:1.9.0 [5/13]
[12:59:40] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library cc.carm.lib:easysql-hikaricp:0.4.7 [6/13]
[12:59:40] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.h2database:h2:2.1.214 [7/13]
[12:59:40] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.konghq:unirest-java:3.14.5 [8/13]
[12:59:40] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library net.sourceforge.csvjdbc:csvjdbc:1.0.42 [9/13]
[12:59:40] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library org.dom4j:dom4j:2.1.4 [10/13]
[12:59:40] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.vdurmont:semver4j:3.1.0 [11/13]
[12:59:40] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.ghostchu.crowdin:crowdinota:1.0.3 [12/13]
[12:59:40] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.github.stefvanschie.inventoryframework:IF:0.10.13 [13/13]
[12:59:40] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Initialing Unirest...
[12:59:40] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Initializing platform...
[12:59:40] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Platform detected: Paper
[12:59:40] [Server thread/INFO]: [QuickShop-Hikari] Slf4jLogger initialized
[12:59:40] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Platform initialized: com.ghostchu.quickshop.platform.paper.PaperPlatform
[12:59:40] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Boot QuickShop instance...
[12:59:40] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Creating QuickShop instance...
[12:59:40] [Server thread/INFO]: [QuickShop-Hikari] Registering Bukkit Service: com.ghostchu.quickshop.api.QuickShopProvider
[12:59:40] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari - Early boot step - Booting up
[12:59:40] [Server thread/INFO]: [QuickShop-Hikari] Self testing...
[12:59:40] [Server thread/INFO]: [QuickShop-Hikari] Reading the configuration...
[12:59:40] [Server thread/INFO]: [QuickShop-Hikari] [ConfigUpdater] Saving configuration changes...
[12:59:40] [Server thread/INFO]: [QuickShop-Hikari] Setting up privacy controller...
[12:59:40] [Server thread/INFO]: [QuickShop-Hikari] Setting up QuickShop registry....
[12:59:40] [Server thread/INFO]: [QuickShop-Hikari] Setting up metrics manager...
[12:59:40] [Server thread/INFO]: [QuickShop-Hikari] Loading player name and unique id mapping...
[12:59:40] [Server thread/INFO]: [QuickShop-Hikari] Loading translations (This may take a while)...
[12:59:40] [Server thread/INFO]: [QuickShop-Hikari] Please wait us fetch the translation updates from Crowdin OTA service...
[12:59:40] [Server thread/INFO]: [CrowdinOTA] Downloading Crowdin distribution manifest from remote server...
[12:59:40] [Server thread/INFO]: [OTAFileInstance-0] Downloading translations for 0 locales...
[12:59:40] [Server thread/INFO]: [OTAFileInstance-1] Downloading translations for 0 locales...
[12:59:40] [Server thread/INFO]: [QuickShop-Hikari] Loading up translations from Crowdin OTA, this may need a while...
[12:59:41] [Server thread/INFO]: [QuickShop-Hikari] Loading up translations from Crowdin OTA, this may need a while...
[12:59:41] [Server thread/INFO]: [QuickShop-Hikari] Register InventoryWrapper...
[12:59:41] [Server thread/INFO]: [QuickShop-Hikari] Initializing NexusManager...
[12:59:41] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari - Early boot step - Complete
[12:59:41] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Complete (3571ms). Waiting for enable...
[12:59:41] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.1.5
[12:59:41] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.0.0
[12:59:41] [Server thread/INFO]: [EpicFurnaces] Loading server plugin EpicFurnaces v5.1.3
[12:59:41] [Server thread/INFO]: [com.craftaro.epicfurnaces.core.CoreLogger] [EpicFurnaces] [CraftaroCore] Loading dependency org.apache.commons:commons-text:1.12.0 from https://repo1.maven.org/maven2
[12:59:41] [Server thread/INFO]: [com.craftaro.epicfurnaces.core.CoreLogger] [EpicFurnaces] [CraftaroCore] Loaded dependency 'commons-text-1.12.0' successfully.
[12:59:41] [Server thread/INFO]: [com.craftaro.epicfurnaces.core.CoreLogger] [EpicFurnaces] [CraftaroCore] ----------------------------
[12:59:41] [Server thread/INFO]: [com.craftaro.epicfurnaces.core.CoreLogger] [EpicFurnaces] [CraftaroCore] Loading dependency com.zaxxer:HikariCP:4.0.3 from https://repo1.maven.org/maven2
[12:59:41] [Server thread/INFO]: [com.craftaro.epicfurnaces.core.CoreLogger] [EpicFurnaces] [CraftaroCore] Loaded dependency 'HikariCP-4.0.3' successfully.
[12:59:41] [Server thread/INFO]: [com.craftaro.epicfurnaces.core.CoreLogger] [EpicFurnaces] [CraftaroCore] ----------------------------
[12:59:41] [Server thread/INFO]: [com.craftaro.epicfurnaces.core.CoreLogger] [EpicFurnaces] [CraftaroCore] Loading dependency org.slf4j:slf4j-api:2.0.11 from https://repo1.maven.org/maven2
[12:59:41] [Server thread/INFO]: [com.craftaro.epicfurnaces.core.CoreLogger] [EpicFurnaces] [CraftaroCore] Loaded dependency 'slf4j-api-2.0.11' successfully.
[12:59:41] [Server thread/INFO]: [com.craftaro.epicfurnaces.core.CoreLogger] [EpicFurnaces] [CraftaroCore] ----------------------------
[12:59:41] [Server thread/INFO]: [com.craftaro.epicfurnaces.core.CoreLogger] [EpicFurnaces] [CraftaroCore] Loading dependency org.mariadb.jdbc:mariadb-java-client:3.2.0 from https://repo1.maven.org/maven2
[12:59:41] [Server thread/INFO]: [com.craftaro.epicfurnaces.core.CoreLogger] [EpicFurnaces] [CraftaroCore] Loaded dependency 'mariadb-java-client-3.2.0' successfully.
[12:59:41] [Server thread/INFO]: [com.craftaro.epicfurnaces.core.CoreLogger] [EpicFurnaces] [CraftaroCore] ----------------------------
[12:59:41] [Server thread/INFO]: [com.craftaro.epicfurnaces.core.CoreLogger] [EpicFurnaces] [CraftaroCore] Loading dependency com.github.cryptomorin:XSeries:10.0.0 from https://repo1.maven.org/maven2
[12:59:41] [Server thread/INFO]: [com.craftaro.epicfurnaces.core.CoreLogger] [EpicFurnaces] [CraftaroCore] Loaded dependency 'XSeries-10.0.0' successfully.
[12:59:41] [Server thread/INFO]: [com.craftaro.epicfurnaces.core.CoreLogger] [EpicFurnaces] [CraftaroCore] ----------------------------
[12:59:41] [Server thread/INFO]: [com.craftaro.epicfurnaces.core.CoreLogger] [EpicFurnaces] [CraftaroCore] Loading dependency com.h2database:h2:1.4.200 from https://repo1.maven.org/maven2
[12:59:41] [Server thread/INFO]: [com.craftaro.epicfurnaces.core.CoreLogger] [EpicFurnaces] [CraftaroCore] Loaded dependency 'h2-1.4.200' successfully.
[12:59:41] [Server thread/INFO]: [com.craftaro.epicfurnaces.core.CoreLogger] [EpicFurnaces] [CraftaroCore] ----------------------------
[12:59:41] [Server thread/INFO]: [com.craftaro.epicfurnaces.core.CoreLogger] [EpicFurnaces] [CraftaroCore] Loading dependency org.reactivestreams:reactive-streams:1.0.2 from https://repo1.maven.org/maven2
[12:59:41] [Server thread/INFO]: [com.craftaro.epicfurnaces.core.CoreLogger] [EpicFurnaces] [CraftaroCore] Loaded dependency 'reactive-streams-1.0.2' successfully.
[12:59:41] [Server thread/INFO]: [com.craftaro.epicfurnaces.core.CoreLogger] [EpicFurnaces] [CraftaroCore] ----------------------------
[12:59:41] [Server thread/INFO]: [com.craftaro.epicfurnaces.core.CoreLogger] [EpicFurnaces] [CraftaroCore] Loading dependency org.apache.commons:commons-lang3:3.14.0 from https://repo1.maven.org/maven2
[12:59:41] [Server thread/INFO]: [com.craftaro.epicfurnaces.core.CoreLogger] [EpicFurnaces] [CraftaroCore] Loaded dependency 'commons-lang3-3.14.0' successfully.
[12:59:41] [Server thread/INFO]: [com.craftaro.epicfurnaces.core.CoreLogger] [EpicFurnaces] [CraftaroCore] ----------------------------
[12:59:41] [Server thread/INFO]: [com.craftaro.epicfurnaces.core.CoreLogger] [EpicFurnaces] [CraftaroCore] Loading dependency org.jooq:jooq:3.14.16 from https://repo1.maven.org/maven2
[12:59:41] [Server thread/INFO]: [com.craftaro.epicfurnaces.core.CoreLogger] [EpicFurnaces] [CraftaroCore] Loaded dependency 'jooq-3.14.16' successfully.
[12:59:41] [Server thread/INFO]: [com.craftaro.epicfurnaces.core.CoreLogger] [EpicFurnaces] [CraftaroCore] ----------------------------
[12:59:41] [Server thread/INFO]: [nightcore] Loading server plugin nightcore v2.6.1
[12:59:41] [Server thread/INFO]: [WorldGuardTabCompletion] Loading server plugin WorldGuardTabCompletion v1.0
[12:59:41] [Server thread/INFO]: [WirelessChest] Loading server plugin WirelessChest v1.0
[12:59:41] [Server thread/INFO]: [VotingPlugin] Loading server plugin VotingPlugin v6.16.2
[12:59:41] [Server thread/INFO]: [VoteBan] Loading server plugin VoteBan v1.7
[12:59:41] [Server thread/INFO]: [UnknownCommand] Loading server plugin UnknownCommand v1.0-SNAPSHOT
[12:59:41] [Server thread/INFO]: [UltimateShop] Loading server plugin UltimateShop v2.3.1
[12:59:41] [Server thread/INFO]: [SpawnPlugin] Loading server plugin SpawnPlugin v1.0.0
[12:59:41] [Server thread/INFO]: [Skulls] Loading server plugin Skulls v3.13.0
[12:59:41] [Server thread/INFO]: [SimpleRTP] Loading server plugin SimpleRTP v4.3
[12:59:41] [Server thread/INFO]: [SimpleClans-PlotSquared6] Loading server plugin SimpleClans-PlotSquared6 v1.0.3
[12:59:41] [Server thread/INFO]: [SignSystem] Loading server plugin SignSystem v1.0-SNAPSHOT
[12:59:41] [Server thread/INFO]: [QuestsGUI] Loading server plugin QuestsGUI v1.6
[12:59:41] [Server thread/INFO]: [QSFindItemAddOn] Loading server plugin QSFindItemAddOn v2.0.6.1-RELEASE
[12:59:41] [Server thread/INFO]: [QSFindItemAddOn] [MAIN] A Shop Search AddOn for QuickShop developed by myzticbean
[12:59:41] [Server thread/INFO]: [PyroLib] Loading server plugin PyroLib v1.4.2
[12:59:41] [Server thread/INFO]: [PvPManager] Loading server plugin PvPManager v3.32.24
[12:59:41] [Server thread/INFO]: [PlotBorders] Loading server plugin PlotBorders v1.12
[12:59:41] [Server thread/INFO]: [PlotAdditions] Loading server plugin PlotAdditions v1.1
[12:59:41] [Server thread/INFO]: [PlayerPortals] Loading server plugin PlayerPortals v1.5
[12:59:41] [Server thread/INFO]: [PassiveJobs] Loading server plugin PassiveJobs v1.0
[12:59:41] [Server thread/INFO]: [OtherAnimalTeleport] Loading server plugin OtherAnimalTeleport v2.3-b86
[12:59:41] [Server thread/INFO]: [OnlineTime] Loading server plugin OnlineTime v2.0.4
[12:59:41] [Server thread/INFO]: [MW] Loading server plugin MultiWorld v0.2
[12:59:41] [Server thread/INFO]: [ModularPVP] Loading server plugin ModularPVP v1.0.2
[12:59:41] [Server thread/INFO]: [MobsToEggs] Loading server plugin MobsToEggs v1.7.9
[12:59:41] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.54
[12:59:41] [Server thread/INFO]: [LiteGuilds] Loading server plugin LiteGuilds v1.4.0
[12:59:41] [Server thread/INFO]: [LiteFish] Loading server plugin LiteFish v3.9.15
[12:59:41] [Server thread/INFO]: [LiteDungeon] Loading server plugin LiteDungeon v2.3.8
[12:59:41] [Server thread/INFO]: [LevelledMobs] Loading server plugin LevelledMobs v4.0.3.1 b19
[12:59:41] [Server thread/INFO]: [LevelledMobs] Loading commands
[12:59:41] [Server thread/INFO]: [InvSee++] Loading server plugin InvSeePlusPlus v0.27.0
[12:59:41] [Server thread/INFO]: [InventoryRollbackPlus] Loading server plugin InventoryRollbackPlus v1.6.16
[12:59:41] [Server thread/INFO]: [Images] Loading server plugin Images v2.3.3
[12:59:41] [Server thread/INFO]: [HideJoinLeaveMessages] Loading server plugin HideJoinLeaveMessages v0.1
[12:59:41] [Server thread/INFO]: [Head] Loading server plugin Head v1.0
[12:59:41] [Server thread/INFO]: [GSit] Loading server plugin GSit v1.9.1
[12:59:41] [Server thread/INFO]: [Gaea] Loading server plugin Gaea v1.15.0
[12:59:41] [Server thread/INFO]: [FurnaceHoloFix] Loading server plugin FurnaceHoloFix v1.0
[12:59:41] [Server thread/INFO]: [FancyHolograms] Loading server plugin FancyHolograms v2.1.0
[12:59:41] [Server thread/INFO]: [ExtraHealth] Loading server plugin ExtraHealth v1.0
[12:59:41] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v5.2.3
[12:59:41] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.0-dev+91-e7a4167
[12:59:41] [Server thread/INFO]: [EssentialsProtect] Loading server plugin EssentialsProtect v2.21.0-dev+91-e7a4167
[12:59:41] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.21.0-dev+91-e7a4167
[12:59:41] [Server thread/INFO]: [EntityClearer] Loading server plugin EntityClearer v3.4.0
[12:59:41] [Server thread/INFO]: [EnchantmentNexus] Loading server plugin EnchantmentNexus v1.2.3
[12:59:41] [Server thread/INFO]: [Elevators] Loading server plugin Elevators v4.0.16
[12:59:41] [Server thread/INFO]: [EforServerAdditions] Loading server plugin EforServerAdditions v1.0
[12:59:41] [Server thread/INFO]: [Economy] Loading server plugin Economy v2.3
[12:59:41] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.0-Release
[12:59:41] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[12:59:41] [Server thread/INFO]: [CustomDecentHolograms] Loading server plugin CustomDecentHolograms v1.4
[12:59:41] [Server thread/INFO]: [CooldownCommands] Loading server plugin CooldownCommands v1.3
[12:59:41] [Server thread/INFO]: [ClearLag] Loading server plugin ClearLag v1.0
[12:59:41] [Server thread/INFO]: [ChestSort] Loading server plugin ChestSort v14.0.6
[12:59:41] [Server thread/INFO]: [ChatGames-Premium] Loading server plugin ChatGames-Premium v1.6.8
[12:59:41] [Server thread/INFO]: [BuycraftX] Loading server plugin BuycraftX v12.0.8
[12:59:41] [Server thread/INFO]: [BungeeGuard] Loading server plugin BungeeGuard v1.3-SNAPSHOT
[12:59:41] [Server thread/INFO]: [BreweryX] Loading server plugin BreweryX v3.2.0
[12:59:41] [Server thread/INFO]: [AxSmithing] Loading server plugin AxSmithing v1.7
[12:59:41] [Server thread/INFO]: [AuctionHouse] Loading server plugin AuctionHouse v2.113.0
[12:59:41] [Server thread/INFO]: [ArmorStandEditor] Loading server plugin ArmorStandEditor v1.5.5
[12:59:41] [Server thread/INFO]: [ArmorStand-Limiter] Loading server plugin ArmorStand-Limiter v1.7
[12:59:41] [Server thread/INFO]: [AntiRedstoneClock-Reloaded] Loading server plugin AntiRedstoneClock-Reloaded v2.0.0
[12:59:41] [Server thread/INFO]: [AntiRedstoneClock-Reloaded] WorldGuard 7 found
[12:59:41] [Server thread/INFO]: [AntiRedstoneClock-Reloaded] Flag antiredstoneclock registered
[12:59:41] [Server thread/INFO]: [AdvancedSeasons] Loading server plugin AdvancedSeasons v1.3.3
[12:59:41] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[12:59:41] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.128
[12:59:42] [Server thread/INFO]:         __    
[12:59:42] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.128
[12:59:42] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[12:59:42] [Server thread/INFO]: 
[12:59:42] [Server thread/INFO]: [LuckPerms] Loading configuration...
[12:59:42] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MYSQL]
[12:59:42] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[12:59:42] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[12:59:43] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[12:59:43] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[12:59:43] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[12:59:44] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 2158ms)
[12:59:44] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[12:59:44] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[12:59:44] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[12:59:44] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[12:59:44] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[12:59:44] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.3.2+6779-3aca580
[12:59:44] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[12:59:44] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[12:59:44] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_20_R4.PaperweightAdapter as the Bukkit adapter
[12:59:45] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.2.1-SNAPSHOT-689
[12:59:45] [Server thread/INFO]: [PlotSquared] Enabling PlotSquared v7.3.8-Premium
[12:59:45] [Server thread/INFO]: [PlotSquared/ClassLoaderCaptionProvider] No resource for locale 'de' found in the plugin file.Please ensure you have placed the latest version of the file messages_de.json in the 'lang' folder.You may be able to find completed translations at https://intellectualsites.crowdin.com/plotsquared
[12:59:45] [Server thread/INFO]: [PlotSquared/PlotSquared] Loaded caption map for namespace 'plotsquared': com.plotsquared.core.configuration.caption.LocalizedCaptionMap
[12:59:46] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared version licensed to Spigot user 1129338
[12:59:46] [Server thread/INFO]: [PlotSquared/BukkitPlatform] https://www.spigotmc.org/resources/77506
[12:59:46] [Server thread/INFO]: [PlotSquared/BukkitPlatform] Download ID: -1129226614
[12:59:46] [Server thread/INFO]: [PlotSquared/BukkitPlatform] Thanks for supporting us :)
[12:59:46] [Server thread/INFO]: [PlotSquared/PlotSquared] Connection to database established. Type: SQLite
[12:59:46] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared hooked into WorldEdit
[12:59:46] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) Using LuckPerms as a complementary UUID service
[12:59:46] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) Using EssentialsX as a complementary UUID service
[12:59:46] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) 73 UUIDs will be cached
[12:59:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: plotsquared [3]
[12:59:46] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared hooked into PlaceholderAPI
[12:59:46] [Server thread/INFO]: [nightcore] Enabling nightcore v2.6.1
[12:59:46] [Server thread/WARN]: [nightcore] Locale file for 'de' language not found. Using default 'en' locale.
[12:59:46] [Server thread/INFO]: [nightcore] Found permissions provider: LuckPerms
[12:59:46] [Server thread/INFO]: [nightcore] Found economy provider: EssentialsX Economy
[12:59:46] [Server thread/INFO]: [nightcore] Found chat provider: LuckPerms
[12:59:46] [Server thread/INFO]: [nightcore] Server Version: 1.20.6 ✔
[12:59:46] [Server thread/INFO]: [nightcore] Entity Id Counter: OK ✔
[12:59:46] [Server thread/INFO]: [nightcore] Item NBT Compress: OK ✔
[12:59:46] [Server thread/INFO]: [nightcore] Plugin loaded in 146 ms!
[12:59:46] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.54
[12:59:46] [Server thread/INFO]: [Gaea] Enabling Gaea v1.15.0
[12:59:46] [Server thread/INFO]: [Economy] Enabling Economy v2.3
[12:59:46] [Server thread/INFO]: [Economy] Vault found, Economy has been registered.
[12:59:46] [Server thread/WARN]: [Economy] Successfully connected to mysql database.
[12:59:46] [Server thread/INFO]: [BungeeGuard] Enabling BungeeGuard v1.3-SNAPSHOT
[12:59:46] [Server thread/INFO]: [BungeeGuard] Using Paper's PlayerHandshakeEvent to listen for connections.
[12:59:46] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[12:59:46] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[12:59:46] [Server thread/WARN]: Whilst this makes it possible to use BungeeCord, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[12:59:46] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[12:59:46] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[12:59:46] [Server thread/INFO]: Preparing level "Hollywood"
[12:59:47] [Worker-Main-4/INFO]: [PlotSquared/PlotSquared] Detected world load for 'Hollywood'
[12:59:47] [Worker-Main-4/INFO]: [PlotSquared/PlotSquared] - generator: PlotSquared>PlotSquared
[12:59:47] [Worker-Main-4/INFO]: [PlotSquared/PlotSquared] - plot world: com.plotsquared.core.generator.HybridPlotWorld
[12:59:47] [Worker-Main-4/INFO]: [PlotSquared/PlotSquared] - plot area manager: com.plotsquared.core.generator.HybridPlotManager
[12:59:47] [Worker-Main-4/INFO]: [P2] Lade Flaggen für Bereich `Hollywood` verzögert, da WorldEdit noch nicht initialisiert ist.
[12:59:47] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[12:59:48] [Server thread/INFO]: Time elapsed: 578 ms
[12:59:48] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[12:59:48] [Server thread/INFO]: Time elapsed: 63 ms
[12:59:48] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[12:59:48] [Server thread/INFO]: Time elapsed: 30 ms
[12:59:48] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.0.0
[12:59:48] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.20.5-1.20.6 (766)
[12:59:48] [Server thread/INFO]: [FancyPerks] Enabling FancyPerks v1.1.1
[12:59:48] [Server thread/INFO]: [FancyPerks] Found vault economy
[12:59:48] [Server thread/INFO]: [FancyPerks] Found vault permission
[12:59:48] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[12:59:48] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[12:59:48] [Server thread/INFO]: [BroadcastPlus] Enabling BroadcastPlus v2.9.3
[12:59:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: broadcastplus [1.0.0]
[12:59:48] [Server thread/INFO]: [BroadcastPlus] Successfully hooked into PlaceholderAPI
[12:59:48] [Server thread/INFO]: [BroadcastPlus] Successfully hooked into LuckPerms
[12:59:48] [Server thread/INFO]: [BroadcastPlus] GUI List: [Example GUI] Preset List: [example]
[12:59:48] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.10+d9424b1
[12:59:48] [Server thread/INFO]: [WorldGuard] (Hollywood) TNT ignition is PERMITTED.
[12:59:48] [Server thread/INFO]: [WorldGuard] (Hollywood) Lighters are PERMITTED.
[12:59:48] [Server thread/INFO]: [WorldGuard] (Hollywood) Lava fire is PERMITTED.
[12:59:48] [Server thread/INFO]: [WorldGuard] (Hollywood) Fire spread is UNRESTRICTED.
[12:59:48] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Hollywood'
[12:59:48] [Server thread/INFO]: [WorldGuard] (Hollywood_nether) TNT ignition is PERMITTED.
[12:59:48] [Server thread/INFO]: [WorldGuard] (Hollywood_nether) Lighters are PERMITTED.
[12:59:48] [Server thread/INFO]: [WorldGuard] (Hollywood_nether) Lava fire is PERMITTED.
[12:59:48] [Server thread/INFO]: [WorldGuard] (Hollywood_nether) Fire spread is UNRESTRICTED.
[12:59:48] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Hollywood_nether'
[12:59:48] [Server thread/INFO]: [WorldGuard] (Hollywood_the_end) TNT ignition is PERMITTED.
[12:59:48] [Server thread/INFO]: [WorldGuard] (Hollywood_the_end) Lighters are PERMITTED.
[12:59:48] [Server thread/INFO]: [WorldGuard] (Hollywood_the_end) Lava fire is PERMITTED.
[12:59:48] [Server thread/INFO]: [WorldGuard] (Hollywood_the_end) Fire spread is UNRESTRICTED.
[12:59:48] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Hollywood_the_end'
[12:59:48] [Server thread/INFO]: [WorldGuard] Loading region data...
[12:59:48] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[12:59:48] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[12:59:48] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[12:59:49] [Server thread/INFO]: Preparing start region for dimension minecraft:farmwelt
[12:59:49] [Server thread/INFO]: Time elapsed: 86 ms
[12:59:49] [Server thread/INFO]: [WorldGuard] (Farmwelt) TNT ignition is PERMITTED.
[12:59:49] [Server thread/INFO]: [WorldGuard] (Farmwelt) Lighters are PERMITTED.
[12:59:49] [Server thread/INFO]: [WorldGuard] (Farmwelt) Lava fire is PERMITTED.
[12:59:49] [Server thread/INFO]: [WorldGuard] (Farmwelt) Fire spread is UNRESTRICTED.
[12:59:49] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Farmwelt'
[12:59:49] [Server thread/INFO]: Preparing start region for dimension minecraft:world
[12:59:49] [Server thread/INFO]: Time elapsed: 117 ms
[12:59:49] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[12:59:49] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[12:59:49] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[12:59:49] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[12:59:49] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[12:59:49] [Server thread/INFO]: Preparing start region for dimension minecraft:litedungeon_0
[12:59:49] [Server thread/INFO]: Time elapsed: 164 ms
[12:59:49] [Server thread/INFO]: [WorldGuard] (LiteDungeon_0) TNT ignition is PERMITTED.
[12:59:49] [Server thread/INFO]: [WorldGuard] (LiteDungeon_0) Lighters are PERMITTED.
[12:59:49] [Server thread/INFO]: [WorldGuard] (LiteDungeon_0) Lava fire is PERMITTED.
[12:59:49] [Server thread/INFO]: [WorldGuard] (LiteDungeon_0) Fire spread is UNRESTRICTED.
[12:59:49] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'LiteDungeon_0'
[12:59:49] [Server thread/INFO]: Preparing start region for dimension minecraft:litedungeon_1
[12:59:49] [Server thread/INFO]: Time elapsed: 38 ms
[12:59:49] [Server thread/INFO]: [WorldGuard] (LiteDungeon_1) TNT ignition is PERMITTED.
[12:59:49] [Server thread/INFO]: [WorldGuard] (LiteDungeon_1) Lighters are PERMITTED.
[12:59:49] [Server thread/INFO]: [WorldGuard] (LiteDungeon_1) Lava fire is PERMITTED.
[12:59:49] [Server thread/INFO]: [WorldGuard] (LiteDungeon_1) Fire spread is UNRESTRICTED.
[12:59:49] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'LiteDungeon_1'
[12:59:49] [Server thread/INFO]: Preparing start region for dimension minecraft:litedungeon_2
[12:59:49] [Server thread/INFO]: Time elapsed: 44 ms
[12:59:49] [Server thread/INFO]: [WorldGuard] (LiteDungeon_2) TNT ignition is PERMITTED.
[12:59:49] [Server thread/INFO]: [WorldGuard] (LiteDungeon_2) Lighters are PERMITTED.
[12:59:49] [Server thread/INFO]: [WorldGuard] (LiteDungeon_2) Lava fire is PERMITTED.
[12:59:49] [Server thread/INFO]: [WorldGuard] (LiteDungeon_2) Fire spread is UNRESTRICTED.
[12:59:49] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'LiteDungeon_2'
[12:59:49] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: CityBuild-Java
[12:59:49] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[12:59:49] [Server thread/INFO]: Preparing start region for dimension minecraft:litedungeon_default
[12:59:49] [Server thread/INFO]: Time elapsed: 18 ms
[12:59:49] [Server thread/INFO]: [WorldGuard] (LiteDungeon_Default) TNT ignition is PERMITTED.
[12:59:49] [Server thread/INFO]: [WorldGuard] (LiteDungeon_Default) Lighters are PERMITTED.
[12:59:49] [Server thread/INFO]: [WorldGuard] (LiteDungeon_Default) Lava fire is PERMITTED.
[12:59:49] [Server thread/INFO]: [WorldGuard] (LiteDungeon_Default) Fire spread is UNRESTRICTED.
[12:59:49] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'LiteDungeon_Default'
[12:59:49] [Server thread/INFO]: [Multiverse-Core] 9 - World(s) loaded.
[12:59:49] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[12:59:49] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+91-e7a4167
[12:59:50] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[12:59:50] [Server thread/INFO]: [Essentials] No kits found to migrate.
[12:59:50] [Server thread/INFO]: [Essentials] Loaded 39095 items from items.json.
[12:59:50] [Server thread/INFO]: [Essentials] Using locale de
[12:59:50] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[12:59:50] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[12:59:50] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[12:59:50] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[12:59:50] [Server thread/INFO]: [Skript] Enabling Skript v2.8.6
[12:59:51] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] Eine neue Version von Skript ist verfügbar: 2.8.7 (Auf diesem Server läuft Version 2.8.6)
[12:59:51] [ForkJoinPool.commonPool-worker-1/INFO]: Download it at: <aqua><u><link:https://github.com/SkriptLang/Skript/releases/download/2.8.7/Skript-2.8.7.jar>https://github.com/SkriptLang/Skript/releases/download/2.8.7/Skript-2.8.7.jar
[12:59:54] [Server thread/INFO]: [Skript] Loaded 233068 aliases in 3280ms
[12:59:54] [Server thread/INFO]: [Skript]  ~ erstellt von & © Peter Güttinger alias Njol ~
[12:59:54] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.27.0
[12:59:54] [Server thread/INFO]: [SimpleClans] Enabling SimpleClans v2.19.3-SNAPSHOT-c9df6ac
[12:59:55] [Server thread/INFO]: [SimpleClans] Verbindung hergestellt
[12:59:55] [Server thread/INFO]: [SimpleClans] Clans: 3
[12:59:55] [Server thread/INFO]: [SimpleClans] Clan Spieler: 150
[12:59:55] [pool-110-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (6405e850eea61a4b9bf4f0d0cbb80fe20b3cfb90)
[12:59:55] [Server thread/INFO]: [SimpleClans] Registering 4 chat handlers...
[12:59:55] [Server thread/INFO]: [SimpleClans] [ACF] Enabled Asynchronous Tab Completion Support!
[12:59:55] [Server thread/INFO]: [SimpleClans] Registering 12 command contexts...
[12:59:55] [Server thread/INFO]: [SimpleClans] Registering 15 base commands...
[12:59:55] [Server thread/INFO]: [SimpleClans] Registering 32 command conditions...
[12:59:55] [Server thread/INFO]: [SimpleClans] Registering 19 command completions...
[12:59:55] [Server thread/INFO]: [SimpleClans] Multithreading: true
[12:59:55] [Server thread/INFO]: [SimpleClans] BungeeCord: true
[12:59:55] [Server thread/INFO]: [SimpleClans] HEX support: true
[12:59:55] [Server thread/INFO]: [SimpleClans] Help us translate SimpleClans to your language! Access https://crowdin.com/project/simpleclans/
[12:59:55] [Server thread/INFO]: [SimpleClans] PlaceholderAPI found. Registering hook...
[12:59:55] [Server thread/INFO]: [SimpleClans] Registering 7 placeholder resolvers...
[12:59:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: simpleclans [2.19.3-SNAPSHOT-c9df6ac]
[12:59:55] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.34-SNAPSHOT (build 3422)
[12:59:55] [Server thread/INFO]: [Citizens] Loading external libraries
[12:59:55] [Server thread/INFO]: [Citizens] Detected system language [[de]]. If youd like you can contribute to Citizens translations via our Discord! https://discord.gg/Q6pZGSR
[12:59:55] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[12:59:56] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[12:59:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[12:59:56] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[12:59:56] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.3-SNAPSHOT (b109-49bd564)
[12:59:56] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[12:59:56] [pool-37-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared will fetch UUIDs in groups of 200
[12:59:56] [pool-37-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared has cached all UUIDs
[12:59:56] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.8
[12:59:56] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[12:59:56] [Server thread/INFO]: [Quests] Enabling Quests v5.0.3-b474
[12:59:57] [Server thread/INFO]: [Quests] Loaded language de-DE. Translations via Crowdin
[12:59:57] [Server thread/INFO]: [Quests] Successfully linked Quests with Citizens 2.0.34-SNAPSHOT (build 3422)
[12:59:57] [Server thread/INFO]: [Quests] Loading storage implementation: MYSQL
[12:59:57] [Server thread/INFO]: [me.pikamug.quests.libs.hikari.HikariDataSource] quests-hikari - Starting...
[12:59:57] [Server thread/INFO]: [me.pikamug.quests.libs.hikari.HikariDataSource] quests-hikari - Start completed.
[12:59:57] [Server thread/INFO]: [PlayerWarps] Enabling PlayerWarps v7.5.0-pre27
[12:59:57] [Server thread/INFO]: [PlayerWarps] This plugin is licensed to efor89 (1129338) from Spigot!
[12:59:58] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Server wurde gefunden G:PromiGames(552770488439537684)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🍻┇willkommen(552774038854959107)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎊┇joins(882226919456792586)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📌┇server-regeln(728512418854076436)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📌┇discord-regeln(728514920899018823)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📰┇infos(739451667329843210)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🔔┇events(737220630646358016)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:❓┇umfragen(885866261622444032)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎁┇giveaway(732456669644062813)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💎┇team-übersicht(773661856698466344)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📑┇rang-inhalte(759798927112273951)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:➕┇zusatzrollen(771710431035260929)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💬┇chat(634041380481531906)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💚┇freunde-chat(758569140100792321)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💬┇lobby-chat(731466931684638800)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💬┇citybuild-chat(810421190131843102)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💬┇skyblock-chat(952811752381362187)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💬┇bedwars-chat(731466973808164914)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💬┇colormatch-chat(891311011473276980)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💬┇monopoly-chat(785644715143200778)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💬┇towerdefence-chat(1195011706997461113)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💬┇dragons-chat(1197066258290581514)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🌉┇bilder-und-memes(738636474244923473)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎬┇video-werbung(758200749171015713)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⚙┇command-channel(776346652612493322)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎶┇musikbot-cmd(932355505630871643)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎶┇musik-commands(647805672830009364)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📘┇support-anleitung(731462973385736202)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📘┇bug-melde-anleitung(731460623757475921)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎫┇ticket-erstellen(734647424282525727)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📘┇team-bewerbungsanleitung(731461538740699157)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📝┇bewerbung-erstellen(764791405481689088)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⚙┇team-bot-channel(731839121647206410)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⚙┇efors-super-duper-channel(1101119763691880588)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📣┇team-ankündigungen(785802814295244810)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💎┇team-chat(740979841024917676)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:〒┇aufgaben-efor(835150753865138206)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:¶┇aufgaben-team(824685196682985532)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:👑┇leitungskreis-chat(782720289032896552)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🅾🅿┇admin-chat(935937877446107156)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🚧┇builder-chat(745288322624126997)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💾┇developer-chat(753237758205755562)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🗄┇ticket-log(764559128580063292)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🗄┇discord-ankündigungen(739175260590702642)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📣┇ankündigungen(782742925229686825)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📑┇op-rüstung-werkzeuge-waffen(1101480885028651038)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📑┇ingame-emojis(1111510978425786398)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📊┇statistik-des-tages(879764839545851924)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📮┇allgemeine-vorschläge(634041448626520105)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📮┇citybuild-vorschläge(731834085592530944)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📮┇districts-vorschläge(786636672333905961)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📮┇freebuild-vorschläge(957236942892851260)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📮┇minigames-vorschläge(732133208170299412)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📮┇event-vorschläge(806971469368131644)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:61-deathangel9046(1238841592048259164)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:62-bmwking20(1239303463717048430)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Server wurde gefunden G:Team: PromiGames(788381262951481374)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⚙┇discord-log(788383711141953586)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:❌team-regeln❌(805473415200243782)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💬┇chat(788397141633794098)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:✔┇builder-aufgaben-to-do(913097574808944650)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💥event-planung(812846934602809364)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⚕┇abmeldungen(789447163495055360)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎂┇geburtstage(791627279729950731)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:👻┇team-skins(788490003046596678)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📊┇abstimmungen(788664734546788382)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🧱plots-zum-verlosen(830742177256046642)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📮┇ingame-vorschläge(788382738528731147)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📮┇discord-vorschläge(788397468366536734)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💥event-vorschläge(814855926535684109)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📮┇designer-vorschläge(804280030070177812)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📚┇team-anleitung(788396395979079710)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📚┇ban-mute-anleitung(788396783540764682)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📚┇discord-commands(788396937333178369)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📚┇clearen-anleitung(804263681097072640)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📚┇protokolle(788409460276068363)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:✔┇moderator-aufgaben(804268585765175297)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:✔┇admin-aufgaben(804268784906403891)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:✔┇support-aufgaben(804268527749562368)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:✔┇designer-aufgaben(788405582105149441)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:✔┇builder-aufgaben(804268648713027614)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:✔┇developer-owner-aufgaben(788399918904901693)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:console-lobby(1194171192307892224)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:console-citybuild(1193522407529525358)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:console-skyblock(1195024660539129976)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:console-bedwars(1194181563420790825)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:console-colormatch(1194635442541305856)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:console-monopoly(1195025635391848478)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:console-towerdefence(1195025709643608165)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:console-dragons(1197066372841230416)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:console-event(1226951364375089284)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:console-builder(1226951553349586975)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:console-proxy(1202962446659092520)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:lobby(1211330375914360862)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:citybuild(1211318026578829412)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:skyblock(1211330342359670814)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:bedwars(1211330409959526430)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:colormatch(1211330492616679535)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:monopoly(1211330538871193640)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:towerdefense(1211330601484034149)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:dragons(1211330451009183848)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:event(1226951292283261100)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:builder(1227168624972927016)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:anti-vpn-proxy(1197836480236765296)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:cb(873472999867703316)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:sb(873480043517575168)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:beleidigung-wiederholer-3tage(788450485317009410)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:schwere-beleidigung-7-bis-14-tage(788450613868494888)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:scam-3tage(788450699847008256)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:hardscam-14tage(788450771833192456)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:griefing-3tage(788450930987237406)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:hardgriefing-14tage(788451048234025021)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:rassismus-365tage(788451145848193074)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:sexismus-14tage(788451221085749279)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:hacking-14-30tage(788451317462335508)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:hardhacking-365tage(788451384009293884)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:duplizieren-30tage(788451483812888627)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:hardduplizieren-365tage(788451601634951209)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:bug-ausnutzung-7tage(788451714335244318)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:hardbug-ausnutzung-30tage(788451841951531020)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:fremdwerbung-7tage(788451953285398548)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ban-umgehung-90tage(1252262590327816294)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:unangemessener-skin-3tage(788452186605879317)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:unangemessener-name-30tage(788452279820615711)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:rangausnutzung-14tage(942687037507641364)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:wiederholtes-rangausnutzen-30tage(942688510220050472)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ban-eines-admins-2-jahre(788452350951424070)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:verbannung-vom-netzwerk-unendlich(942689740040335360)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:spam-1tag(788453614502412348)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:hardspam-3tage(788453678549696593)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:beleidigung-7tage(788453747453591603)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:werbung-3tage(788454067272679434)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🗄┇bans(788455150825898034)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🗄┇mutes(788455314516869120)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:entbannungen(836633745347575858)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:city(896729589949288508)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:sky(896729689027117117)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🗂┇befehle-builder(788384028129624104)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🗂┇befehle-supporter(788383945607741440)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🗂┇befehle-moderator(788383976107933696)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🗂┇links(1200717886881288202)
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Konsolenausgabeweiterleitung aktiv TC:console-citybuild(1193522407529525358)
[12:59:58] [Server thread/INFO]: [PlayerWarps] Vault found, now enabling PlayerWarps...
[12:59:58] [DiscordSRV - Initialization/ERROR]: [STDERR] [com.mysql.jdbc.Driver] Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary.
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Aktiviere Essentials Verbindung
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Aktiviere LuckPerms Verbindung
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Aktiviere PlaceholderAPI Verbindung
[12:59:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] 3 alerts registered
[13:00:00] [Server thread/INFO]: [PlayerWarps] Found 23 config files to load!
[13:00:02] [Server thread/INFO]: [PlayerWarps] Permissions plugin found! (LuckPerms)
[13:00:02] [Server thread/INFO]: [PlayerWarps] Economy plugin found! (Economy)
[13:00:02] [Server thread/INFO]: [PlayerWarps] Chat plugin found! (LuckPerms)
[13:00:02] [Server thread/INFO]: [PlayerWarps] Found PlaceholderAPI integrating support...
[13:00:02] [Server thread/INFO]: [PlayerWarps] Found WorldGuard Addon integrating support...
[13:00:02] [Server thread/INFO]: [PlayerWarps] Found Item Currency integrating support...
[13:00:02] [Server thread/INFO]: [PlayerWarps] Found Vault Currency integrating support...
[13:00:02] [Server thread/INFO]: [PlayerWarps] Found Essentials Expansion integrating support...
[13:00:02] [Server thread/WARN]: java.lang.NoSuchFieldError: Class com.olziedev.playerwarps.essentials.EssentialsExpansion does not have member field 'org.bukkit.plugin.java.JavaPlugin plugin'
[13:00:02] [Server thread/WARN]:     at com.olziedev.playerwarps.essentials.EssentialsExpansion.onLoad(EssentialsExpansion.java:52)
[13:00:02] [Server thread/WARN]:     at PlayerWarps-7.5.0-pre27.jar//com.olziedev.playerwarps.b.i.c(PluginExpansionManager.java:89)
[13:00:02] [Server thread/WARN]:     at PlayerWarps-7.5.0-pre27.jar//com.olziedev.playerwarps.b.h.b(ExpansionManager.java:62)
[13:00:02] [Server thread/WARN]:     at PlayerWarps-7.5.0-pre27.jar//com.olziedev.playerwarps.api.events.WarpEvent.b(WarpEvent.java:146)
[13:00:02] [Server thread/WARN]:     at PlayerWarps-7.5.0-pre27.jar//com.olziedev.playerwarps.api.events.WarpEvent.acceptCallback(WarpEvent.java:107)
[13:00:02] [Server thread/WARN]:     at PlayerWarps-7.5.0-pre27.jar//com.olziedev.playerwarps.api.events.WarpEvent.callEvent(WarpEvent.java:148)
[13:00:02] [Server thread/WARN]:     at PlayerWarps-7.5.0-pre27.jar//com.olziedev.playerwarps.b.h.c(ExpansionManager.java:54)
[13:00:02] [Server thread/WARN]:     at PlayerWarps-7.5.0-pre27.jar//com.olziedev.playerwarps.b.i.b(PluginExpansionManager.java:280)
[13:00:02] [Server thread/WARN]:     at PlayerWarps-7.5.0-pre27.jar//com.olziedev.playerwarps.b.i.b(PluginExpansionManager.java:247)
[13:00:02] [Server thread/WARN]:     at PlayerWarps-7.5.0-pre27.jar//com.olziedev.playerwarps.b.i.b(PluginExpansionManager.java:337)
[13:00:02] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1597)
[13:00:02] [Server thread/WARN]:     at PlayerWarps-7.5.0-pre27.jar//com.olziedev.playerwarps.b.i.b(PluginExpansionManager.java:330)
[13:00:02] [Server thread/WARN]:     at java.base/java.util.HashMap.forEach(HashMap.java:1429)
[13:00:02] [Server thread/WARN]:     at PlayerWarps-7.5.0-pre27.jar//com.olziedev.playerwarps.b.i.b(PluginExpansionManager.java:330)
[13:00:02] [Server thread/WARN]:     at PlayerWarps-7.5.0-pre27.jar//com.olziedev.playerwarps.b.i.b(PluginExpansionManager.java:395)
[13:00:02] [Server thread/WARN]:     at PlayerWarps-7.5.0-pre27.jar//com.olziedev.playerwarps.b.i.b(PluginExpansionManager.java:314)
[13:00:02] [Server thread/WARN]:     at PlayerWarps-7.5.0-pre27.jar//com.olziedev.playerwarps.b.b(OlziePlugin.java:156)
[13:00:02] [Server thread/WARN]:     at PlayerWarps-7.5.0-pre27.jar//com.olziedev.playerwarps.b.g.g(DatabaseManager.java:224)
[13:00:02] [Server thread/WARN]:     at PlayerWarps-7.5.0-pre27.jar//com.olziedev.playerwarps.PlayerWarps.e(PlayerWarps.java:61)
[13:00:02] [Server thread/WARN]:     at PlayerWarps-7.5.0-pre27.jar//com.olziedev.playerwarps.utils.b.b(PluginConfiguration.java:100)
[13:00:02] [Server thread/WARN]:     at PlayerWarps-7.5.0-pre27.jar//com.olziedev.playerwarps.PlayerWarps.onEnable(PlayerWarps.java:59)
[13:00:02] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[13:00:02] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[13:00:02] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[13:00:02] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[13:00:02] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:626)
[13:00:02] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:575)
[13:00:02] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:675)
[13:00:02] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:437)
[13:00:02] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:323)
[13:00:02] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1136)
[13:00:02] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323)
[13:00:02] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[13:00:02] [Server thread/INFO]: [PlayerWarps] SQLite database is enabling...
[13:00:02] [Server thread/INFO]: [PlayerWarps] Loading Metrics...
[13:00:02] [Server thread/INFO]: [PlayerWarps] Successfully loaded Metrics!
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] Enabling QuickShop-Hikari v6.2.0.4
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Execute the enable sequence
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] Registering Bukkit Service: com.ghostchu.quickshop.api.QuickShopProvider
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] Starting plugin self-test, please wait...
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] [OK] Spigot Based Server Test
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] [OK] Old QuickShop Test
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] [OK] ModdedServer Based Test
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] [OK] ModdedServer Database Driver Test
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] [OK] CoreSupport Test
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] [OK] Virtual DisplayItem Support Test
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] [OK] ProtocolLib Incorrect Locate Test
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] [OK] GameVersion supporting Test
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] [OK] Permission Manager Test
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] [OK] PacketListenerAPI Conflict Test
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] [OK] Reremake Test
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] [OK] EcoEnchants V11 Check
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] [OK] End of life Test
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] Reading the configuration...
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] [ConfigUpdater] Saving configuration changes...
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] Contributors: 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
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] Original author: Netherfoam, Timtower, KaiNoMood, sandtechnology
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] Let's start loading the plugin
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] Setting up ItemExpressionRegistry...
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] Using Virtual Item display, loading ProtocolLib support...
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] Successfully loaded ProtocolLib support!
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] Setting up database...
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] Create database backup...
[13:00:02] [Server thread/INFO]: [cc.carm.lib.easysql.hikari.HikariDataSource] HikariPool-1 - Starting...
[13:00:02] [Server thread/INFO]: [cc.carm.lib.easysql.hikari.HikariDataSource] HikariPool-1 - Start completed.
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] Checking and updating database columns, it may take a while...
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] Finished!
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] Selected permission provider: Bukkit
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] Registering commands...
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] Loaded 1 rules for listener blacklist.
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] EventManager selected: QSEventManager
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] Loading shops from database...
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] Used 13ms to fetch 19 shops from database.
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] Loading shops into memory...
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] Used 44ms to load 0 shops into memory (19 shops will be loaded after chunks/world loaded).
[13:00:02] [Server thread/INFO]: [QuickShop-Hikari] Registering listeners...
[13:00:03] [Server thread/INFO]: [QuickShop-Hikari] BungeeCord messenger listener registered!
[13:00:03] [Server thread/INFO]: [QuickShop-Hikari] Cleaning MsgUtils...
[13:00:03] [Server thread/INFO]: [QuickShop-Hikari] Cleaning purchase messages from the database that are over a week old...
[13:00:03] [Server thread/INFO]: [QuickShop-Hikari] Log actions is enabled. Actions will be logged in the qs.log file!
[13:00:03] [Server thread/INFO]: [QuickShop-Hikari] [Shop Purger] Purge not enabled!
[13:00:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: qs [6.2.0.4]
[13:00:03] [Server thread/INFO]: [QuickShop-Hikari] Successfully loaded PlaceHolderAPI support!
[13:00:03] [Server thread/WARN]: [QuickShop-Hikari] Failed to load the VirtualDisplayItem, self-test failure
java.lang.NullPointerException: Unable to create packet instance for class class net.minecraft.network.protocol.game.ClientboundAddEntityPacket - true - com.comphenix.protocol.wrappers.WrappedStreamCodec[handle=net.minecraft.network.codec.StreamCodec$5@23fd7b2d]
    at java.base/java.util.Objects.requireNonNull(Objects.java:246) ~[?:?]
    at ProtocolLib.jar/com.comphenix.protocol.injector.StructureCache.lambda$newPacket$4(StructureCache.java:130) ~[ProtocolLib.jar:?]
    at ProtocolLib.jar/com.comphenix.protocol.injector.StructureCache.newPacket(StructureCache.java:134) ~[ProtocolLib.jar:?]
    at ProtocolLib.jar/com.comphenix.protocol.injector.StructureCache.newPacket(StructureCache.java:144) ~[ProtocolLib.jar:?]
    at ProtocolLib.jar/com.comphenix.protocol.events.PacketContainer.<init>(PacketContainer.java:119) ~[ProtocolLib.jar:?]
    at ProtocolLib.jar/com.comphenix.protocol.injector.PacketFilterManager.createPacket(PacketFilterManager.java:389) ~[ProtocolLib.jar:?]
    at ProtocolLib.jar/com.comphenix.protocol.injector.PacketFilterManager.createPacket(PacketFilterManager.java:384) ~[ProtocolLib.jar:?]
    at QuickShop-Hikari-6.2.0.4.jar/com.ghostchu.quickshop.shop.display.virtual.packetfactory.v1_20_R4.createFakeItemSpawnPacket(v1_20_R4.java:56) ~[QuickShop-Hikari-6.2.0.4.jar:?]
    at QuickShop-Hikari-6.2.0.4.jar/com.ghostchu.quickshop.shop.display.virtual.packetfactory.v1_20_R4.testFakeItem(v1_20_R4.java:43) ~[QuickShop-Hikari-6.2.0.4.jar:?]
    at QuickShop-Hikari-6.2.0.4.jar/com.ghostchu.quickshop.util.envcheck.EnvironmentChecker.virtualDisplayWorkingTest(EnvironmentChecker.java:358) ~[QuickShop-Hikari-6.2.0.4.jar:?]
    at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]
    at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]
    at QuickShop-Hikari-6.2.0.4.jar/com.ghostchu.quickshop.util.envcheck.EnvironmentChecker.run(EnvironmentChecker.java:262) ~[QuickShop-Hikari-6.2.0.4.jar:?]
    at QuickShop-Hikari-6.2.0.4.jar/com.ghostchu.quickshop.QuickShop.runtimeCheck(QuickShop.java:335) ~[QuickShop-Hikari-6.2.0.4.jar:?]
    at QuickShop-Hikari-6.2.0.4.jar/com.ghostchu.quickshop.QuickShop.onEnable(QuickShop.java:659) ~[QuickShop-Hikari-6.2.0.4.jar:?]
    at QuickShop-Hikari-6.2.0.4.jar/com.ghostchu.quickshop.QuickShopBukkit.onEnable(QuickShopBukkit.java:101) ~[QuickShop-Hikari-6.2.0.4.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.20.6.jar:1.20.6-147-e41d44f]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.20.6.jar:1.20.6-147-e41d44f]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.20.6-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:626) ~[paper-1.20.6.jar:1.20.6-147-e41d44f]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:575) ~[paper-1.20.6.jar:1.20.6-147-e41d44f]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:675) ~[paper-1.20.6.jar:1.20.6-147-e41d44f]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:437) ~[paper-1.20.6.jar:1.20.6-147-e41d44f]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:323) ~[paper-1.20.6.jar:1.20.6-147-e41d44f]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1136) ~[paper-1.20.6.jar:1.20.6-147-e41d44f]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323) ~[paper-1.20.6.jar:1.20.6-147-e41d44f]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
[13:00:03] [Server thread/WARN]: [QuickShop-Hikari] [WARN] Virtual DisplayItem Support Test: VirtualDisplayItem test failed, resetting to RealDisplayItem...
[13:00:03] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> All Complete. (777ms)
[13:00:03] [Server thread/INFO]: [TAB] Enabling TAB v4.1.5
[13:00:03] [Server thread/INFO]: [TAB] Loaded NMS hook in 46ms
[13:00:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [4.1.5]
[13:00:03] [Server thread/INFO]: [TAB] Enabled in 255ms
[13:00:03] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.0.0
[13:00:03] [Server thread/INFO]: [EpicFurnaces] Enabling EpicFurnaces v5.1.3
[13:00:03] [Server thread/INFO]:  
[13:00:03] [Server thread/INFO]: =============================
[13:00:03] [Server thread/INFO]: EpicFurnaces 5.1.3 by Songoda <3!
[13:00:03] [Server thread/INFO]: Action: Enabling...
[13:00:03] [Server thread/INFO]: [EpicFurnaces] Loaded locale "en_US"
[13:00:03] [Server thread/INFO]: [com.craftaro.epicfurnaces.core.CoreLogger] [EpicFurnaces] [CraftaroCore] [CraftaroCore] Hooked EpicFurnaces.
[13:00:03] [Server thread/INFO]: [EpicFurnaces] Loaded locale "de_DE"
[13:00:03] [Server thread/INFO]: [EpicFurnaces] Connecting to localhost : 3306 using MySQL
[13:00:03] [Server thread/INFO]: [com.craftaro.third_party.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[13:00:03] [Server thread/INFO]: [com.craftaro.third_party.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[13:00:03] [Server thread/INFO]: [EpicFurnaces] Data handler connected using MYSQL.
[13:00:03] [Server thread/INFO]: =============================
[13:00:03] [Server thread/INFO]:  
[13:00:03] [Server thread/INFO]: [WorldGuardTabCompletion] Enabling WorldGuardTabCompletion v1.0
[13:00:03] [Server thread/INFO]: [WirelessChest] Enabling WirelessChest v1.0
[13:00:04] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.16.2
[13:00:04] [Server thread/INFO]: [VotingPlugin] Loaded LuckPerms hook!
[13:00:04] [Server thread/INFO]: [com.bencodez.votingplugin.advancedcore.hikari.HikariDataSource] HikariPool-1 - Starting...
[13:00:04] [Server thread/INFO]: [com.bencodez.votingplugin.advancedcore.hikari.HikariDataSource] HikariPool-1 - Start completed.
[13:00:04] [Server thread/INFO]: [VotingPlugin] Using BungeeMethod: PLUGINMESSAGING
[13:00:04] [Server thread/INFO]: [VotingPlugin] Loaded plugin message channels: vp:vp
[13:00:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: votingplugin [1.6]
[13:00:04] [Server thread/INFO]: [VotingPlugin] Loading PlaceholderAPI expansion
[13:00:04] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[13:00:05] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.16.2
[13:00:05] [Server thread/INFO]: [VoteBan] Enabling VoteBan v1.7
[13:00:05] [Server thread/INFO]: =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
[13:00:05] [Server thread/INFO]: Plugin Name: VoteBan
[13:00:05] [Server thread/INFO]: Plugin Version: 1.7
[13:00:05] [Server thread/INFO]: Server Version: 1.20.6-R0.1-SNAPSHOT
[13:00:05] [Server thread/INFO]: Author: CodingGuru
[13:00:05] [Server thread/INFO]: Discord: https://discord.gg/CbJxH5NPvX
[13:00:05] [Server thread/INFO]: Updates: No new updates were found for this plugin.
[13:00:05] [Server thread/INFO]: =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
[13:00:05] [Server thread/INFO]: [UnknownCommand] Enabling UnknownCommand v1.0-SNAPSHOT*
[13:00:05] [Server thread/INFO]: [UltimateShop] Enabling UltimateShop v2.3.1
[13:00:05] [Server thread/INFO]: [UltimateShop] Loaded shop: blocks.yml!
[13:00:05] [Server thread/INFO]: [UltimateShop] Loaded shop: blocks1.yml!
[13:00:05] [Server thread/INFO]: [UltimateShop] Loaded shop: commands.yml!
[13:00:05] [Server thread/INFO]: [UltimateShop] Loaded shop: coral.yml!
[13:00:05] [Server thread/INFO]: [UltimateShop] Loaded shop: crops.yml!
[13:00:05] [Server thread/INFO]: [UltimateShop] Loaded shop: drops.yml!
[13:00:05] [Server thread/INFO]: [UltimateShop] Loaded shop: flowers.yml!
[13:00:05] [Server thread/INFO]: [UltimateShop] Loaded shop: logs.yml!
[13:00:05] [Server thread/INFO]: [UltimateShop] Loaded shop: ores.yml!
[13:00:05] [Server thread/INFO]: [UltimateShop] Loaded menu: main.yml!
[13:00:05] [Server thread/INFO]: [UltimateShop] Paper is found, enabled Paper only feature!
[13:00:05] [Server thread/INFO]: [UltimateShop] Hooking into PlaceholderAPI...
[13:00:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultimateshop [1.1.0]
[13:00:05] [Server thread/INFO]: [UltimateShop] Finished hook!
[13:00:05] [Server thread/INFO]: [UltimateShop] Hooking into Floodgate...
[13:00:05] [Server thread/INFO]: [UltimateShop] Plugin is loaded. Author: PQguanfang.
[13:00:05] [Server thread/INFO]: [SpawnPlugin] Enabling SpawnPlugin v1.0.0*
[13:00:05] [Server thread/INFO]: [Skulls] Enabling Skulls v3.13.0
[13:00:05] [Server thread/INFO]:  
[13:00:05] [Server thread/INFO]: =============================
[13:00:05] [Server thread/INFO]: Skulls v3.13.0 by Tweetzy
[13:00:05] [Server thread/INFO]: Developer: Kiran Hart
[13:00:05] [Server thread/INFO]: [FlightCore] Enabling metrics for Skulls
[13:00:05] [Server thread/INFO]: =============================
[13:00:05] [Server thread/INFO]:  
[13:00:05] [Server thread/INFO]: [SimpleRTP] Enabling SimpleRTP v4.3
[13:00:05] [Server thread/INFO]: [SimpleClans-PlotSquared6] Enabling SimpleClans-PlotSquared6 v1.0.3
[13:00:05] [Server thread/INFO]: [SignSystem] Enabling SignSystem v1.0-SNAPSHOT
[13:00:05] [Server thread/INFO]: [QuestsGUI] Enabling QuestsGUI v1.6
[13:00:05] [Server thread/INFO]: [QuestsGUI] Initializing QuestsGUI separated YAML storage...
[13:00:05] [Server thread/INFO]: [QSFindItemAddOn] Enabling QSFindItemAddOn v2.0.6.1-RELEASE
[13:00:05] [Server thread/INFO]: [QSFindItemAddOn] [MAIN] Registering Bukkit event listeners
[13:00:05] [Server thread/INFO]: [QSFindItemAddOn] [MAIN] Config loaded!
[13:00:05] [Server thread/INFO]: [QSFindItemAddOn] [MAIN] Registering commands
[13:00:05] [Server thread/INFO]: [QSFindItemAddOn] [MAIN] Registered /finditem command
[13:00:05] [Server thread/INFO]: [QSFindItemAddOn] [MAIN] Registered /finditemadmin command
[13:00:05] [Server thread/INFO]: [PyroLib] Enabling PyroLib v1.4.2
[13:00:06] [Server thread/INFO]: [PvPManager] Enabling PvPManager v3.32.24
[13:00:06] [Server thread/INFO]: [PvPManager] Using player nametags: true
[13:00:06] [Server thread/INFO]: [PvPManager] Connected to SQLITE database successfully
[13:00:06] [Server thread/INFO]: [PvPManager] Players stored: 238
[13:00:06] [Server thread/INFO]: [PvPManager] WorldGuard Found! Enabling Support For WorldGuard Regions
[13:00:06] [Server thread/INFO]: [PvPManager] Essentials Found! Hooked successfully
[13:00:06] [Server thread/INFO]: [PvPManager] Vault Found! Using it for currency related features
[13:00:06] [Server thread/INFO]: [PvPManager] SimpleClans Found! Hooked successfully
[13:00:06] [Server thread/INFO]: [PvPManager] PlaceholderAPI Found! Hooked successfully
[13:00:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pvpmanager [3.32.24]
[13:00:06] [Server thread/INFO]: [PvPManager] TAB Found! Using TAB to change nametags instead of scoreboards
[13:00:06] [Server thread/INFO]: [PvPManager] NPC spawning is supported in this version! (1.20.6)
[13:00:06] [Server thread/INFO]: [PvPManager] Auto Respawn is supported in this version! Using 1.15+ gamerules
[13:00:06] [Server thread/INFO]: [PvPManager] Starting border task with radius 6 and rate of 150ms
[13:00:06] [Server thread/INFO]: [PvPManager] PvPManager v3.32.24 enabled (342 ms)
[13:00:06] [Server thread/INFO]: [PlotBorders] Enabling PlotBorders v1.12
[13:00:06] [Server thread/INFO]: [PlotAdditions] Enabling PlotAdditions v1.1
[13:00:06] [Server thread/INFO]: [PlayerPortals] Enabling PlayerPortals v1.5
[13:00:06] [Server thread/INFO]: [StromCore] Hooked with PlayerPortals.
[13:00:06] [Server thread/INFO]: [PassiveJobs] Enabling PassiveJobs v1.0
[13:00:06] [Server thread/INFO]: [OtherAnimalTeleport] Enabling OtherAnimalTeleport v2.3-b86
[13:00:06] [Server thread/INFO]: [OnlineTime] Enabling OnlineTime v2.0.4
[13:00:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: onlinetime [2.0.4]
[13:00:06] [Server thread/INFO]: [OnlineTime] Hooked into PlaceholderAPI.
[13:00:06] [Server thread/INFO]: [MW] Enabling MultiWorld v0.2
[13:00:06] [Server thread/INFO]: All Worlds are loaded
[13:00:06] [Server thread/INFO]: All Worlds loaded from Config
[13:00:06] [Server thread/INFO]: MultiWorld is enabled
[13:00:06] [Server thread/INFO]: [ModularPVP] Enabling ModularPVP v1.0.2
[13:00:06] [Server thread/INFO]: [MobsToEggs] Enabling MobsToEggs v1.7.9
[13:00:06] [Server thread/INFO]: [MobsToEggs] Loading files for MobsToEggs...
[13:00:06] [Server thread/INFO]: [MobsToEggs] Loading language: en
[13:00:06] [Server thread/INFO]: [MobsToEggs] Using Dependencies:
[13:00:06] [Server thread/INFO]: [MobsToEggs] ✔️ [Vault, WorldGuard, NBTAPI]
[13:00:06] [Server thread/INFO]: [MobsToEggs] ❌ [MythicMobs, Towny]
[13:00:06] [Server thread/INFO]: [LiteGuilds] Enabling LiteGuilds v1.4.0
[13:00:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lguilds [1.0]
[13:00:07] [Server thread/INFO]: [LiteFish] Enabling LiteFish v3.9.15
[13:00:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lfish [1.0]
[13:00:07] [Server thread/INFO]: [LiteDungeon] Enabling LiteDungeon v2.3.8
[13:00:07] [Server thread/INFO]: [LevelledMobs] Enabling LevelledMobs v4.0.3.1 b19
[13:00:07] [Server thread/INFO]: [LevelledMobs] Enabling commands
[13:00:07] [Server thread/INFO]: [LevelledMobs] Using NMS version 1.20.6 for nametag support
[13:00:07] [Server thread/INFO]: [LevelledMobs] File Loader: Loading files...
[13:00:07] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'settings.yml'...
[13:00:07] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'messages.yml'...
[13:00:07] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'externalplugins.yml'...
[13:00:07] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'rules.yml'...
[13:00:08] [Server thread/INFO]: [LevelledMobs] Current rules hash: 9e8c29b984a88b4e1dfe50e69135247ea8c936f29c83a214ad88f779d3c7bc96
[13:00:08] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'customdrops.yml'...
[13:00:08] [Server thread/INFO]: [LevelledMobs] Listeners: Registering event listeners...
[13:00:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: LevelledMobs [4.0.3.1 b19]
[13:00:08] [Server thread/INFO]: [LevelledMobs] Running misc procedures
[13:00:08] [Server thread/INFO]: [LevelledMobs] Tasks: Starting async nametag auto update task...
[13:00:08] [Server thread/INFO]: [LevelledMobs] Start-up complete (took 1352ms)
[13:00:08] [Server thread/INFO]: [InvSee++] Enabling InvSeePlusPlus v0.27.0
[13:00:08] [Server thread/INFO]: [InventoryRollbackPlus] Enabling InventoryRollbackPlus v1.6.16
[13:00:08] [Server thread/INFO]: [InventoryRollbackPlus] Attempting Paper support for version: 1.20.6-R0.1-SNAPSHOT
[13:00:08] [Server thread/INFO]: [InventoryRollbackPlus] Found CraftBukkit Package Version: v1_20_R4
[13:00:08] [Server thread/INFO]: PromiGames: Inventory backup data is set to save to: YAML
[13:00:08] [Server thread/INFO]: PromiGames: bStats are enabled
[13:00:08] [Server thread/INFO]: [Images] Enabling Images v2.3.3
[13:00:08] [Server thread/INFO]: [Images] ProtocolLib detected. Enabling generic packet handling...
[13:00:08] [Server thread/INFO]: [HideJoinLeaveMessages] Enabling HideJoinLeaveMessages v0.1*
[13:00:08] [Server thread/INFO]: [HideJoinLeaveMessages] Plugin is ENABLE!
[13:00:08] [Server thread/INFO]: [Head] Enabling Head v1.0*
[13:00:08] [Server thread/INFO]: [Head] [STDOUT] Das Plugin wurde Aktiviert!
[13:00:08] [Server thread/WARN]: Nag author(s): '[]' of 'Head v1.0' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[13:00:08] [Server thread/INFO]: [GSit] Enabling GSit v1.9.1
[13:00:08] [Server thread/INFO]: [GSit] Das Plugin wurde erfolgreich aktiviert.
[13:00:08] [Server thread/INFO]: [GSit] Verknüpfung mit PlaceholderAPI erfolgreich!
[13:00:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [1.9.1]
[13:00:08] [Server thread/INFO]: [GSit] Verknüpfung mit PlotSquared erfolgreich!
[13:00:08] [Server thread/INFO]: [GSit] Verknüpfung mit ViaVersion erfolgreich!
[13:00:08] [Server thread/INFO]: [GSit] Verknüpfung mit WorldGuard erfolgreich!
[13:00:08] [Server thread/INFO]: [FurnaceHoloFix] Enabling FurnaceHoloFix v1.0
[13:00:08] [Server thread/INFO]: [FancyHolograms] Enabling FancyHolograms v2.1.0
[13:00:08] [Server thread/INFO]: [ExtraHealth] Enabling ExtraHealth v1.0
[13:00:08] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v5.2.3
[13:00:08] [Server thread/INFO]: [ExcellentCrates] Powered by nightcore
[13:00:09] [Server thread/INFO]: [ExcellentCrates] Using Decent Holograms hologram handler.
[13:00:09] [PvPManager Worker Thread - 1/INFO]: [PvPManager] Update available: 3.33 Current version: 3.32.24
[13:00:09] [PvPManager Worker Thread - 1/INFO]: [PvPManager] Follow the link to download: https://www.spigotmc.org/resources/pvpmanager.10610
[13:00:09] [Server thread/INFO]: [ExcellentCrates] Enabled data synchronization with 5 seconds interval.
[13:00:09] [Server thread/INFO]: [ExcellentCrates] Registered currency: levels
[13:00:09] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[13:00:09] [Server thread/INFO]: [ExcellentCrates] Loaded 8 crate openings.
[13:00:09] [Server thread/INFO]: [ExcellentCrates] Loaded 3 crate keys.
[13:00:09] [ForkJoinPool.commonPool-worker-10/WARN]: [FancyHolograms] 
-------------------------------------------------------
You are not using the latest version the FancyHolograms plugin.
Please update to the newest version (2.2.0).
https://modrinth.com/plugin/FancyHolograms
-------------------------------------------------------

[13:00:09] [Server thread/INFO]: [ExcellentCrates] Loaded 4 rarities!
[13:00:09] [Server thread/INFO]: [ExcellentCrates] Loaded 3 crates.
[13:00:09] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[13:00:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [5.2.3]
[13:00:09] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 434 ms!
[13:00:09] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.0-dev+91-e7a4167
[13:00:09] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[13:00:09] [Server thread/INFO]: [EssentialsProtect] Enabling EssentialsProtect v2.21.0-dev+91-e7a4167
[13:00:09] [Server thread/INFO]: [EssentialsProtect] Continuing to enable Protect.
[13:00:09] [Server thread/INFO]: [EssentialsProtect] Starting Metrics. Opt-out using the global bStats config.
[13:00:09] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.21.0-dev+91-e7a4167
[13:00:09] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[13:00:09] [Server thread/INFO]: [EntityClearer] Enabling EntityClearer v3.4.0
[13:00:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: entityclearer [1]
[13:00:09] [Server thread/INFO]: [EntityClearer] Enabled PlaceholderAPI hook!
[13:00:09] [Server thread/INFO]: [EntityClearer] TPS monitoring activated.
[13:00:09] [Server thread/INFO]: [EnchantmentNexus] Enabling EnchantmentNexus v1.2.3
[13:00:09] [Server thread/INFO]: [Elevators] Enabling Elevators v4.0.16
[13:00:09] [Server thread/WARN]: [Elevators] This version of elevators does not support your servers current version! Some functions may not work as intended!
[13:00:09] [Server thread/INFO]: [EforServerAdditions] Enabling EforServerAdditions v1.0
[13:00:09] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.0-Release
[13:00:09] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[13:00:09] [Server thread/INFO]: [DeluxeMenus] 6 GUI menus loaded!
[13:00:09] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[13:00:09] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[13:00:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.0-Release]
[13:00:09] [Server thread/INFO]: [CustomDecentHolograms] Enabling CustomDecentHolograms v1.4
[13:00:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cdh [1.3]
[13:00:10] [Server thread/INFO]: [CooldownCommands] Enabling CooldownCommands v1.3
[13:00:10] [Server thread/INFO]: [ClearLag] Enabling ClearLag v1.0*
[13:00:10] [Server thread/INFO]: [ClearLag] [STDOUT] [ClearLag] wurde erfolgreich aktiviert!
[13:00:10] [Server thread/WARN]: Nag author(s): '[fullfrontdev]' of 'ClearLag v1.0' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[13:00:10] [Server thread/INFO]: [ChestSort] Enabling ChestSort v14.0.6
[13:00:10] [Server thread/INFO]: [ChestSort] Hooked into WorldGuard 7.0.10+d9424b1
[13:00:10] [Server thread/INFO]: [ChestSort] Hooked into PlotSquared 7.3.8-Premium
[13:00:10] [Server thread/INFO]: [ChestSort] Use permissions: false
[13:00:10] [Server thread/INFO]: [ChestSort] Current sorting method: {category},{itemsFirst},{name},{color},{customName}
[13:00:10] [Server thread/INFO]: [ChestSort] Allow automatic chest sorting:true
[13:00:10] [Server thread/INFO]: [ChestSort]   |- Chest sorting enabled by default: false
[13:00:10] [Server thread/INFO]: [ChestSort]   |- Sort time: close
[13:00:10] [Server thread/INFO]: [ChestSort] Allow automatic inventory sorting:true
[13:00:10] [Server thread/INFO]: [ChestSort]   |- Inventory sorting enabled by default: false
[13:00:10] [Server thread/INFO]: [ChestSort] Auto generate category files: true
[13:00:10] [Server thread/INFO]: [ChestSort] Allow hotkeys: true
[13:00:10] [Server thread/INFO]: [ChestSort] Hotkeys enabled by default:
[13:00:10] [Server thread/INFO]: [ChestSort]   |- Middle-Click: true
[13:00:10] [Server thread/INFO]: [ChestSort]   |- Shift-Click: true
[13:00:10] [Server thread/INFO]: [ChestSort]   |- Double-Click: true
[13:00:10] [Server thread/INFO]: [ChestSort]   |- Shift-Right-Click: true
[13:00:10] [Server thread/INFO]: [ChestSort] Allow additional hotkeys: true
[13:00:10] [Server thread/INFO]: [ChestSort] Additional hotkeys enabled by default:
[13:00:10] [Server thread/INFO]: [ChestSort]   |- Left-Click: true
[13:00:10] [Server thread/INFO]: [ChestSort]   |- Right-Click: true
[13:00:10] [Server thread/INFO]: [ChestSort] Check for updates: true
[13:00:10] [Server thread/INFO]: [ChestSort] Check interval: 4 hours (4.0 seconds)
[13:00:10] [Server thread/INFO]: [ChestSort] Categories: 900-weapons (6), 905-common-tools (4), 907-other-tools (6), 909-food (33), 910-valuables (47), 920-armor-and-arrows (9), 930-brewing (18), 950-redstone (23), 960-wood (60), 970-stone (38), 980-plants (50), 981-corals (1)
[13:00:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chestsort [14.0.6]
[13:00:10] [Server thread/INFO]: [ChatGames-Premium] Enabling ChatGames-Premium v1.6.8
[13:00:10] [Server thread/INFO]: [ChatGames-Premium] SQLITE DATABASE IS CONNECTED
[13:00:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chatgames [1.0.0]
[13:00:10] [Server thread/INFO]: [ChatGames-Premium] PlaceholderAPI Hooked!
[13:00:10] [Server thread/INFO]: [BuycraftX] Enabling BuycraftX v12.0.8
[13:00:10] [Server thread/INFO]: [BuycraftX] Validating your server key...
[13:00:11] [Server thread/INFO]: [BuycraftX] Fetching all server packages...
[13:00:12] [Server thread/INFO]: [BreweryX] Enabling BreweryX v3.2.0
[13:00:12] [Folia Async Scheduler Thread #9/INFO]: [Brewery] Background data loading complete.
[13:00:12] [Server thread/INFO]: [Brewery] BreweryX enabled!
[13:00:12] [Server thread/INFO]: [AxSmithing] Enabling AxSmithing v1.7
[13:00:12] [Server thread/INFO]: [AuctionHouse] Enabling AuctionHouse v2.113.0
[13:00:12] [Server thread/INFO]:  
[13:00:12] [Server thread/INFO]: =============================
[13:00:12] [Server thread/INFO]: AuctionHouse 2.113.0 by Kiran Hart
[13:00:12] [Server thread/INFO]: Action: Enabling...
[13:00:12] [Server thread/INFO]: [TweetyCore] Hooked into AuctionHouse.
[13:00:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: auctionhouse [1.0.0]
[13:00:13] [Server thread/INFO]: =============================
[13:00:13] [Server thread/INFO]:  
[13:00:13] [Server thread/INFO]: [ArmorStandEditor] Enabling ArmorStandEditor v1.5.5
[13:00:13] [Server thread/INFO]: [ArmorStandEditor] Your version of this plugin is up to date!
[13:00:13] [Server thread/INFO]: [ArmorStandEditor] Plugin successfully enabled.
[13:00:13] [Server thread/INFO]: [ArmorStand-Limiter] Enabling ArmorStand-Limiter v1.7
[13:00:13] [Server thread/INFO]: 

 /\   _  _   _   _ (_  |_  _   _   _|   |   .  _  . |_  _  _
/--\ |  ||| (_) |  __) |_ (_| | ) (_|   |__ | ||| | |_ (- | 
v1.7
Created by xSavior_of_God 

 
[13:00:13] [Server thread/INFO]: ArmorStand Limiter Loaded!
[13:00:13] [Server thread/INFO]: [AntiRedstoneClock-Reloaded] Enabling AntiRedstoneClock-Reloaded v2.0.0
[13:00:13] [Server thread/INFO]: [AntiRedstoneClock-Reloaded] Enabling Metrics
[13:00:13] [Server thread/INFO]: [AntiRedstoneClock-Reloaded] An error occured while trying to enable metrics. Skipping...
[13:00:13] [Server thread/WARN]: [AntiRedstoneClock-Reloaded] PlotSquared 7 is not supported
[13:00:13] [Server thread/INFO]: [AntiRedstoneClock-Reloaded] PlotSquared 7 found and flag loaded
[13:00:13] [Server thread/INFO]: [AntiRedstoneClock-Reloaded] Plugin loaded in 11 ms
[13:00:13] [Server thread/INFO]: [AdvancedSeasons] Enabling AdvancedSeasons v1.3.3
[13:00:13] [Server thread/WARN]: [AdvancedSeasons] Minecraft Version: MC1_20_R4
[13:00:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedseasons [1.0.0]
[13:00:14] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[13:00:14] [Server thread/INFO]: Running delayed init tasks
[13:00:14] [Craft Scheduler Thread - 9 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[13:00:14] [Craft Scheduler Thread - 13 - PlayerWarps/INFO]: [PlayerWarps] Loading player warps...
[13:00:14] [Craft Scheduler Thread - 20 - QuickShop-Hikari/INFO]: [QuickShop-Hikari] Start to caching usernames (async)...
[13:00:14] [Craft Scheduler Thread - 22 - InventoryRollbackPlus/INFO]: PromiGames: Checking for updates...
[13:00:14] [Server thread/INFO]: PromiGames: Unsere Homepage erreicht ihr unter https://www.promigames.de/
[13:00:14] [Craft Scheduler Thread - 41 - Vault/INFO]: [Vault] Checking for Updates ... 
[13:00:14] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[13:00:14] [Craft Scheduler Thread - 4 - PlotSquared/INFO]: [PlotSquared/UpdateUtility] Congratulations! You are running the latest PlotSquared version
[13:00:14] [Craft Scheduler Thread - 41 - Vault/INFO]: [Vault] No new version available
[13:00:14] [Craft Scheduler Thread - 18 - Quests/INFO]: [Quests] Update auf 5.0.4: https://github.com/PikaMug/Quests
[13:00:14] [Craft Scheduler Thread - 12 - Essentials/INFO]: [Essentials] Abrufen von Versionsinformationen...
[13:00:14] [Craft Scheduler Thread - 16 - AuctionHouse/INFO]: [AuktionsHaus] Is running the latest version!
[13:00:14] [Craft Scheduler Thread - 34 - LevelledMobs/WARN]: [LevelledMobs] LevelledMobs Update Checker Notice:
[13:00:14] [Craft Scheduler Thread - 34 - LevelledMobs/WARN]: [LevelledMobs] Your LevelledMobs version is outdated! Please update to v4.0.4 as soon as possible. (You're running v4.0.3.1)
[13:00:14] [Server thread/INFO]: [Skript] Loading variables...
[13:00:14] [Craft Scheduler Thread - 22 - InventoryRollbackPlus/INFO]: 
===============================================================================
A minor update to InventoryRollbackPlus is available!
Download at https://www.spigotmc.org/resources/inventoryrollbackplus-1-8-1-16-x.85811/
(current: 1.6.16, latest: 1.6.17)
===============================================================================

[13:00:14] [Server thread/INFO]: [Skript] Loaded 0 variables in 0.0 seconds
[13:00:14] [Server thread/INFO]: [Skript] Alle Skripte wurden fehlerfrei geladen.
[13:00:14] [Server thread/INFO]: [Skript] Es wurden 1 Scripte geladen, von denen 7 Strukturen sind innerhalb von 0.12 seconds
[13:00:14] [Server thread/INFO]: [Skript] Laden abgeschlossen.
[13:00:14] [Server thread/INFO]: [SimpleClans] Registered WorldGuardProvider successfully
[13:00:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pw [7.5.0-pre27]
[13:00:14] [Craft Scheduler Thread - 27 - Skulls/INFO]: Promigames:  Loaded 147 history inserts
[13:00:14] [Server thread/INFO]: [SimpleClans-PlotSquared6] Registering provider...
[13:00:14] [Server thread/INFO]: [SimpleClans] Registered PS6Provider successfully
[13:00:14] [Server thread/INFO]: Promigames:  Loaded 57650 skulls in 9.203,860ms
[13:00:14] [Server thread/INFO]: [QSFindItemAddOn] [MAIN] Server version found: 1.20.6-147-e41d44f (MC: 1.20.6)
[13:00:14] [Server thread/INFO]: [QSFindItemAddOn] [MAIN] Found QuickShop-Hikari
[13:00:14] [Server thread/INFO]: [QSFindItemAddOn] [MAIN] Initializing Shop caching
[13:00:14] [Server thread/INFO]: [QSFindItemAddOn] [MAIN] Unregistered find sub-command for /qs
[13:00:14] [Server thread/INFO]: [QSFindItemAddOn] [MAIN] Registered finditem sub-command for /qs
[13:00:14] [Server thread/INFO]: [QSFindItemAddOn] [MAIN] Loaded shops from file
[13:00:14] [Server thread/INFO]: [QSFindItemAddOn] [MAIN] Found PlayerWarps
[13:00:14] [Server thread/INFO]: [QSFindItemAddOn] [MAIN] Found Essentials
[13:00:14] [Server thread/INFO]: [QSFindItemAddOn] [MAIN] Found WorldGuard
[13:00:14] [Server thread/INFO]: [QSFindItemAddOn] [MAIN] Registering external plugin event listeners
[13:00:14] [Server thread/INFO]: [QSFindItemAddOn] [MAIN] Registering tasks
[13:00:14] [Server thread/INFO]: [QSFindItemAddOn] [MAIN] Registering anonymous bStats metrics
[13:00:15] [Server thread/INFO]: Loaded 1175 recipes
[13:00:15] [Server thread/INFO]: Loaded 1276 advancements
[13:00:15] [Server thread/INFO]: [P2] Lade Flaggen für Bereich: Hollywood
[13:00:15] [Server thread/INFO]: [P2] Bereichsflaggen: [use;oak_sign, spruce_sign, birch_sign, jungle_sign, acacia_sign, dark_oak_sign, bamboo_sign, cherry_sign, crimson_sign, warped_sign, mangrove_sign, oak_wall_sign, spruce_wall_sign, birch_wall_sign, jungle_wall_sign, acacia_wall_sign, dark_oak_wall_sign, bamboo_wall_sign, cherry_wall_sign, crimson_wall_sign, warped_wall_sign, mangrove_wall_sign]
[13:00:15] [Server thread/INFO]: [P2] Straßenflaggen: []
[13:00:16] [Server thread/INFO]: [Citizens] 46 NPCs geladen.
[13:00:16] [Server thread/INFO]: [QuickShop-Hikari] Using economy system: Economy
[13:00:16] [Server thread/INFO]: [QuickShop-Hikari] Selected economy bridge: BuiltIn-Vault
[13:00:16] [Server thread/INFO]: [OtherAnimalTeleport] AnimalTeleport has been enabled!
[13:00:16] [Server thread/INFO]: --------------------------------------------------------
[13:00:16] [Server thread/INFO]: 
[13:00:16] [Server thread/INFO]: Thank you for purchasing Auction House, it means a lot
[13:00:16] [Server thread/INFO]:  - Kiran Hart
[13:00:16] [Server thread/INFO]: 
[13:00:16] [Server thread/INFO]: --------------------------------------------------------
[13:00:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: bungee [2.3]
[13:00:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: localtime [1.2]
[13:00:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.7]
[13:00:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[13:00:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.1]
[13:00:16] [Server thread/INFO]: 5 placeholder hook(s) registered! 2 placeholder hook(s) have an update available.
[13:00:16] [Server thread/WARN]: [ChestSort] **************************************************
[13:00:16] [Server thread/WARN]: [ChestSort] * There is a new version of ChestSort available!
[13:00:16] [Server thread/WARN]: [ChestSort] *  
[13:00:16] [Server thread/WARN]: [ChestSort] * Your version:   14.0.6
[13:00:16] [Server thread/WARN]: [ChestSort] * Latest version: 14.1.0
[13:00:16] [Server thread/WARN]: [ChestSort] *  
[13:00:16] [Server thread/WARN]: [ChestSort] * Please update to the newest version.
[13:00:16] [Server thread/WARN]: [ChestSort] *  
[13:00:16] [Server thread/WARN]: [ChestSort] * Download:
[13:00:16] [Server thread/WARN]: [ChestSort] *   https://www.chestsort.de
[13:00:16] [Server thread/WARN]: [ChestSort] **************************************************
[13:00:16] [Server thread/INFO]: Done (53.457s)! For help, type "help"
[13:00:16] [Server thread/INFO]: Timings Reset
[13:00:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrv [1.27.0]
[13:00:16] [Craft Scheduler Thread - 40 - QSFindItemAddOn/INFO]: [QSFindItemAddOn] [ASYNC] Oh awesome! Plugin is up to date
[13:00:16] [Craft Scheduler Thread - 38 - OtherAnimalTeleport/WARN]: [OtherAnimalTeleport] Hooray! You're running the latest version!
[13:00:16] [Craft Scheduler Thread - 33 - Elevators/INFO]: [Elevators] An update for Elevators is available at:
[13:00:16] [Craft Scheduler Thread - 33 - Elevators/INFO]: [Elevators] https://www.spigotmc.org/resources/elevators.34229/
[13:00:16] [Craft Scheduler Thread - 12 - Essentials/WARN]: [Essentials] Du bist 2 EssentialsX Dev-Build(s) veraltet!
[13:00:16] [Craft Scheduler Thread - 12 - Essentials/WARN]: [Essentials] Hier herunterladen: https://essentialsx.net/downloads.html
[13:00:16] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 2/2 guilds (0 cancelled)
[13:00:17] [Server thread/INFO]: [Quests] Loaded 11 Quest(s), 7 Action(s), 1 Condition(s) and 812 Phrase(s)
[13:00:17] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2612ms or 52 ticks behind
[13:00:17] [Server thread/INFO]: [AdvancedSeasons] Successfully hooked into ProtocolLib, WorldGuard, PlaceholderAPI, Essentials, Vault, LuckPerms, DiscordSRV.
[13:00:18] [Craft Scheduler Thread - 27 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:00:18] [Craft Scheduler Thread - 27 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:00:19] [Craft Scheduler Thread - 38 - Images/INFO]: [Images] Loaded 33 images...
[13:00:21] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[13:00:21] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[13:00:21] [Craft Scheduler Thread - 18 - AuctionHouse/INFO]: [AuktionsHaus] Auto saved auction items & transactions
[13:00:26] [Craft Scheduler Thread - 23 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin is up to date! Version: 6.16.2
[13:00:44] [User Authenticator #0/INFO]: UUID of player .efor89 is 00000000-0000-0000-0009-01fa120cfc5e
[13:00:44] [Server thread/INFO]: [floodgate] Floodgate Spieler .efor89 hat den Server betreten (UUID: 00000000-0000-0000-0009-01fa120cfc5e)
[13:00:44] [Server thread/INFO]: [AuctionHouse] Updating profile player reference for: .efor89
[13:00:45] [Server thread/INFO]: .efor89[/79.251.89.158:52545] logged in with entity id 14979 at ([Hollywood]26.03633, 78.0, 2.2699904)
[13:00:45] [Craft Scheduler Thread - 19 - FancyHolograms/INFO]: [ChatColorHandler] Found MiniMessage in Server. MiniMessage support enabled.
[13:00:45] [Craft Scheduler Thread - 19 - FancyHolograms/INFO]: [ChatColorHandler] Found plugin "PlaceholderAPI". PlaceholderAPI support enabled.
[13:00:46] [Folia Async Scheduler Thread Timer/WARN]: java.lang.ClassNotFoundException: Could not find net.minecraft.server.EntityPlayer
[13:00:46] [Folia Async Scheduler Thread Timer/WARN]:     at DiscordSRV-Build-1.27.0.jar//github.scarsz.discordsrv.util.NMSUtil.fixBukkitClass(NMSUtil.java:122)
[13:00:46] [Folia Async Scheduler Thread Timer/WARN]:     at DiscordSRV-Build-1.27.0.jar//github.scarsz.discordsrv.util.NMSUtil.<clinit>(NMSUtil.java:61)
[13:00:46] [Folia Async Scheduler Thread Timer/WARN]:     at DiscordSRV-Build-1.27.0.jar//github.scarsz.discordsrv.DiscordSRV.getAvatarUrl(DiscordSRV.java:2025)
[13:00:46] [Folia Async Scheduler Thread Timer/WARN]:     at DiscordSRV-Build-1.27.0.jar//github.scarsz.discordsrv.DiscordSRV.sendJoinMessage(DiscordSRV.java:1870)
[13:00:46] [Folia Async Scheduler Thread Timer/WARN]:     at DiscordSRV-Build-1.27.0.jar//github.scarsz.discordsrv.listeners.PlayerJoinLeaveListener.lambda$onPlayerJoin$1(PlayerJoinLeaveListener.java:94)
[13:00:46] [Folia Async Scheduler Thread Timer/WARN]:     at DiscordSRV-Build-1.27.0.jar//github.scarsz.discordsrv.util.SchedulerUtil.lambda$runTaskLaterAsynchronously$4(SchedulerUtil.java:125)
[13:00:46] [Folia Async Scheduler Thread Timer/WARN]:     at io.papermc.paper.threadedregions.scheduler.FoliaAsyncScheduler$AsyncScheduledTask.run(FoliaAsyncScheduler.java:217)
[13:00:46] [Folia Async Scheduler Thread Timer/WARN]:     at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:572)
[13:00:46] [Folia Async Scheduler Thread Timer/WARN]:     at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:317)
[13:00:46] [Folia Async Scheduler Thread Timer/WARN]:     at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
[13:00:46] [Folia Async Scheduler Thread Timer/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[13:00:46] [Folia Async Scheduler Thread Timer/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[13:00:46] [Folia Async Scheduler Thread Timer/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[13:00:46] [pool-121-thread-1/INFO]: [VotingPlugin] BungeeDebug: Sending plugin message: Login, .efor89, 00000000-0000-0000-0009-01fa120cfc5e, citybuild
[13:00:46] [Server thread/INFO]: [Multiverse-Core] World 'LiteDungeon_0' was unloaded from Multiverse.
[13:00:47] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'LiteDungeon_0'
[13:00:47] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'LiteDungeon_0'
[13:00:47] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'LiteDungeon_0'
[13:00:47] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 20 entity chunks, 0 poi chunks in world 'LiteDungeon_0' in 0,02s
[13:00:47] [Server thread/INFO]: [Multiverse-Core] World 'LiteDungeon_1' was unloaded from Multiverse.
[13:00:47] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'LiteDungeon_1'
[13:00:47] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'LiteDungeon_1'
[13:00:47] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'LiteDungeon_1'
[13:00:47] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 30 entity chunks, 0 poi chunks in world 'LiteDungeon_1' in 0,01s
[13:00:47] [Server thread/INFO]: [Multiverse-Core] World 'LiteDungeon_2' was unloaded from Multiverse.
[13:00:47] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'LiteDungeon_2'
[13:00:47] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'LiteDungeon_2'
[13:00:47] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'LiteDungeon_2'
[13:00:47] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 25 entity chunks, 0 poi chunks in world 'LiteDungeon_2' in 0,01s
[13:00:54] [Server thread/INFO]: .efor89 issued server command: /ah
[13:01:05] [Server thread/INFO]: Cancelled updating task in menu
[13:01:15] [Server thread/INFO]: .efor89 issued server command: /ah confirm
[13:01:16] [Craft Scheduler Thread - 23 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[13:01:17] [Craft Scheduler Thread - 23 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:01:18] [Craft Scheduler Thread - 23 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:01:20] [Server thread/INFO]: .efor89 issued server command: /ah
[13:01:25] [Server thread/INFO]: Cancelled updating task in menu
[13:01:29] [Netty Server IO #1/INFO]: [floodgate] Floodgate Spieler .efor89 hat den Server verlassen
[13:01:29] [Server thread/INFO]: .efor89 lost connection: Disconnected
[13:01:29] [Server thread/INFO]: [AuctionHouse] Removing sell holding instance for user: .efor89
[13:02:16] [Craft Scheduler Thread - 20 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[13:02:18] [Craft Scheduler Thread - 8 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:02:18] [Craft Scheduler Thread - 8 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:03:18] [Craft Scheduler Thread - 17 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:03:19] [Craft Scheduler Thread - 17 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:04:18] [Craft Scheduler Thread - 17 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:04:19] [Craft Scheduler Thread - 17 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:05:19] [Craft Scheduler Thread - 51 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:05:20] [Craft Scheduler Thread - 51 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:06:20] [Craft Scheduler Thread - 49 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:06:20] [Craft Scheduler Thread - 49 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:06:27] [Server thread/WARN]: [Citizens] Task #310194 for Citizens v2.0.34-SNAPSHOT (build 3422) generated an exception
java.lang.NullPointerException: Cannot invoke "org.bukkit.entity.Entity.getLocation()" because "<parameter1>" is null
    at Citizens.jar/net.citizensnpcs.api.LocationLookup.getNearbyVisiblePlayers(LocationLookup.java:84) ~[Citizens.jar:?]
    at Citizens.jar/net.citizensnpcs.trait.waypoint.triggers.ChatTrigger.onWaypointReached(ChatTrigger.java:45) ~[Citizens.jar:?]
    at Citizens.jar/net.citizensnpcs.trait.waypoint.Waypoint.runTriggers(Waypoint.java:108) ~[Citizens.jar:?]
    at Citizens.jar/net.citizensnpcs.trait.waypoint.Waypoint.lambda$runTriggers$0(Waypoint.java:117) ~[Citizens.jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.6.jar:1.20.6-147-e41d44f]
    at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482) ~[paper-1.20.6.jar:1.20.6-147-e41d44f]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1699) ~[paper-1.20.6.jar:1.20.6-147-e41d44f]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:467) ~[paper-1.20.6.jar:1.20.6-147-e41d44f]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1571) ~[paper-1.20.6.jar:1.20.6-147-e41d44f]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1231) ~[paper-1.20.6.jar:1.20.6-147-e41d44f]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323) ~[paper-1.20.6.jar:1.20.6-147-e41d44f]
    at java.base/java.lang.Thread.run(Thread.java:1570) ~[?:?]
[13:07:20] [Craft Scheduler Thread - 55 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:07:21] [Craft Scheduler Thread - 55 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:08:21] [Craft Scheduler Thread - 39 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:08:22] [Craft Scheduler Thread - 39 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:09:21] [Craft Scheduler Thread - 26 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:09:22] [Craft Scheduler Thread - 26 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:10:22] [Craft Scheduler Thread - 8 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:10:22] [Craft Scheduler Thread - 8 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:11:22] [Craft Scheduler Thread - 60 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:11:23] [Craft Scheduler Thread - 60 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:12:23] [Craft Scheduler Thread - 62 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:12:23] [Craft Scheduler Thread - 62 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:12:27] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: Cannot invoke "org.bukkit.entity.TextDisplay.setInterpolationDelay(int)" because "<local3>" is null.
[13:12:27] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "org.bukkit.entity.TextDisplay.setInterpolationDelay(int)" because "<local3>" is null
[13:12:27] [Server thread/WARN]:     at Citizens.jar//net.citizensnpcs.trait.HologramTrait$TextDisplayVehicleRenderer.render0(HologramTrait.java:840)
[13:12:27] [Server thread/WARN]:     at Citizens.jar//net.citizensnpcs.trait.HologramTrait$SingleEntityHologramRenderer.render(HologramTrait.java:727)
[13:12:27] [Server thread/WARN]:     at Citizens.jar//net.citizensnpcs.trait.HologramTrait$HologramLine.render(HologramTrait.java:450)
[13:12:27] [Server thread/WARN]:     at Citizens.jar//net.citizensnpcs.trait.HologramTrait.run(HologramTrait.java:294)
[13:12:27] [Server thread/WARN]:     at Citizens.jar//net.citizensnpcs.api.npc.AbstractNPC.update(AbstractNPC.java:537)
[13:12:27] [Server thread/WARN]:     at Citizens.jar//net.citizensnpcs.npc.CitizensNPC.update(CitizensNPC.java:477)
[13:12:27] [Server thread/WARN]:     at Citizens.jar//net.citizensnpcs.nms.v1_20_R4.entity.EntityHumanNPC.tick(EntityHumanNPC.java:357)
[13:12:27] [Server thread/WARN]:     at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1415)
[13:12:27] [Server thread/WARN]:     at net.minecraft.world.level.Level.guardEntityTick(Level.java:1301)
[13:12:27] [Server thread/WARN]:     at net.minecraft.server.level.ServerLevel.lambda$tick$8(ServerLevel.java:922)
[13:12:27] [Server thread/WARN]:     at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:42)
[13:12:27] [Server thread/WARN]:     at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:902)
[13:12:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1779)
[13:12:27] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:467)
[13:12:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1571)
[13:12:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1231)
[13:12:27] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:323)
[13:12:27] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[13:13:23] [Craft Scheduler Thread - 23 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:13:23] [Craft Scheduler Thread - 23 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:14:23] [Craft Scheduler Thread - 71 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:14:24] [Craft Scheduler Thread - 71 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:15:21] [Craft Scheduler Thread - 93 - AuctionHouse/INFO]: [AuktionsHaus] Auto saved auction items & transactions
[13:15:24] [Craft Scheduler Thread - 89 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:15:24] [Craft Scheduler Thread - 89 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:15:49] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 7: null.
[13:15:49] [Server thread/WARN]: java.lang.NullPointerException
[13:15:49] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 7: null.
[13:15:49] [Server thread/WARN]: java.lang.NullPointerException
[13:15:49] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 7: null.
[13:15:49] [Server thread/WARN]: java.lang.NullPointerException
[13:15:52] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 7: null.
[13:15:52] [Server thread/WARN]: java.lang.NullPointerException
[13:15:52] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 7: null.
[13:15:52] [Server thread/WARN]: java.lang.NullPointerException
[13:15:52] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 7: null.
[13:15:52] [Server thread/WARN]: java.lang.NullPointerException
[13:15:52] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 7: null.
[13:15:52] [Server thread/WARN]: java.lang.NullPointerException
[13:15:53] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 7: null.
[13:15:53] [Server thread/WARN]: java.lang.NullPointerException
[13:15:53] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 7: null.
[13:15:53] [Server thread/WARN]: java.lang.NullPointerException
[13:15:53] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 7: null.
[13:15:53] [Server thread/WARN]: java.lang.NullPointerException
[13:15:54] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 7: null.
[13:15:54] [Server thread/WARN]: java.lang.NullPointerException
[13:16:24] [Craft Scheduler Thread - 96 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:16:25] [Craft Scheduler Thread - 96 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:16:56] [Server thread/INFO]: PromiGames: Unseren Shop erreicht ihr unter https://shop.promigames.de
[13:17:25] [Craft Scheduler Thread - 93 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:17:25] [Craft Scheduler Thread - 93 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:18:25] [Craft Scheduler Thread - 94 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:18:26] [Craft Scheduler Thread - 94 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:19:26] [Craft Scheduler Thread - 101 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:19:26] [Craft Scheduler Thread - 101 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:20:06] [PvPManager Worker Thread - 8/INFO]: [PvPManager] Update available: 3.33 Current version: 3.32.24
[13:20:06] [PvPManager Worker Thread - 8/INFO]: [PvPManager] Follow the link to download: https://www.spigotmc.org/resources/pvpmanager.10610
[13:20:26] [Craft Scheduler Thread - 89 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:20:26] [Craft Scheduler Thread - 89 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:21:26] [Craft Scheduler Thread - 107 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:21:27] [Craft Scheduler Thread - 107 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:22:27] [Craft Scheduler Thread - 90 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:22:28] [Craft Scheduler Thread - 90 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:23:27] [Craft Scheduler Thread - 111 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:23:28] [Craft Scheduler Thread - 111 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:24:28] [Craft Scheduler Thread - 90 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:24:29] [Craft Scheduler Thread - 90 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:25:29] [Craft Scheduler Thread - 79 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:25:29] [Craft Scheduler Thread - 79 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:26:29] [Craft Scheduler Thread - 93 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:26:29] [Craft Scheduler Thread - 93 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:27:29] [Craft Scheduler Thread - 91 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:27:30] [Craft Scheduler Thread - 91 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:28:30] [Craft Scheduler Thread - 125 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:28:30] [Craft Scheduler Thread - 125 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:29:30] [Craft Scheduler Thread - 90 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:29:31] [Craft Scheduler Thread - 90 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:30:21] [Craft Scheduler Thread - 97 - AuctionHouse/INFO]: [AuktionsHaus] Auto saved auction items & transactions
[13:30:31] [Craft Scheduler Thread - 90 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:30:31] [Craft Scheduler Thread - 90 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:31:31] [Craft Scheduler Thread - 119 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:31:32] [Craft Scheduler Thread - 119 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:32:32] [Craft Scheduler Thread - 79 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:32:33] [Craft Scheduler Thread - 79 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:33:29] [User Authenticator #1/INFO]: UUID of player efor89 is ddec45c5-26a9-4024-b2f7-2610a078b857
[13:33:29] [Server thread/INFO]: [AuctionHouse] Updating profile player reference for: efor89
[13:33:29] [Server thread/INFO]: [DiscordSRV] Spieler efor89 hat den Server mit Berechtigung zum stillen Betreten betreten, es wird keine Nachricht gesendet
[13:33:29] [Server thread/INFO]: efor89[/79.251.89.158:53726] logged in with entity id 889464 at ([Hollywood]27.804341871389614, 78.0, 1.6332511208468157)
[13:33:29] [Craft Scheduler Thread - 139 - EntityClearer/WARN]: java.io.IOException: Server returned HTTP response code: 403 for URL: https://api.github.com/repos/SilverstoneMC/EntityClearer/releases/latest
[13:33:29] [Craft Scheduler Thread - 139 - EntityClearer/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:2014)
[13:33:29] [Craft Scheduler Thread - 139 - EntityClearer/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1615)
[13:33:29] [Craft Scheduler Thread - 139 - EntityClearer/WARN]:     at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:223)
[13:33:29] [Craft Scheduler Thread - 139 - EntityClearer/WARN]:     at java.base/java.net.URL.openStream(URL.java:1325)
[13:33:29] [Craft Scheduler Thread - 139 - EntityClearer/WARN]:     at EntityClearer.jar//net.silverstonemc.entityclearer.utils.UpdateChecker.getLatestVersion(UpdateChecker.java:59)
[13:33:29] [Craft Scheduler Thread - 139 - EntityClearer/WARN]:     at EntityClearer.jar//net.silverstonemc.entityclearer.utils.UpdateChecker$1.run(UpdateChecker.java:37)
[13:33:29] [Craft Scheduler Thread - 139 - EntityClearer/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:101)
[13:33:29] [Craft Scheduler Thread - 139 - EntityClearer/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[13:33:29] [Craft Scheduler Thread - 139 - EntityClearer/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[13:33:29] [Craft Scheduler Thread - 139 - EntityClearer/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[13:33:29] [Craft Scheduler Thread - 139 - EntityClearer/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[13:33:29] [Craft Scheduler Thread - 139 - EntityClearer/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1570)
[13:33:30] [pool-121-thread-1/INFO]: [VotingPlugin] BungeeDebug: Sending plugin message: Login, efor89, ddec45c5-26a9-4024-b2f7-2610a078b857, citybuild
[13:33:33] [Craft Scheduler Thread - 133 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:33:33] [Craft Scheduler Thread - 133 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:33:36] [Server thread/INFO]: PromiGames: Du brauchst einen Kopf? Dann nutz doch mal den Befehl /skulls dort findest du Tausende Köpfe.
[13:33:41] [Server thread/INFO]: efor89 issued server command: /gmc
[13:34:16] [Craft Scheduler Thread - 142 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[13:34:26] [Server thread/INFO]: efor89 issued server command: /ah sell 10000 500 100
[13:34:33] [Craft Scheduler Thread - 132 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:34:33] [Craft Scheduler Thread - 132 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:34:42] [Server thread/INFO]: Cancelled updating task in menu
[13:34:46] [Server thread/INFO]: efor89 issued server command: /ah
[13:34:48] [Server thread/INFO]: Cancelled updating task in menu
[13:34:54] [Server thread/INFO]: efor89 issued server command: /ah
[13:34:58] [Server thread/INFO]: Cancelled updating task in menu
[13:34:59] [Server thread/INFO]: efor89 issued server command: /ah
[13:35:01] [Server thread/INFO]: Cancelled updating task in menu
[13:35:10] [Server thread/INFO]: efor89 issued server command: /ah confirm
[13:35:12] [Server thread/INFO]: efor89 issued server command: /ah
[13:35:16] [Server thread/INFO]: Cancelled updating task in menu
[13:35:33] [Craft Scheduler Thread - 131 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:35:34] [Craft Scheduler Thread - 131 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:36:34] [Craft Scheduler Thread - 97 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:36:34] [Craft Scheduler Thread - 97 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:36:43] [Server thread/INFO]: Economy >> Du hast 100,00 S an efor89 gesendet.
[13:37:03] [Server thread/INFO]: efor89 issued server command: /itemname &bLucy
[13:37:34] [Craft Scheduler Thread - 141 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:37:35] [Craft Scheduler Thread - 141 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:37:54] [Server thread/INFO]: efor89 issued server command: /itemname &bLucy
[13:38:26] [Server thread/INFO]: efor89 issued server command: /itemname &cLucy
[13:38:35] [Craft Scheduler Thread - 138 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:38:35] [Craft Scheduler Thread - 138 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:39:35] [Craft Scheduler Thread - 131 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:39:36] [Craft Scheduler Thread - 131 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:39:45] [Server thread/INFO]: efor89 issued server command: /fw
[13:40:27] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[13:40:27] [Server thread/WARN]: java.lang.NullPointerException
[13:40:27] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[13:40:27] [Server thread/WARN]: java.lang.NullPointerException
[13:40:36] [Craft Scheduler Thread - 146 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:40:36] [Craft Scheduler Thread - 146 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:41:02] [Server thread/INFO]: efor89 lost connection: Disconnected
[13:41:02] [Server thread/INFO]: [DiscordSRV] Spieler efor89 hat den Server mit Berechtigung zum stillen Verlassen verlassen, es wird keine Nachricht gesendet
[13:41:02] [Server thread/INFO]: [AuctionHouse] Removing sell holding instance for user: efor89
[13:41:16] [Craft Scheduler Thread - 131 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[13:41:36] [Craft Scheduler Thread - 141 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:41:37] [Craft Scheduler Thread - 141 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:41:45] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 7: null.
[13:41:45] [Server thread/WARN]: java.lang.NullPointerException
[13:42:37] [Craft Scheduler Thread - 158 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:42:37] [Craft Scheduler Thread - 158 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:43:37] [Craft Scheduler Thread - 150 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:43:37] [Craft Scheduler Thread - 150 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:44:37] [Craft Scheduler Thread - 156 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:44:38] [Craft Scheduler Thread - 156 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:45:21] [Craft Scheduler Thread - 161 - AuctionHouse/INFO]: [AuktionsHaus] Auto saved auction items & transactions
[13:45:33] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[13:45:33] [Server thread/WARN]: java.lang.NullPointerException
[13:45:34] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[13:45:34] [Server thread/WARN]: java.lang.NullPointerException
[13:45:34] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[13:45:34] [Server thread/WARN]: java.lang.NullPointerException
[13:45:34] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[13:45:34] [Server thread/WARN]: java.lang.NullPointerException
[13:45:34] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[13:45:34] [Server thread/WARN]: java.lang.NullPointerException
[13:45:38] [Craft Scheduler Thread - 131 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:45:38] [Craft Scheduler Thread - 131 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:46:38] [Craft Scheduler Thread - 157 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:46:39] [Craft Scheduler Thread - 157 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:47:39] [Craft Scheduler Thread - 168 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:47:39] [Craft Scheduler Thread - 168 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:48:39] [Craft Scheduler Thread - 160 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:48:40] [Craft Scheduler Thread - 160 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:49:40] [Craft Scheduler Thread - 144 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:49:40] [Craft Scheduler Thread - 144 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:50:16] [Server thread/INFO]: PromiGames: Vergest nicht zu Voten, ihr könnt bis zu 6 Vote Schlüssel bekommen! Nutzt /vote
[13:50:40] [Craft Scheduler Thread - 181 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:50:40] [Craft Scheduler Thread - 181 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:51:40] [Craft Scheduler Thread - 167 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:51:41] [Craft Scheduler Thread - 167 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:52:41] [Craft Scheduler Thread - 131 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:52:41] [Craft Scheduler Thread - 131 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:53:41] [Craft Scheduler Thread - 180 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:53:42] [Craft Scheduler Thread - 180 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:54:10] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[13:54:10] [Server thread/WARN]: java.lang.NullPointerException
[13:54:10] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[13:54:10] [Server thread/WARN]: java.lang.NullPointerException
[13:54:42] [Craft Scheduler Thread - 185 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:54:42] [Craft Scheduler Thread - 185 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:55:42] [Craft Scheduler Thread - 185 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:55:43] [Craft Scheduler Thread - 185 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:56:43] [Craft Scheduler Thread - 193 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:56:43] [Craft Scheduler Thread - 193 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:56:54] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[13:56:54] [Server thread/WARN]: java.lang.NullPointerException
[13:56:55] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[13:56:55] [Server thread/WARN]: java.lang.NullPointerException
[13:56:55] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[13:56:55] [Server thread/WARN]: java.lang.NullPointerException
[13:57:43] [Craft Scheduler Thread - 187 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:57:43] [Craft Scheduler Thread - 187 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:58:43] [Craft Scheduler Thread - 202 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:58:44] [Craft Scheduler Thread - 202 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:59:44] [Craft Scheduler Thread - 189 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:59:44] [Craft Scheduler Thread - 189 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:00:21] [Craft Scheduler Thread - 186 - AuctionHouse/INFO]: [AuktionsHaus] Auto saved auction items & transactions
[14:00:44] [Craft Scheduler Thread - 163 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:00:44] [Craft Scheduler Thread - 163 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:01:44] [Craft Scheduler Thread - 198 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:01:45] [Craft Scheduler Thread - 198 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:02:45] [Craft Scheduler Thread - 204 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:02:45] [Craft Scheduler Thread - 204 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:03:45] [Craft Scheduler Thread - 210 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:03:46] [Craft Scheduler Thread - 210 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:04:46] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 7: null.
[14:04:46] [Server thread/WARN]: java.lang.NullPointerException
[14:04:46] [Craft Scheduler Thread - 215 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:04:46] [Craft Scheduler Thread - 215 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:05:46] [Craft Scheduler Thread - 209 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:05:47] [Craft Scheduler Thread - 209 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:06:46] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[14:06:46] [Server thread/WARN]: java.lang.NullPointerException
[14:06:46] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[14:06:46] [Server thread/WARN]: java.lang.NullPointerException
[14:06:46] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[14:06:46] [Server thread/WARN]: java.lang.NullPointerException
[14:06:46] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[14:06:46] [Server thread/WARN]: java.lang.NullPointerException
[14:06:46] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[14:06:46] [Server thread/WARN]: java.lang.NullPointerException
[14:06:46] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[14:06:46] [Server thread/WARN]: java.lang.NullPointerException
[14:06:47] [Craft Scheduler Thread - 216 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:06:47] [Craft Scheduler Thread - 216 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:06:56] [Server thread/INFO]: PromiGames: Hast du keine Lust auf PVP? Dann benutz doch einfach den /pvp Befehl.
[14:07:47] [Craft Scheduler Thread - 211 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:07:48] [Craft Scheduler Thread - 211 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:08:48] [Craft Scheduler Thread - 218 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:08:48] [Craft Scheduler Thread - 218 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:08:58] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[14:08:58] [Server thread/WARN]: java.lang.NullPointerException
[14:09:48] [Craft Scheduler Thread - 226 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:09:49] [Craft Scheduler Thread - 226 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:10:49] [Craft Scheduler Thread - 219 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:10:49] [Craft Scheduler Thread - 219 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:11:49] [Craft Scheduler Thread - 226 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:11:49] [Craft Scheduler Thread - 226 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:12:47] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[14:12:47] [Server thread/WARN]: java.lang.NullPointerException
[14:12:48] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[14:12:48] [Server thread/WARN]: java.lang.NullPointerException
[14:12:48] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[14:12:48] [Server thread/WARN]: java.lang.NullPointerException
[14:12:48] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[14:12:48] [Server thread/WARN]: java.lang.NullPointerException
[14:12:49] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[14:12:49] [Server thread/WARN]: java.lang.NullPointerException
[14:12:49] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[14:12:49] [Server thread/WARN]: java.lang.NullPointerException
[14:12:49] [Craft Scheduler Thread - 223 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:12:50] [Craft Scheduler Thread - 223 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:12:50] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[14:12:50] [Server thread/WARN]: java.lang.NullPointerException
[14:13:26] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[14:13:26] [Server thread/WARN]: java.lang.NullPointerException
[14:13:50] [Craft Scheduler Thread - 207 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:13:50] [Craft Scheduler Thread - 207 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:14:50] [Craft Scheduler Thread - 221 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:14:51] [Craft Scheduler Thread - 221 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:15:21] [Craft Scheduler Thread - 221 - AuctionHouse/INFO]: [AuktionsHaus] Auto saved auction items & transactions
[14:15:51] [Craft Scheduler Thread - 237 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:15:51] [Craft Scheduler Thread - 237 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:16:15] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[14:16:15] [Server thread/WARN]: java.lang.NullPointerException
[14:16:15] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[14:16:15] [Server thread/WARN]: java.lang.NullPointerException
[14:16:51] [Craft Scheduler Thread - 240 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:16:52] [Craft Scheduler Thread - 240 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:17:52] [Craft Scheduler Thread - 236 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:17:52] [Craft Scheduler Thread - 236 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:18:52] [Craft Scheduler Thread - 242 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:18:53] [Craft Scheduler Thread - 242 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:19:30] [User Authenticator #2/INFO]: UUID of player WidderMinecraft is 942fe858-b23f-4bc6-9455-4c9daf826150
[14:19:31] [Server thread/ERROR]: Tried to load unrecognized recipe: brewery:sealingtable removed now.
[14:19:31] [Server thread/ERROR]: Tried to load unrecognized recipe: brewery:sealingtable removed now.
[14:19:31] [Server thread/INFO]: [DiscordSRV] Spieler WidderMinecraft hat den Server mit Berechtigung zum stillen Betreten betreten, es wird keine Nachricht gesendet
[14:19:31] [pool-138-thread-1/INFO]: [AuctionHouse] Creating profile for player: WidderMinecraft
[14:19:31] [Server thread/INFO]: WidderMinecraft[/93.210.38.8:55052] logged in with entity id 2012556 at ([Hollywood]-142.73049649268643, 64.0, -39.79211939390474)
[14:19:32] [pool-121-thread-1/INFO]: [VotingPlugin] BungeeDebug: Sending plugin message: Login, WidderMinecraft, 942fe858-b23f-4bc6-9455-4c9daf826150, citybuild
[14:19:42] [Server thread/WARN]: WidderMinecraft was kicked for floating too long!
[14:19:42] [Server thread/INFO]: WidderMinecraft lost connection: Flying is not enabled on this server
[14:19:42] [Server thread/INFO]: [DiscordSRV] Spieler WidderMinecraft hat den Server mit Berechtigung zum stillen Verlassen verlassen, es wird keine Nachricht gesendet
[14:19:42] [Server thread/INFO]: [AuctionHouse] Removing sell holding instance for user: WidderMinecraft
[14:19:51] [User Authenticator #2/INFO]: UUID of player WidderMinecraft is 942fe858-b23f-4bc6-9455-4c9daf826150
[14:19:51] [Server thread/INFO]: [AuctionHouse] Updating profile player reference for: WidderMinecraft
[14:19:51] [Server thread/INFO]: [DiscordSRV] Spieler WidderMinecraft hat den Server mit Berechtigung zum stillen Betreten betreten, es wird keine Nachricht gesendet
[14:19:51] [Server thread/INFO]: WidderMinecraft[/93.210.38.8:55067] logged in with entity id 2018136 at ([Hollywood]-135.29831884732923, 63.0, -39.79620649023587)
[14:19:52] [pool-121-thread-1/INFO]: [VotingPlugin] BungeeDebug: Sending plugin message: Login, WidderMinecraft, 942fe858-b23f-4bc6-9455-4c9daf826150, citybuild
[14:19:53] [Craft Scheduler Thread - 220 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:19:53] [Craft Scheduler Thread - 220 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:19:54] [Server thread/INFO]: WidderMinecraft issued server command: /fly
[14:20:02] [Server thread/INFO]: [Quests] Loaded language en-US. Translations via Crowdin
[14:20:05] [Server thread/INFO]: WidderMinecraft issued server command: /home v
[14:20:10] [Server thread/INFO]: WidderMinecraft issued server command: /fly
[14:20:12] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[14:20:16] [Craft Scheduler Thread - 217 - BuycraftX/INFO]: [BuycraftX] Sending 3 analytic events
[14:20:30] [Server thread/INFO]: WidderMinecraft issued server command: /p h
[14:20:53] [Craft Scheduler Thread - 245 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:20:53] [Craft Scheduler Thread - 245 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:21:18] [Server thread/INFO]: WidderMinecraft issued server command: /home b
[14:21:19] [Server thread/INFO]: WidderMinecraft issued server command: /fly
[14:21:53] [Craft Scheduler Thread - 235 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:21:54] [Craft Scheduler Thread - 235 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:22:00] [Server thread/INFO]: WidderMinecraft issued server command: /p h
[14:22:19] [Server thread/INFO]: WidderMinecraft issued server command: /shop sellall
[14:22:39] [User Authenticator #3/INFO]: UUID of player ItzGhostt is 34be8256-bfc0-4485-8856-a151563d2622
[14:22:39] [Server thread/ERROR]: Tried to load unrecognized recipe: brewery:sealingtable removed now.
[14:22:39] [Server thread/ERROR]: Tried to load unrecognized recipe: bukkit:d750429b-4751-45e8-b51a-0c4b100d812f removed now.
[14:22:39] [Server thread/ERROR]: Tried to load unrecognized recipe: bukkit:9f5dd82c-17d3-4e9a-a5b2-2725e8c0d4c5 removed now.
[14:22:39] [Server thread/ERROR]: Tried to load unrecognized recipe: bukkit:9a395691-9f64-46ad-9232-6c6e07e6e348 removed now.
[14:22:39] [Server thread/ERROR]: Tried to load unrecognized recipe: brewery:sealingtable removed now.
[14:22:39] [Server thread/ERROR]: Tried to load unrecognized recipe: bukkit:d750429b-4751-45e8-b51a-0c4b100d812f removed now.
[14:22:39] [Server thread/ERROR]: Tried to load unrecognized recipe: bukkit:9f5dd82c-17d3-4e9a-a5b2-2725e8c0d4c5 removed now.
[14:22:39] [Server thread/ERROR]: Tried to load unrecognized recipe: bukkit:9a395691-9f64-46ad-9232-6c6e07e6e348 removed now.
[14:22:39] [pool-138-thread-1/INFO]: [AuctionHouse] Creating profile for player: ItzGhostt
[14:22:39] [Server thread/INFO]: ItzGhostt[/188.106.21.217:55149] logged in with entity id 2046796 at ([Hollywood]-46.85832615798006, 63.0, 3719.597037321103)
[14:22:40] [pool-121-thread-1/INFO]: [VotingPlugin] BungeeDebug: Sending plugin message: Login, ItzGhostt, 34be8256-bfc0-4485-8856-a151563d2622, citybuild
[14:22:44] [Server thread/INFO]: WidderMinecraft issued server command: /shop sellall
[14:22:44] [Server thread/INFO]: ItzGhostt lost connection: Disconnected
[14:22:44] [Server thread/INFO]: [AuctionHouse] Removing sell holding instance for user: ItzGhostt
[14:22:54] [Craft Scheduler Thread - 219 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:22:54] [Craft Scheduler Thread - 219 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:23:04] [Server thread/INFO]: WidderMinecraft issued server command: /shop sellall
[14:23:16] [Craft Scheduler Thread - 253 - BuycraftX/INFO]: [BuycraftX] Sending 2 analytic events
[14:23:29] [Server thread/INFO]: WidderMinecraft issued server command: /shopsearch
[14:23:36] [Server thread/INFO]: PromiGames: Ihr habt auch die Möglichkeit etwas zu reporten mit /report
[14:23:39] [Server thread/INFO]: WidderMinecraft issued server command: /shop sellall
[14:23:54] [Craft Scheduler Thread - 236 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:23:54] [Craft Scheduler Thread - 236 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:24:02] [Server thread/INFO]: WidderMinecraft issued server command: /shop sellall
[14:24:20] [Server thread/INFO]: WidderMinecraft issued server command: /shop sellall
[14:24:25] [Server thread/INFO]: WidderMinecraft issued server command: /shop
[14:24:40] [Server thread/WARN]: [Citizens] Task #4172320 for Citizens v2.0.34-SNAPSHOT (build 3422) generated an exception
java.lang.NullPointerException: null
[14:24:54] [Craft Scheduler Thread - 256 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:24:55] [Craft Scheduler Thread - 256 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:25:55] [Craft Scheduler Thread - 247 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:25:55] [Craft Scheduler Thread - 247 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:26:00] [Server thread/INFO]: WidderMinecraft issued server command: /home b
[14:26:20] [Server thread/INFO]: WidderMinecraft issued server command: /Fw
[14:26:22] [Server thread/INFO]: WidderMinecraft issued server command: /fw
[14:26:27] [Server thread/INFO]: WidderMinecraft issued server command: /fw
[14:26:29] [Server thread/INFO]: WidderMinecraft issued server command: /fly
[14:26:29] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[14:26:29] [Server thread/WARN]: java.lang.NullPointerException
[14:26:30] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[14:26:30] [Server thread/WARN]: java.lang.NullPointerException
[14:26:30] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[14:26:30] [Server thread/WARN]: java.lang.NullPointerException
[14:26:30] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[14:26:30] [Server thread/WARN]: java.lang.NullPointerException
[14:26:30] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[14:26:30] [Server thread/WARN]: java.lang.NullPointerException
[14:26:55] [Craft Scheduler Thread - 235 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:26:56] [Craft Scheduler Thread - 235 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:27:43] [Server thread/INFO]: WidderMinecraft issued server command: /shop
[14:27:55] [Craft Scheduler Thread - 257 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:27:56] [Craft Scheduler Thread - 257 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:28:11] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[14:28:56] [Craft Scheduler Thread - 257 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:28:56] [Craft Scheduler Thread - 257 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:29:39] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[14:29:39] [Server thread/WARN]: java.lang.NullPointerException
[14:29:40] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[14:29:40] [Server thread/WARN]: java.lang.NullPointerException
[14:29:46] [Server thread/INFO]: WidderMinecraft issued server command: /shop sellall
[14:29:56] [Craft Scheduler Thread - 262 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:29:57] [Craft Scheduler Thread - 262 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:30:00] [Server thread/INFO]: WidderMinecraft issued server command: /craft
[14:30:04] [Server thread/INFO]: WidderMinecraft issued server command: /shop
[14:30:21] [Craft Scheduler Thread - 261 - AuctionHouse/INFO]: [AuktionsHaus] Auto saved auction items & transactions
[14:30:28] [Server thread/INFO]: WidderMinecraft issued server command: /shop
[14:30:57] [Craft Scheduler Thread - 225 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:30:57] [Craft Scheduler Thread - 225 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:31:26] [Server thread/INFO]: WidderMinecraft lost connection: Timed out
[14:31:26] [Server thread/INFO]: [DiscordSRV] Spieler WidderMinecraft hat den Server mit Berechtigung zum stillen Verlassen verlassen, es wird keine Nachricht gesendet
[14:31:26] [Server thread/INFO]: [AuctionHouse] Removing sell holding instance for user: WidderMinecraft
[14:31:57] [Craft Scheduler Thread - 249 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:31:57] [Craft Scheduler Thread - 249 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:32:06] [User Authenticator #4/INFO]: UUID of player WidderMinecraft is 942fe858-b23f-4bc6-9455-4c9daf826150
[14:32:07] [Server thread/INFO]: [AuctionHouse] Updating profile player reference for: WidderMinecraft
[14:32:07] [Server thread/INFO]: [DiscordSRV] Spieler WidderMinecraft hat den Server mit Berechtigung zum stillen Betreten betreten, es wird keine Nachricht gesendet
[14:32:07] [Server thread/INFO]: WidderMinecraft[/93.210.38.8:55460] logged in with entity id 2222577 at ([Farmwelt]-102.63689824042264, 88.62606022827106, -616.0088776531865)
[14:32:08] [pool-121-thread-1/INFO]: [VotingPlugin] BungeeDebug: Sending plugin message: Login, WidderMinecraft, 942fe858-b23f-4bc6-9455-4c9daf826150, citybuild
[14:32:12] [Server thread/INFO]: WidderMinecraft issued server command: /shop sallall
[14:32:16] [Craft Scheduler Thread - 236 - BuycraftX/INFO]: [BuycraftX] Sending 2 analytic events
[14:32:18] [Server thread/INFO]: WidderMinecraft issued server command: /shop sellall
[14:32:31] [Server thread/INFO]: WidderMinecraft issued server command: /shop sellall
[14:32:35] [Server thread/INFO]: WidderMinecraft issued server command: /shop
[14:32:40] [Server thread/INFO]: WidderMinecraft issued server command: /craft
[14:32:46] [Server thread/INFO]: WidderMinecraft issued server command: /home b
[14:32:49] [Server thread/INFO]: WidderMinecraft issued server command: /fly
[14:32:57] [Craft Scheduler Thread - 278 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:32:58] [Craft Scheduler Thread - 278 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:33:58] [Craft Scheduler Thread - 280 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:33:58] [Craft Scheduler Thread - 280 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:34:02] [User Authenticator #5/INFO]: UUID of player Not_not_Shadow is 7be217c2-0b84-47b1-870f-0007586c0386
[14:34:03] [pool-121-thread-1/INFO]: [VotingPlugin] BungeeDebug: Sending plugin message: Login, Not_not_Shadow, 7be217c2-0b84-47b1-870f-0007586c0386, citybuild
[14:34:04] [Server thread/INFO]: Not_not_Shadow[/185.35.111.239:55513] logged in with entity id 2248426 at ([Hollywood]4.112829730480324, 59.59986636211934, -171.78988607882096)
[14:34:04] [pool-138-thread-1/INFO]: [AuctionHouse] Creating profile for player: Not_not_Shadow
[14:34:16] [Craft Scheduler Thread - 271 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[14:34:18] [Server thread/INFO]: Not_not_Shadow issued server command: /cb
[14:34:41] [Server thread/INFO]: Not_not_Shadow issued server command: /ph
[14:34:54] [Server thread/INFO]: Not_not_Shadow issued server command: /p visit Not_not_Shadow
[14:34:58] [Craft Scheduler Thread - 261 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:34:58] [Craft Scheduler Thread - 261 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:35:14] [Server thread/INFO]: WidderMinecraft issued server command: /shop
[14:35:16] [Server thread/INFO]: WidderMinecraft issued server command: /shop
[14:35:29] [Server thread/INFO]: WidderMinecraft issued server command: /end
[14:35:32] [Server thread/INFO]: WidderMinecraft issued server command: /fly
[14:35:34] [Server thread/INFO]: Not_not_Shadow issued server command: /enderchest
[14:35:57] [Server thread/INFO]: Not_not_Shadow issued server command: /p info
[14:35:58] [Craft Scheduler Thread - 276 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:35:59] [Craft Scheduler Thread - 276 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:36:22] [Server thread/INFO]: Economy >> Du hast 100,00 S an Not_not_Shadow gesendet.
[14:36:59] [Craft Scheduler Thread - 287 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:36:59] [Craft Scheduler Thread - 287 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:37:59] [Craft Scheduler Thread - 276 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:38:00] [Craft Scheduler Thread - 276 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:38:00] [Server thread/INFO]: WidderMinecraft issued server command: /shop sellall
[14:38:03] [Server thread/INFO]: WidderMinecraft issued server command: /p h
[14:38:47] [Server thread/INFO]: WidderMinecraft issued server command: /fly
[14:38:52] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[14:38:55] [Server thread/INFO]: Not_not_Shadow issued server command: /pay WidderMinecraft all
[14:38:57] [Server thread/INFO]: WidderMinecraft issued server command: /seasonshop
[14:39:00] [Craft Scheduler Thread - 281 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:39:00] [Craft Scheduler Thread - 281 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:39:02] [Server thread/INFO]: Not_not_Shadow issued server command: /pay WidderMinecraft 250
[14:39:48] [Server thread/INFO]: Not_not_Shadow lost connection: Disconnected
[14:39:48] [Server thread/INFO]: [AuctionHouse] Removing sell holding instance for user: Not_not_Shadow
[14:40:00] [Craft Scheduler Thread - 286 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:40:01] [Craft Scheduler Thread - 286 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:40:16] [Craft Scheduler Thread - 285 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[14:40:16] [Server thread/INFO]: PromiGames: Vergest nicht zu Voten, ihr könnt bis zu 6 Vote Schlüssel bekommen! Nutzt /vote
[14:40:21] [Server thread/INFO]: WidderMinecraft lost connection: Disconnected
[14:40:21] [Server thread/INFO]: [DiscordSRV] Spieler WidderMinecraft hat den Server mit Berechtigung zum stillen Verlassen verlassen, es wird keine Nachricht gesendet
[14:40:21] [Server thread/INFO]: [AuctionHouse] Removing sell holding instance for user: WidderMinecraft
[14:41:01] [Craft Scheduler Thread - 282 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:41:01] [Craft Scheduler Thread - 282 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:41:10] [User Authenticator #6/INFO]: UUID of player WidderMinecraft is 942fe858-b23f-4bc6-9455-4c9daf826150
[14:41:10] [Server thread/INFO]: [AuctionHouse] Updating profile player reference for: WidderMinecraft
[14:41:10] [Server thread/INFO]: [DiscordSRV] Spieler WidderMinecraft hat den Server mit Berechtigung zum stillen Betreten betreten, es wird keine Nachricht gesendet
[14:41:10] [Server thread/INFO]: WidderMinecraft[/93.210.38.8:55768] logged in with entity id 2314987 at ([Hollywood]-141.79000641963583, 63.875, -28.4130624533202)
[14:41:11] [pool-121-thread-1/INFO]: [VotingPlugin] BungeeDebug: Sending plugin message: Login, WidderMinecraft, 942fe858-b23f-4bc6-9455-4c9daf826150, citybuild
[14:41:16] [Craft Scheduler Thread - 277 - BuycraftX/INFO]: [BuycraftX] Sending 2 analytic events
[14:42:01] [Craft Scheduler Thread - 277 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:42:01] [Craft Scheduler Thread - 277 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:43:01] [Craft Scheduler Thread - 277 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:43:02] [Server thread/INFO]: WidderMinecraft issued server command: /shop sellall
[14:43:02] [Craft Scheduler Thread - 277 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:44:02] [Craft Scheduler Thread - 277 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:44:02] [Craft Scheduler Thread - 277 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:45:02] [Craft Scheduler Thread - 294 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:45:03] [Craft Scheduler Thread - 294 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:45:21] [Craft Scheduler Thread - 277 - AuctionHouse/INFO]: [AuktionsHaus] Auto saved auction items & transactions
[14:46:03] [Craft Scheduler Thread - 291 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:46:03] [Craft Scheduler Thread - 291 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:47:03] [Craft Scheduler Thread - 280 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:47:03] [Craft Scheduler Thread - 280 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:48:03] [Craft Scheduler Thread - 276 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:48:04] [Craft Scheduler Thread - 276 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:49:04] [Craft Scheduler Thread - 303 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:49:05] [Craft Scheduler Thread - 303 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:49:41] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[14:50:05] [Craft Scheduler Thread - 290 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:50:05] [Craft Scheduler Thread - 290 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:51:05] [Craft Scheduler Thread - 303 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:51:06] [Craft Scheduler Thread - 303 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:52:05] [Craft Scheduler Thread - 307 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:52:06] [Craft Scheduler Thread - 307 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:53:06] [Craft Scheduler Thread - 277 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:53:06] [Craft Scheduler Thread - 277 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:54:06] [Craft Scheduler Thread - 306 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:54:07] [Craft Scheduler Thread - 306 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:55:07] [Craft Scheduler Thread - 299 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:55:07] [Craft Scheduler Thread - 299 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:56:07] [Craft Scheduler Thread - 310 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:56:08] [Craft Scheduler Thread - 310 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:56:56] [Server thread/INFO]: PromiGames: Hast du keine Lust auf PVP? Dann benutz doch einfach den /pvp Befehl.
[14:57:08] [Craft Scheduler Thread - 277 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:57:08] [Craft Scheduler Thread - 277 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:58:08] [Craft Scheduler Thread - 313 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:58:09] [Craft Scheduler Thread - 313 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:59:08] [Craft Scheduler Thread - 299 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:59:09] [Craft Scheduler Thread - 299 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:59:41] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[15:00:09] [Craft Scheduler Thread - 277 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:00:10] [Craft Scheduler Thread - 277 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:00:21] [Craft Scheduler Thread - 301 - AuctionHouse/INFO]: [AuktionsHaus] Auto saved auction items & transactions
[15:01:10] [Craft Scheduler Thread - 280 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:01:10] [Craft Scheduler Thread - 280 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:02:10] [Craft Scheduler Thread - 301 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:02:10] [Craft Scheduler Thread - 301 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:03:10] [Craft Scheduler Thread - 314 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:03:11] [Craft Scheduler Thread - 314 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:04:11] [Craft Scheduler Thread - 317 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:04:13] [Craft Scheduler Thread - 317 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:05:13] [Craft Scheduler Thread - 319 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:05:13] [Craft Scheduler Thread - 319 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:06:13] [Craft Scheduler Thread - 319 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:06:14] [Craft Scheduler Thread - 319 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:07:14] [Craft Scheduler Thread - 314 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:07:14] [Craft Scheduler Thread - 314 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:08:14] [Craft Scheduler Thread - 319 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:08:15] [Craft Scheduler Thread - 319 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:09:15] [Craft Scheduler Thread - 314 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:09:16] [Craft Scheduler Thread - 314 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:09:41] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[15:10:16] [Craft Scheduler Thread - 290 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:10:16] [Craft Scheduler Thread - 290 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:11:16] [Craft Scheduler Thread - 311 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:11:16] [Craft Scheduler Thread - 311 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:12:16] [Craft Scheduler Thread - 329 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:12:17] [Craft Scheduler Thread - 329 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:13:17] [Craft Scheduler Thread - 277 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:13:18] [Craft Scheduler Thread - 277 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:13:36] [Server thread/INFO]: PromiGames: Ihr habt auch die Möglichkeit etwas zu reporten mit /report
[15:14:17] [Craft Scheduler Thread - 319 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:14:18] [Craft Scheduler Thread - 319 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:15:18] [Craft Scheduler Thread - 315 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:15:19] [Craft Scheduler Thread - 315 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:15:21] [Craft Scheduler Thread - 327 - AuctionHouse/INFO]: [AuktionsHaus] Auto saved auction items & transactions
[15:16:19] [Craft Scheduler Thread - 315 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:16:20] [Craft Scheduler Thread - 315 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:17:20] [Craft Scheduler Thread - 335 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:17:21] [Craft Scheduler Thread - 335 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:18:21] [Craft Scheduler Thread - 335 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:18:22] [Craft Scheduler Thread - 335 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:19:22] [Craft Scheduler Thread - 315 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:19:23] [Craft Scheduler Thread - 315 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:19:41] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[15:20:23] [Craft Scheduler Thread - 328 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:20:24] [Craft Scheduler Thread - 328 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:21:22] [User Authenticator #7/INFO]: UUID of player efor89 is ddec45c5-26a9-4024-b2f7-2610a078b857
[15:21:22] [Server thread/INFO]: [AuctionHouse] Updating profile player reference for: efor89
[15:21:22] [Server thread/INFO]: [DiscordSRV] Spieler efor89 hat den Server mit Berechtigung zum stillen Betreten betreten, es wird keine Nachricht gesendet
[15:21:22] [Server thread/INFO]: efor89[/79.251.89.158:57390] logged in with entity id 2563058 at ([Farmwelt]-50.675386137672405, 73.86899819439826, -107.2689191038948)
[15:21:24] [pool-121-thread-1/INFO]: [VotingPlugin] BungeeDebug: Sending plugin message: Login, efor89, ddec45c5-26a9-4024-b2f7-2610a078b857, citybuild
[15:21:24] [Craft Scheduler Thread - 319 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:21:25] [Craft Scheduler Thread - 319 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:21:29] [Server thread/INFO]: efor89 issued server command: /joinstatus aus
[15:21:32] [Server thread/INFO]: efor89 issued server command: /skyblock
[15:21:32] [Server thread/INFO]: efor89 lost connection: Disconnected
[15:21:32] [Server thread/INFO]: [DiscordSRV] Spieler efor89 hat den Server mit Berechtigung zum stillen Verlassen verlassen, es wird keine Nachricht gesendet
[15:21:32] [Server thread/INFO]: [AuctionHouse] Removing sell holding instance for user: efor89
[15:21:36] [Server thread/INFO]: WidderMinecraft lost connection: Disconnected
[15:21:36] [Server thread/INFO]: [DiscordSRV] Spieler WidderMinecraft hat den Server mit Berechtigung zum stillen Verlassen verlassen, es wird keine Nachricht gesendet
[15:21:36] [Server thread/INFO]: [AuctionHouse] Removing sell holding instance for user: WidderMinecraft
[15:21:41] [User Authenticator #7/INFO]: UUID of player efor89 is ddec45c5-26a9-4024-b2f7-2610a078b857
[15:21:41] [Server thread/INFO]: [AuctionHouse] Updating profile player reference for: efor89
[15:21:41] [Server thread/INFO]: [DiscordSRV] Spieler efor89 hat den Server mit Berechtigung zum stillen Betreten betreten, es wird keine Nachricht gesendet
[15:21:41] [Server thread/INFO]: efor89[/79.251.89.158:57421] logged in with entity id 2566800 at ([Farmwelt]-50.675386137672405, 73.86899819439826, -107.2689191038948)
[15:21:42] [pool-121-thread-1/INFO]: [VotingPlugin] BungeeDebug: Sending plugin message: Login, efor89, ddec45c5-26a9-4024-b2f7-2610a078b857, citybuild
[15:21:51] [Server thread/INFO]: efor89 lost connection: Disconnected
[15:21:51] [Server thread/INFO]: [DiscordSRV] Spieler efor89 hat den Server mit Berechtigung zum stillen Verlassen verlassen, es wird keine Nachricht gesendet
[15:21:51] [Server thread/INFO]: [AuctionHouse] Removing sell holding instance for user: efor89
[15:22:06] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[15:22:06] [Server thread/WARN]: java.lang.NullPointerException
[15:22:16] [Craft Scheduler Thread - 332 - BuycraftX/INFO]: [BuycraftX] Sending 5 analytic events
[15:22:25] [Craft Scheduler Thread - 290 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:22:25] [Craft Scheduler Thread - 290 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:23:25] [Craft Scheduler Thread - 351 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:23:27] [Craft Scheduler Thread - 351 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:24:27] [Craft Scheduler Thread - 315 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:24:27] [Craft Scheduler Thread - 315 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:25:27] [Craft Scheduler Thread - 290 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:25:28] [Craft Scheduler Thread - 290 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:26:28] [Craft Scheduler Thread - 343 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:26:29] [Craft Scheduler Thread - 343 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:27:29] [Craft Scheduler Thread - 343 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:27:29] [Craft Scheduler Thread - 343 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:28:29] [Craft Scheduler Thread - 375 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:28:30] [Craft Scheduler Thread - 375 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:28:33] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[15:28:33] [Server thread/WARN]: java.lang.NullPointerException
[15:28:33] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[15:28:33] [Server thread/WARN]: java.lang.NullPointerException
[15:28:33] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[15:28:33] [Server thread/WARN]: java.lang.NullPointerException
[15:28:33] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[15:28:33] [Server thread/WARN]: java.lang.NullPointerException
[15:29:30] [Craft Scheduler Thread - 353 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:29:31] [Craft Scheduler Thread - 353 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:30:16] [Server thread/INFO]: PromiGames: Du brauchst einen Kopf? Dann nutz doch mal den Befehl /skulls dort findest du Tausende Köpfe.
[15:30:21] [Craft Scheduler Thread - 376 - AuctionHouse/INFO]: [AuktionsHaus] Auto saved auction items & transactions
[15:30:31] [Craft Scheduler Thread - 355 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:30:33] [Craft Scheduler Thread - 355 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:31:33] [Craft Scheduler Thread - 383 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:31:34] [Craft Scheduler Thread - 383 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:32:34] [Craft Scheduler Thread - 367 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:32:35] [Craft Scheduler Thread - 367 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:33:35] [Craft Scheduler Thread - 377 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:33:36] [Craft Scheduler Thread - 377 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:34:36] [Craft Scheduler Thread - 378 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:34:38] [Craft Scheduler Thread - 378 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:35:38] [Craft Scheduler Thread - 367 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:35:39] [Craft Scheduler Thread - 367 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:36:39] [Craft Scheduler Thread - 375 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:36:40] [Craft Scheduler Thread - 375 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:37:40] [Craft Scheduler Thread - 377 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:37:41] [Craft Scheduler Thread - 377 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:38:18] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[15:38:18] [Server thread/WARN]: java.lang.NullPointerException
[15:38:18] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[15:38:18] [Server thread/WARN]: java.lang.NullPointerException
[15:38:41] [Craft Scheduler Thread - 381 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:38:42] [Craft Scheduler Thread - 381 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:39:05] [User Authenticator #8/INFO]: UUID of player WidderMinecraft is 942fe858-b23f-4bc6-9455-4c9daf826150
[15:39:06] [Server thread/INFO]: [AuctionHouse] Updating profile player reference for: WidderMinecraft
[15:39:06] [Server thread/INFO]: [DiscordSRV] Spieler WidderMinecraft hat den Server mit Berechtigung zum stillen Betreten betreten, es wird keine Nachricht gesendet
[15:39:06] [Server thread/INFO]: WidderMinecraft[/93.210.38.8:58124] logged in with entity id 3039717 at ([Hollywood]-142.48664418200903, 64.6875, -44.49105185056447)
[15:39:07] [pool-121-thread-1/INFO]: [VotingPlugin] BungeeDebug: Sending plugin message: Login, WidderMinecraft, 942fe858-b23f-4bc6-9455-4c9daf826150, citybuild
[15:39:16] [Craft Scheduler Thread - 386 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[15:39:31] [Server thread/INFO]: WidderMinecraft issued server command: /fly
[15:39:42] [Craft Scheduler Thread - 390 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:39:42] [Craft Scheduler Thread - 390 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:39:57] [Server thread/INFO]: WidderMinecraft issued server command: /seasonshop
[15:40:42] [Craft Scheduler Thread - 396 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:40:42] [Craft Scheduler Thread - 396 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:41:42] [Craft Scheduler Thread - 381 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:41:43] [Craft Scheduler Thread - 381 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:42:43] [Craft Scheduler Thread - 378 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:42:44] [Craft Scheduler Thread - 378 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:43:44] [Craft Scheduler Thread - 378 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:43:44] [Craft Scheduler Thread - 378 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:44:44] [Craft Scheduler Thread - 403 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:44:44] [Craft Scheduler Thread - 403 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:45:21] [Craft Scheduler Thread - 405 - AuctionHouse/INFO]: [AuktionsHaus] Auto saved auction items & transactions
[15:45:44] [Craft Scheduler Thread - 381 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:45:44] [Craft Scheduler Thread - 381 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:46:44] [Craft Scheduler Thread - 394 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:46:45] [Craft Scheduler Thread - 394 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:46:56] [Server thread/INFO]: PromiGames: Vergest nicht zu Voten, ihr könnt bis zu 6 Vote Schlüssel bekommen! Nutzt /vote
[15:47:11] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[15:47:45] [Craft Scheduler Thread - 402 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:47:46] [Craft Scheduler Thread - 402 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:48:06] [Server thread/INFO]: WidderMinecraft lost connection: Disconnected
[15:48:06] [Server thread/INFO]: [DiscordSRV] Spieler WidderMinecraft hat den Server mit Berechtigung zum stillen Verlassen verlassen, es wird keine Nachricht gesendet
[15:48:06] [Server thread/INFO]: [AuctionHouse] Removing sell holding instance for user: WidderMinecraft
[15:48:16] [Craft Scheduler Thread - 378 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[15:48:46] [Craft Scheduler Thread - 414 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:48:46] [Craft Scheduler Thread - 414 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:49:46] [Craft Scheduler Thread - 409 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:49:47] [Craft Scheduler Thread - 409 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:49:49] [User Authenticator #9/INFO]: UUID of player WidderMinecraft is 942fe858-b23f-4bc6-9455-4c9daf826150
[15:49:50] [Server thread/INFO]: [AuctionHouse] Updating profile player reference for: WidderMinecraft
[15:49:50] [Server thread/INFO]: [DiscordSRV] Spieler WidderMinecraft hat den Server mit Berechtigung zum stillen Betreten betreten, es wird keine Nachricht gesendet
[15:49:50] [Server thread/INFO]: WidderMinecraft[/93.210.38.8:58416] logged in with entity id 3166282 at ([Hollywood]-260.62830330672114, -35.5, -92.38582772520536)
[15:49:50] [pool-121-thread-1/INFO]: [VotingPlugin] BungeeDebug: Sending plugin message: Login, WidderMinecraft, 942fe858-b23f-4bc6-9455-4c9daf826150, citybuild
[15:50:05] [Server thread/INFO]: WidderMinecraft issued server command: /fly
[15:50:16] [Craft Scheduler Thread - 417 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[15:50:46] [Craft Scheduler Thread - 390 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:50:47] [Craft Scheduler Thread - 390 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:51:47] [Craft Scheduler Thread - 390 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:51:47] [Craft Scheduler Thread - 390 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:52:14] [Server thread/INFO]: WidderMinecraft lost connection: Disconnected
[15:52:14] [Server thread/INFO]: [DiscordSRV] Spieler WidderMinecraft hat den Server mit Berechtigung zum stillen Verlassen verlassen, es wird keine Nachricht gesendet
[15:52:14] [Server thread/INFO]: [AuctionHouse] Removing sell holding instance for user: WidderMinecraft
[15:52:16] [Craft Scheduler Thread - 378 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[15:52:47] [Craft Scheduler Thread - 414 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:52:48] [Craft Scheduler Thread - 414 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:53:48] [Craft Scheduler Thread - 418 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:53:48] [Craft Scheduler Thread - 418 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:54:24] [User Authenticator #10/INFO]: UUID of player WidderMinecraft is 942fe858-b23f-4bc6-9455-4c9daf826150
[15:54:26] [pool-121-thread-1/INFO]: [VotingPlugin] BungeeDebug: Sending plugin message: Login, WidderMinecraft, 942fe858-b23f-4bc6-9455-4c9daf826150, citybuild
[15:54:31] [Server thread/INFO]: [AuctionHouse] Updating profile player reference for: WidderMinecraft
[15:54:31] [Server thread/INFO]: [DiscordSRV] Spieler WidderMinecraft hat den Server mit Berechtigung zum stillen Betreten betreten, es wird keine Nachricht gesendet
[15:54:31] [Server thread/INFO]: WidderMinecraft[/93.210.38.8:58512] logged in with entity id 3255037 at ([Hollywood]-291.67687891098564, -35.0, -58.827049001480106)
[15:54:48] [Craft Scheduler Thread - 408 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:54:49] [Craft Scheduler Thread - 408 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:55:13] [Server thread/INFO]: RS >> [Supporter] WidderMinecraft >> 7FLY
[15:55:16] [Craft Scheduler Thread - 406 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[15:55:19] [Server thread/INFO]: WidderMinecraft issued server command: /fky
[15:55:21] [Server thread/INFO]: WidderMinecraft issued server command: /fly
[15:55:49] [Craft Scheduler Thread - 407 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:55:49] [Craft Scheduler Thread - 407 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:56:49] [Craft Scheduler Thread - 430 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:56:50] [Craft Scheduler Thread - 430 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:57:50] [Craft Scheduler Thread - 432 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:57:50] [Craft Scheduler Thread - 432 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:58:04] [Server thread/INFO]: WidderMinecraft lost connection: Disconnected
[15:58:04] [Server thread/INFO]: [DiscordSRV] Spieler WidderMinecraft hat den Server mit Berechtigung zum stillen Verlassen verlassen, es wird keine Nachricht gesendet
[15:58:04] [Server thread/INFO]: [AuctionHouse] Removing sell holding instance for user: WidderMinecraft
[15:58:16] [Craft Scheduler Thread - 431 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[15:58:34] [Server thread/WARN]: [Citizens] Task #6624609 for Citizens v2.0.34-SNAPSHOT (build 3422) generated an exception
java.lang.NullPointerException: null
[15:58:50] [Craft Scheduler Thread - 427 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:58:51] [Craft Scheduler Thread - 427 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:59:04] [User Authenticator #11/INFO]: UUID of player WidderMinecraft is 942fe858-b23f-4bc6-9455-4c9daf826150
[15:59:05] [Server thread/INFO]: [AuctionHouse] Updating profile player reference for: WidderMinecraft
[15:59:05] [Server thread/INFO]: [DiscordSRV] Spieler WidderMinecraft hat den Server mit Berechtigung zum stillen Betreten betreten, es wird keine Nachricht gesendet
[15:59:05] [Server thread/INFO]: WidderMinecraft[/93.210.38.8:58695] logged in with entity id 3325150 at ([Hollywood]-291.3102412051383, -36.81704790125403, -57.69999998807907)
[15:59:06] [pool-121-thread-1/INFO]: [VotingPlugin] BungeeDebug: Sending plugin message: Login, WidderMinecraft, 942fe858-b23f-4bc6-9455-4c9daf826150, citybuild
[15:59:16] [Craft Scheduler Thread - 438 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[15:59:51] [Craft Scheduler Thread - 431 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:59:51] [Craft Scheduler Thread - 431 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:00:21] [Craft Scheduler Thread - 424 - AuctionHouse/INFO]: [AuktionsHaus] Auto saved auction items & transactions
[16:00:51] [Craft Scheduler Thread - 438 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:00:51] [Craft Scheduler Thread - 438 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:01:51] [Craft Scheduler Thread - 431 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:01:52] [Craft Scheduler Thread - 431 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:02:13] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[16:02:52] [Craft Scheduler Thread - 419 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:02:53] [Craft Scheduler Thread - 419 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:03:11] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[16:03:36] [Server thread/INFO]: PromiGames: Vergest nicht zu Voten, ihr könnt bis zu 6 Vote Schlüssel bekommen! Nutzt /vote
[16:03:53] [Craft Scheduler Thread - 439 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:03:53] [Craft Scheduler Thread - 439 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:04:53] [Craft Scheduler Thread - 446 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:04:53] [Craft Scheduler Thread - 446 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:05:08] [Server thread/INFO]: WidderMinecraft lost connection: Disconnected
[16:05:08] [Server thread/INFO]: [DiscordSRV] Spieler WidderMinecraft hat den Server mit Berechtigung zum stillen Verlassen verlassen, es wird keine Nachricht gesendet
[16:05:08] [Server thread/INFO]: [AuctionHouse] Removing sell holding instance for user: WidderMinecraft
[16:05:16] [Craft Scheduler Thread - 442 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[16:05:53] [Craft Scheduler Thread - 420 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:05:54] [Craft Scheduler Thread - 420 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:05:58] [User Authenticator #12/INFO]: UUID of player WidderMinecraft is 942fe858-b23f-4bc6-9455-4c9daf826150
[16:06:00] [pool-121-thread-1/INFO]: [VotingPlugin] BungeeDebug: Sending plugin message: Login, WidderMinecraft, 942fe858-b23f-4bc6-9455-4c9daf826150, citybuild
[16:06:00] [Server thread/INFO]: [AuctionHouse] Updating profile player reference for: WidderMinecraft
[16:06:00] [Server thread/INFO]: [DiscordSRV] Spieler WidderMinecraft hat den Server mit Berechtigung zum stillen Betreten betreten, es wird keine Nachricht gesendet
[16:06:00] [Server thread/INFO]: WidderMinecraft[/93.210.38.8:58935] logged in with entity id 3408291 at ([Hollywood]-269.15615044915506, -29.011698453526606, -55.77728694674577)
[16:06:16] [Craft Scheduler Thread - 443 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[16:06:54] [Craft Scheduler Thread - 443 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:06:54] [Craft Scheduler Thread - 443 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:07:54] [Craft Scheduler Thread - 449 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:07:55] [Craft Scheduler Thread - 449 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:08:54] [Craft Scheduler Thread - 443 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:08:55] [Craft Scheduler Thread - 443 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:09:22] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[16:09:22] [Server thread/WARN]: java.lang.NullPointerException
[16:09:22] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[16:09:22] [Server thread/WARN]: java.lang.NullPointerException
[16:09:23] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[16:09:23] [Server thread/WARN]: java.lang.NullPointerException
[16:09:23] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[16:09:23] [Server thread/WARN]: java.lang.NullPointerException
[16:09:55] [Craft Scheduler Thread - 450 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:09:56] [Craft Scheduler Thread - 450 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:10:52] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[16:10:52] [Server thread/WARN]: java.lang.NullPointerException
[16:10:56] [Craft Scheduler Thread - 458 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:10:56] [Craft Scheduler Thread - 458 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:11:56] [Craft Scheduler Thread - 458 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:11:56] [Craft Scheduler Thread - 458 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:12:56] [Craft Scheduler Thread - 455 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:12:57] [Craft Scheduler Thread - 455 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:13:05] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[16:13:57] [Craft Scheduler Thread - 464 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:13:57] [Craft Scheduler Thread - 464 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:14:57] [Craft Scheduler Thread - 458 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:14:58] [Craft Scheduler Thread - 458 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:15:21] [Craft Scheduler Thread - 457 - AuctionHouse/INFO]: [AuktionsHaus] Auto saved auction items & transactions
[16:15:57] [Craft Scheduler Thread - 453 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:15:58] [Craft Scheduler Thread - 453 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:16:58] [Craft Scheduler Thread - 466 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:16:59] [Craft Scheduler Thread - 466 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:17:41] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[16:17:41] [Server thread/WARN]: java.lang.NullPointerException
[16:17:59] [Craft Scheduler Thread - 453 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:17:59] [Craft Scheduler Thread - 453 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:18:59] [Craft Scheduler Thread - 469 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:18:59] [Craft Scheduler Thread - 469 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:19:59] [Craft Scheduler Thread - 470 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:20:00] [Craft Scheduler Thread - 470 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:20:16] [Server thread/INFO]: PromiGames: Du brauchst einen Kopf? Dann nutz doch mal den Befehl /skulls dort findest du Tausende Köpfe.
[16:21:00] [Craft Scheduler Thread - 424 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:21:01] [Craft Scheduler Thread - 424 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:22:01] [Craft Scheduler Thread - 474 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:22:01] [Craft Scheduler Thread - 474 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:22:21] [Server thread/INFO]: WidderMinecraft issued server command: /ec
[16:22:54] [Server thread/INFO]: WidderMinecraft issued server command: /ec
[16:23:00] [Server thread/INFO]: WidderMinecraft issued server command: /ec
[16:23:01] [Craft Scheduler Thread - 475 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:23:01] [Craft Scheduler Thread - 475 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:23:05] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[16:23:09] [Server thread/INFO]: WidderMinecraft issued server command: /ec
[16:24:01] [Craft Scheduler Thread - 478 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:24:02] [Craft Scheduler Thread - 478 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:25:02] [Craft Scheduler Thread - 453 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:25:02] [Craft Scheduler Thread - 453 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:25:52] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[16:25:52] [Server thread/WARN]: java.lang.NullPointerException
[16:25:52] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[16:25:52] [Server thread/WARN]: java.lang.NullPointerException
[16:25:52] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[16:25:52] [Server thread/WARN]: java.lang.NullPointerException
[16:25:52] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[16:25:52] [Server thread/WARN]: java.lang.NullPointerException
[16:25:52] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[16:25:52] [Server thread/WARN]: java.lang.NullPointerException
[16:25:52] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[16:25:52] [Server thread/WARN]: java.lang.NullPointerException
[16:26:02] [Craft Scheduler Thread - 468 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:26:02] [Craft Scheduler Thread - 468 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:26:10] [Server thread/INFO]: WidderMinecraft issued server command: /ec
[16:27:02] [Craft Scheduler Thread - 470 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:27:03] [Craft Scheduler Thread - 470 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:28:03] [Craft Scheduler Thread - 470 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:28:03] [Craft Scheduler Thread - 470 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:29:03] [Craft Scheduler Thread - 464 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:29:04] [Craft Scheduler Thread - 464 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:30:04] [Craft Scheduler Thread - 464 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:30:04] [Craft Scheduler Thread - 464 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:30:21] [Craft Scheduler Thread - 448 - AuctionHouse/INFO]: [AuktionsHaus] Auto saved auction items & transactions
[16:31:04] [Craft Scheduler Thread - 454 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:31:04] [Craft Scheduler Thread - 454 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:32:04] [Craft Scheduler Thread - 464 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:32:04] [Craft Scheduler Thread - 464 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:33:04] [Craft Scheduler Thread - 487 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:33:05] [Craft Scheduler Thread - 487 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:33:05] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[16:33:54] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[16:34:05] [Craft Scheduler Thread - 492 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:34:06] [Craft Scheduler Thread - 492 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:34:36] [Server thread/INFO]: WARNING: this command will load all data from disk without saving first. Please retype /citizens reload to confirm. You can disable this warning in settings.
[16:34:38] [Server thread/INFO]: Lade Citizens neu...
[16:34:38] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[16:34:38] [Server thread/INFO]: Citizens wurde neu geladen.
[16:34:38] [Server thread/INFO]: Attempt to teleport removed player Monika restricted
[16:34:38] [Server thread/INFO]: Attempt to teleport removed player Lisa restricted
[16:34:38] [Server thread/INFO]: Attempt to teleport removed player efor89 restricted
[16:34:38] [Server thread/INFO]: Attempt to teleport removed player Julia restricted
[16:34:38] [Server thread/INFO]: Attempt to teleport removed player Lutz restricted
[16:34:38] [Server thread/INFO]: Attempt to teleport removed player Björn restricted
[16:34:38] [Server thread/INFO]: Attempt to teleport removed player Siri restricted
[16:34:38] [Server thread/INFO]: Attempt to teleport removed player Joachim restricted
[16:34:38] [Server thread/INFO]: Attempt to teleport removed player Laura restricted
[16:34:38] [Server thread/INFO]: Attempt to teleport removed player Carlo restricted
[16:34:38] [Server thread/INFO]: Attempt to teleport removed player James restricted
[16:34:38] [Server thread/INFO]: Attempt to teleport removed player Harald restricted
[16:34:38] [Server thread/INFO]: Attempt to teleport removed player Sabrina restricted
[16:34:38] [Server thread/INFO]: Attempt to teleport removed player Roland restricted
[16:34:38] [Server thread/INFO]: Attempt to teleport removed player Kasimir restricted
[16:34:38] [Server thread/INFO]: Attempt to teleport removed player Loredana restricted
[16:34:38] [Server thread/INFO]: Attempt to teleport removed player Inge restricted
[16:34:38] [Server thread/INFO]: Attempt to teleport removed player Herbert restricted
[16:34:38] [Server thread/INFO]: Attempt to teleport removed player Haiko restricted
[16:34:38] [Server thread/INFO]: Attempt to teleport removed player Hannes restricted
[16:34:38] [Server thread/INFO]: Attempt to teleport removed player Tom restricted
[16:34:38] [Server thread/INFO]: Attempt to teleport removed player Susan restricted
[16:34:38] [Server thread/INFO]: Attempt to teleport removed player Peach restricted
[16:34:38] [Server thread/INFO]: Attempt to teleport removed player Torsten restricted
[16:34:38] [Server thread/INFO]: Attempt to teleport removed player Franz restricted
[16:35:05] [Craft Scheduler Thread - 454 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:35:06] [Craft Scheduler Thread - 454 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:35:42] [User Authenticator #13/INFO]: UUID of player efor89 is ddec45c5-26a9-4024-b2f7-2610a078b857
[16:35:42] [Server thread/INFO]: [AuctionHouse] Updating profile player reference for: efor89
[16:35:42] [Server thread/INFO]: [DiscordSRV] Spieler efor89 hat den Server mit Berechtigung zum stillen Betreten betreten, es wird keine Nachricht gesendet
[16:35:42] [Server thread/INFO]: efor89[/79.251.89.158:59900] logged in with entity id 3680011 at ([Farmwelt]-50.675386137672405, 73.86899819439826, -107.2689191038948)
[16:35:44] [pool-121-thread-1/INFO]: [VotingPlugin] BungeeDebug: Sending plugin message: Login, efor89, ddec45c5-26a9-4024-b2f7-2610a078b857, citybuild
[16:35:47] [Server thread/INFO]: efor89 issued server command: /cb
[16:36:06] [Craft Scheduler Thread - 491 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:36:06] [Craft Scheduler Thread - 491 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:36:16] [Async Chat Thread - #13/INFO]: PG >> [Owner] efor89 >> hey
[16:36:16] [Craft Scheduler Thread - 500 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[16:36:26] [Async Chat Thread - #13/INFO]: PG >> [Owner] efor89 >> funktioniert alles soweit?
[16:36:56] [Server thread/INFO]: PromiGames: Wusstest du, das beim Clearlag keine Tiere oder Monster entfernt werden, die einen Namen haben?
[16:37:06] [Craft Scheduler Thread - 493 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:37:07] [Craft Scheduler Thread - 493 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:37:25] [Server thread/INFO]: efor89 issued server command: /tp WidderMinecraft
[16:37:25] [Server thread/WARN]: efor89 moved too quickly! -260.59072442071414,-113.7035554589738,0.9533820536026596
[16:38:07] [Craft Scheduler Thread - 486 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:38:07] [Craft Scheduler Thread - 486 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:39:07] [Craft Scheduler Thread - 506 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:39:07] [Craft Scheduler Thread - 506 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:39:45] [Server thread/INFO]: Economy >> Du hast 100,00 S an efor89 gesendet.
[16:40:07] [Craft Scheduler Thread - 504 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:40:08] [Craft Scheduler Thread - 504 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:40:51] [Server thread/INFO]: efor89 issued server command: /tp WidderMinecraft
[16:41:04] [Server thread/INFO]: Economy >> Du hast 100,00 S an efor89 gesendet.
[16:41:08] [Craft Scheduler Thread - 506 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:41:08] [Craft Scheduler Thread - 506 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:42:08] [Craft Scheduler Thread - 484 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:42:09] [Craft Scheduler Thread - 484 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:42:20] [Server thread/INFO]: efor89 lost connection: Disconnected
[16:42:20] [Server thread/INFO]: [DiscordSRV] Spieler efor89 hat den Server mit Berechtigung zum stillen Verlassen verlassen, es wird keine Nachricht gesendet
[16:42:20] [Server thread/INFO]: [AuctionHouse] Removing sell holding instance for user: efor89
[16:43:05] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[16:43:08] [Craft Scheduler Thread - 509 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:43:09] [Craft Scheduler Thread - 509 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:43:16] [Craft Scheduler Thread - 511 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[16:44:09] [Craft Scheduler Thread - 509 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:44:09] [Craft Scheduler Thread - 509 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:44:56] [Async Chat Thread - #15/INFO]: RS >> [Supporter] WidderMinecraft >> hi
[16:45:09] [Craft Scheduler Thread - 510 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:45:10] [Craft Scheduler Thread - 510 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:45:21] [Craft Scheduler Thread - 510 - AuctionHouse/INFO]: [AuktionsHaus] Auto saved auction items & transactions
[16:45:46] [Server thread/INFO]: PromiGames: (Der Befehl /du existiert nicht oder du hast keine berechtigung)
[16:46:01] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] Chat: [Discord | Owner] efor89 > funktioniert bis jetzt alles?
[16:46:09] [Async Chat Thread - #17/INFO]: RS >> [Supporter] WidderMinecraft >> jo
[16:46:10] [Craft Scheduler Thread - 506 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:46:10] [Craft Scheduler Thread - 506 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:47:10] [Craft Scheduler Thread - 514 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:47:10] [Craft Scheduler Thread - 514 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:48:10] [Craft Scheduler Thread - 513 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:48:11] [Craft Scheduler Thread - 513 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:49:11] [Craft Scheduler Thread - 513 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:49:12] [Craft Scheduler Thread - 513 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:50:11] [Craft Scheduler Thread - 493 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:50:12] [Craft Scheduler Thread - 493 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:51:12] [Craft Scheduler Thread - 511 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:51:12] [Craft Scheduler Thread - 511 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:52:12] [Craft Scheduler Thread - 489 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:52:13] [Craft Scheduler Thread - 489 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:52:42] [User Authenticator #14/INFO]: UUID of player SmonHD is 1bcc0d1c-62f2-49e1-a821-51e4153d9793
[16:52:42] [pool-138-thread-1/INFO]: [AuctionHouse] Creating profile for player: SmonHD
[16:52:42] [Server thread/INFO]: SmonHD[/31.17.33.191:60535] logged in with entity id 3831200 at ([Hollywood]53.74951756137874, 63.0, 92.03346878394248)
[16:52:44] [pool-121-thread-1/INFO]: [VotingPlugin] BungeeDebug: Sending plugin message: Login, SmonHD, 1bcc0d1c-62f2-49e1-a821-51e4153d9793, citybuild
[16:52:58] [Server thread/INFO]: SmonHD issued server command: /warp Famrwelt
[16:53:01] [Server thread/INFO]: SmonHD issued server command: /warp
[16:53:05] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[16:53:11] [Async Chat Thread - #19/INFO]: [Spieler] SmonHD >> Wie kommt man in die Farmwelt?
[16:53:13] [Craft Scheduler Thread - 520 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:53:14] [Craft Scheduler Thread - 520 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:53:16] [Craft Scheduler Thread - 511 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[16:53:26] [Server thread/INFO]: SmonHD issued server command: /spawn
[16:53:26] [Server thread/WARN]: SmonHD moved too quickly! -113.17232675357424,1.0,-83.43213070210493
[16:53:29] [Server thread/INFO]: SmonHD issued server command: /recipe give SmonHD *
[16:53:29] [Server thread/INFO]: [SmonHD: Unlocked 1196 recipes for SmonHD]
[16:53:36] [Server thread/INFO]: PromiGames: Unsere Homepage erreicht ihr unter https://www.promigames.de/
[16:53:47] [Server thread/INFO]: Economy >> Du hast 100,00 S an SmonHD gesendet.
[16:53:50] [Server thread/INFO]: SmonHD issued server command: /give SmonHD apple 64
[16:54:05] [Server thread/INFO]: SmonHD issued server command: /help
[16:54:08] [Server thread/INFO]: SmonHD issued server command: /pl
[16:54:10] [Server thread/INFO]: SmonHD issued server command: /bukkit:?
[16:54:13] [Server thread/INFO]: SmonHD issued server command: /bukkit:ver
[16:54:13] [Craft Scheduler Thread - 503 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:54:14] [Craft Scheduler Thread - 503 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:54:28] [Server thread/INFO]: SmonHD lost connection: Disconnected
[16:54:28] [Server thread/INFO]: [AuctionHouse] Removing sell holding instance for user: SmonHD
[16:55:14] [Server thread/WARN]: [Citizens] Task #7919281 for Citizens v2.0.34-SNAPSHOT (build 3422) generated an exception
java.lang.NullPointerException: null
[16:55:14] [Craft Scheduler Thread - 513 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:55:15] [Craft Scheduler Thread - 513 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:55:16] [Craft Scheduler Thread - 503 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[16:56:15] [Craft Scheduler Thread - 503 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:56:15] [Craft Scheduler Thread - 503 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:57:15] [Craft Scheduler Thread - 520 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:57:16] [Craft Scheduler Thread - 520 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:58:16] [Craft Scheduler Thread - 510 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:58:16] [Craft Scheduler Thread - 510 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:58:41] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[16:58:52] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[16:59:16] [Craft Scheduler Thread - 503 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:59:17] [Craft Scheduler Thread - 503 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:00:17] [Server thread/WARN]: [ChestSort] **************************************************
[17:00:17] [Server thread/WARN]: [ChestSort] * There is a new version of ChestSort available!
[17:00:17] [Server thread/WARN]: [ChestSort] *  
[17:00:17] [Server thread/WARN]: [ChestSort] * Your version:   14.0.6
[17:00:17] [Server thread/WARN]: [ChestSort] * Latest version: 14.1.0
[17:00:17] [Server thread/WARN]: [ChestSort] *  
[17:00:17] [Server thread/WARN]: [ChestSort] * Please update to the newest version.
[17:00:17] [Server thread/WARN]: [ChestSort] *  
[17:00:17] [Server thread/WARN]: [ChestSort] * Download:
[17:00:17] [Server thread/WARN]: [ChestSort] *   https://www.chestsort.de
[17:00:17] [Server thread/WARN]: [ChestSort] **************************************************
[17:00:17] [Craft Scheduler Thread - 529 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:00:17] [Craft Scheduler Thread - 528 - Elevators/INFO]: [Elevators] An update for Elevators is available at:
[17:00:17] [Craft Scheduler Thread - 528 - Elevators/INFO]: [Elevators] https://www.spigotmc.org/resources/elevators.34229/
[17:00:17] [Craft Scheduler Thread - 529 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:00:21] [Craft Scheduler Thread - 507 - AuctionHouse/INFO]: [AuktionsHaus] Auto saved auction items & transactions
[17:00:26] [pool-131-thread-1/INFO]: [VotingPlugin] BungeeDebug: Received plugin message: VoteBroadcast, 942fe858-b23f-4bc6-9455-4c9daf826150, WidderMinecraft, MinecraftPocket-Servers.com
[17:00:26] [pool-131-thread-1/INFO]: [VotingPlugin] BungeeDebug: Received plugin message: Vote, WidderMinecraft, 942fe858-b23f-4bc6-9455-4c9daf826150, MinecraftPocket-Servers.com, 1718722826673, true, true, 146//59//3//1//0//59//0//100, true, 1, true, 1, 1
[17:00:26] [Server thread/INFO]: PromiCrates » Es wurden x1 Vote Key  WidderMinecraft gutgeschrieben.
[17:00:26] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /msg WidderMinecraft Du hast auf https://minecraftpocket-servers.com/server/100206/vote/ gevotet und 1 Vote Schlüssel bekommen!
[17:00:26] [Server thread/INFO]: [mir --> WidderMinecraft] Du hast auf https://minecraftpocket-servers.com/server/100206/vote/ gevotet und 1 Vote Schlüssel bekommen!
[17:00:44] [pool-131-thread-1/INFO]: [VotingPlugin] BungeeDebug: Received plugin message: VoteBroadcast, 942fe858-b23f-4bc6-9455-4c9daf826150, WidderMinecraft, BestServers.com
[17:00:44] [pool-131-thread-1/INFO]: [VotingPlugin] BungeeDebug: Received plugin message: Vote, WidderMinecraft, 942fe858-b23f-4bc6-9455-4c9daf826150, BestServers.com, 1718722844468, true, true, 147//60//4//2//0//60//0//100, true, 1, true, 1, 1
[17:00:44] [Server thread/INFO]: PromiCrates » Es wurden x1 Vote Key  WidderMinecraft gutgeschrieben.
[17:00:44] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /msg WidderMinecraft Du hast auf https://bestservers.com/server/2984/vote gevotet und 1 Vote Schlüssel bekommen!
[17:00:44] [Server thread/INFO]: [mir --> WidderMinecraft] Du hast auf https://bestservers.com/server/2984/vote gevotet und 1 Vote Schlüssel bekommen!
[17:01:02] [pool-131-thread-1/INFO]: [VotingPlugin] BungeeDebug: Received plugin message: VoteBroadcast, 942fe858-b23f-4bc6-9455-4c9daf826150, WidderMinecraft, minecraft-server.eu
[17:01:02] [pool-131-thread-1/INFO]: [VotingPlugin] BungeeDebug: Received plugin message: Vote, WidderMinecraft, 942fe858-b23f-4bc6-9455-4c9daf826150, minecraft-server.eu, 1718722862274, true, true, 148//61//5//3//0//61//0//100, true, 1, true, 1, 1
[17:01:02] [Server thread/INFO]: PromiCrates » Es wurden x1 Vote Key  WidderMinecraft gutgeschrieben.
[17:01:09] [pool-131-thread-1/INFO]: [VotingPlugin] BungeeDebug: Received plugin message: VoteBroadcast, 942fe858-b23f-4bc6-9455-4c9daf826150, WidderMinecraft, MCSL
[17:01:09] [pool-131-thread-1/INFO]: [VotingPlugin] BungeeDebug: Received plugin message: Vote, WidderMinecraft, 942fe858-b23f-4bc6-9455-4c9daf826150, MCSL, 1718722869005, true, true, 149//62//6//4//0//62//0//100, true, 1, true, 1, 1
[17:01:09] [Server thread/INFO]: PromiCrates » Es wurden x1 Vote Key  WidderMinecraft gutgeschrieben.
[17:01:09] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /msg WidderMinecraft Du hast auf https://minecraft-server-list.com/server/503818/vote/ gevotet und 1 Vote Schlüssel bekommen!
[17:01:09] [Server thread/INFO]: [mir --> WidderMinecraft] Du hast auf https://minecraft-server-list.com/server/503818/vote/ gevotet und 1 Vote Schlüssel bekommen!
[17:01:17] [Craft Scheduler Thread - 526 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:01:18] [Craft Scheduler Thread - 526 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:01:19] [pool-131-thread-1/INFO]: [VotingPlugin] BungeeDebug: Received plugin message: VoteBroadcast, 942fe858-b23f-4bc6-9455-4c9daf826150, WidderMinecraft, serverliste.net
[17:01:19] [pool-131-thread-1/INFO]: [VotingPlugin] BungeeDebug: Received plugin message: Vote, WidderMinecraft, 942fe858-b23f-4bc6-9455-4c9daf826150, serverliste.net, 1718722879914, true, true, 150//63//7//5//0//63//0//100, true, 1, true, 1, 1
[17:01:19] [Server thread/INFO]: PromiCrates » Es wurden x1 Vote Key  WidderMinecraft gutgeschrieben.
[17:01:19] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /msg WidderMinecraft Du hast auf https://serverliste.net/vote/4980 gevotet und 1 Vote Schlüssel bekommen!
[17:01:19] [Server thread/INFO]: [mir --> WidderMinecraft] Du hast auf https://serverliste.net/vote/4980 gevotet und 1 Vote Schlüssel bekommen!
[17:02:18] [Craft Scheduler Thread - 503 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:02:18] [Craft Scheduler Thread - 503 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:02:18] [pool-131-thread-1/INFO]: [VotingPlugin] BungeeDebug: Received plugin message: VoteBroadcast, 942fe858-b23f-4bc6-9455-4c9daf826150, WidderMinecraft, minecraft-servers.de
[17:02:18] [pool-131-thread-1/INFO]: [VotingPlugin] BungeeDebug: Received plugin message: Vote, WidderMinecraft, 942fe858-b23f-4bc6-9455-4c9daf826150, minecraft-servers.de, 1718722938908, true, true, 151//64//8//6//0//64//0//100, true, 1, true, 1, 1
[17:02:18] [Server thread/INFO]: PromiCrates » Es wurden x1 Vote Key  WidderMinecraft gutgeschrieben.
[17:02:18] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /msg WidderMinecraft Du hast auf https://minecraft-servers.de/server/promigames/vote gevotet und 1 Vote Schlüssel bekommen!
[17:02:18] [Server thread/INFO]: [mir --> WidderMinecraft] Du hast auf https://minecraft-servers.de/server/promigames/vote gevotet und 1 Vote Schlüssel bekommen!
[17:02:27] [Server thread/INFO]: WidderMinecraft issued server command: /skyblock
[17:02:27] [Server thread/INFO]: WidderMinecraft lost connection: Disconnected
[17:02:27] [Server thread/INFO]: [DiscordSRV] Spieler WidderMinecraft hat den Server mit Berechtigung zum stillen Verlassen verlassen, es wird keine Nachricht gesendet
[17:02:27] [Server thread/INFO]: [AuctionHouse] Removing sell holding instance for user: WidderMinecraft
[17:02:38] [User Authenticator #15/INFO]: UUID of player WidderMinecraft is 942fe858-b23f-4bc6-9455-4c9daf826150
[17:02:38] [Server thread/INFO]: [AuctionHouse] Updating profile player reference for: WidderMinecraft
[17:02:38] [Server thread/INFO]: [DiscordSRV] Spieler WidderMinecraft hat den Server mit Berechtigung zum stillen Betreten betreten, es wird keine Nachricht gesendet
[17:02:38] [Server thread/INFO]: WidderMinecraft[/93.210.38.8:60859] logged in with entity id 3927905 at ([Hollywood]-244.38652509118918, -33.5, -85.70292234802199)
[17:02:39] [pool-121-thread-1/INFO]: [VotingPlugin] BungeeDebug: Sending plugin message: Login, WidderMinecraft, 942fe858-b23f-4bc6-9455-4c9daf826150, citybuild
[17:02:59] [Server thread/WARN]: [Citizens] Task #8125488 for Citizens v2.0.34-SNAPSHOT (build 3422) generated an exception
java.lang.NullPointerException: null
[17:03:15] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[17:03:16] [Craft Scheduler Thread - 534 - BuycraftX/INFO]: [BuycraftX] Sending 2 analytic events
[17:03:18] [Craft Scheduler Thread - 534 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:03:19] [Craft Scheduler Thread - 534 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:04:19] [Craft Scheduler Thread - 533 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:04:19] [Craft Scheduler Thread - 533 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:04:32] [Server thread/INFO]: WidderMinecraft issued server command: /fly
[17:05:19] [Craft Scheduler Thread - 540 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:05:20] [Craft Scheduler Thread - 540 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:06:20] [Craft Scheduler Thread - 542 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:06:20] [Craft Scheduler Thread - 542 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:06:27] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[17:06:27] [Server thread/WARN]: java.lang.NullPointerException
[17:07:20] [Craft Scheduler Thread - 541 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:07:21] [Craft Scheduler Thread - 541 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:08:21] [Craft Scheduler Thread - 543 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:08:21] [Craft Scheduler Thread - 543 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:09:21] [Craft Scheduler Thread - 525 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:09:22] [Craft Scheduler Thread - 525 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:10:13] [Server thread/INFO]: WidderMinecraft lost connection: Disconnected
[17:10:13] [Server thread/INFO]: [DiscordSRV] Spieler WidderMinecraft hat den Server mit Berechtigung zum stillen Verlassen verlassen, es wird keine Nachricht gesendet
[17:10:13] [Server thread/INFO]: [AuctionHouse] Removing sell holding instance for user: WidderMinecraft
[17:10:16] [Craft Scheduler Thread - 540 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[17:10:16] [Server thread/INFO]: PromiGames: Wusstest du, dass beim Clearlag keine Tiere oder Monster entfernt werden, die einen Namen haben?
[17:10:22] [Craft Scheduler Thread - 538 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:10:22] [Craft Scheduler Thread - 538 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:10:52] [User Authenticator #16/INFO]: UUID of player WidderMinecraft is 942fe858-b23f-4bc6-9455-4c9daf826150
[17:10:53] [Server thread/INFO]: [AuctionHouse] Updating profile player reference for: WidderMinecraft
[17:10:53] [Server thread/INFO]: [DiscordSRV] Spieler WidderMinecraft hat den Server mit Berechtigung zum stillen Betreten betreten, es wird keine Nachricht gesendet
[17:10:53] [Server thread/INFO]: WidderMinecraft[/93.210.38.8:61161] logged in with entity id 4024701 at ([Hollywood]-206.7437416004469, -14.0, -59.66988406041981)
[17:10:54] [pool-121-thread-1/INFO]: [VotingPlugin] BungeeDebug: Sending plugin message: Login, WidderMinecraft, 942fe858-b23f-4bc6-9455-4c9daf826150, citybuild
[17:11:16] [Craft Scheduler Thread - 533 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[17:11:22] [Craft Scheduler Thread - 512 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:11:23] [Craft Scheduler Thread - 512 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:12:23] [Craft Scheduler Thread - 549 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:12:23] [Craft Scheduler Thread - 549 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:13:09] [Server thread/INFO]: WidderMinecraft issued server command: /fly
[17:13:23] [Craft Scheduler Thread - 545 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:13:23] [Craft Scheduler Thread - 545 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:13:55] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[17:14:18] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[17:14:18] [Server thread/WARN]: java.lang.NullPointerException
[17:14:23] [Craft Scheduler Thread - 546 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:14:24] [Craft Scheduler Thread - 546 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:15:21] [Craft Scheduler Thread - 512 - AuctionHouse/INFO]: [AuktionsHaus] Auto saved auction items & transactions
[17:15:24] [Craft Scheduler Thread - 558 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:15:24] [Craft Scheduler Thread - 558 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:16:24] [Craft Scheduler Thread - 512 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:16:25] [Craft Scheduler Thread - 512 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:17:21] [User Authenticator #17/INFO]: UUID of player .Wertzui123456 is 00000000-0000-0000-0009-01ffc3b62384
[17:17:21] [Server thread/INFO]: [floodgate] Floodgate Spieler .Wertzui123456 hat den Server betreten (UUID: 00000000-0000-0000-0009-01ffc3b62384)
[17:17:21] [Server thread/ERROR]: Tried to load unrecognized recipe: brewery:sealingtable removed now.
[17:17:21] [Server thread/ERROR]: Tried to load unrecognized recipe: bukkit:4e0ad70b-e25d-46e2-87ef-2423512e6633 removed now.
[17:17:21] [Server thread/ERROR]: Tried to load unrecognized recipe: bukkit:737215f1-b18b-4745-9ed0-9583e0919913 removed now.
[17:17:21] [Server thread/ERROR]: Tried to load unrecognized recipe: bukkit:71ce54d2-6cc2-4e17-a534-945363da8d01 removed now.
[17:17:21] [Server thread/ERROR]: Tried to load unrecognized recipe: brewery:sealingtable removed now.
[17:17:21] [Server thread/ERROR]: Tried to load unrecognized recipe: bukkit:4e0ad70b-e25d-46e2-87ef-2423512e6633 removed now.
[17:17:21] [Server thread/ERROR]: Tried to load unrecognized recipe: bukkit:737215f1-b18b-4745-9ed0-9583e0919913 removed now.
[17:17:21] [Server thread/ERROR]: Tried to load unrecognized recipe: bukkit:71ce54d2-6cc2-4e17-a534-945363da8d01 removed now.
[17:17:21] [Server thread/INFO]: .Wertzui123456[/83.135.162.208:61361] logged in with entity id 4084631 at ([Farmwelt]-134.2056, 69.18947263108704, -198.00966)
[17:17:21] [pool-138-thread-1/INFO]: [AuctionHouse] Creating profile for player: .Wertzui123456
[17:17:23] [pool-121-thread-1/INFO]: [VotingPlugin] BungeeDebug: Sending plugin message: Login, .Wertzui123456, 00000000-0000-0000-0009-01ffc3b62384, citybuild
[17:17:25] [Craft Scheduler Thread - 546 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:17:25] [Craft Scheduler Thread - 546 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:17:27] [Async Chat Thread - #23/INFO]: [Not Secure] [Promi] .Wertzui123456 >> hi
[17:17:33] [Async Chat Thread - #23/INFO]: RS >> [Supporter] WidderMinecraft >> hii
[17:17:41] [Async Chat Thread - #23/INFO]: RS >> [Supporter] WidderMinecraft >> GHW zu Promi
[17:17:44] [Server thread/INFO]: WidderMinecraft issued server command: /p h
[17:17:52] [Server thread/INFO]: WidderMinecraft issued server command: /home b
[17:17:56] [Async Chat Thread - #23/INFO]: [Not Secure] [Promi] .Wertzui123456 >> hab diesen NPC in der Lobby angeklickt und irgendwie 7 tage bekommen xD
[17:18:16] [Craft Scheduler Thread - 545 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[17:18:18] [Server thread/INFO]: WidderMinecraft issued server command: /home b
[17:18:25] [Craft Scheduler Thread - 557 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:18:25] [Craft Scheduler Thread - 557 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:18:50] [Server thread/INFO]: WidderMinecraft issued server command: /p h
[17:18:59] [Server thread/INFO]: WidderMinecraft issued server command: /home b
[17:19:05] [Netty Server IO #3/WARN]: Failed to validate message acknowledgements from WidderMinecraft
[17:19:05] [Server thread/INFO]: WidderMinecraft lost connection: Chat message validation failure
[17:19:05] [Server thread/INFO]: [DiscordSRV] Spieler WidderMinecraft hat den Server mit Berechtigung zum stillen Verlassen verlassen, es wird keine Nachricht gesendet
[17:19:05] [Server thread/INFO]: [AuctionHouse] Removing sell holding instance for user: WidderMinecraft
[17:19:16] [Craft Scheduler Thread - 541 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[17:19:21] [User Authenticator #18/INFO]: UUID of player WidderMinecraft is 942fe858-b23f-4bc6-9455-4c9daf826150
[17:19:22] [Server thread/INFO]: [AuctionHouse] Updating profile player reference for: WidderMinecraft
[17:19:22] [Server thread/INFO]: [DiscordSRV] Spieler WidderMinecraft hat den Server mit Berechtigung zum stillen Betreten betreten, es wird keine Nachricht gesendet
[17:19:22] [Server thread/INFO]: WidderMinecraft[/93.210.38.8:61417] logged in with entity id 4109855 at ([Hollywood]-213.5, -14.0, -56.5)
[17:19:23] [pool-121-thread-1/INFO]: [VotingPlugin] BungeeDebug: Sending plugin message: Login, WidderMinecraft, 942fe858-b23f-4bc6-9455-4c9daf826150, citybuild
[17:19:25] [Craft Scheduler Thread - 556 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:19:26] [Craft Scheduler Thread - 556 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:19:32] [Async Chat Thread - #25/INFO]: RS >> [Supporter] WidderMinecraft >> so wieder da internet^^
[17:19:36] [Server thread/INFO]: WidderMinecraft issued server command: /fly
[17:19:40] [Async Chat Thread - #25/INFO]: [Not Secure] [Promi] .Wertzui123456 >> perfekt
[17:19:41] [Async Chat Thread - #25/INFO]: [Not Secure] [Promi] .Wertzui123456 >> kenne ich
[17:19:47] [Server thread/INFO]: WidderMinecraft issued server command: /p h
[17:20:09] [Server thread/INFO]: WidderMinecraft issued server command: /p h
[17:20:16] [Craft Scheduler Thread - 556 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[17:20:26] [Craft Scheduler Thread - 541 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:20:27] [Craft Scheduler Thread - 541 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:21:27] [Craft Scheduler Thread - 560 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:21:27] [Craft Scheduler Thread - 560 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:21:49] [Async Chat Thread - #27/INFO]: [Not Secure] [Promi] .Wertzui123456 >> warum ist die FW eigentlich Savannenbiom im Wald?
[17:21:58] [Server thread/INFO]: WidderMinecraft issued server command: /fw
[17:21:58] [Server thread/INFO]: .Wertzui123456 issued server command: /spawn
[17:22:06] [Netty Server IO #1/WARN]: Failed to validate message acknowledgements from WidderMinecraft
[17:22:06] [Server thread/INFO]: WidderMinecraft lost connection: Chat message validation failure
[17:22:06] [Server thread/INFO]: [DiscordSRV] Spieler WidderMinecraft hat den Server mit Berechtigung zum stillen Verlassen verlassen, es wird keine Nachricht gesendet
[17:22:07] [Server thread/INFO]: [AuctionHouse] Removing sell holding instance for user: WidderMinecraft
[17:22:16] [Craft Scheduler Thread - 545 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[17:22:27] [Craft Scheduler Thread - 562 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:22:27] [Craft Scheduler Thread - 562 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:22:41] [Server thread/INFO]: .Wertzui123456 issued server command: /p h
[17:22:41] [Server thread/WARN]: .Wertzui123456 moved too quickly! 18.949745,6.640720000000002,258.01249
[17:22:58] [User Authenticator #19/INFO]: UUID of player WidderMinecraft is 942fe858-b23f-4bc6-9455-4c9daf826150
[17:22:59] [Server thread/INFO]: [AuctionHouse] Updating profile player reference for: WidderMinecraft
[17:22:59] [Server thread/INFO]: [DiscordSRV] Spieler WidderMinecraft hat den Server mit Berechtigung zum stillen Betreten betreten, es wird keine Nachricht gesendet
[17:22:59] [Server thread/INFO]: WidderMinecraft[/93.210.38.8:61526] logged in with entity id 4142089 at ([Farmwelt]-14.138177851040597, 77.0, -38.63358771207254)
[17:23:00] [pool-121-thread-1/INFO]: [VotingPlugin] BungeeDebug: Sending plugin message: Login, WidderMinecraft, 942fe858-b23f-4bc6-9455-4c9daf826150, citybuild
[17:23:08] [Async Chat Thread - #29/INFO]: RS >> [Supporter] WidderMinecraft >> .Wertzui123456 was war mit biom?
[17:23:09] [Server thread/INFO]: Economy >> Du hast 100,00 S an .Wertzui123456 gesendet.
[17:23:10] [Server thread/INFO]: WidderMinecraft issued server command: /p h
[17:23:15] [Async Chat Thread - #29/INFO]: [Not Secure] [Promi] .Wertzui123456 >> warum ist die FW eigentlich Savannenbiom im Wald?
[17:23:16] [Craft Scheduler Thread - 564 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[17:23:27] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] Chat: [Discord | Owner] efor89 > das der normale vanilla generator bon minecraft selber
[17:23:27] [Craft Scheduler Thread - 571 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:23:28] [Craft Scheduler Thread - 571 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:23:33] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] Chat: [Discord | Owner] efor89 > und hi erstmal :slightly_smiling:
[17:23:37] [Async Chat Thread - #29/INFO]: [Not Secure] [Promi] .Wertzui123456 >> hi
[17:23:40] [Netty Server IO #2/WARN]: Failed to validate message acknowledgements from WidderMinecraft
[17:23:40] [Server thread/INFO]: WidderMinecraft lost connection: Chat message validation failure
[17:23:40] [Server thread/INFO]: [DiscordSRV] Spieler WidderMinecraft hat den Server mit Berechtigung zum stillen Verlassen verlassen, es wird keine Nachricht gesendet
[17:23:40] [Server thread/INFO]: [AuctionHouse] Removing sell holding instance for user: WidderMinecraft
[17:23:48] [Async Chat Thread - #29/INFO]: [Not Secure] [Promi] .Wertzui123456 >> okay, sieht nur etwas seltsam aus
[17:23:51] [User Authenticator #19/INFO]: UUID of player WidderMinecraft is 942fe858-b23f-4bc6-9455-4c9daf826150
[17:23:51] [Async Chat Thread - #29/INFO]: [Not Secure] [Promi] .Wertzui123456 >> aber macht ja nichts
[17:23:51] [Server thread/INFO]: [AuctionHouse] Updating profile player reference for: WidderMinecraft
[17:23:51] [Server thread/INFO]: [DiscordSRV] Spieler WidderMinecraft hat den Server mit Berechtigung zum stillen Betreten betreten, es wird keine Nachricht gesendet
[17:23:51] [Server thread/INFO]: WidderMinecraft[/93.210.38.8:61556] logged in with entity id 4147498 at ([Hollywood]-207.7426862246855, -14.0, -59.76554668506885)
[17:23:52] [pool-121-thread-1/INFO]: [VotingPlugin] BungeeDebug: Sending plugin message: Login, WidderMinecraft, 942fe858-b23f-4bc6-9455-4c9daf826150, citybuild
[17:24:05] [Server thread/INFO]: WidderMinecraft issued server command: /joinstatus aus
[17:24:16] [Craft Scheduler Thread - 553 - BuycraftX/INFO]: [BuycraftX] Sending 2 analytic events
[17:24:28] [Craft Scheduler Thread - 574 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:24:28] [Craft Scheduler Thread - 574 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:24:37] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] Chat: [Discord | Owner] efor89 > ja hab auch schon ab und zu komische stellen gefunden keine ahnung ob das ein fehler ist oder eben der generator das halt einfach so macht
[17:24:45] [Async Chat Thread - #29/INFO]: [Not Secure] [Promi] .Wertzui123456 >> weird
[17:25:15] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[17:25:28] [Craft Scheduler Thread - 553 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:25:29] [Craft Scheduler Thread - 553 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:26:29] [Craft Scheduler Thread - 564 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:26:29] [Craft Scheduler Thread - 564 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:26:48] [Server thread/INFO]: WidderMinecraft issued server command: /fly
[17:26:56] [Server thread/INFO]: PromiGames: Am Spawn findet ihr nützliche Infos die euch Helfen
[17:27:29] [Craft Scheduler Thread - 575 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:27:29] [Craft Scheduler Thread - 575 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:27:30] [Server thread/INFO]: .Wertzui123456 issued server command: /fw
[17:27:46] [Server thread/INFO]: .Wertzui123456 has made the advancement [Stone Age]
[17:27:54] [Server thread/INFO]: .Wertzui123456 has made the advancement [Monster Hunter]
[17:27:57] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[17:28:29] [Craft Scheduler Thread - 579 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:28:30] [Craft Scheduler Thread - 579 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:28:46] [Server thread/WARN]: [Citizens] Task #8694917 for Citizens v2.0.34-SNAPSHOT (build 3422) generated an exception
java.lang.NullPointerException: null
[17:29:02] [Server thread/INFO]: .Wertzui123456 issued server command: /p h
[17:29:24] [Server thread/INFO]: .Wertzui123456 issued server command: /fw
[17:29:30] [Craft Scheduler Thread - 582 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:29:30] [Craft Scheduler Thread - 582 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:29:50] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[17:29:50] [Server thread/WARN]: java.lang.NullPointerException
[17:29:50] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[17:29:50] [Server thread/WARN]: java.lang.NullPointerException
[17:29:50] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[17:29:50] [Server thread/WARN]: java.lang.NullPointerException
[17:30:05] [Server thread/INFO]: .Wertzui123456 issued server command: /p h
[17:30:21] [Craft Scheduler Thread - 545 - AuctionHouse/INFO]: [AuktionsHaus] Auto saved auction items & transactions
[17:30:30] [Craft Scheduler Thread - 582 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:30:31] [Craft Scheduler Thread - 582 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:31:31] [Craft Scheduler Thread - 583 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:31:31] [Craft Scheduler Thread - 583 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:32:31] [Craft Scheduler Thread - 583 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:32:31] [Craft Scheduler Thread - 583 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:33:09] [Server thread/INFO]: Economy >> Du hast 100,00 S an .Wertzui123456 gesendet.
[17:33:31] [Craft Scheduler Thread - 564 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:33:32] [Craft Scheduler Thread - 564 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:33:40] [Async Chat Thread - #31/INFO]: [Not Secure] [Promi] .Wertzui123456 >> bin dann erst mal wieder off, bye
[17:33:44] [Async Chat Thread - #31/INFO]: RS >> [Supporter] WidderMinecraft >> bb
[17:33:47] [Netty Server IO #0/INFO]: [floodgate] Floodgate Spieler .Wertzui123456 hat den Server verlassen
[17:33:47] [Server thread/INFO]: .Wertzui123456 lost connection: Disconnected
[17:33:47] [Server thread/INFO]: [AuctionHouse] Removing sell holding instance for user: .Wertzui123456
[17:34:16] [Craft Scheduler Thread - 589 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[17:34:32] [Craft Scheduler Thread - 589 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:34:32] [Craft Scheduler Thread - 589 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:35:15] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[17:35:32] [Craft Scheduler Thread - 591 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:35:33] [Craft Scheduler Thread - 591 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:36:33] [Craft Scheduler Thread - 588 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:36:33] [Craft Scheduler Thread - 588 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:37:33] [Craft Scheduler Thread - 553 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:37:34] [Craft Scheduler Thread - 553 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:38:16] [Server thread/INFO]: WidderMinecraft lost connection: Disconnected
[17:38:16] [Server thread/INFO]: [DiscordSRV] Spieler WidderMinecraft hat den Server mit Berechtigung zum stillen Verlassen verlassen, es wird keine Nachricht gesendet
[17:38:16] [Server thread/INFO]: [AuctionHouse] Removing sell holding instance for user: WidderMinecraft
[17:38:16] [Craft Scheduler Thread - 591 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[17:38:33] [User Authenticator #20/INFO]: UUID of player WidderMinecraft is 942fe858-b23f-4bc6-9455-4c9daf826150
[17:38:33] [Server thread/INFO]: [AuctionHouse] Updating profile player reference for: WidderMinecraft
[17:38:33] [Server thread/INFO]: [DiscordSRV] Spieler WidderMinecraft hat den Server mit Berechtigung zum stillen Betreten betreten, es wird keine Nachricht gesendet
[17:38:33] [Server thread/INFO]: WidderMinecraft[/93.210.38.8:62038] logged in with entity id 4270782 at ([Hollywood]-260.16673814028894, -31.987877980345917, -19.128484853980694)
[17:38:34] [Craft Scheduler Thread - 598 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:38:34] [pool-121-thread-1/INFO]: [VotingPlugin] BungeeDebug: Sending plugin message: Login, WidderMinecraft, 942fe858-b23f-4bc6-9455-4c9daf826150, citybuild
[17:38:34] [Craft Scheduler Thread - 598 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:38:47] [Server thread/INFO]: WidderMinecraft issued server command: /clan mitglieder
[17:39:16] [Craft Scheduler Thread - 585 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[17:39:34] [Craft Scheduler Thread - 594 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:39:35] [Craft Scheduler Thread - 594 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:40:35] [Craft Scheduler Thread - 600 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:40:35] [Craft Scheduler Thread - 600 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:41:35] [Craft Scheduler Thread - 591 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:41:36] [Craft Scheduler Thread - 591 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:42:17] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[17:42:17] [Server thread/WARN]: java.lang.NullPointerException
[17:42:17] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[17:42:17] [Server thread/WARN]: java.lang.NullPointerException
[17:42:17] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[17:42:17] [Server thread/WARN]: java.lang.NullPointerException
[17:42:17] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[17:42:17] [Server thread/WARN]: java.lang.NullPointerException
[17:42:17] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[17:42:17] [Server thread/WARN]: java.lang.NullPointerException
[17:42:17] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[17:42:17] [Server thread/WARN]: java.lang.NullPointerException
[17:42:36] [Craft Scheduler Thread - 600 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:42:36] [Craft Scheduler Thread - 600 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:43:36] [Craft Scheduler Thread - 595 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:43:36] [Server thread/INFO]: PromiGames: Unsere Homepage erreicht ihr unter https://www.promigames.de/
[17:43:36] [Craft Scheduler Thread - 595 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:44:36] [Craft Scheduler Thread - 591 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:44:37] [Craft Scheduler Thread - 591 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:45:21] [Craft Scheduler Thread - 588 - AuctionHouse/INFO]: [AuktionsHaus] Auto saved auction items & transactions
[17:45:32] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[17:45:37] [Craft Scheduler Thread - 580 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:45:38] [Craft Scheduler Thread - 580 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:46:38] [Craft Scheduler Thread - 608 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:46:38] [Craft Scheduler Thread - 608 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:47:38] [Craft Scheduler Thread - 590 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:47:38] [Craft Scheduler Thread - 590 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:47:51] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[17:48:38] [Craft Scheduler Thread - 580 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:48:39] [Craft Scheduler Thread - 580 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:49:39] [Craft Scheduler Thread - 580 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:49:40] [Craft Scheduler Thread - 580 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:50:39] [Craft Scheduler Thread - 609 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:50:40] [Craft Scheduler Thread - 609 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:51:40] [Craft Scheduler Thread - 553 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:51:41] [Craft Scheduler Thread - 553 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:52:25] [Server thread/INFO]: WidderMinecraft issued server command: /Ec
[17:52:27] [Server thread/INFO]: WidderMinecraft issued server command: /ec
[17:52:36] [Server thread/INFO]: WidderMinecraft issued server command: /ec
[17:52:41] [Craft Scheduler Thread - 613 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:52:41] [Craft Scheduler Thread - 613 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:52:51] [Server thread/INFO]: WidderMinecraft issued server command: /ec
[17:52:57] [Server thread/INFO]: WidderMinecraft issued server command: /Ec
[17:52:58] [Server thread/INFO]: WidderMinecraft issued server command: /ec
[17:53:10] [Server thread/INFO]: WidderMinecraft issued server command: /nether
[17:53:19] [Server thread/INFO]: WidderMinecraft lost connection: Disconnected
[17:53:19] [Server thread/INFO]: [DiscordSRV] Spieler WidderMinecraft hat den Server mit Berechtigung zum stillen Verlassen verlassen, es wird keine Nachricht gesendet
[17:53:19] [Server thread/INFO]: [AuctionHouse] Removing sell holding instance for user: WidderMinecraft
[17:53:41] [Craft Scheduler Thread - 614 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:53:42] [Craft Scheduler Thread - 614 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:54:07] [User Authenticator #21/INFO]: UUID of player WidderMinecraft is 942fe858-b23f-4bc6-9455-4c9daf826150
[17:54:08] [Server thread/INFO]: [AuctionHouse] Updating profile player reference for: WidderMinecraft
[17:54:08] [Server thread/INFO]: [DiscordSRV] Spieler WidderMinecraft hat den Server mit Berechtigung zum stillen Betreten betreten, es wird keine Nachricht gesendet
[17:54:08] [Server thread/INFO]: WidderMinecraft[/93.210.38.8:62656] logged in with entity id 4443956 at ([Hollywood_nether]4.5, 102.0, -9.5)
[17:54:09] [pool-121-thread-1/INFO]: [VotingPlugin] BungeeDebug: Sending plugin message: Login, WidderMinecraft, 942fe858-b23f-4bc6-9455-4c9daf826150, citybuild
[17:54:16] [Craft Scheduler Thread - 620 - BuycraftX/INFO]: [BuycraftX] Sending 2 analytic events
[17:54:30] [Server thread/INFO]: WidderMinecraft issued server command: /rtp
[17:54:40] [Server thread/INFO]: WidderMinecraft issued server command: /fly
[17:54:42] [Craft Scheduler Thread - 608 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:54:42] [Craft Scheduler Thread - 608 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:55:07] [Server thread/INFO]: WidderMinecraft issued server command: /ec
[17:55:22] [Server thread/INFO]: WidderMinecraft issued server command: /Ec
[17:55:24] [Server thread/INFO]: WidderMinecraft issued server command: /ec
[17:55:42] [Craft Scheduler Thread - 609 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:55:43] [Craft Scheduler Thread - 609 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:56:21] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[17:56:43] [Craft Scheduler Thread - 617 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:56:43] [Craft Scheduler Thread - 617 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:57:17] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[17:57:43] [Craft Scheduler Thread - 614 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:57:44] [Craft Scheduler Thread - 614 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:58:44] [Craft Scheduler Thread - 609 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:58:44] [Craft Scheduler Thread - 609 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:59:44] [Craft Scheduler Thread - 619 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:59:45] [Craft Scheduler Thread - 619 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:00:16] [Server thread/INFO]: PromiGames: Ihr habt auch die Möglichkeit etwas zu reporten mit /report
[18:00:21] [Craft Scheduler Thread - 610 - AuctionHouse/INFO]: [AuktionsHaus] Auto saved auction items & transactions
[18:00:45] [Craft Scheduler Thread - 642 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:00:46] [Craft Scheduler Thread - 642 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:01:45] [Craft Scheduler Thread - 642 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:01:46] [Craft Scheduler Thread - 642 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:02:46] [Craft Scheduler Thread - 617 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:02:47] [Craft Scheduler Thread - 617 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:03:47] [Craft Scheduler Thread - 632 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:03:48] [Craft Scheduler Thread - 632 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:04:26] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[18:04:47] [Craft Scheduler Thread - 648 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:04:48] [Craft Scheduler Thread - 648 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:05:30] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[18:05:48] [Craft Scheduler Thread - 620 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:05:49] [Craft Scheduler Thread - 620 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:06:21] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[18:06:49] [Craft Scheduler Thread - 650 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:06:49] [Craft Scheduler Thread - 650 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:06:53] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[18:07:25] [Server thread/WARN]: [Citizens] Task #10128436 for Citizens v2.0.34-SNAPSHOT (build 3422) generated an exception
java.lang.NullPointerException: null
[18:07:49] [Craft Scheduler Thread - 650 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:07:50] [Craft Scheduler Thread - 650 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:08:11] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[18:08:11] [Server thread/WARN]: java.lang.NullPointerException
[18:08:11] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[18:08:11] [Server thread/WARN]: java.lang.NullPointerException
[18:08:50] [Craft Scheduler Thread - 651 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:08:50] [Craft Scheduler Thread - 651 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:09:50] [Craft Scheduler Thread - 653 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:09:50] [Craft Scheduler Thread - 653 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:09:55] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[18:10:50] [Craft Scheduler Thread - 609 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:10:51] [Craft Scheduler Thread - 609 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:11:51] [Craft Scheduler Thread - 659 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:11:51] [Craft Scheduler Thread - 659 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:12:35] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[18:12:51] [Craft Scheduler Thread - 642 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:12:52] [Craft Scheduler Thread - 642 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:13:52] [Craft Scheduler Thread - 650 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:13:52] [Craft Scheduler Thread - 650 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:14:52] [Craft Scheduler Thread - 657 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:14:53] [Craft Scheduler Thread - 657 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:15:21] [Craft Scheduler Thread - 648 - AuctionHouse/INFO]: [AuktionsHaus] Auto saved auction items & transactions
[18:15:53] [Craft Scheduler Thread - 668 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:15:53] [Craft Scheduler Thread - 668 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:16:18] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[18:16:21] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[18:16:53] [Craft Scheduler Thread - 664 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:16:54] [Craft Scheduler Thread - 664 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:16:56] [Server thread/INFO]: PromiGames: Ihr habt auch die Möglichkeit etwas zu reporten mit /report
[18:17:54] [Craft Scheduler Thread - 662 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:17:54] [Craft Scheduler Thread - 662 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:18:54] [Craft Scheduler Thread - 662 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:18:54] [Craft Scheduler Thread - 662 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:18:58] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[18:19:54] [Craft Scheduler Thread - 676 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:19:55] [Craft Scheduler Thread - 676 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:20:06] [PvPManager Worker Thread - 3/INFO]: [PvPManager] Update available: 3.33 Current version: 3.32.24
[18:20:06] [PvPManager Worker Thread - 3/INFO]: [PvPManager] Follow the link to download: https://www.spigotmc.org/resources/pvpmanager.10610
[18:20:12] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[18:20:12] [Server thread/WARN]: java.lang.NullPointerException
[18:20:12] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[18:20:12] [Server thread/WARN]: java.lang.NullPointerException
[18:20:12] [Server thread/INFO]: [Citizens] Schwerwiegender Fehler während Update von 16: null.
[18:20:12] [Server thread/WARN]: java.lang.NullPointerException
[18:20:46] [Server thread/WARN]: [Citizens] Task #10995255 for Citizens v2.0.34-SNAPSHOT (build 3422) generated an exception
java.lang.NullPointerException: null
[18:20:50] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[18:20:55] [Craft Scheduler Thread - 681 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:20:55] [Craft Scheduler Thread - 681 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:21:55] [Craft Scheduler Thread - 662 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:21:55] [Craft Scheduler Thread - 662 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:22:55] [Craft Scheduler Thread - 670 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:22:56] [Craft Scheduler Thread - 670 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:23:03] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[18:23:38] [Server thread/WARN]: WidderMinecraft moved wrongly!
[18:23:56] [Craft Scheduler Thread - 648 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:23:56] [Craft Scheduler Thread - 648 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:24:40] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[18:24:56] [Craft Scheduler Thread - 699 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:24:57] [Craft Scheduler Thread - 699 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:25:57] [Craft Scheduler Thread - 695 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:25:57] [Craft Scheduler Thread - 695 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:26:21] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[18:26:38] [Server thread/WARN]: WidderMinecraft moved wrongly!
[18:26:41] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[18:26:57] [Craft Scheduler Thread - 694 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:26:58] [Craft Scheduler Thread - 694 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:27:58] [Craft Scheduler Thread - 710 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:27:58] [Craft Scheduler Thread - 710 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:28:34] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[18:28:58] [Craft Scheduler Thread - 712 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:28:59] [Craft Scheduler Thread - 712 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:29:59] [Craft Scheduler Thread - 708 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:29:59] [Craft Scheduler Thread - 708 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:30:21] [Craft Scheduler Thread - 707 - AuctionHouse/INFO]: [AuktionsHaus] Auto saved auction items & transactions
[18:30:22] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[18:30:59] [Craft Scheduler Thread - 684 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:31:00] [Craft Scheduler Thread - 684 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:32:00] [Craft Scheduler Thread - 721 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:32:01] [Craft Scheduler Thread - 721 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:32:20] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[18:32:43] [Server thread/INFO]: WidderMinecraft issued server command: /cote
[18:32:45] [Server thread/INFO]: WidderMinecraft issued server command: /vote
[18:33:01] [Craft Scheduler Thread - 715 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:33:01] [Craft Scheduler Thread - 715 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:33:36] [Server thread/INFO]: PromiGames: Vergest nicht zu Voten, ihr könnt bis zu 6 Vote Schlüssel bekommen! Nutzt /vote
[18:34:01] [Craft Scheduler Thread - 721 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:34:02] [Craft Scheduler Thread - 721 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:35:02] [Craft Scheduler Thread - 706 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:35:02] [Craft Scheduler Thread - 706 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:35:13] [Server thread/INFO]: WidderMinecraft issued server command: /rtp
[18:36:02] [Craft Scheduler Thread - 726 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:36:02] [Craft Scheduler Thread - 726 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:36:21] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[18:36:28] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[18:37:02] [Craft Scheduler Thread - 713 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:37:03] [Craft Scheduler Thread - 713 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:38:03] [Craft Scheduler Thread - 721 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:38:03] [Craft Scheduler Thread - 721 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:38:27] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[18:39:03] [Craft Scheduler Thread - 710 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:39:04] [Craft Scheduler Thread - 710 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:40:04] [Craft Scheduler Thread - 737 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:40:04] [Craft Scheduler Thread - 737 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:40:29] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[18:41:04] [Craft Scheduler Thread - 744 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:41:05] [Craft Scheduler Thread - 744 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:42:05] [Craft Scheduler Thread - 746 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:42:05] [Craft Scheduler Thread - 746 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:42:38] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[18:43:05] [Craft Scheduler Thread - 737 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:43:05] [Craft Scheduler Thread - 737 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:43:54] [Server thread/WARN]: WidderMinecraft moved wrongly!
[18:44:05] [Craft Scheduler Thread - 769 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:44:06] [Craft Scheduler Thread - 769 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:45:06] [Craft Scheduler Thread - 756 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:45:06] [Craft Scheduler Thread - 756 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:45:21] [Craft Scheduler Thread - 758 - AuctionHouse/INFO]: [AuktionsHaus] Auto saved auction items & transactions
[18:45:36] [Server thread/INFO]: Economy >> Du hast 100,00 S an WidderMinecraft gesendet.
[18:45:39] [Server thread/WARN]: WidderMinecraft moved wrongly!