Paste #113280: Unnamed Server Log Paste

Date: 2023/08/03 14:57:15 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


[22:40:23] [ServerMain/INFO]: Building unoptimized datafixer
[22:40:24] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[22:40:25] [ServerMain/INFO]: Loaded 7 recipes
[22:40:25] [Server thread/INFO]: Starting minecraft server version 1.19.3
[22:40:25] [Server thread/INFO]: Loading properties
[22:40:25] [Server thread/INFO]: This server is running Paper version git-Paper-448 (MC: 1.19.3) (Implementing API version 1.19.3-R0.1-SNAPSHOT) (Git: 155aa36)
[22:40:25] [Server thread/INFO]: Server Ping Player Sample Count: 12
[22:40:25] [Server thread/INFO]: Using 4 threads for Netty based IO
[22:40:25] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 2 worker threads, and gen parallelism of 2 threads
[22:40:25] [Server thread/INFO]: Default game type: SURVIVAL
[22:40:25] [Server thread/INFO]: Generating keypair
[22:40:26] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25565
[22:40:26] [Server thread/INFO]: Using epoll channel type
[22:40:26] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[22:40:26] [Server thread/INFO]: Paper: Using OpenSSL 3.0.x (Linux x86_64) cipher from Velocity.
[22:40:26] [Server thread/ERROR]: [LegacyPluginLoadingStrategy] Ambiguous plugin name `Skript' for files `plugins/Skript-2.7.0-beta3.jar' and `plugins/Skript (4).jar' in `plugins'
[22:40:26] [Server thread/ERROR]: [LegacyPluginLoadingStrategy] Ambiguous plugin name `ExcellentCrates' for files `plugins/ExcellentCrates-4.3.0.jar' and `plugins/ExcellentCrates-4.1.6 (2).jar' in `plugins'
[22:40:26] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_19_R2.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[22:40:28] [Server thread/WARN]: Legacy plugin vw-helpop v0.2 does not specify an api-version.
[22:40:28] [Server thread/WARN]: Legacy plugin SklepMC v1.2-SNAPSHOT-git-f33b0ce does not specify an api-version.
[22:40:28] [Server thread/WARN]: Legacy plugin iBright v1.0.0 does not specify an api-version.
[22:40:28] [Server thread/INFO]: [SpigotLibraryLoader] [AntiPopup] Loading 1 libraries... please wait
[22:40:28] [Server thread/INFO]: [SpigotLibraryLoader] [AntiPopup] Loaded library /home/container/libraries/dev/dejvokep/boosted-yaml-spigot/1.3/boosted-yaml-spigot-1.3.jar
[22:40:28] [Server thread/WARN]: Legacy plugin UnbreakableAnvils v2.2.0 does not specify an api-version.
[22:40:29] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loading 2 libraries... please wait
[22:40:29] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[22:40:29] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[22:40:29] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.11/fastutil-8.5.11.jar
[22:40:29] [Server thread/INFO]: [SpigotLibraryLoader] [RewardsLite] Loading 1 libraries... please wait
[22:40:29] [Server thread/INFO]: [SpigotLibraryLoader] [RewardsLite] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[22:40:29] [Server thread/INFO]: [SpigotLibraryLoader] [RewardsLite] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[22:40:29] [Server thread/WARN]: [EconomyShopGUI-Premium] Loading Paper plugin in the legacy plugin loading logic. This is not recommended and may introduce some differences into load order. It's highly recommended you move away from this if you are wanting to use Paper plugins.
[22:40:29] [Server thread/INFO]: [InventoryRollbackPlus] Loading server plugin InventoryRollbackPlus v1.6.8
[22:40:29] [Server thread/INFO]: [vw-helpop] Loading server plugin vw-helpop v0.2
[22:40:29] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.3
[22:40:29] [Server thread/INFO]: [UltimateAutoRestart] Loading server plugin UltimateAutoRestart vBuild 52b
[22:40:29] [Server thread/INFO]: [PolarApi] Loading server plugin PolarApi v1.1.3
[22:40:29] [Server thread/INFO]: [DropsToInventory] Loading server plugin DropsToInventory v3.0.0
[22:40:29] [Server thread/INFO]: [CommandTimer] Loading server plugin CommandTimer v8.0.0
[22:40:29] [Server thread/INFO]: [SklepMC] Loading server plugin SklepMC v1.2-SNAPSHOT-git-f33b0ce
[22:40:29] [Server thread/INFO]: [Blue Slime Core] Loading server plugin BlueSlimeCore v2.9.3.371
[22:40:29] [Server thread/INFO]: [BFSMCBlocks] Loading server plugin BFSMCBlocks v1.1
[22:40:29] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v4.7.1-SNAPSHOT
[22:40:29] [Server thread/INFO]: [ViaVersion] ViaVersion 4.7.1-SNAPSHOT is now loaded. Registering protocol transformers and injecting...
[22:40:30] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[22:40:30] [Server thread/INFO]: [ViaBackwards] Loading translations...
[22:40:30] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[22:40:30] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[22:40:30] [Server thread/INFO]: [CrazyVouchers] Loading server plugin CrazyVouchers v2.9.14.3
[22:40:30] [Server thread/INFO]: [SimplePortals] Loading server plugin SimplePortals v1.7.1
[22:40:30] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v4.7.1-SNAPSHOT
[22:40:30] [Server thread/INFO]: [iBright] Loading server plugin iBright v1.0.0
[22:40:30] [Server thread/INFO]: [OpenInv] Loading server plugin OpenInv v4.2.2
[22:40:30] [Server thread/INFO]: [AntiPearl] Loading server plugin AntiPearl v1.4
[22:40:30] [Server thread/INFO]: [spark] Loading server plugin spark v1.10.34
[22:40:30] [Server thread/INFO]: [goxy] Loading server plugin goxy v0.9.0
[22:40:31] [Server thread/INFO]: [goxy] Detected mincraft version: "v1_19_R2"
[22:40:31] [Server thread/INFO]: [goxy] NmsHelper loaded
[22:40:31] [Server thread/INFO]: [goxy] Plugin was successfully loaded
[22:40:31] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.0.0-SNAPSHOT-b612
[22:40:31] [Server thread/INFO]: [Analyse] Loading server plugin Analyse v2.0.8
[22:40:31] [Server thread/INFO]: [LibsDisguises] Loading server plugin LibsDisguises v10.0.37-SNAPSHOT
[22:40:31] [Server thread/WARN]: [LibsDisguises] Noticed you're using an older version of ProtocolLib (or not using it)! We're forcibly updating you!
[22:40:31] [Server thread/ERROR]: [LibsDisguises] Please restart the server to complete the ProtocolLib update!
[22:40:31] [Server thread/INFO]: [ChristmasPresents] Loading server plugin ChristmasPresents v0.1.2
[22:40:31] [Server thread/INFO]: [AppleMC-PlaceholderCos] Loading server plugin AppleMC-PlaceholderCos v1.0-SNAPSHOT
[22:40:31] [Server thread/INFO]: [NoCraftPlus] Loading server plugin NoCraftPlus v2.1.2
[22:40:31] [Server thread/INFO]: [AntiPopup] Loading server plugin AntiPopup v6.1
[22:40:32] [Server thread/INFO]: [AntiPopup] Loaded PacketEvents.
[22:40:32] [Server thread/INFO]: [AppleMc-MsgMail] Loading server plugin AppleMc-MsgMail v1.1
[22:40:32] [Server thread/INFO]: [CommandWhitelist] Loading server plugin CommandWhitelist v2.7.0
[22:40:32] [Server thread/INFO]: [ColoredAnvils] Loading server plugin ColoredAnvils v2.0.0
[22:40:32] [Server thread/INFO]: [UnbreakableAnvils] Loading server plugin UnbreakableAnvils v2.2.0
[22:40:32] [Server thread/INFO]: [Bfsmc-Wymiana] Loading server plugin Bfsmc-Wymiana v1.0
[22:40:32] [Server thread/INFO]: [TabTPS] Loading server plugin TabTPS v1.3.17
[22:40:32] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.84
[22:40:32] [Server thread/INFO]: [PolarLoader] Loading server plugin PolarLoader v1.0.11
[22:40:32] [Server thread/INFO]: [PolarLoader] Detected new Java version
[22:40:45] [Server thread/INFO]: [LPX] Loading server plugin LPX v3.3.0
[22:40:45] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[22:40:45] [Server thread/INFO]: [EpicRename] Loading server plugin EpicRename v3.11.1
[22:40:45] [Server thread/INFO]: [NexEngine] Loading server plugin NexEngine v2.2.10 build-12/06/2023
[22:40:45] [Server thread/INFO]: [LagAssist] Loading server plugin LagAssist v2.29.1
[22:40:45] [Server thread/INFO]: [GUIPlus] Loading server plugin GUIPlus v2.87
[22:40:45] [Server thread/INFO]: [AdvancedEnderchest] Loading server plugin AdvancedEnderchest v1.0.9.2
[22:40:45] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.20.1-dev+12-8b2c7d7
[22:40:45] [Server thread/INFO]: [RewardsLite] Loading server plugin RewardsLite v3.1.4
[22:40:45] [Server thread/INFO]: [HeadDatabase] Loading server plugin HeadDatabase v4.17.0
[22:40:45] [Server thread/INFO]: [LiteBans] Loading server plugin LiteBans v2.12.4
[22:40:45] [Server thread/INFO]: [OmegaVision] Loading server plugin OmegaVision v2.5.16
[22:40:45] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.5.1-SNAPSHOT-336;afe601b
[22:40:46] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@7f703295]
[22:40:46] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.7.0
[22:40:46] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[22:40:46] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[22:40:46] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[22:40:46] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[22:40:46] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[22:40:46] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[22:40:46] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[22:40:46] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[22:40:46] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[22:40:46] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[22:40:46] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[22:40:46] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[22:40:46] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[22:40:46] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[22:40:46] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[22:40:46] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[22:40:46] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.20.1-dev+12-8b2c7d7
[22:40:46] [Server thread/INFO]: [TAB] Loading server plugin TAB v3.3.2
[22:40:46] [Server thread/INFO]: [ChatSentry] Loading server plugin ChatSentry v5.3.8
[22:40:46] [Server thread/INFO]: [FastAsyncVoxelSniper] Loading server plugin FastAsyncVoxelSniper v2.8.0
[22:40:46] [Server thread/INFO]: [JumpPads] Loading server plugin JumpPads v1.25.13
[22:40:46] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.7+216b061
[22:40:46] [Server thread/INFO]: [EntityDetection] Loading server plugin EntityDetection v1.2.0 (build #23)
[22:40:46] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.2.1-fd1d0777
[22:40:46] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[22:40:46] [Server thread/INFO]: [GSit] Loading server plugin GSit v1.4.5
[22:40:46] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.20.1-dev+12-8b2c7d7
[22:40:46] [Server thread/INFO]: [PvPManager] Loading server plugin PvPManager v3.14
[22:40:46] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v21.3
[22:40:46] [Server thread/INFO]: [WGEF-Reborn] Loading server plugin WGEF-Reborn v2.6-stable+73c8022
[22:40:46] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.7.0-beta3
[22:40:46] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.2
[22:40:46] [Server thread/INFO]: [CataMines] Loading server plugin CataMines v2.5.11
[22:40:46] [Server thread/INFO]: [SkQuery] Loading server plugin SkQuery v4.1.7
[22:40:46] [Server thread/INFO]: [ItemEdit] Loading server plugin ItemEdit v3.0.7
[22:40:46] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.30-SNAPSHOT (build 2924)
[22:40:46] [Server thread/INFO]: [Shopkeepers] Loading server plugin Shopkeepers v2.16.5
[22:40:46] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (158 ms).
[22:40:46] [Server thread/INFO]: [Shopkeepers] Loading config.
[22:40:46] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
[22:40:46] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[22:40:46] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[22:40:46] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v4.3.0
[22:40:46] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.26.3-SNAPSHOT
[22:40:46] [Server thread/INFO]: [ArmorStandTools] Loading server plugin ArmorStandTools v4.4.4
[22:40:46] [Server thread/INFO]: [ArmorStandTools] Registered custom WorldGuard flag: ast
[22:40:46] [Server thread/INFO]: [BossLand] Loading server plugin BossLand v0.7
[22:40:46] [Server thread/INFO]: [skRayFall] Loading server plugin skRayFall v1.9.28
[22:40:46] [Server thread/INFO]: [FunnyGuilds] Loading server plugin FunnyGuilds v4.12.1-SNAPSHOT Snowdrop-f5e2ed7
[22:40:47] [Server thread/INFO]: [FunnyGuilds] WorldGuard plugin hook has been early initialized!
[22:40:47] [Server thread/INFO]: [ItemTag] Loading server plugin ItemTag v3.0.8
[22:40:47] [Server thread/INFO]: [EconomyShopGUI-Premium] Loading server plugin EconomyShopGUI-Premium
[22:40:47] [Server thread/INFO]: [zAuctionHouseV3] Loading server plugin zAuctionHouseV3 v3.1.3.2
[22:40:47] [Server thread/INFO]: [PlugManX] Loading server plugin PlugManX v2.3.1
[22:40:47] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[22:40:47] [Server thread/INFO]: [Blue Slime Core] Enabling BlueSlimeCore v2.9.3.371
[22:40:47] [Server thread/INFO]: [Blue Slime Core] Successfully loaded 2 language(s).
[22:40:47] [Server thread/INFO]: [Blue Slime Core] Detected server as regular SpigotMC/PaperMC (not Folia)
[22:40:47] [Server thread/INFO]: [goxy] Enabling goxy v0.9.0
[22:40:47] [Server thread/INFO]: [goxy] Information about goxy server:
[22:40:47] [Server thread/INFO]: [goxy]  - Id: a2df03c8-592f-4031-8cea-339887c28b7c
[22:40:47] [Server thread/INFO]: [goxy]  - Name: boxpvp
[22:40:47] [Server thread/INFO]: [goxy]  - Max players: 175
[22:40:47] [Server thread/INFO]: [goxy]  - Token: bHRaJOwQQsKSwHIUBMEGfINdudhZpWpaJyfaXZchgCWyuPdbJnXUrplhoqDbwGEGBNADAhFwktvtTMZNeYpwrpzNwycKtbYChlDyZnarRXWLPefPMkKYjlKUxjmfYpYXWPwVFIpHmMBkgTJdKunucpaStjIKOtjBgglCbGXUsKRItFAKfczLnOMyfDvQXEsFoBTToBhukFjXrZnpFYXjpNOFgRzFMhfgpPFkmGpqxciroAGesfqlCfKSsiGFvrP
[22:40:47] [Server thread/INFO]: [goxy] Containers (3):
[22:40:47] [Server thread/INFO]: [goxy]  - - Id: 1c61eb72-0252-462b-a568-07a8911bd954
[22:40:47] [Server thread/INFO]: [goxy]    - Name: nosne
[22:40:47] [Server thread/INFO]: [goxy]    - Servers (5):
[22:40:47] [Server thread/INFO]: [goxy]        - - Id: b7a741ae-b978-48b8-a3e4-44d466971b55
[22:40:47] [Server thread/INFO]: [goxy]          - Name: starelobby
[22:40:47] [Server thread/INFO]: [goxy]        - - Id: 562ebc3c-9566-490d-834b-5990dba04298
[22:40:47] [Server thread/INFO]: [goxy]          - Name: skyblockcopy
[22:40:47] [Server thread/INFO]: [goxy]        - - Id: 395b39e7-e538-455d-8941-cdae50ee10a5
[22:40:47] [Server thread/INFO]: [goxy]          - Name: eventowy
[22:40:47] [Server thread/INFO]: [goxy]        - - Id: 8a3cf8d1-90d0-4712-84a1-afd1faff4dbc
[22:40:47] [Server thread/INFO]: [goxy]          - Name: duelsowe
[22:40:47] [Server thread/INFO]: [goxy]        - - Id: df6c7eea-1b7d-45af-9227-7a32176bba34
[22:40:47] [Server thread/INFO]: [goxy]          - Name: boxowe
[22:40:47] [Server thread/INFO]: [goxy]  - - Id: a7330d85-1e7b-473d-a2d2-0eab597b460a
[22:40:47] [Server thread/INFO]: [goxy]    - Name: lobby
[22:40:47] [Server thread/INFO]: [goxy]    - Servers (1):
[22:40:47] [Server thread/INFO]: [goxy]        - - Id: d286701a-2261-475b-81fc-e6456d455f89
[22:40:47] [Server thread/INFO]: [goxy]          - Name: lobby
[22:40:47] [Server thread/INFO]: [goxy]  - - Id: b6ea1c67-1eaa-4738-8b86-a663e0bbdcd4
[22:40:47] [Server thread/INFO]: [goxy]    - Name: serwery
[22:40:47] [Server thread/INFO]: [goxy]    - Servers (16):
[22:40:47] [Server thread/INFO]: [goxy]        - - Id: e6656073-7cf8-451f-b590-f9c3458ef8ee
[22:40:47] [Server thread/INFO]: [goxy]          - Name: survivalv2
[22:40:47] [Server thread/INFO]: [goxy]        - - Id: bc5e449a-b0b8-4bbf-89fc-1da20055bbab
[22:40:47] [Server thread/INFO]: [goxy]          - Name: oneblockcopy
[22:40:47] [Server thread/INFO]: [goxy]        - - Id: a2df03c8-592f-4031-8cea-339887c28b7c
[22:40:47] [Server thread/INFO]: [goxy]          - Name: boxpvp
[22:40:47] [Server thread/INFO]: [goxy]        - - Id: 6d12cbe2-466c-44c9-ae91-d26b0dda0492
[22:40:47] [Server thread/INFO]: [goxy]          - Name: tescik
[22:40:47] [Server thread/INFO]: [goxy]        - - Id: c99f11bf-77ff-4145-be2b-58330b885f41
[22:40:47] [Server thread/INFO]: [goxy]          - Name: ekocopy
[22:40:47] [Server thread/INFO]: [goxy]        - - Id: d417236e-d57b-49c5-8942-62a8a266378c
[22:40:47] [Server thread/INFO]: [goxy]          - Name: test
[22:40:47] [Server thread/INFO]: [goxy]        - - Id: 9225941e-b69f-4040-afe2-238321e7b904
[22:40:47] [Server thread/INFO]: [goxy]          - Name: skyblock2
[22:40:47] [Server thread/INFO]: [goxy]        - - Id: 217de49b-b82e-428b-a8e4-349e3b5d882a
[22:40:47] [Server thread/INFO]: [goxy]          - Name: ekonomia
[22:40:47] [Server thread/INFO]: [goxy]        - - Id: dee563f9-e373-4949-a548-067233adade5
[22:40:47] [Server thread/INFO]: [goxy]          - Name: svcopy
[22:40:47] [Server thread/INFO]: [goxy]        - - Id: 7cf81189-c252-4e50-b77a-358d3481e591
[22:40:47] [Server thread/INFO]: [goxy]          - Name: bfsmc
[22:40:47] [Server thread/INFO]: [goxy]        - - Id: 7cc3ec97-043a-452c-88a1-b8d3124a66c3
[22:40:47] [Server thread/INFO]: [goxy]          - Name: duels
[22:40:47] [Server thread/INFO]: [goxy]        - - Id: 7a978388-5281-488e-ab82-3f43bb74e6bc
[22:40:47] [Server thread/INFO]: [goxy]          - Name: survival
[22:40:47] [Server thread/INFO]: [goxy]        - - Id: 6fb66c85-e29d-42b7-aae0-544a0c14aedd
[22:40:47] [Server thread/INFO]: [goxy]          - Name: skyblock
[22:40:47] [Server thread/INFO]: [goxy]        - - Id: afe52589-cd89-483e-a043-bc5bbf64a87b
[22:40:47] [Server thread/INFO]: [goxy]          - Name: oneblock
[22:40:47] [Server thread/INFO]: [goxy]        - - Id: 1b1dec10-cf3c-4d50-b7d3-8ed0581696ab
[22:40:47] [Server thread/INFO]: [goxy]          - Name: event
[22:40:47] [Server thread/INFO]: [goxy]        - - Id: a8dbed95-f8d5-4b97-9bb0-699b839d2e24
[22:40:47] [Server thread/INFO]: [goxy]          - Name: pvp22
[22:40:47] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0-SNAPSHOT-b612
[22:40:47] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.84
[22:40:48] [Server thread/INFO]:         __    
[22:40:48] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.84
[22:40:48] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[22:40:48] [Server thread/INFO]: 
[22:40:48] [Server thread/INFO]: [LuckPerms] Loading configuration...
[22:40:49] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MARIADB]
[22:40:49] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[22:40:49] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[22:40:50] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[22:40:50] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[22:40:50] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[22:40:51] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 3919ms)
[22:40:51] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[22:40:51] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[22:40:51] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[22:40:51] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[22:40:51] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[22:40:51] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.10 build-12/06/2023
[22:40:51] [Server thread/INFO]: [NexEngine] Seems like we have Paper based fork here...
[22:40:51] [Server thread/INFO]: [NexEngine] Loaded NMS version: V1_19_R2
[22:40:51] [Server thread/WARN]: [NexEngine] ==================================
[22:40:51] [Server thread/WARN]: [NexEngine] WARNING: You're running an outdated/deprecated server version (1.19.3)!
[22:40:51] [Server thread/WARN]: [NexEngine] Support for this version will be dropped soon.
[22:40:51] [Server thread/WARN]: [NexEngine] Please, upgrade your server to at least 1.19.4.
[22:40:51] [Server thread/WARN]: [NexEngine] ==================================
[22:40:51] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[22:40:51] [Server thread/INFO]: [NexEngine] Successfully hooked with EssentialsX Economy economy
[22:40:51] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[22:40:51] [Server thread/INFO]: [NexEngine] Using 'en' language.
[22:40:51] [Server thread/INFO]: [NexEngine] Plugin loaded in 43 ms!
[22:40:51] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.5.1-SNAPSHOT-336;afe601b
[22:40:51] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[22:40:51] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[22:40:51] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[22:40:51] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[22:40:52] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_19_R2.PaperweightFaweAdapter as the Bukkit adapter
[22:40:52] [Server thread/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 209 build(s) out of date.
You are running build 336, the latest version is build 545.
Update at https://www.spigotmc.org/resources/13932/
[22:40:52] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.3.1
[22:40:52] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[22:40:52] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[22:40:52] [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.
[22:40:52] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[22:40:52] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[22:40:52] [Server thread/INFO]: Preparing level "world"
[22:40:52] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[22:40:52] [Server thread/INFO]: Time elapsed: 40 ms
[22:40:52] [Server thread/INFO]: [InventoryRollbackPlus] Enabling InventoryRollbackPlus v1.6.8
[22:40:52] [Server thread/INFO]: [InventoryRollbackPlus] Inventory backup data is set to save to: YAML
[22:40:52] [Server thread/INFO]: [InventoryRollbackPlus] bStats are enabled
[22:40:52] [Server thread/INFO]: [vw-helpop] Enabling vw-helpop v0.2*
[22:40:52] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.3
[22:40:53] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[22:40:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: goxy [0.9.0]
[22:40:53] [Server thread/INFO]: [goxy] PlaceholderAPI hook was registered
[22:40:53] [Server thread/INFO]: [UltimateAutoRestart] Enabling UltimateAutoRestart vBuild 52b
[22:40:53] [Server thread/INFO]: [UltimateAutoRestart] Build 52b, a free resource by Norska - Thanks for downloading!
[22:40:53] [Server thread/INFO]: [UltimateAutoRestart] Attempting hooks...
[22:40:53] [Server thread/INFO]: [PolarApi] Enabling PolarApi v1.1.3
[22:40:53] [Server thread/INFO]: [DropsToInventory] Enabling DropsToInventory v3.0.0
[22:40:53] [Server thread/INFO]: [CommandTimer] Enabling CommandTimer v8.0.0
[22:40:53] [Server thread/WARN]: [CommandTimer] Could not save en.json to plugins/CommandTimer/languages/en.json because en.json already exists.
[22:40:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: commandtimer [8.0.0]
[22:40:53] [Server thread/INFO]: [CommandTimer] CommandTimer hooked in PlaceholderAPI
[22:40:53] [Server thread/INFO]: [CommandTimer] Processing task 18.json
[22:40:53] [Server thread/INFO]: [CommandTimer] Server time : 22:40:53
[22:40:53] [Server thread/INFO]: [CommandTimer] Server day : THURSDAY
[22:40:53] [Server thread/INFO]: [CommandTimer] 8.0.0 loaded!
[22:40:53] [Server thread/INFO]: [SklepMC] Enabling SklepMC v1.2-SNAPSHOT-git-f33b0ce*
[22:40:53] [Server thread/INFO]: [BFSMCBlocks] Enabling BFSMCBlocks v1.1
[22:40:53] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.7.1-SNAPSHOT
[22:40:53] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.19.3 (761)
[22:40:53] [Server thread/INFO]: [CrazyVouchers] Enabling CrazyVouchers v2.9.14.3
[22:40:53] [Server thread/INFO]: [CrazyVouchers] Loading the Config.yml
[22:40:53] [Server thread/INFO]: [CrazyVouchers] Successfully loaded Config.yml
[22:40:53] [Server thread/INFO]: [CrazyVouchers] Loading the Data.yml
[22:40:53] [Server thread/INFO]: [CrazyVouchers] Successfully loaded Data.yml
[22:40:53] [Server thread/INFO]: [CrazyVouchers] Loading the Messages.yml
[22:40:53] [Server thread/INFO]: [CrazyVouchers] Successfully loaded Messages.yml
[22:40:53] [Server thread/INFO]: [CrazyVouchers] Loading the VoucherCodes.yml
[22:40:53] [Server thread/INFO]: [CrazyVouchers] Successfully loaded VoucherCodes.yml
[22:40:53] [Server thread/INFO]: [CrazyVouchers] Metrics has been enabled.
[22:40:53] [Server thread/INFO]: [SimplePortals] Enabling SimplePortals v1.7.1
[22:40:53] [Server thread/INFO]: [SimplePortals] Everything inside the configuration seems to be up to date. (Took 1ms)
[22:40:53] [Server thread/INFO]: [SimplePortals] Packets have been setup for v1_19_R2!
[22:40:53] [Server thread/INFO]: [SimplePortals] The version 1.7.1 doesn't match the latest version!
[22:40:53] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.7.1-SNAPSHOT
[22:40:53] [Server thread/INFO]: [iBright] Enabling iBright v1.0.0*
[22:40:53] [Server thread/INFO]: iBright Has Been Disabled!
[22:40:53] [Server thread/INFO]: [OpenInv] Enabling OpenInv v4.2.2
[22:40:53] [Server thread/INFO]: [AntiPearl] Enabling AntiPearl v1.4
[22:40:53] [Server thread/INFO]: [spark] Enabling spark v1.10.34
[22:40:53] [Thread-12/INFO]: [CommandTimer] Checking for update...
[22:40:53] [Thread-12/INFO]: [CommandTimer] Update found!
[22:40:54] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[22:40:54] [Server thread/INFO]: [spark] Starting background profiler...
[22:40:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: spark [1.10.34]
[22:40:54] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[22:40:54] [Server thread/INFO]: [Analyse] Enabling Analyse v2.0.8
[22:40:54] [Server thread/INFO]: [Analyse] Hooked into PlaceholderAPI.
[22:40:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: analyse [2.0.8]
[22:40:54] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v10.0.37-SNAPSHOT
[22:40:54] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises (1).jar
[22:40:54] [Server thread/INFO]: [LibsDisguises] Discovered nms version: v1_19_R2 (v1_19_R2)
[22:40:54] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1244
[22:40:54] [Server thread/INFO]: [LibsDisguises] Build Date: 05/07/2023 22:07
[22:40:54] [Server thread/INFO]: [LibsDisguises] If you own the plugin, place the premium jar downloaded from https://www.spigotmc.org/resources/libs-disguises.32453/ in plugins/LibsDisguises/
[22:40:54] [Server thread/INFO]: [LibsDisguises] You are running the free version, commands limited to non-players and operators. (Console, Command Blocks, Admins)
[22:40:54] [Server thread/ERROR]: [LibsDisguises] !! May I have your attention please !!
[22:40:54] [Server thread/ERROR]: [LibsDisguises] An update for ProtocolLib has been downloaded and will be installed when the server restarts. When possible, please restart the server. Lib's Disguises may not work correctly until you do so.
[22:40:54] [Server thread/ERROR]: [LibsDisguises] !! May I have your attention please !!
[22:40:54] [OkHttp https://app.analyse.net/.../INFO]: [Analyse] You are running the latest version of Analyse.
[22:40:54] [OkHttp https://app.analyse.net/.../INFO]: [Analyse] Connected to 'boxpvp'.
[22:41:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[22:41:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise smierc
[22:41:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise smierc1
[22:41:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise smierc2
[22:41:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise Lucyfer
[22:41:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise Aniol
[22:41:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise AniolPomagacz
[22:41:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise PomocnikDevil
[22:41:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise RumiIsAwesome
[22:41:00] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise smok
[22:41:00] [Server thread/INFO]: [LibsDisguises] Loaded 10 custom disguises
[22:41:00] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[22:41:00] [Server thread/INFO]: [ChristmasPresents] Enabling ChristmasPresents v0.1.2
[22:41:00] [Server thread/INFO]: [AppleMC-PlaceholderCos] Enabling AppleMC-PlaceholderCos v1.0-SNAPSHOT
[22:41:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bfs [1.0.0]
[22:41:00] [Server thread/INFO]: [NoCraftPlus] Enabling NoCraftPlus v2.1.2
[22:41:00] [Server thread/INFO]: [AntiPopup] Enabling AntiPopup v6.1
[22:41:00] [Server thread/INFO]: [AntiPopup] Config enabled.
[22:41:00] [Server thread/INFO]: [AntiPopup] Initiated PacketEvents.
[22:41:00] [Server thread/INFO]: [AntiPopup] Hooked on 1.19.3
[22:41:00] [Server thread/INFO]: [AntiPopup] Commands registered.
[22:41:00] [Server thread/INFO]: [AntiPopup] Logger filter enabled.
[22:41:00] [Server thread/INFO]: [AppleMc-MsgMail] Enabling AppleMc-MsgMail v1.1
[22:41:00] [Server thread/INFO]: [CommandWhitelist] Enabling CommandWhitelist v2.7.0
[22:41:00] [Server thread/INFO]: [ColoredAnvils] Enabling ColoredAnvils v2.0.0
[22:41:00] [Server thread/INFO]: [ColoredAnvils] ColoredAnvils v2.0.0 has been enabled!
[22:41:00] [Server thread/INFO]: [ColoredAnvils] git-Paper-448 (MC: 1.19.3)   1.19.3-R0.1-SNAPSHOT
[22:41:00] [Server thread/INFO]: [UnbreakableAnvils] Enabling UnbreakableAnvils v2.2.0*
[22:41:00] [Server thread/INFO]: [Bfsmc-Wymiana] Enabling Bfsmc-Wymiana v1.0
[22:41:00] [Server thread/INFO]: [Bfsmc-Wymiana] Ładowanie konfiguracji bloków...
[22:41:00] [Server thread/INFO]: [Bfsmc-Wymiana] Ładowanie konfiguracji wiadomości...
[22:41:00] [Server thread/INFO]: [TabTPS] Enabling TabTPS v1.3.17
[22:41:01] [Server thread/INFO]: [TabTPS] Successfully registered Mojang Brigadier support for commands.
[22:41:01] [Server thread/INFO]: [TabTPS] Successfully registered asynchronous command completion listener.
[22:41:01] [Server thread/INFO]: [PolarLoader] Enabling PolarLoader v1.0.11
[22:41:01] [Server thread/INFO]: [PolarLoader] Preparing Polar Anticheat environment
[22:41:01] [Server thread/INFO]: [PolarLoader] Enabling Polar Anticheat
[22:41:01] [Server thread/INFO]: [LPX] Enabling LPX v3.3.0
[22:41:01] [Server thread/INFO]: [LPX] License successfully verified!
[22:41:01] [Server thread/INFO]: [EpicRename] Enabling EpicRename v3.11.1
[22:41:01] [Server thread/INFO]: [EpicRename] [CheckServerVersion] Server running 1.16 or newer. Hex color code support has been enabled.
[22:41:01] [Server thread/INFO]: [EpicRename] Version: 3.11.1 MC Version: ONE_DOT_SIXTEEN_OR_NEWER
[22:41:01] [Server thread/INFO]: [EpicRename] This plugin is Copyright (c) 2022 Justin "JustBru00" Brubaker. This plugin is licensed under the MPL v2.0. You can view a copy of the MPL v2.0 license at: http://bit.ly/2eMknxx
[22:41:01] [Server thread/INFO]: [EpicRename] Starting to enable plugin...
[22:41:01] [Server thread/INFO]: [EpicRename] Prefix set to: '[EpicRename] '
[22:41:01] [Server thread/INFO]: [EpicRename] Plugin Enabled!
[22:41:01] [Server thread/INFO]: [LagAssist] Enabling LagAssist v2.29.1
[22:41:02] [Server thread/INFO]: LagAssist » Enabling Systems:
[22:41:02] [Server thread/INFO]:     [] Economy manager
[22:41:02] [Server thread/INFO]:     [] Smart Mob Tools.
[22:41:02] [Server thread/INFO]:     [] MicroFeatures.
[22:41:02] [Server thread/INFO]:     [] Hopper Manager.
[22:41:02] [Server thread/INFO]:     [] Redstone Culler.
[22:41:02] [Server thread/INFO]:     [] Physics-Tweaker.
[22:41:02] [Server thread/INFO]:     [] Lag Monitor.
[22:41:02] [Server thread/INFO]:     [] MapVisualizer.
[22:41:02] [Server thread/INFO]:     [] Chunk Analyser.
[22:41:02] [Server thread/INFO]:     [] Chunk Limiter.
[22:41:02] [Server thread/INFO]:     [] StatsAnalyse.
[22:41:02] [Server thread/INFO]:     [] Spawner Manager.
[22:41:02] [Server thread/INFO]:     [] GUI.
[22:41:02] [Server thread/INFO]:     [] Injecting PacketListener.
[22:41:02] [Server thread/INFO]:     [] API Tools.
[22:41:02] [Server thread/INFO]: [GUIPlus] Enabling GUIPlus v2.87
[22:41:02] [Server thread/INFO]: [AdvancedEnderchest] Enabling AdvancedEnderchest v1.0.9.2
[22:41:03] [Server thread/INFO]: [AdvancedEnderchest] Database connected: wings4.kaicok.it
[22:41:03] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.1-dev+12-8b2c7d7
[22:41:03] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[22:41:03] [2139329231/INFO]: [Polar] Caching blocks...
[22:41:03] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[22:41:03] [Server thread/INFO]: [Essentials] No kits found to migrate.
[22:41:03] [Server thread/INFO]: [Essentials] Loaded 38132 items from items.json.
[22:41:03] [Server thread/INFO]: [Essentials] Using locale pl
[22:41:03] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[22:41:03] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[22:41:03] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[22:41:03] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[22:41:03] [Server thread/INFO]: [RewardsLite] Enabling RewardsLite v3.1.4
[22:41:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: rewardslite [1.0.0]
[22:41:03] [Server thread/INFO]: [RewardsLite] Loaded 1 reward.
[22:41:03] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.17.0
[22:41:04] [2139329231/INFO]: [Polar] Polar v1.1.56-beta was loaded in 1173ms
[22:41:04] [Server thread/INFO]: [HeadDatabase] Using default "en_US.lang" created by Arcaniax
[22:41:04] [Server thread/WARN]: [HeadDatabase] Economy was not loaded, some features will be disabled!
[22:41:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: hdb [4.17.0]
[22:41:04] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.12.4
[22:41:04] [Server thread/INFO]: [LiteBans] Using default database drivers (version:8).
[22:41:04] [Server thread/INFO]: [LiteBans] Using system locale (en)
[22:41:04] [Server thread/INFO]: [LiteBans] Loaded 2 templates from templates.yml!
[22:41:05] [Server thread/INFO]: [LiteBans] Loading SQL driver: h2 1.4.197 (org.h2.Driver)
[22:41:05] [Server thread/INFO]: [LiteBans] Connecting to database...
[22:41:05] [Server thread/INFO]: [LiteBans] litebans-pool - Starting...
[22:41:05] [Server thread/INFO]: [LiteBans] litebans-pool - Start completed.
[22:41:05] [Server thread/INFO]: [LiteBans] Connected to H2 database successfully (110.6 ms).
[22:41:05] [Server thread/INFO]: [LiteBans] Database connection fully initialized (113.1 ms).
[22:41:05] [Server thread/INFO]: [LiteBans] v2.12.4 enabled. Startup took 343 ms.
[22:41:05] [Server thread/INFO]: [OmegaVision] Enabling OmegaVision v2.5.16
[22:41:05] [Server thread/INFO]: [OmegaVision] Attempting to update the config files....
[22:41:05] [Server thread/INFO]:   ____ _   __
[22:41:05] [Server thread/INFO]:  / __ \ | / /   OmegaVision v2.5.16 by OmegaWeaponDev
[22:41:05] [Server thread/INFO]: / /_/ / |/ /    Running on version: git-Paper-448 (MC: 1.19.3)
[22:41:05] [Server thread/INFO]: \____/|___/
[22:41:05] [Server thread/INFO]: 
[22:41:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: omegavision [2.5.16]
[22:41:05] [Server thread/INFO]: [OmegaVision] OmegaVision is now attempting to register it's commands...
[22:41:05] [Server thread/INFO]: [OmegaVision] OmegaVision has successfully registered all of it's commands.
[22:41:05] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.7.0
[22:41:06] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[22:41:06] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_hours_played. Canceling updater and bumping DB version.
[22:41:06] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_player_kills. Canceling updater and bumping DB version.
[22:41:06] [Server thread/INFO]: [ajLeaderboards] Loaded 2 boards
[22:41:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ajlb [2.7.0]
[22:41:06] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[22:41:06] [Server thread/INFO]: [ajLeaderboards] LuckPerms position context calculator registered!
[22:41:06] [Server thread/WARN]: [ajLeaderboards] Luckperms Contexts are enabled, but only-register-lpc-for has not been configured! Configuring only-register-lpc-for is strongly recommended to improve performance!
[22:41:06] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.7.0 by ajgeiss0702 enabled!
[22:41:06] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.20.1-dev+12-8b2c7d7
[22:41:06] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[22:41:06] [Server thread/INFO]: [TAB] Enabling TAB v3.3.2
[22:41:06] [Server thread/INFO]: [TAB] Server version: 1.19.3 (v1_19_R2)
[22:41:06] [Server thread/INFO]: [TAB] Loaded NMS hook in 16ms
[22:41:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tab [3.3.2]
[22:41:06] [Server thread/INFO]: [TAB] Enabled in 53ms
[22:41:06] [Server thread/INFO]: [ChatSentry] Enabling ChatSentry v5.3.8
[22:41:06] [Server thread/INFO]: 
[22:41:06] [Server thread/INFO]:  _____ _           _   _____            _              
[22:41:06] [Server thread/INFO]: /  __ \ |         | | /  ___|          | |             
[22:41:06] [Server thread/INFO]: | /  \/ |__   __ _| |_\ `--.  ___ _ __ | |_ _ __ _   _ 
[22:41:06] [Server thread/INFO]: | |   | '_ \ / _` | __|`--. \/ _ \ '_ \| __| '__| | | |
[22:41:06] [Server thread/INFO]: | \__/\ | | | (_| | |_/\__/ /  __/ | | | |_| |  | |_| |
[22:41:06] [Server thread/INFO]:  \____/_| |_|\__,_|\__\____/ \___|_| |_|\__|_|   \__, |
[22:41:06] [Server thread/INFO]:                                                   __/ |
[22:41:06] [Server thread/INFO]:                                                  |___/ 
[22:41:06] [Server thread/INFO]: Starting on version 5.3.8
[22:41:06] [Server thread/INFO]: 
[22:41:06] [Server thread/INFO]: [ChatSentry] Validating files...
[22:41:06] [Server thread/INFO]: [ChatSentry] Loaded files; no issues were found.
[22:41:06] [Server thread/INFO]: [ChatSentry] Using SQLite (flatfile) for storage.
[22:41:06] [Server thread/INFO]: [ChatSentry] Cache is waiting for the server to begin ticking...
[22:41:06] [Server thread/INFO]: [FastAsyncVoxelSniper] Enabling FastAsyncVoxelSniper v2.8.0
[22:41:06] [Server thread/INFO]: [JumpPads] Enabling JumpPads v1.25.13
[22:41:06] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.7+216b061
[22:41:07] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[22:41:07] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[22:41:07] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[22:41:07] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[22:41:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[22:41:07] [Server thread/INFO]: [WorldGuard] Loading region data...
[22:41:07] [Server thread/INFO]: [EntityDetection] Enabling EntityDetection v1.2.0 (build #23)
[22:41:07] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.2.1-fd1d0777
[22:41:07] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.19.3)...
[22:41:07] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[22:41:07] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 26 ms to scan 1 urls, producing 3 keys and 21 values 
[22:41:07] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 8 ms to scan 1 urls, producing 6 keys and 101 values 
[22:41:07] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 21 ms to scan 114 urls, producing 0 keys and 0 values 
[22:41:07] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 4 ms to scan 1 urls, producing 3 keys and 36 values 
[22:41:07] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 4 ms to scan 1 urls, producing 4 keys and 14 values 
[22:41:07] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 4 ms to scan 1 urls, producing 4 keys and 14 values 
[22:41:07] [Server thread/INFO]: [MythicMobs] MythicMobs LibsDisguises Support has been enabled!
[22:41:07] [Server thread/INFO]: [MythicMobs] MythicMobs PlaceholderAPI Support has been enabled!
[22:41:07] [Server thread/INFO]: [MythicMobs] MythicMobs ProtocolLib Support has been enabled!
[22:41:07] [Server thread/INFO]: [MythicMobs] MythicMobs Vault Support has been enabled!
[22:41:07] [Server thread/INFO]: [MythicMobs] MythicMobs WorldGuard Support has been enabled!
[22:41:07] [Server thread/INFO]: [MythicMobs] Base directory /home/container/plugins/MythicMobs/SavedData
[22:41:07] [Server thread/INFO]: [MythicMobs] Module directory /home/container/plugins/MythicMobs/SavedData/worlds
[22:41:07] [Server thread/INFO]: [MythicMobs] -- File /home/container/plugins/MythicMobs/SavedData/worlds/world.json
[22:41:07] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 9 ms to scan 1 urls, producing 11 keys and 445 values 
[22:41:07] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 17 ms to scan 1 urls, producing 29 keys and 885 values 
[22:41:07] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 6 ms to scan 1 urls, producing 9 keys and 152 values 
[22:41:07] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 5 ms to scan 1 urls, producing 2 keys and 11 values 
[22:41:07] [Server thread/INFO]: [MythicMobs] LOADED
[22:41:07] [Server thread/INFO]: [MythicMobs] Loading Packs...
[22:41:07] [Server thread/INFO]: [MythicMobs] Loading Items...
[22:41:07] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Item testing
[22:41:07] [Server thread/WARN]: [MythicMobs] Error loading item 'testing'. Enable debugging for a stack trace.
[22:41:07] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Item Test
[22:41:07] [Server thread/WARN]: [MythicMobs] Error loading item 'Test'. Enable debugging for a stack trace.
[22:41:07] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Item Smok
[22:41:07] [Server thread/WARN]: [MythicMobs] Error loading item 'Smok'. Enable debugging for a stack trace.
[22:41:07] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[22:41:07] [Server thread/INFO]: [MythicMobs] Loading Skills...
[22:41:07] [Server thread/WARN]: while parsing a block mapping
[22:41:07] [Server thread/WARN]:  in 'string', line 1, column 1:
[22:41:07] [Server thread/WARN]:     OrbitalTest:
[22:41:07] [Server thread/WARN]:     ^
[22:41:07] [Server thread/WARN]: expected <block end>, but found '-'
[22:41:07] [Server thread/WARN]:  in 'string', line 3, column 1:
[22:41:07] [Server thread/WARN]:     - effect:particleorbital{r=2;poi ... 
[22:41:07] [Server thread/WARN]:     ^
[22:41:07] [Server thread/WARN]: 
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingKey.produce(ParserImpl.java:679)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:185)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:57)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:43)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:136)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:116)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:318)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:212)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:357)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:336)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:311)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:212)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.getNode(Composer.java:134)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:160)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:184)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:477)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.load(Yaml.java:406)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadFromString(YamlConfiguration.java:52)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.FileConfiguration.load(FileConfiguration.java:149)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.FileConfiguration.load(FileConfiguration.java:117)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:178)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.config.IOLoader.reloadCustomConfig(IOLoader.java:70)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.config.IOLoader.<init>(IOLoader.java:52)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.config.IOHandler.getSaveLoad(IOHandler.java:46)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.skills.SkillExecutor.loadSkills(SkillExecutor.java:94)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.config.ConfigExecutor.load(ConfigExecutor.java:137)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:168)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:80)
[22:41:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[22:41:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192)
[22:41:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[22:41:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[22:41:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:560)
[22:41:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:471)
[22:41:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635)
[22:41:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434)
[22:41:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:308)
[22:41:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1101)
[22:41:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316)
[22:41:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[22:41:07] [Server thread/ERROR]: [MythicMobs] Cannot load plugins/MythicMobs/Skills/OrbitalTest.yml
[22:41:07] [Server thread/WARN]: io.lumine.mythic.bukkit.utils.config.InvalidConfigurationException: while parsing a block mapping
[22:41:07] [Server thread/WARN]:  in 'string', line 1, column 1:
[22:41:07] [Server thread/WARN]:     OrbitalTest:
[22:41:07] [Server thread/WARN]:     ^
[22:41:07] [Server thread/WARN]: expected <block end>, but found '-'
[22:41:07] [Server thread/WARN]:  in 'string', line 3, column 1:
[22:41:07] [Server thread/WARN]:     - effect:particleorbital{r=2;poi ... 
[22:41:07] [Server thread/WARN]:     ^
[22:41:07] [Server thread/WARN]: 
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadFromString(YamlConfiguration.java:55)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.FileConfiguration.load(FileConfiguration.java:149)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.FileConfiguration.load(FileConfiguration.java:117)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:178)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.config.IOLoader.reloadCustomConfig(IOLoader.java:70)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.config.IOLoader.<init>(IOLoader.java:52)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.config.IOHandler.getSaveLoad(IOHandler.java:46)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.skills.SkillExecutor.loadSkills(SkillExecutor.java:94)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.config.ConfigExecutor.load(ConfigExecutor.java:137)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:168)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:80)
[22:41:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[22:41:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192)
[22:41:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[22:41:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[22:41:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:560)
[22:41:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:471)
[22:41:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635)
[22:41:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434)
[22:41:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:308)
[22:41:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1101)
[22:41:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316)
[22:41:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[22:41:07] [Server thread/WARN]: Caused by: while parsing a block mapping
[22:41:07] [Server thread/WARN]:  in 'string', line 1, column 1:
[22:41:07] [Server thread/WARN]:     OrbitalTest:
[22:41:07] [Server thread/WARN]:     ^
[22:41:07] [Server thread/WARN]: expected <block end>, but found '-'
[22:41:07] [Server thread/WARN]:  in 'string', line 3, column 1:
[22:41:07] [Server thread/WARN]:     - effect:particleorbital{r=2;poi ... 
[22:41:07] [Server thread/WARN]:     ^
[22:41:07] [Server thread/WARN]: 
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingKey.produce(ParserImpl.java:679)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:185)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:57)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:43)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:136)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:116)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:318)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:212)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:357)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:336)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:311)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:212)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.getNode(Composer.java:134)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:160)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:184)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:477)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.load(Yaml.java:406)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadFromString(YamlConfiguration.java:52)
[22:41:07] [Server thread/WARN]:     ... 22 more
[22:41:07] [Server thread/WARN]: while parsing a block mapping
[22:41:07] [Server thread/WARN]:  in 'string', line 1, column 1:
[22:41:07] [Server thread/WARN]:     Destructor:
[22:41:07] [Server thread/WARN]:     ^
[22:41:07] [Server thread/WARN]: expected <block end>, but found '<block sequence start>'
[22:41:07] [Server thread/WARN]:  in 'string', line 10, column 2:
[22:41:07] [Server thread/WARN]:      - randomskill{skills=ArrowBarrag ... 
[22:41:07] [Server thread/WARN]:      ^
[22:41:07] [Server thread/WARN]: 
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingKey.produce(ParserImpl.java:679)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:185)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:57)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:43)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:136)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:116)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:318)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:212)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:357)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:336)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:311)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:212)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.getNode(Composer.java:134)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:160)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:184)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:477)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.load(Yaml.java:406)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadFromString(YamlConfiguration.java:52)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.FileConfiguration.load(FileConfiguration.java:149)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.FileConfiguration.load(FileConfiguration.java:117)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:178)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.config.IOLoader.reloadCustomConfig(IOLoader.java:70)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.config.IOLoader.<init>(IOLoader.java:52)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.config.IOHandler.getSaveLoad(IOHandler.java:46)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.skills.SkillExecutor.loadSkills(SkillExecutor.java:94)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.config.ConfigExecutor.load(ConfigExecutor.java:137)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:168)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:80)
[22:41:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[22:41:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192)
[22:41:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[22:41:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[22:41:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:560)
[22:41:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:471)
[22:41:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635)
[22:41:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434)
[22:41:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:308)
[22:41:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1101)
[22:41:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316)
[22:41:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[22:41:07] [Server thread/ERROR]: [MythicMobs] Cannot load plugins/MythicMobs/Skills/DestruktorSkill.yml
[22:41:07] [Server thread/WARN]: io.lumine.mythic.bukkit.utils.config.InvalidConfigurationException: while parsing a block mapping
[22:41:07] [Server thread/WARN]:  in 'string', line 1, column 1:
[22:41:07] [Server thread/WARN]:     Destructor:
[22:41:07] [Server thread/WARN]:     ^
[22:41:07] [Server thread/WARN]: expected <block end>, but found '<block sequence start>'
[22:41:07] [Server thread/WARN]:  in 'string', line 10, column 2:
[22:41:07] [Server thread/WARN]:      - randomskill{skills=ArrowBarrag ... 
[22:41:07] [Server thread/WARN]:      ^
[22:41:07] [Server thread/WARN]: 
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadFromString(YamlConfiguration.java:55)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.FileConfiguration.load(FileConfiguration.java:149)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.FileConfiguration.load(FileConfiguration.java:117)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:178)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.config.IOLoader.reloadCustomConfig(IOLoader.java:70)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.config.IOLoader.<init>(IOLoader.java:52)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.config.IOHandler.getSaveLoad(IOHandler.java:46)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.skills.SkillExecutor.loadSkills(SkillExecutor.java:94)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.config.ConfigExecutor.load(ConfigExecutor.java:137)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:168)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:80)
[22:41:07] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[22:41:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192)
[22:41:07] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[22:41:07] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[22:41:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:560)
[22:41:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:471)
[22:41:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635)
[22:41:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434)
[22:41:07] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:308)
[22:41:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1101)
[22:41:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316)
[22:41:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[22:41:07] [Server thread/WARN]: Caused by: while parsing a block mapping
[22:41:07] [Server thread/WARN]:  in 'string', line 1, column 1:
[22:41:07] [Server thread/WARN]:     Destructor:
[22:41:07] [Server thread/WARN]:     ^
[22:41:07] [Server thread/WARN]: expected <block end>, but found '<block sequence start>'
[22:41:07] [Server thread/WARN]:  in 'string', line 10, column 2:
[22:41:07] [Server thread/WARN]:      - randomskill{skills=ArrowBarrag ... 
[22:41:07] [Server thread/WARN]:      ^
[22:41:07] [Server thread/WARN]: 
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingKey.produce(ParserImpl.java:679)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:185)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:57)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:43)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:136)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:116)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:318)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:212)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:357)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:336)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:311)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:212)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.getNode(Composer.java:134)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:160)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:184)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:477)
[22:41:07] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.load(Yaml.java:406)
[22:41:07] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadFromString(YamlConfiguration.java:52)
[22:41:07] [Server thread/WARN]:     ... 22 more
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+6': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+13.3': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+6': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+13.3': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '20.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '20.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '144.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '20.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '144.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '144.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '144.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '108.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '180.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '144.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '144.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '15.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '15.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '15.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '15.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '15.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '15.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '10.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '10.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '10.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '10.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '10.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '10.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '145.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '128.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '144.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '161.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '163.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '144.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '144.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+1.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+1.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+0.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+0.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '100.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+0.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+0.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+3': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+3': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+1.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1257.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1272.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1272.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1257.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1257.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1272.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1272.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1257.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1272.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1272.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1272.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1257.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1272.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1272.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1272.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1272.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1272.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1257.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1272.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1272.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1272.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1257.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1272.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1272.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1272.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1257.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1272.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1272.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1257.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1257.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1272.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1257.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1272.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1272.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1272.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1257.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1272.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1272.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1257.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1257.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1272.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1272.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1257.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1272.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1272.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:07] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '0.1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+8': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '144.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:08] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[22:41:08] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[22:41:08] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[22:41:08] [Server thread/WARN]: [MythicMobs] Error enabling spawner SpawnerName - MobType mobTypeName is invalid! Spawner cannot initialize. Disabling.
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Skill: RiseAndSpin | File: /home/container/plugins/MythicMobs/Skills/shoot.yml
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill IceBolt
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=IceBolt}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Skill: RiseAndSpin | File: /home/container/plugins/MythicMobs/Skills/shoot.yml
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill IceBolt
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=IceBolt}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Skill: RiseAndSpin | File: /home/container/plugins/MythicMobs/Skills/shoot.yml
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill IceBolt
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=IceBolt}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Skill: RiseAndSpin | File: /home/container/plugins/MythicMobs/Skills/shoot.yml
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill IceBolt
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=IceBolt}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Skill: RiseAndSpin | File: /home/container/plugins/MythicMobs/Skills/shoot.yml
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill IceBolt
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=IceBolt}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Skill: RiseAndSpin | File: /home/container/plugins/MythicMobs/Skills/shoot.yml
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill IceBolt
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=IceBolt}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Skill: RiseAndSpin | File: /home/container/plugins/MythicMobs/Skills/shoot.yml
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill IceBolt
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=IceBolt}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Skill: RiseAndSpin | File: /home/container/plugins/MythicMobs/Skills/shoot.yml
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill IceBolt
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=IceBolt}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Skill: RiseAndSpin | File: /home/container/plugins/MythicMobs/Skills/shoot.yml
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill IceBolt
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=IceBolt}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Skill: RiseAndSpin | File: /home/container/plugins/MythicMobs/Skills/shoot.yml
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill IceBolt
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=IceBolt}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Skill: RiseAndSpin | File: /home/container/plugins/MythicMobs/Skills/shoot.yml
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill IceBolt
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=IceBolt}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Skill: RiseAndSpin | File: /home/container/plugins/MythicMobs/Skills/shoot.yml
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill IceBolt
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=IceBolt}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Skill: RiseAndSpin | File: /home/container/plugins/MythicMobs/Skills/shoot.yml
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill IceBolt
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=IceBolt}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Skill: RiseAndSpin | File: /home/container/plugins/MythicMobs/Skills/shoot.yml
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill IceBolt
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=IceBolt}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Skill: RiseAndSpin | File: /home/container/plugins/MythicMobs/Skills/shoot.yml
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill IceBolt
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=IceBolt}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Skill: RiseAndSpin | File: /home/container/plugins/MythicMobs/Skills/shoot.yml
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill IceBolt
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=IceBolt}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Skill: RiseAndSpin | File: /home/container/plugins/MythicMobs/Skills/shoot.yml
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill IceBolt
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=IceBolt}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Skill: RiseAndSpin | File: /home/container/plugins/MythicMobs/Skills/shoot.yml
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill IceBolt
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=IceBolt}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Skill: RiseAndSpin | File: /home/container/plugins/MythicMobs/Skills/shoot.yml
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill IceBolt
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=IceBolt}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Skill: RiseAndSpin | File: /home/container/plugins/MythicMobs/Skills/shoot.yml
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill IceBolt
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=IceBolt}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Skill: RiseAndSpin | File: /home/container/plugins/MythicMobs/Skills/shoot.yml
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill IceBolt
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=IceBolt}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Skill: RiseAndSpin | File: /home/container/plugins/MythicMobs/Skills/shoot.yml
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill IceBolt
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=IceBolt}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Skill: RiseAndSpin | File: /home/container/plugins/MythicMobs/Skills/shoot.yml
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill IceBolt
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=IceBolt}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Skill: RiseAndSpin | File: /home/container/plugins/MythicMobs/Skills/shoot.yml
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill IceBolt
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=IceBolt}
[22:41:08] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MobsInRadius{r=100;t=FalseMagician}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MobsInRadius{r=100;t=TwoFalseMagician}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MobsInRadius{r=50;t=FalseMagician}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MobsInRadius{r=50;t=YwoFalseMagician}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MobsInRadius{r=50;t=FalseMagician}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MobsInRadius{r=50;t=TwoFalseMagician}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Skill: summonMummy | File: /home/container/plugins/MythicMobs/Skills/OsirisSkills.yml
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: Summon{mob=mummy;amount=2;radius=2;onSurface=true;}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Skill: ClonMadera | File: /home/container/plugins/MythicMobs/Skills/Skills.yml
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{type=Hashirama2;amount=4;radius=4}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mob: Destructor | File: Unknown
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill Destructor
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=Destructor}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mob: Destructor | File: Unknown
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill DoomBrigade
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=DoomBrigade}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mob: Destructor | File: Unknown
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill SonicBoom
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=SonicBoom}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mob: Destructor | File: Unknown
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill RaiseUndead
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=RaiseUndead}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mob: Destructor | File: Unknown
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill ArrowBarrage
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=ArrowBarrage}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mob: Destructor | File: Unknown
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill Freeze
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=Freeze}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mob: BrokenDestructor | File: Unknown
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill DoomBrigade
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=DoomBrigade}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mob: BrokenDestructor | File: Unknown
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill SonicBoom
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=SonicBoom}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mob: BrokenDestructor | File: Unknown
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill RaiseUndead
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=RaiseUndead}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mob: BrokenDestructor | File: Unknown
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill ArrowBarrage
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=ArrowBarrage}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mob: BrokenDestructor | File: Unknown
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill Freeze
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=Freeze}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mob: BrokenDestructor | File: Unknown
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill Wither
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=Wither}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mob: MiniDestructor | File: Unknown
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill DoomBrigade
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=DoomBrigade}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mob: MiniDestructor | File: Unknown
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill SonicBoom
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=SonicBoom}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mob: MiniDestructor | File: Unknown
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill RaiseUndead
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=RaiseUndead}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mob: MiniDestructor | File: Unknown
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill ArrowBarrage
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=ArrowBarrage}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mob: MiniDestructor | File: Unknown
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill Freeze
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=Freeze}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mob: MiniDestructor | File: Unknown
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill Wither
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=Wither}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic rally
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mob: Surtur | File: Unknown
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: rally{types=Draugr;radius=32;ot=false}
[22:41:08] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mob: SkeletonKing | File: Unknown
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill SummonSkeletons
[22:41:08] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=SummonSkeletons}
[22:41:08] [Server thread/INFO]: [MythicMobs] ✓ Loaded 63 mobs.
[22:41:08] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[22:41:08] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[22:41:08] [Server thread/INFO]: [MythicMobs] ✓ Loaded 444 skills.
[22:41:08] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[22:41:08] [Server thread/INFO]: [MythicMobs] ✓ Loaded 8 mythic items.
[22:41:08] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[22:41:08] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 mob spawners.
[22:41:08] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[22:41:08] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[22:41:08] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs v5.2.1 ( build fd1d0777 ) has been successfully loaded!
[22:41:08] [Server thread/INFO]: [GSit] Enabling GSit v1.4.5
[22:41:08] [Server thread/INFO]: [GSit] The plugin was successfully enabled.
[22:41:08] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
[22:41:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gsit [1.4.5]
[22:41:08] [Server thread/INFO]: [GSit] Link with WorldGuard successful!
[22:41:08] [Server thread/INFO]: [GSit] New version available: 1.4.10!
[GSit] You are currently running version: 1.4.5!
[GSit] Download the latest version at:
[GSit] https://www.spigotmc.org/resources/62325
[22:41:08] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.20.1-dev+12-8b2c7d7
[22:41:08] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[22:41:08] [Server thread/INFO]: [PvPManager] Enabling PvPManager v3.14
[22:41:08] [Server thread/INFO]: [PvPManager] Using player nametags: true
[22:41:08] [Server thread/INFO]: [PvPManager] Connected to SQLITE database successfully
[22:41:08] [Server thread/INFO]: [PvPManager] Players stored: 15627
[22:41:08] [Server thread/INFO]: [PvPManager] WorldGuard Found! Enabling Support For WorldGuard Regions
[22:41:08] [Server thread/INFO]: [PvPManager] Essentials Found! Hooked successfully
[22:41:08] [Server thread/INFO]: [PvPManager] Vault Found! Using it for currency related features
[22:41:08] [Server thread/INFO]: [PvPManager] PlaceholderAPI Found! Hooked successfully
[22:41:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: pvpmanager [3.14]
[22:41:08] [Server thread/INFO]: [PvPManager] LibsDisguises Found! Using it to disable disguises
[22:41:08] [Server thread/INFO]: [PvPManager] PvPManager Enabled (90 ms)
[22:41:08] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v21.3
[22:41:08] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[22:41:08] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[22:41:08] [Server thread/INFO]: --------------------
[22:41:08] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[22:41:08] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[22:41:08] [Server thread/INFO]: --------------------
[22:41:08] [Server thread/INFO]: [WGEF-Reborn] Enabling WGEF-Reborn v2.6-stable+73c8022
[22:41:08] [Server thread/INFO]: [WorldGuard] Registering session handler io.github.invvk.wgef.abstraction.flags.handler.command.CommandOnEntryHandler
[22:41:08] [Server thread/INFO]: [WorldGuard] Registering session handler io.github.invvk.wgef.abstraction.flags.handler.command.CommandOnExitHandler
[22:41:08] [Server thread/INFO]: [WorldGuard] Registering session handler io.github.invvk.wgef.abstraction.flags.handler.command.ConsoleCommandOnEntryHandler
[22:41:08] [Server thread/INFO]: [WorldGuard] Registering session handler io.github.invvk.wgef.abstraction.flags.handler.command.ConsoleCommandOnExitHandler
[22:41:08] [Server thread/INFO]: [WorldGuard] Registering session handler io.github.invvk.wgef.abstraction.flags.handler.teleport.TeleportEntryHandler
[22:41:08] [Server thread/INFO]: [WorldGuard] Registering session handler io.github.invvk.wgef.abstraction.flags.handler.teleport.TeleportExitHandler
[22:41:08] [Server thread/INFO]: [WorldGuard] Registering session handler io.github.invvk.wgef.abstraction.flags.handler.player.BlockEffectFlagHandler
[22:41:08] [Server thread/INFO]: [WorldGuard] Registering session handler io.github.invvk.wgef.abstraction.flags.handler.player.GiveEffectFlagHandler
[22:41:08] [Server thread/INFO]: [WorldGuard] Registering session handler io.github.invvk.wgef.abstraction.flags.handler.player.GlideFlagHandler
[22:41:08] [Server thread/INFO]: [WorldGuard] Registering session handler io.github.invvk.wgef.abstraction.flags.handler.player.FlyFlagHandler
[22:41:08] [Server thread/INFO]: [WorldGuard] Registering session handler io.github.invvk.wgef.abstraction.flags.handler.player.WalkSpeedFlagHandler
[22:41:08] [Server thread/INFO]: [WorldGuard] Registering session handler io.github.invvk.wgef.abstraction.flags.handler.player.FlySpeedFlagHandler
[22:41:08] [Server thread/INFO]: [WorldGuard] Registering session handler io.github.invvk.wgef.abstraction.flags.handler.player.CollisionFlagHandler
[22:41:08] [Server thread/INFO]: [WorldGuard] Registering session handler io.github.invvk.wgef.abstraction.flags.handler.essentials.GodModeHandler
[22:41:08] [Server thread/INFO]: [Skript] Enabling Skript v2.7.0-beta3
[22:41:08] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] You're currently running the latest stable version of Skript.
[22:41:09] [PvPManager Worker Thread - 0/INFO]: [PvPManager] Checking for updates...
[22:41:09] [PvPManager Worker Thread - 0/INFO]: [PvPManager] No update found
[22:41:10] [Server thread/INFO]: [Skript] Loaded 150600 aliases in 1904ms
[22:41:10] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[22:41:10] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.2
[22:41:10] [Server thread/INFO]: [DecentHolograms] Using ProtocolLib for packet listening.
[22:41:10] [Server thread/INFO]: [CataMines] Enabling CataMines v2.5.11
[22:41:10] [Server thread/INFO]: [CataMines] Loading config file
[22:41:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: catamines [2.5.11]
[22:41:10] [Server thread/INFO]: [SkQuery] Enabling SkQuery v4.1.7
[22:41:10] [Server thread/ERROR]: Error occurred while enabling SkQuery v4.1.7 (Is it up to date?)
java.lang.UnsupportedOperationException: null
    at io.papermc.paper.plugin.manager.DummyBukkitPluginLoader.getPluginDescription(DummyBukkitPluginLoader.java:35) ~[paper-1.19.3.jar:git-Paper-448]
    at com.w00tmast3r.skquery.Registration.enableSnooper(Registration.java:42) ~[SkQuery-4.1.7.jar:?]
    at com.w00tmast3r.skquery.SkQuery.onEnable(SkQuery.java:33) ~[SkQuery-4.1.7.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192) ~[paper-1.19.3.jar:git-Paper-448]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.19.3.jar:git-Paper-448]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:560) ~[paper-1.19.3.jar:git-Paper-448]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:471) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-448]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[22:41:10] [Server thread/INFO]: [SkQuery] Disabling SkQuery v4.1.7
[22:41:10] [Server thread/ERROR]: Error occurred (in the plugin loader) while disabling SkQuery v4.1.7 (Is it up to date?)
java.lang.ExceptionInInitializerError: null
    at com.w00tmast3r.skquery.SkQuery.onDisable(SkQuery.java:45) ~[SkQuery-4.1.7.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:227) ~[paper-1.19.3.jar:git-Paper-448]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.19.3.jar:git-Paper-448]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:537) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:196) ~[paper-1.19.3.jar:git-Paper-448]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.19.3.jar:git-Paper-448]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:560) ~[paper-1.19.3.jar:git-Paper-448]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:471) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-448]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: org.bukkit.plugin.IllegalPluginAccessException: Plugin attempted to register task while disabled
    at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftScheduler.validate(CraftScheduler.java:552) ~[paper-1.19.3.jar:git-Paper-448]
    at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftScheduler.runTaskTimer(CraftScheduler.java:227) ~[paper-1.19.3.jar:git-Paper-448]
    at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftScheduler.runTaskTimer(CraftScheduler.java:212) ~[paper-1.19.3.jar:git-Paper-448]
    at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftScheduler.scheduleSyncRepeatingTask(CraftScheduler.java:207) ~[paper-1.19.3.jar:git-Paper-448]
    at com.w00tmast3r.skquery.elements.events.EvtLambdaWhen.<clinit>(EvtLambdaWhen.java:24) ~[SkQuery-4.1.7.jar:?]
    ... 16 more
[22:41:10] [Server thread/INFO]: [ItemEdit] Enabling ItemEdit v3.0.7
[22:41:10] [Server thread/INFO]: [ItemEdit] Hooking into Vault
[22:41:10] [Server thread/INFO]: [ItemEdit] Hooking into PlaceholderApi
[22:41:10] [Server thread/INFO]: [ItemEdit] Hooked into PlaceHolderAPI:
[22:41:10] [Server thread/INFO]: [ItemEdit] placeholders:
[22:41:10] [Server thread/INFO]: [ItemEdit]   %itemedit_amount_<{itemid}>_[{slot}]_[{player}]%
[22:41:10] [Server thread/INFO]: [ItemEdit]     shows how many itemid player has on slot
[22:41:10] [Server thread/INFO]: [ItemEdit]     <{itemid}> for item id on serveritem
[22:41:10] [Server thread/INFO]: [ItemEdit]     [{slot}] for the slot where the item should be counted, by default inventory
[22:41:10] [Server thread/INFO]: [ItemEdit]       Values: inventory, equip, inventoryandequip, hand, offhand, head, chest, legs, feet
[22:41:10] [Server thread/INFO]: [ItemEdit]     [{player}] for the player, by default self
[22:41:10] [Server thread/INFO]: [ItemEdit]     example: %itemedit_amount_{my_item_id}_{hand}%
[22:41:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: itemedit [1.0]
[22:41:10] [Server thread/INFO]: [ItemEdit] Hooking into MythicMobs
[22:41:10] [Server thread/INFO]: [ItemEdit] # Enabled (took 54 ms)
[22:41:10] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.30-SNAPSHOT (build 2924)
[22:41:10] [Server thread/INFO]: [Citizens] Loading external libraries
[22:41:11] [Server thread/INFO]: Creating file: saves.yml
[22:41:11] [Server thread/INFO]: Creating file: shops.yml
[22:41:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[22:41:11] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[22:41:11] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.16.5
[22:41:11] [Server thread/INFO]: [Shopkeepers] Citizens found: Enabling NPC shopkeepers.
[22:41:11] [Server thread/INFO]: [Shopkeepers] Loading the data of 168 shopkeepers ...
[22:41:11] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v4.3.0
[22:41:11] [Server thread/INFO]: [ExcellentCrates] Powered by: NexEngine
[22:41:11] [Server thread/WARN]: [ExcellentCrates] ==================================
[22:41:11] [Server thread/WARN]: [ExcellentCrates] WARNING: You're running an outdated/deprecated server version (1.19.3)!
[22:41:11] [Server thread/WARN]: [ExcellentCrates] Support for this version will be dropped soon.
[22:41:11] [Server thread/WARN]: [ExcellentCrates] Please, upgrade your server to at least 1.19.4.
[22:41:11] [Server thread/WARN]: [ExcellentCrates] ==================================
[22:41:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: excellentcrates [4.3.0]
[22:41:11] [Server thread/INFO]: [ExcellentCrates] Using 'en' language.
[22:41:11] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[22:41:11] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@2c989dac
[22:41:11] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[22:41:11] [Server thread/WARN]: [ExcellentCrates] Data synchronization is useless for local databases (SQLite). It will be disabled.
[22:41:11] [Server thread/INFO]: [ExcellentCrates] Loaded 5 crate keys.
[22:41:11] [Server thread/INFO]: [ExcellentCrates] Loaded 4 rarities!
[22:41:11] [Server thread/INFO]: [ExcellentCrates] Loaded 6 crates.
[22:41:11] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[22:41:11] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 268 ms!
[22:41:11] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.26.3-SNAPSHOT
[22:41:11] [Server thread/INFO]: [ArmorStandTools] Enabling ArmorStandTools v4.4.4
[22:41:11] [Server thread/INFO]: [ArmorStandTools] PlotSquared plugin not found. Continuing without PlotSquared support.
[22:41:11] [Server thread/INFO]: [ArmorStandTools] WorldGuard plugin found. WorldGuard support enabled.
[22:41:11] [Server thread/INFO]: [BossLand] Enabling BossLand v0.7
[22:41:11] [Server thread/INFO]: [skRayFall] Enabling skRayFall v1.9.28
[22:41:11] [Server thread/INFO]: [skRayFall] Yay! You are running skRayFall 1.9.28!
[22:41:11] [Server thread/INFO]: [skRayFall] Nathan and Lewis <3 you.
[22:41:11] [Server thread/INFO]: [skRayFall] Cooking Bacon...
[22:41:11] [Server thread/INFO]: [skRayFall] Getting more bacon for the army of citizens...
[22:41:12] [Server thread/INFO]: [skRayFall] Got bacon for the EffectLib particle ninjas!
[22:41:12] [Server thread/INFO]: [skRayFall] No Votifier Found! *Checks oven for finished bacon*
[22:41:12] [Server thread/WARN]: [skRayFall] Unable to get bacon for the CoreProtect loggers [Unsupported API version (9)].
[22:41:12] [Server thread/INFO]: [skRayFall] Enabling general 1.8+ bacon!
[22:41:12] [Server thread/INFO]: [skRayFall] Getting the general 1.9+ bacon!
[22:41:12] [Server thread/INFO]: [skRayFall] Getting the extra special 1.17+ bacon!
[22:41:12] [Server thread/INFO]: [skRayFall] Bacon is ready!
[22:41:12] [Server thread/INFO]: [FunnyGuilds] Enabling FunnyGuilds v4.12.1-SNAPSHOT Snowdrop-f5e2ed7
[22:41:12] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[22:41:12] [Server thread/ERROR]: [FunnyGuilds] [STDERR] ERROR StatusLogger Log4j2 could not find a logging implementation. Please add log4j-core to the classpath. Using SimpleLogger to log to the console...
[22:41:12] [Server thread/WARN]: Nag author(s): '[FunnyGuilds Team]' of 'FunnyGuilds' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[22:41:12] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[22:41:13] [pool-59-thread-1/WARN]: [DiscordSRV] This build of DiscordSRV is ahead of master but behind develop. Update your development build!
[22:41:14] [Server thread/INFO]: [FunnyGuilds] Loaded users: 32262
[22:41:14] [Server thread/INFO]: [FunnyGuilds] Regions are disabled and thus - not loaded
[22:41:14] [Server thread/INFO]: [FunnyGuilds] Loaded guilds: 132
[22:41:14] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Found server G:BFSMC.PL - SKYBLOCK 1.20.1 WYSTARTOWAŁ!(780479015797784577)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:closed-11186(1135607338875756615)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-11194(1135957608117846166)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-11195(1135974368753745932)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-11197-sledzik2009(1136070635618054145)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-11198(1136094736185294858)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-11199-sledzik2009(1136103318159110325)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-11206-yt(1136367927621320816)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-1900-yakusovv(1135540796037267620)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:closed-1908(1136383895177265293)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:closed-2048(1135610710857097246)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-2049(1135613082060734615)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-2068(1136359625894146088)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-1200(1134863076408180856)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-1208(1135634643069182013)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-1214(1136477866826137751)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-2568-head(1136357711072727110)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-1096-kociak7331(1132102699400310826)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-1166-kociak7331(1133851293010632854)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-1175(1134105238840823881)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-1204(1134972748653928468)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-1216(1135305724092751883)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-1219(1135684485954945094)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-1242(1136038125890703451)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-1261-kociak7331(1136538612427673630)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-1264(1136622537619546162)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-1266(1136640085228519625)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:nie-usuwac(1136664950861987970)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-1270-xxmimiqxx(1136701989661708381)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-0933(1135183786661920788)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:❗┊ekonomia-chat(997627490270969866)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:❗┊ekonomia-helpop(829800831427412029)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⋙⋙⋙⋙⋙⋙⋙⋙(1003671160724135936)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:❗┊oneblock-chat(1000379181638623262)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:❗┊oneblock-helpop(1000382702656168026)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⋙⋙⋙⋙⋙⋙⋙⋙(1003670557453209600)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:❗┊survival-chat(1003671445991329943)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:❗┊survival-helpop(1003671481080881184)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⋙⋙⋙⋙⋙⋙⋙⋙(1003671281499115612)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:❗┊duels-chat(993919126458335262)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:❗┊duels-helpop(1000378398834700318)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:❗┊duels-anticheat(1133098295888203897)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⋙⋙⋙⋙⋙⋙⋙⋙(1003670887985336441)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:❗┊skyblock-chat(1003708338221109298)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:❗┊skyblock-helpop(1003671225261891654)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⋙⋙⋙⋙⋙⋙⋙⋙(1034250455443832832)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:❗┊boxpvp-chat(1034250531079733309)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:❗┊boxpvp-helpop(1034250633898897409)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:❗┊boxpvp-anticheat(1133098318893953175)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:☆┊witamy(780490683608858625)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:☆┊wzmacniacze(971395285488107540)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『📜』regulamin-minecraft(780490804585299968)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『📃』regulamin-discord(780490824529870870)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📄┊wzory(938445537441640509)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:❗┊support-skyblock(1005785206688587796)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:❗┊support-duels(1031623884484649000)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:❗┊support-ekonomia(822942462313103360)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:❗┊support-oneblock(1005784448580730880)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:❗┊support-discord(1005792336938274816)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:❗┊support-boxpvp(1000171055358414908)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:❗┊support-survival(1005784404238544896)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:❗┊rekrutacja(1134841127141380197)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📢┊ogłoszenia(787332983425204235)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📢┊update(832662889596321893)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📢┊usuwanie-działek(1093504725535694879)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎉┊giveaway(994197868019716166)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:👑┊informacje(968948948150657104)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📢┊wyniki(853635130681851924)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🏆┊wyniki-plebiscytu-roku(1061264345255923762)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🧚┊role(965366176840552498)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📃┊limity(983408552926404660)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🔥┊propozycje(863476207332360254)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🔥┊głosowanie(866977063725301820)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🔥┊propozycje-sv-bez-eko(1061628271978098738)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💭┊ogólny(920792543615127562)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💸┊sponsor-chat(1063426154767331369)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🌟┊evip-chat(1014448156232134686)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📃┊evip-info(971841270567809034)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📸┊minecraft-pic(869926016523575436)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📸┊random-pic(913612693968146453)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎥┊tiktok(967788295759204383)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎥┊media(874854290185941012)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎨┊art-room(913624608714932295)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎮┊gamingowy(913442764136546314)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🦴┊memy(821893540404527144)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎬┊filmowo(1119989645036486748)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🐶┊peciarnia(852527950573207572)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💲┊handel(856318944096944158)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💡┊eventy-graczy(1066756956469071962)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📃┊komendy(1120019564709826641)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💲┊zarobek(1120019594980106391)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:prace-techniczne(1120022258656755723)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🧚┊bump(839392876445564939)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🧚┊sterowanie(821895475451396126)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:✨┊ostatnia-litera(821894433401471026)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:✨┊free-games(989495185547345951)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:✨┊liczenie(821893742671429672)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🎵』muzyczka(821891570915475467)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:informacje(931330251357835335)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⋙⋙⋙⋙⋙⋙⋙⋙(1003659584826777600)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🧧┊regulamin-administracyjny(991660315248959508)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🔥┊informacje(1078770532088029265)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📢┊ogłoszenia-parafialne(871416009343528971)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📸┊sprawdzanie-poradnik(1005565054139256923)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⋙⋙⋙⋙⋙⋙⋙⋙(1003631634337251329)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🍁┊główny-administracyjny(1112051428920406157)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💘┊ogólny-administracyjny(1125104571203719238)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🩸┊offtopic-administracyjny(1112051309202391160)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🏠┊budowa(1063429522797637702)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⛔┊memiarnia-administracja(1126982818984108102)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🕌┊architekt(1081191135080362024)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🕌┊eventy(1119769403207204874)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🩸┊tematy(1117089926899564655)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⛔┊discord-kary(850350476192776202)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📛┊wanted(982931319635968010)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:❗┊wyjaśnione(880786859037450291)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🚫┊ogólnie-must-banned(1010621402912673923)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🛑┊omijanie-scany(1100140163440586843)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💻┊zgoda-na-reklamę(1076144587082575924)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📕┊przeniesione-rangi(1010682171356364870)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🪦┊brak-unbana(1084917809659793499)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:❌┊blacklista(1062065929963454575)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📃┊uprawnienia-rang(847426432523042816)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🩸┊rekrut(1134897746818637895)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📕┊pytania-rekrut(1134897803773087916)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🚀┊tiktok(1095094340457615432)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎥┊facebook(1048261413891735644)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📱┊instagram(1048261483282305044)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📃┊pomysły-propozycje(1101532049388622066)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📃┊propozycje-do-regulaminu(887362813360746526)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📃┊błędy-poprawki(850706051846504449)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📃┊poprawki-autocenzura(1100754344435011646)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📃┊propozycje-graczy(1089637227530829984)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:nowysb(1131280751569162280)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📢┊komendy-survival(1054123239896514640)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📢┊komendy-ekonomia(1054144025613053993)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📢┊komendy-oneblock(1054144105615216701)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📢┊komendy-skyblock(1054144152302006363)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📑┊boty(848364429543735346)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📑┊archiwum-ticketów(1063811758655017041)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📑┊logi-wszystkie(787341008761126912)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📑┊logi-wiadomości(1062515427823079424)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💘┊ogólny-administracyjny(1112051390697701406)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『💬』ogólne(780491547782414377)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『💬』ogólny(862452889368264704)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:podanie-nr-0006(1134848572467204207)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-0942(1136712461546946732)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-1271-head(1136715104583422092)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-1272(1136715896660971633)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-2570(1136729578728075315)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-1274(1136729982652129340)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-2072(1136732589445627914)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:closed-2571(1136746945113751665)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:closed-1218(1136748391557234739)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:closed-2073(1136751214395142144)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:closed-11218(1136753636538593281)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-1909(1136758183289946283)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:closed-11219(1136759769361829949)
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console channel ID was invalid, not forwarding console output
[22:41:14] [Server thread/INFO]: [FunnyGuilds] HolographicDisplays plugin could not be found, some features may not be available
[22:41:14] [Server thread/INFO]: [FunnyGuilds] WorldEdit plugin hook has been initialized!
[22:41:14] [Server thread/INFO]: [FunnyGuilds] DecentHolograms plugin hook has been initialized!
[22:41:14] [Server thread/INFO]: [FunnyGuilds] Vault plugin hook has been initialized!
[22:41:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: funnyguilds [4.12.1-SNAPSHOT Snowdrop-f5e2ed7]
[22:41:14] [Server thread/INFO]: [FunnyGuilds] PlaceholderAPI plugin hook has been initialized!
[22:41:14] [Server thread/INFO]: [FunnyGuilds] ~ Created by FunnyGuilds Team ~
[22:41:14] [Server thread/INFO]: [ItemTag] Enabling ItemTag v3.0.8
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[22:41:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[22:41:14] [Server thread/INFO]: [ItemTag] Hooking into PlaceholderApi
[22:41:14] [Server thread/INFO]: [ItemEdit] Hooked into PlaceHolderAPI:
[22:41:14] [Server thread/INFO]: [ItemEdit] placeholders:
[22:41:14] [Server thread/INFO]: [ItemEdit]   %itemtag_cooldown_<timeunit>_[cooldownid]%
[22:41:14] [Server thread/INFO]: [ItemEdit]     shows how much cooldown has selected cooldownid for player
[22:41:14] [Server thread/INFO]: [ItemEdit]     <timeunit> may be h, s or ms
[22:41:14] [Server thread/INFO]: [ItemEdit]     [cooldownid] for cooldown type, by default default
[22:41:14] [Server thread/INFO]: [ItemEdit]     example: %itemtag_cooldown_s_anid%
[22:41:14] [Server thread/INFO]: [ItemEdit]   %itemtag_handcooldown_<timeunit>%
[22:41:14] [Server thread/INFO]: [ItemEdit]     shows how much cooldown has player on the item in his hand
[22:41:14] [Server thread/INFO]: [ItemEdit]     <timeunit> may be h, s or ms
[22:41:14] [Server thread/INFO]: [ItemEdit]     example: %itemtag_handcooldown_s%
[22:41:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: itemtag [1.0]
[22:41:14] [Server thread/INFO]: [ItemTag] # Enabled (took 60 ms)
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] Enabling EconomyShopGUI-Premium
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: lang-pl.yml jest używany jako plik językowy.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Shops.yml został znaleziony!
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Sections.yml został znaleziony!
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Używana wersja minecraft - 1.19.3...
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [WARN]: Could not find the default economy type specified inside the config.yml such as 'd', trying to automatically find supported economy type...
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Detected Vault, initializing...
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Successfully hooked into Vault
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed loading '1' economy provider(s) for all 39 shop sections.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: W konfiguracji włączona jest kompatybilność z DEFAULT
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Używanie domyślnego pluginu spawnerów...
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Enabled PlaceholderAPI hook...
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Tryb debugowania jest włączony.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Aktualizacja ustawień sklepu...
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Tworzenie kopii zapasowych ze starego sections.yml, plik można znaleźć w folderze kopii zapasowych. Kopie znajdziesz w folderze EconomyShopGUI.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Dodawanie nowego sklepu pod nazwą Test5 do pliku sections.yml.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Dodawanie nowego sklepu pod nazwą Test1 do pliku sections.yml.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Dodawanie nowego sklepu pod nazwą Test2 do pliku sections.yml.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Dodawanie nowego sklepu pod nazwą Test3 do pliku sections.yml.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Dodawanie nowego sklepu pod nazwą Test4 do pliku sections.yml.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Dodawanie nowego sklepu pod nazwą Test6 do pliku sections.yml.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Dodawanie nowego sklepu pod nazwą Test7 do pliku sections.yml.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Dodawanie nowego sklepu pod nazwą Test8 do pliku sections.yml.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Dodawanie nowego sklepu pod nazwą Test9 do pliku sections.yml.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Dodawanie nowego sklepu pod nazwą Test10 do pliku sections.yml.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Dodawanie nowego sklepu pod nazwą Test12 do pliku sections.yml.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Dodawanie nowego sklepu pod nazwą Test13 do pliku sections.yml.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Dodawanie nowego sklepu pod nazwą Test14 do pliku sections.yml.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Dodawanie nowego sklepu pod nazwą Test16 do pliku sections.yml.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Dodawanie nowego sklepu pod nazwą Test17 do pliku sections.yml.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Loading item stock...
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Loading limited selling provider...
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Ładowanie wszystkich przedmiotów...
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [ERROR]: The place of shop Test17 in the main shop-inventory has automatically been changed to '10' because it was already used or could not be found.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [ERROR]: The place of shop Test9 in the main shop-inventory has automatically been changed to '11' because it was already used or could not be found.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [ERROR]: The place of shop Test13 in the main shop-inventory has automatically been changed to '12' because it was already used or could not be found.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [ERROR]: The place of shop Test8 in the main shop-inventory has automatically been changed to '13' because it was already used or could not be found.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [ERROR]: The place of shop Test14 in the main shop-inventory has automatically been changed to '14' because it was already used or could not be found.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [ERROR]: The place of shop Test7 in the main shop-inventory has automatically been changed to '15' because it was already used or could not be found.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [ERROR]: The place of shop Test6 in the main shop-inventory has automatically been changed to '16' because it was already used or could not be found.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [ERROR]: The place of shop Test16 in the main shop-inventory has automatically been changed to '19' because it was already used or could not be found.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [ERROR]: The place of shop Test5 in the main shop-inventory has automatically been changed to '20' because it was already used or could not be found.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [ERROR]: The place of shop Test4 in the main shop-inventory has automatically been changed to '21' because it was already used or could not be found.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [ERROR]: The place of shop Test10 in the main shop-inventory has automatically been changed to '23' because it was already used or could not be found.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [ERROR]: The place of shop Test3 in the main shop-inventory has automatically been changed to '24' because it was already used or could not be found.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [ERROR]: The place of shop Test2 in the main shop-inventory has automatically been changed to '25' because it was already used or could not be found.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [ERROR]: The place of shop Test12 in the main shop-inventory has automatically been changed to '28' because it was already used or could not be found.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [ERROR]: The place of shop Test1 in the main shop-inventory has automatically been changed to '29' because it was already used or could not be found.
[22:41:14] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Initialized - Took 159ms to complete
[22:41:14] [Server thread/INFO]: [zAuctionHouseV3] Enabling zAuctionHouseV3 v3.1.3.2
[22:41:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] === ENABLE START ===
[22:41:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Plugin Version V3.1.3.2
[22:41:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] /home/container/plugins/zAuctionHouseV3/config.json loaded successfully !
[22:41:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Loading of 0 price items
[22:41:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Loading of 1 tax items
[22:41:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Loaded 4 blacklist items
[22:41:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Loading the Budulec category with 762 materials
[22:41:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Loading the Mikstury category with 17 materials
[22:41:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Loading the Narzędzia category with 16 materials
[22:41:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Loading the Bronie category with 12 materials
[22:41:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: zauctionhouse [3.1.3.2]
[22:41:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Loading 3 inventories
[22:41:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Loading 0 commands
[22:41:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] /home/container/plugins/zAuctionHouseV3/items.json loaded successfully !
[22:41:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] === ENABLE DONE (71ms) ===
[22:41:15] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[22:41:15] [Server thread/INFO]: [Analyse] Loading modules..
[22:41:15] [Server thread/INFO]: [Analyse] 0 modules loaded.
[22:41:15] [Server thread/INFO]: Running delayed init tasks
[22:41:15] [Craft Scheduler Thread - 4 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] Checking for updates...
[22:41:15] [Craft Scheduler Thread - 10 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[22:41:15] [Craft Scheduler Thread - 16 - Essentials/INFO]: [Essentials] Pobieranie informacji o wersji…
[22:41:15] [Craft Scheduler Thread - 4 - 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.8, latest: 1.6.10)
===============================================================================

[22:41:15] [Craft Scheduler Thread - 10 - NoCraftPlus/INFO]: [NoCraftPlus] Up to date!
[22:41:15] [Craft Scheduler Thread - 13 - TabTPS/INFO]: [TabTPS] There is an update available for TabTPS!
[22:41:15] [Craft Scheduler Thread - 13 - TabTPS/INFO]: [TabTPS] This server is running version v1.3.17, which is 1 versions outdated.
[22:41:15] [Craft Scheduler Thread - 13 - TabTPS/INFO]: [TabTPS] Download the latest version, v1.3.18 from GitHub at the link below:
[22:41:15] [Craft Scheduler Thread - 13 - TabTPS/INFO]: [TabTPS] https://github.com/jpenilla/TabTPS/releases/tag/v1.3.18
[22:41:15] [Craft Scheduler Thread - 18 - OmegaVision/INFO]: [OmegaVision] You are already running the latest version
[22:41:15] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[22:41:15] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[22:41:15] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[22:41:15] [Craft Scheduler Thread - 4 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[22:41:15] [Craft Scheduler Thread - 10 - WGEF-Reborn/INFO]: [WGEF-Reborn] New update found: 2.6
[22:41:15] [Craft Scheduler Thread - 10 - WGEF-Reborn/INFO]: [WGEF-Reborn] download it at: https://www.spigotmc.org/resources/96894/
[22:41:15] [Server thread/INFO]: [JumpPads] CleanUp found no JumpPads to delete!
[22:41:15] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[22:41:15] [Craft Scheduler Thread - 18 - FastAsyncVoxelSniper/INFO]: [com.thevoxelbox.voxelsniper.VoxelSniperPlugin] An update for FastAsyncVoxelSniper is available.
[22:41:15] [Craft Scheduler Thread - 18 - FastAsyncVoxelSniper/INFO]: [com.thevoxelbox.voxelsniper.VoxelSniperPlugin] You are running version 2.8.0, the latest version is 2.9.3
[22:41:15] [Craft Scheduler Thread - 18 - FastAsyncVoxelSniper/INFO]: [com.thevoxelbox.voxelsniper.VoxelSniperPlugin] Update at https://dev.bukkit.org/projects/favs/
[22:41:15] [Craft Scheduler Thread - 4 - DecentHolograms/WARN]: [DecentHolograms] Failed to load hologram from file 'hologram_Przepalacz2.yml'!
[22:41:15] [Craft Scheduler Thread - 4 - DecentHolograms/WARN]: java.lang.NullPointerException: location is marked non-null but is null
[22:41:15] [Craft Scheduler Thread - 4 - DecentHolograms/WARN]:     at DecentHolograms-2.8.2.jar//eu.decentsoftware.holograms.api.holograms.objects.HologramObject.<init>(HologramObject.java:35)
[22:41:15] [Craft Scheduler Thread - 4 - DecentHolograms/WARN]:     at DecentHolograms-2.8.2.jar//eu.decentsoftware.holograms.api.holograms.objects.UpdatingHologramObject.<init>(UpdatingHologramObject.java:26)
[22:41:15] [Craft Scheduler Thread - 4 - DecentHolograms/WARN]:     at DecentHolograms-2.8.2.jar//eu.decentsoftware.holograms.api.holograms.Hologram.<init>(Hologram.java:286)
[22:41:15] [Craft Scheduler Thread - 4 - DecentHolograms/WARN]:     at DecentHolograms-2.8.2.jar//eu.decentsoftware.holograms.api.holograms.Hologram.fromFile(Hologram.java:120)
[22:41:15] [Craft Scheduler Thread - 4 - DecentHolograms/WARN]:     at DecentHolograms-2.8.2.jar//eu.decentsoftware.holograms.api.holograms.HologramManager.loadHolograms(HologramManager.java:295)
[22:41:15] [Craft Scheduler Thread - 4 - DecentHolograms/WARN]:     at DecentHolograms-2.8.2.jar//eu.decentsoftware.holograms.api.holograms.HologramManager.reload(HologramManager.java:167)
[22:41:15] [Craft Scheduler Thread - 4 - DecentHolograms/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftTask.run(CraftTask.java:101)
[22:41:15] [Craft Scheduler Thread - 4 - DecentHolograms/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[22:41:15] [Craft Scheduler Thread - 4 - DecentHolograms/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[22:41:15] [Craft Scheduler Thread - 4 - DecentHolograms/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
[22:41:15] [Craft Scheduler Thread - 4 - DecentHolograms/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
[22:41:15] [Craft Scheduler Thread - 4 - DecentHolograms/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[22:41:15] [Craft Scheduler Thread - 10 - ItemTag/INFO]: [ItemTag] New Update at https://spigotmc.org/resources/89634
[22:41:15] [Craft Scheduler Thread - 18 - ItemEdit/INFO]: [ItemEdit] New Update at https://spigotmc.org/resources/40993
[22:41:15] [Craft Scheduler Thread - 6 - DecentHolograms/INFO]: 
A newer version of DecentHolograms is available. Download it from: https://www.spigotmc.org/resources/96927/
[22:41:15] [Craft Scheduler Thread - 18 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[22:41:15] [Craft Scheduler Thread - 12 - Vault/INFO]: [Vault] Checking for Updates ... 
[22:41:15] [Craft Scheduler Thread - 12 - Vault/INFO]: [Vault] No new version available
[22:41:15] [Craft Scheduler Thread - 4 - DecentHolograms/INFO]: [DecentHolograms] Loaded 142 holograms!
[22:41:15] [Craft Scheduler Thread - 14 - LagAssist/INFO]: LagAssist » You are up to date with LagAssist.
[22:41:15] [Craft Scheduler Thread - 5 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[22:41:15] [Craft Scheduler Thread - 5 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] There are no updates available for plugin 'BlueSlimeCore'.
[22:41:15] [Craft Scheduler Thread - 11 - HeadDatabase/INFO]: [HeadDatabase] Successfully loaded 54519 heads!
[22:41:15] [User Authenticator #0/INFO]: UUID of player Joldan is 82de7ca4-a27f-368c-ac74-d017ab591ff2
[22:41:15] [Craft Scheduler Thread - 8 - FunnyGuilds/INFO]: 
[22:41:15] [Craft Scheduler Thread - 8 - FunnyGuilds/INFO]: -----------------------------------
[22:41:15] [Craft Scheduler Thread - 8 - FunnyGuilds/INFO]: Dostepna jest nowa wersja FunnyGuilds Nightly!
[22:41:15] [Craft Scheduler Thread - 8 - FunnyGuilds/INFO]: Obecna: 4.12.1-SNAPSHOT Snowdrop-f5e2ed7
[22:41:15] [Craft Scheduler Thread - 8 - FunnyGuilds/INFO]: Najnowsza: 4.12.1-SNAPSHOT Snowdrop
-0bc01da
[22:41:15] [Craft Scheduler Thread - 8 - FunnyGuilds/INFO]: GitHub: https://github.com/funnyguilds/funnyguilds
[22:41:15] [Craft Scheduler Thread - 8 - FunnyGuilds/INFO]: Discord: https://discord.com/invite/CYvyq3u
[22:41:15] [Craft Scheduler Thread - 8 - FunnyGuilds/INFO]: -----------------------------------
[22:41:15] [Craft Scheduler Thread - 8 - FunnyGuilds/INFO]: 
[22:41:15] [User Authenticator #4/INFO]: UUID of player 4AIR_ZIAK is 8e6ec4ce-0c74-480a-b93e-f37074e73b9b
[22:41:15] [User Authenticator #5/INFO]: UUID of player TheNeox is ec502d4f-11bd-4da7-8ae7-e751ef6247f8
[22:41:15] [User Authenticator #1/INFO]: UUID of player Joldan is 82de7ca4-a27f-368c-ac74-d017ab591ff2
[22:41:15] [User Authenticator #3/INFO]: UUID of player Mati123145 is c72ff56c-c8bf-4b91-964c-82f872f1df8e
[22:41:15] [User Authenticator #10/INFO]: UUID of player niko110_ is 81bfad4f-2878-4afe-ba41-c878a3209b0c
[22:41:15] [Craft Scheduler Thread - 16 - Essentials/WARN]: [Essentials] Twoja programistyczna wersja EssentialsX (25) jest nieaktualna!
[22:41:15] [Craft Scheduler Thread - 16 - Essentials/WARN]: [Essentials] Pobierz tutaj: https://essentialsx.net/downloads.html
[22:41:15] [Craft Scheduler Thread - 11 - HeadDatabase/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[22:41:15] [User Authenticator #9/INFO]: UUID of player niko110_ is 81bfad4f-2878-4afe-ba41-c878a3209b0c
[22:41:15] [User Authenticator #11/INFO]: UUID of player TheNeox is ec502d4f-11bd-4da7-8ae7-e751ef6247f8
[22:41:15] [User Authenticator #6/INFO]: UUID of player diaxowy12 is 5bc4f6e1-d835-430a-ab02-4dd01c7a390a
[22:41:15] [Craft Scheduler Thread - 20 - zAuctionHouseV3/INFO]: [zAuctionHouseV3 v3.1.3.2] New update available. Your version: 3.1.3.2, latest version: 3.1.3.5
[22:41:15] [Craft Scheduler Thread - 20 - zAuctionHouseV3/INFO]: [zAuctionHouseV3 v3.1.3.2] Download plugin here: https://groupez.dev/resources/1
[22:41:15] [User Authenticator #2/INFO]: UUID of player niko110_ is 81bfad4f-2878-4afe-ba41-c878a3209b0c
[22:41:15] [User Authenticator #7/INFO]: UUID of player snajperkauwupro is 78058572-634d-48d4-ae40-80c6667bc2f3
[22:41:15] [User Authenticator #8/INFO]: UUID of player snajperkauwupro is 78058572-634d-48d4-ae40-80c6667bc2f3
[22:41:15] [Server thread/INFO]: [Skript] Line 46: (sprawdz_2.sk)
[22:41:15] [Server thread/INFO]:     A command with the name /sprawdz is already defined in sprawdz.sk
[22:41:15] [Server thread/INFO]:     Line: command /sprawdz [<text>] [<player>]:
[22:41:15] [Server thread/INFO]:  
[22:41:15] [Server thread/INFO]: [Skript] Loaded 9 scripts with a total of 51 structures in 0.42 seconds
[22:41:15] [Server thread/INFO]: [Skript] Finished loading.
[22:41:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: discordsrv [1.26.3-SNAPSHOT]
[22:41:15] [Server thread/INFO]: [ChatSentry] Found and loaded 1768 registered server commands.
[22:41:15] [Server thread/INFO]: [ChatSentry] Cached ~212 variables and settings across 21 files.
[22:41:15] [Server thread/INFO]: [ChatSentry] Data caching complete.
[22:41:15] [Server thread/INFO]: [ChatSentry] Initalized modules.
[22:41:15] [Server thread/INFO]: [ChatSentry] Startup finished!
[22:41:15] [Server thread/INFO]: [ChatSentry] Automatically cleaning log data older than 30 day(s).
[22:41:15] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'PlayerLocationsInRadius{r=50}': Failed to load custom targeter PLAYERLOCATIONSINRADIUS
[22:41:15] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[22:41:15] [Server thread/WARN]: [MythicMobs] --| Skill: DarkElfPushBack | File: /home/container/plugins/MythicMobs/Skills/DarkElfSkills.yml
[22:41:15] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic EFFECT:PARTICLERINGPARTICLE=BLOCKCRACK;MATERIAL=NETHER_BRICKS;RADIUS=2;POINTS=15;AMOUNT=200;HS=1;VS=21
[22:41:15] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: effect:particleringparticle=BLOCKCRACK;material=NETHER_BRICKS;radius=2;points=15;amount=200;hS=1;vS=21
[22:41:15] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop DestructorDrops
[22:41:15] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Mobs/Destruktor.yml
[22:41:15] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[22:41:15] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop MiniDestructorDrops
[22:41:15] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Mobs/Destruktor.yml
[22:41:15] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[22:41:15] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop SurturDrops
[22:41:15] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Mobs/SurturPackMobs.yml
[22:41:15] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[22:41:15] [Server thread/INFO]: [CataMines] Loading mines from files...
[22:41:16] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_19_R2.PaperweightStarlightRelighterFactory as relighter factory.
[22:41:16] [Server thread/INFO]: [CataMines] Starting mines and registering commands. Running version 2.5.11
[22:41:16] [Server thread/INFO]: [CataMines] Registering listeners
[22:41:16] [Server thread/INFO]: [Citizens] Loaded 0 NPCs.
[22:41:16] [Server thread/WARN]: [Citizens] Task #160 for Citizens v2.0.30-SNAPSHOT (build 2924) generated an exception
java.lang.NumberFormatException: For input string: "1hr"
    at java.lang.NumberFormatException.forInputString(NumberFormatException.java:67) ~[?:?]
    at java.lang.Integer.parseInt(Integer.java:668) ~[?:?]
    at java.lang.Integer.parseInt(Integer.java:786) ~[?:?]
    at net.citizensnpcs.Settings$Setting.asInt(Settings.java:207) ~[Citizens-2.0.30-b2924.jar:?]
    at net.citizensnpcs.Citizens$CitizensLoadTask.run(Citizens.java:611) ~[Citizens-2.0.30-b2924.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.19.3.jar:git-Paper-448]
    at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1114) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-448]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[22:41:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[22:41:16] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playerstats due to a missing plugin: PlayerStats
[22:41:16] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion Statz due to a missing plugin: Statz
[22:41:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: luckperms [5.4-R2]
[22:41:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: servertime [3.2]
[22:41:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: essentials [1.5.2]
[22:41:16] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playertime due to a missing plugin: PlayerTime
[22:41:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.4]
[22:41:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.6.2]
[22:41:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.8.1]
[22:41:16] [Server thread/INFO]: 7 placeholder hook(s) registered! 1 placeholder hook(s) have an update available.
[22:41:16] [Server thread/INFO]: [ChatSentry Updater] You are running an outdated version of ChatSentry. Version 5.3.9 hotfix #2 is available; you're on 5.3.8! Download at https://chatsentry.xyz/update
[22:41:16] [Server thread/WARN]: [ViaVersion] You are running a development version of the plugin, please report any bugs to GitHub.
[22:41:16] [Server thread/INFO]: [Skript] Loading variables...
[22:41:16] [Server thread/INFO]: [Skript] Loaded 587 variables in 0.0 seconds
[22:41:16] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Enabled HeadDatabase hook...
[22:41:16] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Loading inventories in progress...
[22:41:16] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Successful loading of the inventory auction !
[22:41:16] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Successful loading of the inventory buyconfirm !
[22:41:16] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Successful loading of the inventory removeconfirm !
[22:41:16] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Successful loading of the inventory expire !
[22:41:16] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Successful loading of the inventory buying !
[22:41:16] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Successful loading of the inventory items !
[22:41:16] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Successful loading of the inventory categories !
[22:41:16] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Successful loading of the inventory sell !
[22:41:16] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Successful loading of the inventory sellshow !
[22:41:16] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Successful loading of the inventory category !
[22:41:16] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Successful loading of the inventory adminremove !
[22:41:16] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Successful loading of the inventory search !
[22:41:16] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Successful loading of the inventory show !
[22:41:16] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Inventories loading complete.
[22:41:16] [Server thread/INFO]: Done (50.616s)! For help, type "help"
[22:41:16] [Server thread/INFO]: Timings Reset
[22:41:16] [Server thread/INFO]: com.mojang.authlib.GameProfile@43a61f2a[id=82de7ca4-a27f-368c-ac74-d017ab591ff2,name=Joldan,properties={textures=[com.mojang.authlib.properties.Property@701b66b5], realUUID=[com.mojang.authlib.properties.Property@2dfbf102], goxyData=[com.mojang.authlib.properties.Property@5dc675db], previousServer=[com.mojang.authlib.properties.Property@204b6741]},legacy=false] (/91.246.215.141:44291) lost connection: Disconnected
[22:41:16] [Server thread/INFO]: com.mojang.authlib.GameProfile@2a30ad09[id=c72ff56c-c8bf-4b91-964c-82f872f1df8e,name=Mati123145,properties={textures=[com.mojang.authlib.properties.Property@524d47e8], realUUID=[com.mojang.authlib.properties.Property@235b4541], goxyData=[com.mojang.authlib.properties.Property@7069ef1f], previousServer=[com.mojang.authlib.properties.Property@6e49113a]},legacy=false] (/176.106.35.109:46699) lost connection: Disconnected
[22:41:16] [Server thread/INFO]: com.mojang.authlib.GameProfile@5b328dec[id=82de7ca4-a27f-368c-ac74-d017ab591ff2,name=Joldan,properties={textures=[com.mojang.authlib.properties.Property@67473248], realUUID=[com.mojang.authlib.properties.Property@3c00cbf2], goxyData=[com.mojang.authlib.properties.Property@3b02f78], previousServer=[com.mojang.authlib.properties.Property@70865f6f]},legacy=false] (/91.246.215.141:48273) lost connection: Disconnected
[22:41:16] [Server thread/INFO]: com.mojang.authlib.GameProfile@1011fe4b[id=81bfad4f-2878-4afe-ba41-c878a3209b0c,name=niko110_,properties={textures=[com.mojang.authlib.properties.Property@7b46e4f9], realUUID=[com.mojang.authlib.properties.Property@3f4c1336], goxyData=[com.mojang.authlib.properties.Property@7e4048fc], previousServer=[com.mojang.authlib.properties.Property@6091da64]},legacy=false] (/94.101.20.86:45707) lost connection: Disconnected
[22:41:16] [Server thread/INFO]: com.mojang.authlib.GameProfile@5d44fc1[id=8e6ec4ce-0c74-480a-b93e-f37074e73b9b,name=4AIR_ZIAK,properties={textures=[com.mojang.authlib.properties.Property@1622200a], realUUID=[com.mojang.authlib.properties.Property@50e13626], goxyData=[com.mojang.authlib.properties.Property@29d7bcd3], previousServer=[com.mojang.authlib.properties.Property@a839ed8]},legacy=false] (/37.221.101.238:55217) lost connection: Disconnected
[22:41:16] [Server thread/INFO]: com.mojang.authlib.GameProfile@2aa3e297[id=ec502d4f-11bd-4da7-8ae7-e751ef6247f8,name=TheNeox,properties={textures=[com.mojang.authlib.properties.Property@153b0e9], realUUID=[com.mojang.authlib.properties.Property@73079af4], premium=[com.mojang.authlib.properties.Property@67006456], goxyData=[com.mojang.authlib.properties.Property@3e82f8af], previousServer=[com.mojang.authlib.properties.Property@22cac36e]},legacy=false] (/95.91.193.190:57133) lost connection: Disconnected
[22:41:16] [Craft Scheduler Thread - 21 - HeadDatabase/WARN]: [HeadDatabase] You are using an outdated version!
[22:41:16] [Craft Scheduler Thread - 21 - HeadDatabase/WARN]: [HeadDatabase] Latest version: 4.17.3. You are on version: 4.17.0.
[22:41:16] [Craft Scheduler Thread - 21 - HeadDatabase/WARN]: [HeadDatabase] Update here: https://www.spigotmc.org/resources/head-database.14280/
[22:41:16] [Server thread/INFO]: [goxy] Player niko110_ joins with id 81bfad4f-2878-4afe-ba41-c878a3209b0c (ec75b8d9-3135-3e48-8378-455835e2a424) and premium: false
[22:41:16] [Server thread/INFO]: [Polar] Pledge patched
[22:41:16] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[22:41:16] [Thread-37/INFO]: --------------------
[22:41:16] [Thread-37/INFO]: [CoreProtect] Version 22.0 is now available.
[22:41:16] [Thread-37/INFO]: [CoreProtect] Download: www.coreprotect.net/download/
[22:41:16] [Thread-37/INFO]: --------------------
[22:41:17] [Server thread/INFO]: niko110_[/94.101.20.86:55101] logged in with entity id 848 at ([world]521.8239180312432, 36.0, -187.05553204992952)
[22:41:17] [Server thread/INFO]: com.mojang.authlib.GameProfile@13b3e1dd[id=5bc4f6e1-d835-430a-ab02-4dd01c7a390a,name=diaxowy12,properties={textures=[com.mojang.authlib.properties.Property@3ea3ff8c], realUUID=[com.mojang.authlib.properties.Property@582d8e6a], premium=[com.mojang.authlib.properties.Property@5dc27ff], goxyData=[com.mojang.authlib.properties.Property@782e252d], previousServer=[com.mojang.authlib.properties.Property@5950fa3b]},legacy=false] (/178.235.178.241:55523) lost connection: Disconnected
[22:41:17] [Server thread/INFO]: [goxy] Player snajperkauwupro joins with id 78058572-634d-48d4-ae40-80c6667bc2f3 (8fc64955-7c46-3d58-af81-2bd4bb56b0d7) and premium: false
[22:41:17] [Server thread/INFO]: [Polar] Pledge patched
[22:41:17] [Server thread/INFO]: snajperkauwupro[/79.163.174.1:48807] logged in with entity id 849 at ([world]633.8330523256274, 116.45535955103678, -1167.9318832604688)
[22:41:17] [Server thread/INFO]: com.mojang.authlib.GameProfile@34dc0607[id=78058572-634d-48d4-ae40-80c6667bc2f3,name=snajperkauwupro,properties={textures=[com.mojang.authlib.properties.Property@3ddcca2e], realUUID=[com.mojang.authlib.properties.Property@51349665], goxyData=[com.mojang.authlib.properties.Property@1e7a99ea], previousServer=[com.mojang.authlib.properties.Property@62c4a89f]},legacy=false] (/79.163.174.1:35853) lost connection: Disconnected
[22:41:17] [Server thread/INFO]: com.mojang.authlib.GameProfile@7d9d39b7[id=81bfad4f-2878-4afe-ba41-c878a3209b0c,name=niko110_,properties={textures=[com.mojang.authlib.properties.Property@7b53c9ef], realUUID=[com.mojang.authlib.properties.Property@592f58e1], goxyData=[com.mojang.authlib.properties.Property@1ab6b79a], previousServer=[com.mojang.authlib.properties.Property@1a64f807]},legacy=false] (/94.101.20.86:44739) lost connection: Disconnected
[22:41:17] [Server thread/INFO]: [goxy] Player TheNeox joins with id ec502d4f-11bd-4da7-8ae7-e751ef6247f8 (ec502d4f-11bd-4da7-8ae7-e751ef6247f8) and premium: true
[22:41:17] [Server thread/INFO]: [Polar] Pledge patched
[22:41:18] [Server thread/INFO]: [DiscordSRV] Player TheNeox joined with silent joining permission, not sending a join message
[22:41:18] [Server thread/INFO]: TheNeox[/95.91.193.190:39837] logged in with entity id 850 at ([world]491.88985421311907, 79.61309072751794, -139.33664299481018)
[22:41:18] [Server thread/INFO]: +niko110_
[22:41:18] [Server thread/INFO]: +snajperkauwupro
[22:41:18] [User Authenticator #8/INFO]: UUID of player KrzysKlockiLego is 3685ae44-185a-4625-bcf5-c7e6683f66ff
[22:41:19] [Server thread/INFO]: [goxy] Player KrzysKlockiLego joins with id 3685ae44-185a-4625-bcf5-c7e6683f66ff (2093ebd4-3e87-43a9-85a6-75a0278465a1) and premium: true
[22:41:19] [Server thread/INFO]: [Polar] Pledge patched
[22:41:19] [User Authenticator #8/INFO]: UUID of player diaxowy12 is 5bc4f6e1-d835-430a-ab02-4dd01c7a390a
[22:41:19] [Server thread/INFO]: KrzysKlockiLego[/80.238.108.60:40891] logged in with entity id 894 at ([world]495.45341155843164, 38.0, -196.5802811481173)
[22:41:19] [Server thread/INFO]: +KrzysKlockiLego
[22:41:19] [Server thread/INFO]: [goxy] Player diaxowy12 joins with id 5bc4f6e1-d835-430a-ab02-4dd01c7a390a (5bc4f6e1-d835-430a-ab02-4dd01c7a390a) and premium: true
[22:41:19] [Server thread/INFO]: [Polar] Pledge patched
[22:41:19] [Server thread/INFO]: diaxowy12[/178.235.178.241:60403] logged in with entity id 895 at ([world]513.014116833651, 35.34289836523498, -188.87077671055934)
[22:41:20] [Server thread/ERROR]: [LibsDisguises] !! May I have your attention please !!
[22:41:20] [Server thread/ERROR]: [LibsDisguises] An update for ProtocolLib has been downloaded and will be installed when the server restarts. When possible, please restart the server. Lib's Disguises may not work correctly until you do so.
[22:41:20] [Server thread/ERROR]: [LibsDisguises] This message is on repeat due to the sheer number of people who don't see this.
[22:41:20] [Server thread/ERROR]: [LibsDisguises] !! May I have your attention please !!
[22:41:20] [reloc.reactor-tcp-nio-2/INFO]: [Polar] Established connection to cloud
[22:41:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: christmaspresents [0.1.2]
[22:41:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ultimateautorestart [Build 52b]
[22:41:21] [Server thread/INFO]: [UltimateAutoRestart] Hooked into PlaceholderAPI!
[22:41:21] [Server thread/INFO]: [UltimateAutoRestart] Successfully performed 1 hooks!
[22:41:21] [reloc.reactor-tcp-nio-2/INFO]: [Polar] Successfully authenticated in Polar Cloud System
[22:41:22] [Server thread/INFO]: TheNeox issued server command: /citizens
[22:41:23] [Server thread/INFO]: snajperkauwupro issued server command: /warp pvp
[22:41:28] [Server thread/INFO]: snajperkauwupro issued server command: /warp pvp
[22:41:34] [Server thread/WARN]: snajperkauwupro moved too quickly! 220.51575487916233,75.0,-977.1480240751084
[22:41:35] [User Authenticator #8/INFO]: UUID of player 4AIR_ZIAK is 8e6ec4ce-0c74-480a-b93e-f37074e73b9b
[22:41:35] [Server thread/INFO]: [goxy] Player 4AIR_ZIAK joins with id 8e6ec4ce-0c74-480a-b93e-f37074e73b9b (af2c791d-de29-38d3-b655-02f6dd73b5da) and premium: false
[22:41:35] [Server thread/INFO]: [Polar] Pledge patched
[22:41:35] [Server thread/INFO]: 4AIR_ZIAK[/37.221.101.238:41789] logged in with entity id 1051 at ([world]727.3211945206464, 110.0, -1172.1757114478282)
[22:41:35] [Server thread/INFO]: +4AIR_ZIAK
[22:41:38] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R2! Trying to find NMS support
[22:41:38] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R2' loaded!
[22:41:38] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[22:41:38] [Thread-52/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package com.badbones69.crazyvouchers.de.tr7zw.changeme.nbtapi' seems to be outdated!
[22:41:38] [Thread-52/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.11.2' Newest Version: 2.11.3'
[22:41:38] [Thread-52/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)!
[22:41:39] [Server thread/INFO]: snajperkauwupro issued server command: /kit
[22:41:43] [User Authenticator #8/INFO]: UUID of player Joldan is 82de7ca4-a27f-368c-ac74-d017ab591ff2
[22:41:43] [Server thread/INFO]: [goxy] Player Joldan joins with id 82de7ca4-a27f-368c-ac74-d017ab591ff2 (5f6e4580-7fbb-4d9a-84d2-7f1910c3d6ff) and premium: false
[22:41:43] [Server thread/INFO]: [Polar] Pledge patched
[22:41:43] [Server thread/INFO]: Joldan[/91.246.215.141:43069] logged in with entity id 1070 at ([world]583.0099309718128, 82.0, -1167.4005436135678)
[22:41:43] [Server thread/INFO]: +Joldan
[22:41:44] [Craft Scheduler Thread - 26 - DiscordSRV/ERROR]: [DiscordSRV] Your AvatarUrl config option does not contain the {username} placeholder even though this server is using offline UUIDs.
[22:41:44] [Craft Scheduler Thread - 26 - DiscordSRV/ERROR]: [DiscordSRV] https://cravatar.eu/helmavatar/{username}/{size}.png#{texture} will be used because the default value does not support offline mode servers
[22:41:44] [Craft Scheduler Thread - 26 - DiscordSRV/ERROR]: [DiscordSRV] You should set your AvatarUrl (in config.yml) to https://cravatar.eu/helmavatar/{username}/{size}.png#{texture} (or another url that supports usernames) to get rid of this error
[22:41:46] [User Authenticator #8/INFO]: [ExcellentCrates] Created new user data for: '21e02153-5a48-4898-8447-09b055cf800a'
[22:41:46] [User Authenticator #8/INFO]: UUID of player onetricksimon is 21e02153-5a48-4898-8447-09b055cf800a
[22:41:46] [Server thread/INFO]: [goxy] Player onetricksimon joins with id 21e02153-5a48-4898-8447-09b055cf800a (e209ef85-5ba0-40a1-bbb3-fb6cd679351a) and premium: true
[22:41:46] [Server thread/INFO]: [Polar] Pledge patched
[22:41:47] [Server thread/INFO]: onetricksimon[/77.222.232.37:41191] logged in with entity id 1093 at ([world]8.5, -60.0, -6.5)
[22:41:47] [Server thread/INFO]: +onetricksimon
[22:41:47] [Server thread/INFO]: onetricksimon has reached the goal [Sky's the Limit]
[22:41:48] [Server thread/INFO]: Joldan issued server command: /kit
[22:41:51] [Server thread/INFO]: Given x1 of Czas key(s) to Joldan.
[22:41:55] [Server thread/INFO]: Joldan issued server command: /kit
[22:42:02] [Server thread/INFO]: snajperkauwupro issued server command: /msg 4AIR_ZIAK dobra jak zaspiewa to mu daj jprl
[22:42:10] [Server thread/INFO]: onetricksimon issued server command: /warp
[22:42:16] [Server thread/INFO]: onetricksimon issued server command: /warp pvp
[22:42:16] [Server thread/INFO]: diaxowy12 issued server command: /gm 1
[22:42:18] [Server thread/INFO]: TheNeox issued server command: /v
[22:42:22] [Server thread/WARN]: onetricksimon moved too quickly! 188.94936081160768,77.0,-979.471067592902
[22:42:24] [Server thread/INFO]: Joldan has made the advancement [Diamonds!]
[22:42:45] [Server thread/INFO]: niko110_ lost connection: Disconnected
[22:42:45] [Server thread/INFO]: -niko110_
[22:42:53] [Server thread/WARN]: Joldan moved too quickly! 222.7181122404046,61.69511043814361,-1053.756902007496
[22:42:59] [Server thread/INFO]: onetricksimon issued server command: /kit
[22:43:09] [Server thread/INFO]: 4AIR_ZIAK issued server command: /r i tak mu nie oddam
[22:43:16] [Server thread/INFO]: 4AIR_ZIAK issued server command: /r hahaha
[22:43:17] [Server thread/INFO]: COMBAT snajperkauwupro has made the advancement [Hidden in the Depths]
[22:43:53] [Server thread/INFO]: Joldan lost connection: Disconnected
[22:43:53] [Server thread/INFO]: -Joldan
[22:44:16] [Server thread/WARN]: KrzysKlockiLego moved too quickly! 223.49419277242828,76.32324072493576,-1054.1882371968682
[22:44:29] [User Authenticator #12/INFO]: UUID of player Mati123145 is c72ff56c-c8bf-4b91-964c-82f872f1df8e
[22:44:29] [Server thread/INFO]: [goxy] Player Mati123145 joins with id c72ff56c-c8bf-4b91-964c-82f872f1df8e (eabf43ac-d276-34f5-bca5-6175bb2f942a) and premium: false
[22:44:29] [Server thread/INFO]: [Polar] Pledge patched
[22:44:30] [Server thread/ERROR]: Could not pass event PlayerJoinEvent to skRayFall v1.9.28
java.util.ConcurrentModificationException: null
    at java.util.HashMap$HashIterator.nextNode(HashMap.java:1597) ~[?:?]
    at java.util.HashMap$ValueIterator.next(HashMap.java:1625) ~[?:?]
    at org.bukkit.craftbukkit.v1_19_R2.scoreboard.CraftScoreboardManager.setPlayerBoard(CraftScoreboardManager.java:101) ~[paper-1.19.3.jar:git-Paper-448]
    at org.bukkit.craftbukkit.v1_19_R2.entity.CraftPlayer.setScoreboard(CraftPlayer.java:2332) ~[paper-1.19.3.jar:git-Paper-448]
    at net.rayfall.eyesniper2.skrayfall.Core.onJoinScoreboards(Core.java:151) ~[skRayFall+v1.9.28 (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor680.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:git-Paper-448]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.19.3.jar:git-Paper-448]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[paper-1.19.3.jar:git-Paper-448]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.players.PlayerList.placeNewPlayer(PlayerList.java:319) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.network.ServerLoginPacketListenerImpl.placeNewPlayer(ServerLoginPacketListenerImpl.java:202) ~[?:?]
    at net.minecraft.server.network.ServerLoginPacketListenerImpl.handleAcceptedLogin(ServerLoginPacketListenerImpl.java:183) ~[?:?]
    at net.minecraft.server.network.ServerLoginPacketListenerImpl.tick(ServerLoginPacketListenerImpl.java:85) ~[?:?]
    at net.minecraft.network.Connection.tick(Connection.java:585) ~[?:?]
    at net.minecraft.server.network.ServerConnectionListener.tick(ServerConnectionListener.java:233) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1565) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:447) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-448]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[22:44:30] [Server thread/INFO]: Mati123145[/176.106.35.109:42683] logged in with entity id 1352 at ([world]713.2754454057323, 113.0, -1174.7334917708192)
[22:44:30] [Server thread/INFO]: +Mati123145
[22:44:31] [luckperms-worker-4/INFO]: [LP] LOG > (Console@skyblock) [U] (7312)
[22:44:31] [luckperms-worker-4/INFO]: [LP] LOG > permission set essentials.joinfullserver true server-type=skyblock
[22:44:32] [Server thread/INFO]: snajperkauwupro issued server command: /msg 4AIR_ZIAK mi sie wydaje czy on placze?
[22:44:32] [Async Chat Thread - #1/INFO]:  1028 Gracz 4AIR_ZIAK » krzysiek daj rank
[22:44:34] [Server thread/INFO]: diaxowy12 issued server command: /tp TheNeox
[22:44:36] [Server thread/INFO]: onetricksimon issued server command: /kit
[22:44:37] [Server thread/INFO]: Given x1 of Czas key(s) to onetricksimon.
[22:44:39] [Server thread/INFO]: 4AIR_ZIAK issued server command: /r niewiem
[22:44:41] [Server thread/INFO]: onetricksimon issued server command: /kit
[22:44:53] [Server thread/INFO]: snajperkauwupro issued server command: /msg 4AIR_ZIAK dobra oddaj mu nie badz hujem
[22:44:58] [User Authenticator #12/INFO]: UUID of player Drakulsam is 969fc98f-b292-4a96-88a1-55835f808766
[22:44:58] [Server thread/INFO]: [goxy] Player Drakulsam joins with id 969fc98f-b292-4a96-88a1-55835f808766 (969fc98f-b292-4a96-88a1-55835f808766) and premium: true
[22:44:58] [Server thread/INFO]: [Polar] Pledge patched
[22:44:58] [Server thread/INFO]: Drakulsam[/188.33.196.246:36471] logged in with entity id 1371 at ([world]717.1109843241463, 112.0, -1168.7390168358693)
[22:44:58] [Server thread/INFO]: +Drakulsam
[22:45:00] [Server thread/INFO]: 4AIR_ZIAK issued server command: /r bede chujem\
[22:45:03] [Server thread/INFO]: Drakulsam issued server command: /kits
[22:45:04] [Server thread/INFO]: Drakulsam issued server command: /kits
[22:45:07] [Server thread/INFO]: Drakulsam issued server command: /kits
[22:45:08] [Server thread/INFO]: Drakulsam issued server command: /kit
[22:45:08] [User Authenticator #12/INFO]: [ExcellentCrates] Created new user data for: '47f07225-3beb-4fdc-9843-41b7380ebfd7'
[22:45:08] [User Authenticator #12/INFO]: UUID of player fr_Fabx_fr is 47f07225-3beb-4fdc-9843-41b7380ebfd7
[22:45:08] [Server thread/INFO]: [goxy] Player fr_Fabx_fr joins with id 47f07225-3beb-4fdc-9843-41b7380ebfd7 (36f664a3-969c-3e77-9533-3e32499d3c67) and premium: false
[22:45:08] [Server thread/INFO]: [Polar] Pledge patched
[22:45:09] [Server thread/INFO]: fr_Fabx_fr[/37.30.2.7:54975] logged in with entity id 1377 at ([world]-5.5, -60.0, 0.5)
[22:45:09] [Server thread/INFO]: +fr_Fabx_fr
[22:45:09] [Server thread/INFO]: fr_Fabx_fr has reached the goal [Sky's the Limit]
[22:45:11] [Server thread/INFO]: Drakulsam issued server command: /kit
[22:45:14] [Server thread/INFO]: Drakulsam issued server command: /kit
[22:45:15] [Server thread/INFO]: Given x1 of Czas key(s) to Drakulsam.
[22:45:19] [Server thread/INFO]: diaxowy12 issued server command: /fly
[22:45:28] [Server thread/INFO]: Drakulsam issued server command: /spawn
[22:45:33] [Async Chat Thread - #2/INFO]:  1028 Gracz 4AIR_ZIAK » krzysiu daj rank
[22:45:34] [Server thread/WARN]: Drakulsam moved too quickly! -226.9162652951843,-75.0,977.5111908256351
[22:45:45] [Server thread/INFO]: fr_Fabx_fr issued server command: /rtp
[22:45:59] [Server thread/INFO]: onetricksimon issued server command: /spawn
[22:46:01] [Async Chat Thread - #3/INFO]:  1050 Gracz Drakulsam » kto idzie set 10 1vs1
[22:46:29] [Server thread/INFO]: fr_Fabx_fr lost connection: Disconnected
[22:46:29] [Server thread/INFO]: -fr_Fabx_fr
[22:46:36] [Server thread/INFO]: KrzysKlockiLego lost connection: Disconnected
[22:46:36] [Server thread/INFO]: -KrzysKlockiLego
[22:46:56] [Server thread/INFO]: Drakulsam issued server command: /spawn
[22:46:57] [Server thread/INFO]: onetricksimon issued server command: /sklep
[22:46:57] [Server thread/INFO]: onetricksimon [21e02153-5a48-4898-8447-09b055cf800a]: /sklep
[22:47:00] [Server thread/INFO]: onetricksimon issued server command: /shop
[22:47:02] [Server thread/WARN]: Drakulsam moved too quickly! 55.80000001192093,-33.0,979.1999999880791
[22:47:07] [User Authenticator #13/INFO]: UUID of player KrzysKlockiLego is 3685ae44-185a-4625-bcf5-c7e6683f66ff
[22:47:07] [Server thread/INFO]: [goxy] Player KrzysKlockiLego joins with id 3685ae44-185a-4625-bcf5-c7e6683f66ff (2093ebd4-3e87-43a9-85a6-75a0278465a1) and premium: true
[22:47:07] [Server thread/INFO]: [Polar] Pledge patched
[22:47:08] [Server thread/INFO]: KrzysKlockiLego[/80.238.108.60:60861] logged in with entity id 1457 at ([world]487.75742412391577, 37.0, -193.62028888536017)
[22:47:08] [Server thread/INFO]: +KrzysKlockiLego
[22:47:45] [Server thread/INFO]: onetricksimon issued server command: /warp pvp
[22:47:51] [Server thread/WARN]: onetricksimon moved too quickly! 210.55678465257552,76.9375,-974.3423148088864
[22:47:53] [Server thread/INFO]: KrzysKlockiLego lost connection: Disconnected
[22:47:53] [Server thread/INFO]: -KrzysKlockiLego
[22:47:53] [Server thread/INFO]: TheNeox issued server command: /up 1
[22:48:00] [Server thread/INFO]: TheNeox issued server command: /up 2
[22:48:21] [Server thread/INFO]: diaxowy12 issued server command: /up 2
[22:48:40] [Server thread/INFO]: TheNeox issued server command: /npc create Ah
[22:48:45] [Server thread/INFO]: TheNeox issued server command: /npc create 1 ah
[22:48:53] [Server thread/INFO]: onetricksimon issued server command: /ec
[22:48:56] [Server thread/INFO]: TheNeox issued server command: /npc create 1 1
[22:48:58] [Server thread/INFO]: TheNeox issued server command: /npc create 1 1 1
[22:48:59] [Server thread/INFO]: onetricksimon issued server command: /spawn
[22:49:00] [Server thread/INFO]: TheNeox issued server command: /npc create
[22:49:05] [Server thread/WARN]: onetricksimon moved too quickly! 13.863421948803534,-39.0,936.2629052088059
[22:49:07] [Server thread/INFO]: TheNeox issued server command: /npc create Ah
[22:49:10] [Server thread/INFO]: TheNeox issued server command: /npc create Ah 1
[22:49:12] [Server thread/WARN]: snajperkauwupro moved wrongly!
[22:49:26] [Server thread/INFO]: onetricksimon issued server command: /warp pvp
[22:49:32] [Server thread/WARN]: onetricksimon moved too quickly! 210.36385411212393,76.625,-975.7230783699931
[22:49:37] [Server thread/INFO]: Mati123145 issued server command: /kit
[22:49:38] [Server thread/WARN]: 4AIR_ZIAK moved wrongly!
[22:49:43] [Server thread/INFO]: diaxowy12 issued server command: /v
[22:50:15] [Server thread/WARN]: Drakulsam moved wrongly!
[22:50:19] [Server thread/INFO]: 
[22:50:24] [Server thread/INFO]: Drakulsam lost connection: Disconnected
[22:50:24] [Server thread/INFO]: -Drakulsam
[22:50:26] [Server thread/INFO]: TheNeox issued server command: /npc create test
[22:50:28] [Server thread/INFO]: TheNeox issued server command: /npc create 11111
[22:50:30] [Server thread/WARN]: onetricksimon moved wrongly!
[22:50:31] [Server thread/INFO]: TheNeox issued server command: /npc list
[22:50:36] [Server thread/INFO]: TheNeox issued server command: /npc2 create 212
[22:50:40] [Server thread/INFO]: TheNeox issued server command: /server boxowe
[22:50:40] [Server thread/INFO]: TheNeox lost connection: Disconnected
[22:50:40] [Server thread/INFO]: [DiscordSRV] Player TheNeox quit with silent quitting permission, not sending a quit message
[22:51:16] [Server thread/ERROR]: [LibsDisguises] !! May I have your attention please !!
[22:51:16] [Server thread/ERROR]: [LibsDisguises] An update for ProtocolLib has been downloaded and will be installed when the server restarts. When possible, please restart the server. Lib's Disguises may not work correctly until you do so.
[22:51:16] [Server thread/ERROR]: [LibsDisguises] This message is on repeat due to the sheer number of people who don't see this.
[22:51:16] [Server thread/ERROR]: [LibsDisguises] !! May I have your attention please !!
[22:51:21] [Server thread/INFO]: Mati123145 issued server command: /kit
[22:51:22] [Server thread/WARN]: snajperkauwupro moved wrongly!
[22:51:24] [User Authenticator #14/INFO]: UUID of player TheNeox is ec502d4f-11bd-4da7-8ae7-e751ef6247f8
[22:51:24] [Server thread/INFO]: [goxy] Player TheNeox joins with id ec502d4f-11bd-4da7-8ae7-e751ef6247f8 (ec502d4f-11bd-4da7-8ae7-e751ef6247f8) and premium: true
[22:51:24] [Server thread/INFO]: [Polar] Pledge patched
[22:51:25] [Server thread/INFO]: [DiscordSRV] Player TheNeox joined with silent joining permission, not sending a join message
[22:51:25] [Server thread/INFO]: TheNeox[/95.91.193.190:57757] logged in with entity id 1721 at ([world]487.5440377219995, 49.487697991632224, -200.9384247121273)
[22:51:26] [Server thread/INFO]: TheNeox issued server command: /npc create dd
[22:51:43] [Server thread/INFO]: 4AIR_ZIAK issued server command: /kit
[22:52:01] [Server thread/INFO]: diaxowy12 issued server command: /kosz
[22:52:01] [Server thread/INFO]: diaxowy12 [5bc4f6e1-d835-430a-ab02-4dd01c7a390a]: /kosz
[22:52:05] [Server thread/INFO]: diaxowy12 issued server command: /kit
[22:52:06] [Server thread/INFO]: Given x1 of Czas key(s) to diaxowy12.
[22:52:26] [User Authenticator #15/INFO]: UUID of player ThePakus is ecffd2a3-cff7-476a-80f9-0b767f38593a
[22:52:26] [Server thread/INFO]: [goxy] Player ThePakus joins with id ecffd2a3-cff7-476a-80f9-0b767f38593a (c4e057df-62fb-4645-9db7-5698be16405d) and premium: false
[22:52:26] [Server thread/INFO]: [Polar] Pledge patched
[22:52:27] [Server thread/INFO]: ThePakus[/185.175.106.196:42777] logged in with entity id 1820 at ([world]699.4012624025715, 113.96205116649998, -1172.9910447571929)
[22:52:27] [Server thread/INFO]: +ThePakus
[22:52:29] [Server thread/INFO]: snajperkauwupro issued server command: /spawn
[22:52:33] [Server thread/INFO]: [BossLand] 4AIR_ZIAK should have died.
[22:52:33] [Server thread/INFO]: 4AIR_ZIAK has reached the goal [Postmortal]
[22:52:39] [User Authenticator #15/INFO]: UUID of player murzynator2000 is 04c52ec6-a66f-4431-8677-88d7fc4a2c8a
[22:52:39] [Server thread/INFO]: [goxy] Player murzynator2000 joins with id 04c52ec6-a66f-4431-8677-88d7fc4a2c8a (04c52ec6-a66f-4431-8677-88d7fc4a2c8a) and premium: true
[22:52:39] [Server thread/INFO]: [Polar] Pledge patched
[22:52:40] [Server thread/INFO]: murzynator2000[/89.151.36.33:37197] logged in with entity id 1832 at ([world]-7.5, -60.0, 8.5)
[22:52:40] [Server thread/INFO]: +murzynator2000
[22:52:40] [Server thread/INFO]: murzynator2000 has reached the goal [Sky's the Limit]
[22:52:43] [Server thread/INFO]: diaxowy12 issued server command: /v
[22:52:44] [Server thread/INFO]: murzynator2000 issued server command: /hub
[22:52:45] [Server thread/WARN]: ThePakus moved wrongly!
[22:52:47] [Server thread/INFO]: murzynator2000 issued server command: /lobby
[22:52:47] [Server thread/INFO]: murzynator2000 [04c52ec6-a66f-4431-8677-88d7fc4a2c8a]: /lobby
[22:52:47] [Server thread/INFO]: murzynator2000 lost connection: Disconnected
[22:52:47] [Server thread/INFO]: -murzynator2000
[22:52:51] [Server thread/WARN]: ThePakus moved wrongly!
[22:53:16] [Server thread/INFO]: Mati123145 issued server command: /msg ThePakus zabijesz 4air_ziak zabijesz pli
[22:53:27] [Server thread/INFO]: onetricksimon has made the advancement [Hidden in the Depths]
[22:53:27] [Server thread/INFO]: onetricksimon has made the advancement [Diamonds!]
[22:53:31] [Server thread/INFO]: Mati123145 issued server command: /r pliss
[22:53:33] [Server thread/INFO]: snajperkauwupro issued server command: /warp pvp
[22:53:36] [User Authenticator #15/INFO]: UUID of player KrzysKlockiLego is 3685ae44-185a-4625-bcf5-c7e6683f66ff
[22:53:36] [Server thread/INFO]: [goxy] Player KrzysKlockiLego joins with id 3685ae44-185a-4625-bcf5-c7e6683f66ff (2093ebd4-3e87-43a9-85a6-75a0278465a1) and premium: true
[22:53:36] [Server thread/INFO]: [Polar] Pledge patched
[22:53:36] [Server thread/INFO]: KrzysKlockiLego[/80.238.108.60:40811] logged in with entity id 1927 at ([world]490.5, 37.0, -193.5)
[22:53:36] [Server thread/INFO]: +KrzysKlockiLego
[22:53:39] [Server thread/INFO]: ThePakus issued server command: /r gdzie on jest
[22:53:39] [Server thread/WARN]: snajperkauwupro moved too quickly! 220.18953615235984,75.5,-976.2242725785948
[22:53:44] [Server thread/INFO]: Mati123145 issued server command: /r spawn
[22:53:45] [Server thread/INFO]: snajperkauwupro issued server command: /kit
[22:53:46] [Async Chat Thread - #5/INFO]:  1043 Gracz 4AIR_ZIAK » nub
[22:53:53] [Server thread/INFO]: ThePakus issued server command: /r to jak mam go zabić
[22:54:02] [Server thread/INFO]: Mati123145 issued server command: /r jak zara wyleci
[22:54:07] [Server thread/INFO]: ThePakus issued server command: /r kk
[22:54:23] [Async Chat Thread - #4/INFO]:  1043 Gracz 4AIR_ZIAK » Pakus dasz itemy koledze?
[22:54:27] [Async Chat Thread - #5/INFO]: AZGG 1608 SPONSOR ThePakus » ?
[22:54:29] [Server thread/INFO]: snajperkauwupro lost connection: Invalid teleport state
[22:54:29] [Server thread/INFO]: -snajperkauwupro
[22:54:38] [Server thread/INFO]: onetricksimon issued server command: /spawn
[22:54:42] [Server thread/INFO]: Mati123145 issued server command: /r bo mnie wywaliło a on zebrał a nie chcą dać bakapa
[22:54:43] [Async Chat Thread - #4/INFO]: [ChatSentry Notifier] (Filter - Chat) 4AIR_ZIAK napisał: 'wyjebal' (Pełna wiadomość: 'bo sie wyjebal i itemow niema lag serwera byl')
[22:54:43] [Async Chat Thread - #4/INFO]:  1043 Gracz 4AIR_ZIAK » bo sie wy***** i itemow niema lag serwera byl
[22:54:45] [User Authenticator #16/INFO]: UUID of player snajperkauwupro is 78058572-634d-48d4-ae40-80c6667bc2f3
[22:54:45] [Server thread/INFO]: [goxy] Player snajperkauwupro joins with id 78058572-634d-48d4-ae40-80c6667bc2f3 (8fc64955-7c46-3d58-af81-2bd4bb56b0d7) and premium: false
[22:54:45] [Server thread/INFO]: [Polar] Pledge patched
[22:54:45] [Server thread/INFO]: snajperkauwupro[/79.163.174.1:58273] logged in with entity id 2002 at ([world]565.6059262257838, 76.0, -1149.281813195764)
[22:54:45] [Server thread/INFO]: +snajperkauwupro
[22:54:50] [Server thread/INFO]: ThePakus issued server command: /r mhm
[22:55:03] [Server thread/INFO]: ThePakus issued server command: /r jak wyjdzie to go zabije
[22:55:06] [Server thread/INFO]: ThePakus lost connection: Disconnected
[22:55:06] [Server thread/INFO]: -ThePakus
[22:55:22] [Server thread/INFO]: Mati123145 issued server command: /r a nawet pisało że rozłonczyło boxpvp
[22:55:40] [Server thread/INFO]: onetricksimon issued server command: /kit
[22:56:14] [Timer-1/INFO]: [zAuctionHouseV3 v3.1.3.2] /home/container/plugins/zAuctionHouseV3/items.json successfully saved !
[22:56:15] [Craft Scheduler Thread - 68 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 7 online users | 0 offline users.
[22:56:23] [Server thread/INFO]: 4AIR_ZIAK issued server command: /spawn
[22:56:30] [Server thread/WARN]: 4AIR_ZIAK moved too quickly! -191.04785225014564,-66.0,1118.1337714388455
[22:56:37] [Server thread/INFO]: 4AIR_ZIAK issued server command: /warp pvp
[22:56:44] [Server thread/WARN]: 4AIR_ZIAK moved too quickly! 227.13118928573107,75.0,-978.6085858149721
[22:56:54] [Server thread/INFO]: onetricksimon issued server command: /warp pvp
[22:57:00] [Server thread/WARN]: onetricksimon moved too quickly! 213.00052342686178,77.0,-977.3316897359064
[22:57:59] [Server thread/INFO]: 4AIR_ZIAK issued server command: /kit
[22:58:36] [Server thread/INFO]: 
[22:58:41] [Server thread/INFO]: onetricksimon issued server command: /kit
[22:58:55] [Server thread/INFO]: onetricksimon issued server command: /warp pvp
[22:59:07] [Server thread/INFO]: onetricksimon issued server command: /warp pvp
[22:59:13] [Server thread/WARN]: onetricksimon moved too quickly! 211.42669959667904,77.0,-961.6633125680894
[23:00:02] [Server thread/INFO]: 4AIR_ZIAK lost connection:  
 BFSMC.PL 
 Zostales wyrzucony! 
 Administrator: Console 
 Powod: Wyłącz wspomagacze
[23:00:02] [Server thread/INFO]: -4AIR_ZIAK
[23:00:02] [Server thread/INFO]:  >> 4AIR_ZIAK zostal wyrzucony.
[23:00:02] [Server thread/INFO]:  >> 4AIR_ZIAK zostal wyrzucony przez Console za 'Wyłącz wspomagacze'.
[23:00:02] [Server thread/WARN]: onetricksimon moved wrongly!
[23:00:24] [Server thread/INFO]: 
[23:00:29] [Server thread/INFO]: onetricksimon issued server command: /kit
[23:00:37] [Server thread/INFO]: onetricksimon issued server command: /warp
[23:00:51] [Server thread/INFO]: onetricksimon issued server command: /warp
[23:00:53] [Server thread/INFO]: onetricksimon issued server command: /warp pvp
[23:00:59] [Server thread/WARN]: onetricksimon moved too quickly! 183.58793263140853,77.0,-975.1061457653905
[23:01:00] [Server thread/INFO]: snajperkauwupro lost connection: Disconnected
[23:01:00] [Server thread/INFO]: -snajperkauwupro
[23:01:00] [User Authenticator #17/INFO]: [ExcellentCrates] Created new user data for: 'de299278-6e59-4dd7-95fb-cabdc7fdb71d'
[23:01:00] [User Authenticator #17/INFO]: UUID of player koodeina is de299278-6e59-4dd7-95fb-cabdc7fdb71d
[23:01:00] [Server thread/INFO]: [goxy] Player koodeina joins with id de299278-6e59-4dd7-95fb-cabdc7fdb71d (de299278-6e59-4dd7-95fb-cabdc7fdb71d) and premium: true
[23:01:00] [Server thread/INFO]: [Polar] Pledge patched
[23:01:01] [Server thread/INFO]: koodeina[/31.16.254.22:34747] logged in with entity id 2289 at ([world]1.5, -60.0, 1.5)
[23:01:01] [Server thread/INFO]: +koodeina
[23:01:01] [Server thread/INFO]: koodeina has reached the goal [Sky's the Limit]
[23:01:02] [Server thread/INFO]: TheNeox issued server command: /npc create test
[23:01:16] [Server thread/ERROR]: [LibsDisguises] !! May I have your attention please !!
[23:01:16] [Server thread/ERROR]: [LibsDisguises] An update for ProtocolLib has been downloaded and will be installed when the server restarts. When possible, please restart the server. Lib's Disguises may not work correctly until you do so.
[23:01:16] [Server thread/ERROR]: [LibsDisguises] This message is on repeat due to the sheer number of people who don't see this.
[23:01:16] [Server thread/ERROR]: [LibsDisguises] !! May I have your attention please !!
[23:01:29] [User Authenticator #17/INFO]: UUID of player 4AIR_ZIAK is 8e6ec4ce-0c74-480a-b93e-f37074e73b9b
[23:01:29] [Server thread/INFO]: [goxy] Player 4AIR_ZIAK joins with id 8e6ec4ce-0c74-480a-b93e-f37074e73b9b (af2c791d-de29-38d3-b655-02f6dd73b5da) and premium: false
[23:01:29] [Server thread/INFO]: [Polar] Pledge patched
[23:01:30] [Server thread/INFO]: 4AIR_ZIAK[/37.221.101.238:49713] logged in with entity id 2296 at ([world]715.4676802719603, 112.0, -1166.625800410464)
[23:01:30] [Server thread/INFO]: +4AIR_ZIAK
[23:01:32] [Server thread/INFO]: KrzysKlockiLego lost connection: Disconnected
[23:01:32] [Server thread/INFO]: -KrzysKlockiLego
[23:01:53] [Server thread/INFO]: TheNeox issued server command: /npc create --type --at
[23:01:56] [User Authenticator #17/INFO]: UUID of player KrzysKlockiLego is 3685ae44-185a-4625-bcf5-c7e6683f66ff
[23:01:56] [Server thread/INFO]: [goxy] Player KrzysKlockiLego joins with id 3685ae44-185a-4625-bcf5-c7e6683f66ff (2093ebd4-3e87-43a9-85a6-75a0278465a1) and premium: true
[23:01:56] [Server thread/INFO]: [Polar] Pledge patched
[23:01:56] [Server thread/INFO]: KrzysKlockiLego[/80.238.108.60:56523] logged in with entity id 2307 at ([world]773.5423795488093, 54.0, -191.67096880496428)
[23:01:56] [Server thread/INFO]: +KrzysKlockiLego
[23:02:01] [Server thread/INFO]: TheNeox issued server command: /npc create --type ALLAY
[23:02:03] [Server thread/INFO]: TheNeox issued server command: /npc create --type ALLAY swqeqe
[23:02:33] [Server thread/INFO]: koodeina issued server command: /warp
[23:02:36] [Server thread/INFO]: koodeina issued server command: /warps
[23:02:44] [Server thread/INFO]: koodeina issued server command: /warp pvp
[23:02:52] [Server thread/INFO]: 4AIR_ZIAK issued server command: /kit
[23:02:54] [Server thread/INFO]: KrzysKlockiLego lost connection: Disconnected
[23:02:54] [Server thread/INFO]: -KrzysKlockiLego
[23:03:06] [User Authenticator #18/INFO]: UUID of player KrzysKlockiLego is 3685ae44-185a-4625-bcf5-c7e6683f66ff
[23:03:06] [Server thread/INFO]: [goxy] Player KrzysKlockiLego joins with id 3685ae44-185a-4625-bcf5-c7e6683f66ff (2093ebd4-3e87-43a9-85a6-75a0278465a1) and premium: true
[23:03:06] [Server thread/INFO]: [Polar] Pledge patched
[23:03:07] [Server thread/INFO]: KrzysKlockiLego[/80.238.108.60:45483] logged in with entity id 2392 at ([world]789.2093802164525, 52.0, -189.273699621085)
[23:03:07] [Server thread/INFO]: +KrzysKlockiLego
[23:03:09] [Server thread/WARN]: onetricksimon moved wrongly!
[23:03:09] [Server thread/WARN]: onetricksimon moved wrongly!
[23:03:09] [Server thread/WARN]: onetricksimon moved wrongly!
[23:03:23] [Server thread/INFO]: onetricksimon has made the advancement [Monster Hunter]
[23:03:33] [Server thread/INFO]: 4AIR_ZIAK issued server command: /kit
[23:03:35] [Server thread/INFO]: Given x1 of Czas key(s) to 4AIR_ZIAK.
[23:03:57] [Server thread/INFO]: 4AIR_ZIAK issued server command: /sklep
[23:03:57] [Server thread/INFO]: 4AIR_ZIAK [8e6ec4ce-0c74-480a-b93e-f37074e73b9b]: /sklep
[23:04:04] [Server thread/INFO]: 4AIR_ZIAK issued server command: /spawn
[23:04:06] [Server thread/INFO]: Mati123145 issued server command: /pay 4AIR_ZIAK 1000
[23:04:11] [Server thread/INFO]: Mati123145 issued server command: /ah
[23:04:11] [Craft Scheduler Thread - 86 - zAuctionHouseV3/INFO]: [zAuctionHouseV3 v3.1.3.2] x3 Raw gold block, item of Nateko1, has just expired, the item is definitively deleted.
[23:04:11] [Server thread/INFO]: 4AIR_ZIAK issued server command: /sklep
[23:04:11] [Server thread/INFO]: 4AIR_ZIAK [8e6ec4ce-0c74-480a-b93e-f37074e73b9b]: /sklep
[23:04:18] [Server thread/INFO]: 4AIR_ZIAK issued server command: /shop
[23:04:40] [Server thread/INFO]: TheNeox issued server command: /npc create --type ALLAY swqeqe
[23:04:45] [Server thread/INFO]: TheNeox issued server command: /npc create test
[23:04:46] [Server thread/INFO]: TheNeox issued server command: /npc create test
[23:04:51] [Server thread/INFO]: TheNeox issued server command: /npc list
[23:05:07] [Server thread/INFO]: 4AIR_ZIAK has made the advancement [Hidden in the Depths]
[23:05:17] [Server thread/INFO]: Given x1 of premium key(s) to 4AIR_ZIAK.
[23:05:20] [Server thread/INFO]: onetricksimon has made the advancement [Spooky Scary Skeleton]
[23:06:03] [Async Chat Thread - #6/INFO]:  994 Gracz koodeina » tak się nie bawię elo xD
[23:06:05] [Server thread/INFO]: koodeina lost connection: Disconnected
[23:06:05] [Server thread/INFO]: -koodeina
[23:06:09] [Server thread/INFO]: 
[23:06:14] [Server thread/INFO]: 4AIR_ZIAK issued server command: /wymień all
[23:06:14] [Server thread/INFO]: onetricksimon issued server command: /KIT
[23:06:17] [Server thread/INFO]: 4AIR_ZIAK issued server command: /wymien all
[23:06:18] [Server thread/INFO]: onetricksimon issued server command: /warp pvp
[23:06:19] [Server thread/INFO]: TheNeox issued server command: /server duelx
[23:06:20] [Server thread/INFO]: TheNeox issued server command: /server duels
[23:06:20] [Server thread/INFO]: TheNeox lost connection: Disconnected
[23:07:12] [Server thread/INFO]: KrzysKlockiLego lost connection: Disconnected
[23:07:12] [Server thread/INFO]: -KrzysKlockiLego
[23:07:36] [Server thread/INFO]: 
[23:07:52] [Server thread/INFO]: onetricksimon lost connection: Disconnected
[23:07:52] [Server thread/INFO]: -onetricksimon
[23:08:21] [User Authenticator #19/INFO]: UUID of player KrzysKlockiLego is 3685ae44-185a-4625-bcf5-c7e6683f66ff
[23:08:22] [Server thread/INFO]: [goxy] Player KrzysKlockiLego joins with id 3685ae44-185a-4625-bcf5-c7e6683f66ff (2093ebd4-3e87-43a9-85a6-75a0278465a1) and premium: true
[23:08:22] [Server thread/INFO]: [Polar] Pledge patched
[23:08:22] [Server thread/INFO]: KrzysKlockiLego[/80.238.108.60:38861] logged in with entity id 3166 at ([world]794.9708066749761, 52.0, -224.71058534523377)
[23:08:22] [Server thread/INFO]: +KrzysKlockiLego
[23:08:29] [Server thread/INFO]: KrzysKlockiLego lost connection: Disconnected
[23:08:29] [Server thread/INFO]: -KrzysKlockiLego
[23:08:39] [User Authenticator #19/INFO]: UUID of player KrzysKlockiLego is 3685ae44-185a-4625-bcf5-c7e6683f66ff
[23:08:39] [Server thread/INFO]: [goxy] Player KrzysKlockiLego joins with id 3685ae44-185a-4625-bcf5-c7e6683f66ff (2093ebd4-3e87-43a9-85a6-75a0278465a1) and premium: true
[23:08:39] [Server thread/INFO]: [Polar] Pledge patched
[23:08:39] [Server thread/INFO]: KrzysKlockiLego[/80.238.108.60:45849] logged in with entity id 3170 at ([world]787.4506623859081, 52.0, -210.95151602604204)
[23:08:39] [Server thread/INFO]: +KrzysKlockiLego
[23:08:44] [Server thread/INFO]: KrzysKlockiLego lost connection: Disconnected
[23:08:44] [Server thread/INFO]: -KrzysKlockiLego
[23:09:35] [User Authenticator #19/INFO]: UUID of player Yakusovv is 732a1179-fb20-30a8-972c-8d9fad2136e2
[23:09:35] [Server thread/INFO]: [goxy] Player Yakusovv joins with id 732a1179-fb20-30a8-972c-8d9fad2136e2 (062f1b9a-221f-4165-83b2-4bb29ab505d3) and premium: true
[23:09:35] [Server thread/INFO]: [Polar] Pledge patched
[23:09:35] [Server thread/INFO]: Yakusovv[/31.0.87.19:32973] logged in with entity id 3186 at ([world]713.9984865825024, 115.86123529411606, -1170.1490409503097)
[23:09:46] [Server thread/INFO]: Yakusovv issued server command: /co i
[23:09:50] [Server thread/INFO]: Yakusovv issued server command: /co i
[23:09:55] [Server thread/INFO]: Yakusovv issued server command: /oi 4AIR_ZIAK
[23:09:55] [Server thread/INFO]: [OpenInv] [LanguageManager] Missing translations from en_gb.yml: messages.error.consoleUnsupported, messages.error.lootNotGenerated, messages.error.invalidMaterial, messages.error.invalidNumber, messages.error.invalidPlayer, messages.error.permissionOpenSelf, messages.error.permissionEnderAll, messages.error.permissionExempt, messages.error.permissionCrossWorld, messages.error.permissionPlayerOnline, messages.error.permissionPlayerOffline, messages.error.commandException, messages.info.containerBlocked, messages.info.containerBlockedSilent, messages.info.containerSilent, messages.info.settingState, messages.info.player.noMatches, messages.info.player.matches, messages.info.container.noMatches, messages.info.container.matches, messages.info.true, messages.info.false, container.player, container.enderchest
[23:10:24] [Server thread/INFO]: Yakusovv issued server command: /oi Mati123145
[23:10:26] [User Authenticator #19/INFO]: UUID of player Piterkowy22 is c710a08c-4b8c-4f10-86aa-91ae7a6ccdf8
[23:10:26] [Server thread/INFO]: [goxy] Player Piterkowy22 joins with id c710a08c-4b8c-4f10-86aa-91ae7a6ccdf8 (c710a08c-4b8c-4f10-86aa-91ae7a6ccdf8) and premium: true
[23:10:26] [Server thread/INFO]: [Polar] Pledge patched
[23:10:26] [Server thread/INFO]: Piterkowy22[/37.248.152.122:33867] logged in with entity id 3223 at ([world]499.47257726957366, 35.0, -203.10597588762386)
[23:10:26] [Server thread/INFO]: +Piterkowy22
[23:10:31] [Server thread/INFO]: Piterkowy22 issued server command: /lobby
[23:10:31] [Server thread/INFO]: Piterkowy22 [c710a08c-4b8c-4f10-86aa-91ae7a6ccdf8]: /lobby
[23:10:31] [Server thread/INFO]: Piterkowy22 lost connection: Disconnected
[23:10:31] [Server thread/INFO]: -Piterkowy22
[23:10:40] [Async Chat Thread - #8/INFO]:  1347 HEADADMIN Yakusovv » Mati123145 zobacz ticket
[23:10:47] [Server thread/INFO]: Yakusovv issued server command: /v
[23:11:10] [Async Chat Thread - #9/INFO]:  1043 Gracz 4AIR_ZIAK » siemano
[23:11:13] [Async Chat Thread - #8/INFO]:  1347 HEADADMIN Yakusovv » cze
[23:11:14] [Timer-1/INFO]: [zAuctionHouseV3 v3.1.3.2] /home/container/plugins/zAuctionHouseV3/items.json successfully saved !
[23:11:15] [Craft Scheduler Thread - 105 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 4 online users | 0 offline users.
[23:11:15] [Craft Scheduler Thread - 100 - LibsDisguises/INFO]: [LibsDisguises] Now looking for update on Jenkins..
[23:11:15] [Async Chat Thread - #9/INFO]: 1337 1256 MVIP Mati123145 » iemka
[23:11:16] [Server thread/ERROR]: [LibsDisguises] !! May I have your attention please !!
[23:11:16] [Server thread/ERROR]: [LibsDisguises] An update for ProtocolLib has been downloaded and will be installed when the server restarts. When possible, please restart the server. Lib's Disguises may not work correctly until you do so.
[23:11:16] [Server thread/ERROR]: [LibsDisguises] This message is on repeat due to the sheer number of people who don't see this.
[23:11:16] [Server thread/ERROR]: [LibsDisguises] !! May I have your attention please !!
[23:11:24] [Async Chat Thread - #8/INFO]:  1043 Gracz 4AIR_ZIAK » dajcei mi backupa moje smocze itemy
[23:11:33] [Async Chat Thread - #9/INFO]:  1043 Gracz 4AIR_ZIAK » wywalilo serwer niemam nic
[23:11:39] [Server thread/INFO]: diaxowy12 issued server command: /server duels
[23:11:40] [Async Chat Thread - #8/INFO]: 1337 1256 MVIP Mati123145 » już
[23:11:43] [Async Chat Thread - #9/INFO]: 1337 1256 MVIP Mati123145 » kc
[23:12:18] [Async Chat Thread - #8/INFO]:  1347 HEADADMIN Yakusovv » Mati123145 zobacz ticket
[23:12:20] [Async Chat Thread - #9/INFO]:  1347 HEADADMIN Yakusovv » nie to
[23:12:22] [User Authenticator #20/INFO]: UUID of player KrzysKlockiLego is 3685ae44-185a-4625-bcf5-c7e6683f66ff
[23:12:22] [Server thread/INFO]: [goxy] Player KrzysKlockiLego joins with id 3685ae44-185a-4625-bcf5-c7e6683f66ff (2093ebd4-3e87-43a9-85a6-75a0278465a1) and premium: true
[23:12:22] [Server thread/INFO]: [Polar] Pledge patched
[23:12:23] [Server thread/INFO]: KrzysKlockiLego[/80.238.108.60:35119] logged in with entity id 3285 at ([world]782.4287291540919, 52.0, -199.0331548201753)
[23:12:23] [Server thread/INFO]: +KrzysKlockiLego
[23:12:23] [Server thread/INFO]: Yakusovv issued server command: /oi Mati123145
[23:12:44] [Server thread/INFO]: diaxowy12 issued server command: /server duels
[23:12:47] [Server thread/INFO]: diaxowy12 issued server command: /lobby
[23:12:47] [Server thread/INFO]: diaxowy12 [5bc4f6e1-d835-430a-ab02-4dd01c7a390a]: /lobby
[23:12:48] [Async Chat Thread - #8/INFO]:  1043 Gracz 4AIR_ZIAK » oddasz itemy?
[23:12:51] [Server thread/INFO]: KrzysKlockiLego issued server command: /kill
[23:12:51] [Server thread/INFO]: [Essentials] KrzysKlockiLego nie ma dostepu do tego polecenia
[23:12:52] [Async Chat Thread - #9/INFO]:  1347 HEADADMIN Yakusovv » masz nagranie?
[23:12:56] [Server thread/INFO]: KrzysKlockiLego issued server command: /
[23:13:02] [Server thread/INFO]: diaxowy12 issued server command: /lobby
[23:13:02] [Server thread/INFO]: diaxowy12 [5bc4f6e1-d835-430a-ab02-4dd01c7a390a]: /lobby
[23:13:02] [Server thread/INFO]: diaxowy12 lost connection: Disconnected
[23:13:07] [Server thread/INFO]: KrzysKlockiLego issued server command: /alts
[23:13:11] [Async Chat Thread - #8/INFO]:  1347 HEADADMIN Yakusovv » w logach nic nie mam o wywaleniu serwera
[23:13:12] [Async Chat Thread - #9/INFO]:  1043 Gracz 4AIR_ZIAK » jak mialem nagrac niespodziewany wypiervvdol serwera?
[23:13:16] [Async Chat Thread - #8/INFO]: 1337 1256 MVIP Mati123145 » nie sorry
[23:13:22] [Async Chat Thread - #9/INFO]:  1347 HEADADMIN Yakusovv » wiec jak juz to z winy twojego internetu
[23:13:30] [Async Chat Thread - #8/INFO]:  1043 Gracz 4AIR_ZIAK » mam 5 pingu
[23:13:33] [Server thread/INFO]: Yakusovv issued server command: /socialspy
[23:13:36] [Async Chat Thread - #9/INFO]:  1043 Gracz 4AIR_ZIAK » 150mb/s
[23:13:43] [Async Chat Thread - #8/INFO]:  1043 Gracz 4AIR_ZIAK » nigdy mi mc nie wywalalo
[23:13:43] [Async Chat Thread - #9/INFO]:  1347 HEADADMIN Yakusovv » i nie masz nagrania
[23:13:47] [User Authenticator #21/INFO]: [ExcellentCrates] Created new user data for: '09740e49-d9e1-3b28-8c1c-62bd6ed28c1e'
[23:13:47] [User Authenticator #21/INFO]: UUID of player luner_222 is 09740e49-d9e1-3b28-8c1c-62bd6ed28c1e
[23:13:47] [Server thread/INFO]: [goxy] Player luner_222 joins with id 09740e49-d9e1-3b28-8c1c-62bd6ed28c1e (9f1d38cf-dd17-41a4-ac34-078e81930e7c) and premium: false
[23:13:47] [Server thread/INFO]: [Polar] Pledge patched
[23:13:47] [Server thread/INFO]: luner_222[/188.146.122.207:39083] logged in with entity id 3317 at ([world]-5.5, -60.0, 9.5)
[23:13:47] [Server thread/INFO]: +luner_222
[23:13:47] [Server thread/INFO]: luner_222 has reached the goal [Sky's the Limit]
[23:13:50] [Async Chat Thread - #8/INFO]:  1043 Gracz 4AIR_ZIAK » jak mialem ci to nagrac
[23:13:54] [Server thread/INFO]: luner_222 issued server command: /lobby
[23:13:54] [Server thread/INFO]: luner_222 [09740e49-d9e1-3b28-8c1c-62bd6ed28c1e]: /lobby
[23:13:54] [Server thread/INFO]: luner_222 lost connection: Disconnected
[23:13:54] [Server thread/INFO]: -luner_222
[23:14:20] [Server thread/INFO]: Yakusovv issued server command: /server skyblock
[23:14:20] [Server thread/INFO]: Yakusovv lost connection: Disconnected
[23:14:58] [Async Chat Thread - #10/INFO]: 1337 1256 MVIP Mati123145 » Yakussovv a mogę głuwke pli
[23:15:00] [Async Chat Thread - #11/INFO]: 1337 1256 MVIP Mati123145 » sss
[23:15:38] [User Authenticator #22/INFO]: [ExcellentCrates] Created new user data for: 'ac98c69b-2c26-43a7-9475-432de754049d'
[23:15:38] [User Authenticator #22/INFO]: UUID of player czapus17 is ac98c69b-2c26-43a7-9475-432de754049d
[23:15:38] [Server thread/INFO]: [goxy] Player czapus17 joins with id ac98c69b-2c26-43a7-9475-432de754049d (7ccdc546-3eae-40ad-a4b6-52b36b648821) and premium: true
[23:15:38] [Server thread/INFO]: [Polar] Pledge patched
[23:15:39] [Server thread/INFO]: czapus17[/5.184.98.87:47479] logged in with entity id 4092 at ([world]2.5, -60.0, -7.5)
[23:15:39] [Server thread/INFO]: +czapus17
[23:15:39] [Server thread/INFO]: czapus17 has reached the goal [Sky's the Limit]
[23:15:45] [Server thread/INFO]: KrzysKlockiLego lost connection: Disconnected
[23:15:45] [Server thread/INFO]: -KrzysKlockiLego
[23:15:53] [User Authenticator #22/INFO]: UUID of player KrzysKlockiLego is 3685ae44-185a-4625-bcf5-c7e6683f66ff
[23:15:53] [Server thread/INFO]: [goxy] Player KrzysKlockiLego joins with id 3685ae44-185a-4625-bcf5-c7e6683f66ff (2093ebd4-3e87-43a9-85a6-75a0278465a1) and premium: true
[23:15:53] [Server thread/INFO]: [Polar] Pledge patched
[23:15:53] [Server thread/INFO]: KrzysKlockiLego[/80.238.108.60:36855] logged in with entity id 4140 at ([world]787.6562845533383, 52.0, -184.9534991222945)
[23:15:53] [Server thread/INFO]: +KrzysKlockiLego
[23:16:01] [Server thread/INFO]: KrzysKlockiLego lost connection: Disconnected
[23:16:01] [Server thread/INFO]: -KrzysKlockiLego
[23:19:55] [User Authenticator #23/INFO]: [ExcellentCrates] Created new user data for: '85b787b4-9e62-499b-b321-5482c1f13f0d'
[23:19:55] [User Authenticator #23/INFO]: UUID of player lubiekonie123 is 85b787b4-9e62-499b-b321-5482c1f13f0d
[23:19:55] [Server thread/INFO]: [goxy] Player lubiekonie123 joins with id 85b787b4-9e62-499b-b321-5482c1f13f0d (ef23be34-5824-3340-9a11-ffe42a8399f4) and premium: false
[23:19:55] [Server thread/INFO]: [Polar] Pledge patched
[23:19:56] [Server thread/INFO]: lubiekonie123[/5.173.156.20:48907] logged in with entity id 4922 at ([world]4.5, -60.0, 5.5)
[23:19:56] [Server thread/INFO]: +lubiekonie123
[23:19:56] [Server thread/INFO]: lubiekonie123 has reached the goal [Sky's the Limit]
[23:20:11] [Server thread/INFO]: lubiekonie123 issued server command: /lobby
[23:20:13] [Server thread/INFO]: lubiekonie123 issued server command: /lobby
[23:20:13] [Server thread/INFO]: lubiekonie123 [85b787b4-9e62-499b-b321-5482c1f13f0d]: /lobby
[23:20:13] [Server thread/INFO]: lubiekonie123 lost connection: Disconnected
[23:20:13] [Server thread/INFO]: -lubiekonie123
[23:20:22] [User Authenticator #23/INFO]: [ExcellentCrates] Created new user data for: 'd4d76ecc-499e-4ca8-b6e3-e4a44daf6696'
[23:20:22] [User Authenticator #23/INFO]: UUID of player Zyczuytbrat3600 is d4d76ecc-499e-4ca8-b6e3-e4a44daf6696
[23:20:22] [Server thread/INFO]: [goxy] Player Zyczuytbrat3600 joins with id d4d76ecc-499e-4ca8-b6e3-e4a44daf6696 (f6e1a47b-f746-3aa7-8596-3e489d7e27d2) and premium: false
[23:20:22] [Server thread/INFO]: [Polar] Pledge patched
[23:20:23] [Server thread/INFO]: Zyczuytbrat3600[/31.1.210.1:44321] logged in with entity id 4956 at ([world]2.5, -60.0, 6.5)
[23:20:23] [Server thread/INFO]: +Zyczuytbrat3600
[23:20:23] [Server thread/INFO]: Zyczuytbrat3600 has reached the goal [Sky's the Limit]
[23:20:45] [User Authenticator #23/INFO]: UUID of player lubiekonie123 is 85b787b4-9e62-499b-b321-5482c1f13f0d
[23:20:45] [Server thread/INFO]: [goxy] Player lubiekonie123 joins with id 85b787b4-9e62-499b-b321-5482c1f13f0d (ef23be34-5824-3340-9a11-ffe42a8399f4) and premium: false
[23:20:45] [Server thread/INFO]: [Polar] Pledge patched
[23:20:45] [Server thread/INFO]: lubiekonie123[/5.173.156.20:36811] logged in with entity id 4985 at ([world]490.3988211039143, 37.0, -191.71216065089763)
[23:20:45] [Server thread/INFO]: +lubiekonie123
[23:20:56] [Server thread/INFO]: lubiekonie123 issued server command: /lobby
[23:20:59] [Server thread/INFO]: lubiekonie123 issued server command: /lobby
[23:20:59] [Server thread/INFO]: lubiekonie123 [85b787b4-9e62-499b-b321-5482c1f13f0d]: /lobby
[23:20:59] [Server thread/INFO]: lubiekonie123 lost connection: Disconnected
[23:20:59] [Server thread/INFO]: -lubiekonie123
[23:21:16] [Server thread/ERROR]: [LibsDisguises] !! May I have your attention please !!
[23:21:16] [Server thread/ERROR]: [LibsDisguises] An update for ProtocolLib has been downloaded and will be installed when the server restarts. When possible, please restart the server. Lib's Disguises may not work correctly until you do so.
[23:21:16] [Server thread/ERROR]: [LibsDisguises] This message is on repeat due to the sheer number of people who don't see this.
[23:21:16] [Server thread/ERROR]: [LibsDisguises] !! May I have your attention please !!
[23:21:30] [User Authenticator #23/INFO]: UUID of player Yakusovv is 732a1179-fb20-30a8-972c-8d9fad2136e2
[23:21:30] [Server thread/INFO]: [goxy] Player Yakusovv joins with id 732a1179-fb20-30a8-972c-8d9fad2136e2 (062f1b9a-221f-4165-83b2-4bb29ab505d3) and premium: true
[23:21:30] [Server thread/INFO]: [Polar] Pledge patched
[23:21:30] [Server thread/INFO]: Yakusovv[/31.0.87.19:59161] logged in with entity id 5018 at ([world]716.7363054614832, 112.54913854522003, -1171.596535782056)
[23:21:53] [Server thread/INFO]: Yakusovv issued server command: /polar history
[23:22:35] [Async Chat Thread - #12/INFO]:  1347 HEADADMIN Yakusovv » 4AIR_ZIAK jestes?
[23:22:36] [User Authenticator #24/INFO]: UUID of player lubiekonie123 is 85b787b4-9e62-499b-b321-5482c1f13f0d
[23:22:36] [Server thread/INFO]: [goxy] Player lubiekonie123 joins with id 85b787b4-9e62-499b-b321-5482c1f13f0d (ef23be34-5824-3340-9a11-ffe42a8399f4) and premium: false
[23:22:36] [Server thread/INFO]: [Polar] Pledge patched
[23:22:36] [Server thread/INFO]: lubiekonie123[/5.173.156.20:40941] logged in with entity id 5140 at ([world]491.224762502215, 37.0, -191.3650689691545)
[23:22:36] [Server thread/INFO]: +lubiekonie123
[23:22:54] [Server thread/INFO]: lubiekonie123 issued server command: /warp pvp
[23:23:00] [Server thread/WARN]: lubiekonie123 moved too quickly! 231.38436994423313,75.0,-977.2449884661542
[23:23:10] [Server thread/INFO]: Zyczuytbrat3600 issued server command: /warp pvp
[23:23:36] [Server thread/INFO]: Yakusovv issued server command: /co i
[23:23:47] [Server thread/INFO]: Yakusovv issued server command: /tempban 4AIR_ZIAK 5d nazizm -s
[23:23:48] [Server thread/INFO]: [Silent]  >> Yakusovv zbanowal na czas 4AIR_ZIAK na 5 dni za 'nazizm'
[23:23:48] [Server thread/INFO]: 4AIR_ZIAK lost connection: 
 BFSMC.PL 
 Zostales zbanowany! 
 Administrator: Yakusovv 
 Powod: nazizm 

Wygasa za: 5 dni
NIE ZAMYKAJ TEGO OKNA! 
 Jeśli otrzymałes bana niesłusznie, to napisz do nas na Discordzie. 
 Załącz do apelacji screena całego ekranu (z widocznym paskiem gry) 
 
 UnBana możesz zakupić na: sklep.bfsmc.pl
[23:23:48] [Server thread/INFO]: -4AIR_ZIAK
[23:23:52] [Server thread/INFO]: Zyczuytbrat3600 issued server command: /kit
[23:23:53] [Server thread/INFO]: Yakusovv issued server command: /co i
[23:23:54] [Server thread/INFO]: Given x1 of Czas key(s) to Zyczuytbrat3600.
[23:23:56] [Server thread/INFO]: Zyczuytbrat3600 issued server command: /kit
[23:24:01] [Server thread/INFO]: Zyczuytbrat3600 issued server command: /spawn
[23:24:14] [Server thread/INFO]: Yakusovv issued server command: /server skyblock
[23:24:14] [Server thread/INFO]: Yakusovv lost connection: Disconnected
[23:24:17] [User Authenticator #25/INFO]: [ExcellentCrates] Created new user data for: '4e972053-4a42-416a-9c5e-27f9c1896bd0'
[23:24:17] [User Authenticator #25/INFO]: UUID of player 8491_IDOL is 4e972053-4a42-416a-9c5e-27f9c1896bd0
[23:24:17] [Server thread/INFO]: [goxy] Player 8491_IDOL joins with id 4e972053-4a42-416a-9c5e-27f9c1896bd0 (da038fcd-4dec-3564-8c72-ad1212b7e441) and premium: false
[23:24:17] [Server thread/INFO]: [Polar] Pledge patched
[23:24:17] [Server thread/INFO]: 8491_IDOL[/83.28.162.214:59687] logged in with entity id 5217 at ([world]-7.5, -60.0, -0.5)
[23:24:17] [Server thread/INFO]: +8491_IDOL
[23:24:17] [Server thread/INFO]: 8491_IDOL has reached the goal [Sky's the Limit]
[23:24:39] [Server thread/INFO]: lubiekonie123 issued server command: /lobby
[23:24:39] [Server thread/INFO]: lubiekonie123 [85b787b4-9e62-499b-b321-5482c1f13f0d]: /lobby
[23:24:39] [Server thread/INFO]: lubiekonie123 lost connection: Disconnected
[23:24:39] [Server thread/INFO]: -lubiekonie123
[23:25:05] [Server thread/INFO]: Zyczuytbrat3600 lost connection: Disconnected
[23:25:05] [Server thread/INFO]: -Zyczuytbrat3600
[23:25:37] [Server thread/INFO]: 8491_IDOL has made the advancement [Hidden in the Depths]
[23:25:51] [User Authenticator #26/INFO]: [ExcellentCrates] Created new user data for: 'a932e5d1-76a6-4e35-ad65-ee52e738454b'
[23:25:51] [User Authenticator #26/INFO]: UUID of player p_pandq is a932e5d1-76a6-4e35-ad65-ee52e738454b
[23:25:51] [Server thread/INFO]: [goxy] Player p_pandq joins with id a932e5d1-76a6-4e35-ad65-ee52e738454b (9d63013d-914f-4846-b2c9-cd1d8c7df125) and premium: true
[23:25:51] [Server thread/INFO]: [Polar] Pledge patched
[23:25:51] [Server thread/INFO]: p_pandq[/193.43.136.7:60783] logged in with entity id 5398 at ([world]-2.5, -60.0, -4.5)
[23:25:51] [Server thread/INFO]: +p_pandq
[23:25:51] [Server thread/INFO]: p_pandq has reached the goal [Sky's the Limit]
[23:26:14] [Timer-1/INFO]: [zAuctionHouseV3 v3.1.3.2] /home/container/plugins/zAuctionHouseV3/items.json successfully saved !
[23:26:15] [Craft Scheduler Thread - 140 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 4 online users | 0 offline users.
[23:26:15] [Server thread/INFO]: p_pandq issued server command: /warp pvp
[23:26:21] [Server thread/WARN]: p_pandq moved too quickly! 217.64643634023702,77.0,-969.2385895204579
[23:26:48] [Server thread/INFO]: p_pandq has made the advancement [Hidden in the Depths]
[23:27:03] [Server thread/INFO]: Mati123145 issued server command: /warp pvp
[23:27:38] [Server thread/INFO]: p_pandq issued server command: /warp pvp
[23:27:40] [Server thread/INFO]: p_pandq issued server command: /warp pvp
[23:27:43] [Server thread/INFO]: 8491_IDOL issued server command: /kit
[23:27:44] [Server thread/INFO]: p_pandq issued server command: /kit
[23:27:46] [Server thread/WARN]: p_pandq moved too quickly! 218.19731193403817,77.0,-981.8546561480978
[23:29:28] [User Authenticator #27/INFO]: [ExcellentCrates] Created new user data for: 'b79eee44-5db0-4751-812c-6d6f54174207'
[23:29:28] [User Authenticator #27/INFO]: UUID of player Maja1221PL is b79eee44-5db0-4751-812c-6d6f54174207
[23:29:28] [Server thread/INFO]: [goxy] Player Maja1221PL joins with id b79eee44-5db0-4751-812c-6d6f54174207 (5c8ef829-2bb1-358e-96ab-65d2c2a916d0) and premium: false
[23:29:28] [Server thread/INFO]: [Polar] Pledge patched
[23:29:28] [Server thread/INFO]: Maja1221PL[/46.114.230.248:39281] logged in with entity id 6295 at ([world]-3.5, -60.0, -7.5)
[23:29:28] [Server thread/INFO]: +Maja1221PL
[23:29:28] [Server thread/INFO]: Maja1221PL has reached the goal [Sky's the Limit]
[23:29:37] [Server thread/INFO]: 8491_IDOL issued server command: /kit
[23:29:41] [Server thread/INFO]: Given x1 of Czas key(s) to 8491_IDOL.
[23:29:43] [Server thread/INFO]: 8491_IDOL issued server command: /kit
[23:29:48] [Server thread/INFO]: 8491_IDOL issued server command: /kit
[23:30:04] [Server thread/INFO]: Maja1221PL lost connection: Disconnected
[23:30:04] [Server thread/INFO]: -Maja1221PL
[23:30:06] [User Authenticator #27/INFO]: UUID of player Sztajni is ce938bfb-c756-305e-95e5-c0a5764ec942
[23:30:06] [Server thread/INFO]: [goxy] Player Sztajni joins with id ce938bfb-c756-305e-95e5-c0a5764ec942 (53962876-5ab0-3f4c-b343-a13eb011a99d) and premium: false
[23:30:06] [Server thread/INFO]: [Polar] Pledge patched
[23:30:07] [Server thread/INFO]: Sztajni[/83.4.166.201:39701] logged in with entity id 6304 at ([world]501.30000001192093, 35.0, -163.67883881434017)
[23:30:07] [Server thread/INFO]: +Sztajni
[23:30:11] [Server thread/INFO]: Sztajni issued server command: /lobby
[23:30:14] [Server thread/INFO]: Sztajni issued server command: /lobby
[23:30:16] [Server thread/INFO]: Sztajni issued server command: /lobby
[23:30:16] [Server thread/INFO]: Sztajni [ce938bfb-c756-305e-95e5-c0a5764ec942]: /lobby
[23:30:16] [Server thread/INFO]: Sztajni lost connection: Disconnected
[23:30:16] [Server thread/INFO]: -Sztajni
[23:30:51] [Async Chat Thread - #14/INFO]: 1337 1256 MVIP Mati123145 » ???
[23:31:16] [Server thread/ERROR]: [LibsDisguises] !! May I have your attention please !!
[23:31:16] [Server thread/ERROR]: [LibsDisguises] An update for ProtocolLib has been downloaded and will be installed when the server restarts. When possible, please restart the server. Lib's Disguises may not work correctly until you do so.
[23:31:16] [Server thread/ERROR]: [LibsDisguises] This message is on repeat due to the sheer number of people who don't see this.
[23:31:16] [Server thread/ERROR]: [LibsDisguises] !! May I have your attention please !!
[23:31:30] [Async Chat Thread - #15/INFO]: 1337 1256 MVIP Mati123145 » jak masz czity mam dobry kontakt z administracją
[23:31:44] [Server thread/INFO]: p_pandq issued server command: /warp pvp
[23:31:45] [Async Chat Thread - #14/INFO]: 1337 1262 MVIP Mati123145 » LL
[23:31:46] [Server thread/INFO]: 8491_IDOL issued server command: /waprp vp
[23:31:49] [Server thread/WARN]: p_pandq moved too quickly! 226.0,75.0,-977.0
[23:31:50] [Server thread/INFO]: 8491_IDOL issued server command: /warp pvp
[23:32:40] [User Authenticator #28/INFO]: UUID of player Maja1221PL is b79eee44-5db0-4751-812c-6d6f54174207
[23:32:40] [Server thread/INFO]: [goxy] Player Maja1221PL joins with id b79eee44-5db0-4751-812c-6d6f54174207 (5c8ef829-2bb1-358e-96ab-65d2c2a916d0) and premium: false
[23:32:40] [Server thread/INFO]: [Polar] Pledge patched
[23:32:40] [Server thread/INFO]: Maja1221PL[/46.114.230.248:60185] logged in with entity id 6420 at ([world]490.5, 37.0, -193.5)
[23:32:40] [Server thread/INFO]: +Maja1221PL
[23:32:42] [Server thread/INFO]: p_pandq issued server command: /kit
[23:33:25] [Async Chat Thread - #16/INFO]: [ChatSentry Notifier] (Unicode - Chat) Mati123145 napisał: ' dobra ja lece nara all'
[23:33:25] [Async Chat Thread - #16/INFO]: 1337 1262 MVIP Mati123145 »  dobra ja lece nara all
[23:33:28] [Server thread/INFO]: Mati123145 lost connection: Disconnected
[23:33:28] [Server thread/INFO]: -Mati123145
[23:33:39] [Server thread/INFO]: p_pandq issued server command: /warp pvp
[23:33:45] [Server thread/WARN]: p_pandq moved too quickly! 221.3372304920892,75.0,-978.2191182803406
[23:33:50] [Server thread/INFO]: Maja1221PL issued server command: /pomoc
[23:33:50] [Server thread/INFO]: Maja1221PL [b79eee44-5db0-4751-812c-6d6f54174207]: /pomoc
[23:34:00] [Server thread/INFO]: p_pandq issued server command: /warp pvp
[23:34:19] [Server thread/INFO]: Maja1221PL issued server command: /kit
[23:34:38] [Server thread/INFO]: Maja1221PL issued server command: /warp
[23:34:45] [Server thread/INFO]: Maja1221PL issued server command: /pvp
[23:35:12] [Server thread/INFO]: p_pandq issued server command: /warp pvp
[23:35:18] [Server thread/WARN]: p_pandq moved too quickly! 217.1324715564479,77.0,-977.0988733316519
[23:35:58] [Server thread/INFO]: p_pandq issued server command: /spawn
[23:36:04] [Server thread/WARN]: p_pandq moved too quickly! -206.80000001192093,-72.0,971.8544697690763
[23:36:04] [User Authenticator #29/INFO]: UUID of player Yakusovv is 732a1179-fb20-30a8-972c-8d9fad2136e2
[23:36:04] [Server thread/INFO]: [goxy] Player Yakusovv joins with id 732a1179-fb20-30a8-972c-8d9fad2136e2 (062f1b9a-221f-4165-83b2-4bb29ab505d3) and premium: true
[23:36:04] [Server thread/INFO]: [Polar] Pledge patched
[23:36:04] [Server thread/INFO]: Yakusovv[/31.0.87.19:36907] logged in with entity id 6914 at ([world]577.8478928003498, 84.80933324545151, -1179.2464092049884)
[23:36:46] [Server thread/WARN]: 8491_IDOL moved wrongly!
[23:37:12] [User Authenticator #30/INFO]: Disconnecting com.mojang.authlib.GameProfile@4e66d664[id=8e6ec4ce-0c74-480a-b93e-f37074e73b9b,name=4AIR_ZIAK,properties={textures=[com.mojang.authlib.properties.Property@55629dac], realUUID=[com.mojang.authlib.properties.Property@66d95093], goxyData=[com.mojang.authlib.properties.Property@6d344e6a], previousServer=[com.mojang.authlib.properties.Property@fa8a5c0]},legacy=false] (/37.221.101.238:33943): 
 BFSMC.PL 
 Zostales zbanowany! 
 Administrator: Yakusovv 
 Powod: nazizm 

Wygasa za: 4 dni, 23 godziny, 46 minuty
NIE ZAMYKAJ TEGO OKNA! 
 Jeśli otrzymałes bana niesłusznie, to napisz do nas na Discordzie. 
 Załącz do apelacji screena całego ekranu (z widocznym paskiem gry) 
 
 UnBana możesz zakupić na: sklep.bfsmc.pl
[23:37:12] [Server thread/INFO]: 4AIR_ZIAK probowal wejsc na serwer ale zostal zbanowany!
[23:37:12] [Server thread/INFO]: com.mojang.authlib.GameProfile@4e66d664[id=8e6ec4ce-0c74-480a-b93e-f37074e73b9b,name=4AIR_ZIAK,properties={textures=[com.mojang.authlib.properties.Property@55629dac], realUUID=[com.mojang.authlib.properties.Property@66d95093], goxyData=[com.mojang.authlib.properties.Property@6d344e6a], previousServer=[com.mojang.authlib.properties.Property@fa8a5c0]},legacy=false] (/37.221.101.238:33943) lost connection: 
 BFSMC.PL 
 Zostales zbanowany! 
 Administrator: Yakusovv 
 Powod: nazizm 

Wygasa za: 4 dni, 23 godziny, 46 minuty
NIE ZAMYKAJ TEGO OKNA! 
 Jeśli otrzymałes bana niesłusznie, to napisz do nas na Discordzie. 
 Załącz do apelacji screena całego ekranu (z widocznym paskiem gry) 
 
 UnBana możesz zakupić na: sklep.bfsmc.pl
[23:37:13] [Server thread/WARN]: 8491_IDOL moved wrongly!
[23:37:28] [Server thread/INFO]: Yakusovv issued server command: /ban 4air_ziak cheaty -s
[23:37:28] [Server thread/INFO]: [Silent]  >> Yakusovv zbanowal 4AIR_ZIAK za 'cheaty'
[23:37:31] [Server thread/WARN]: 8491_IDOL moved too quickly! 7.052728040479906,3.0,-131.77179153259294
[23:37:33] [Server thread/INFO]: Maja1221PL has made the advancement [Hidden in the Depths]
[23:37:44] [Server thread/INFO]: p_pandq issued server command: /kit
[23:38:01] [Server thread/INFO]: p_pandq issued server command: /ec
[23:38:20] [Server thread/INFO]: p_pandq issued server command: /warp pvp
[23:39:00] [Server thread/INFO]: p_pandq issued server command: /warp pvp
[23:39:06] [Server thread/WARN]: p_pandq moved too quickly! 214.0746446085007,77.0,-976.9512779186725
[23:39:21] [Server thread/INFO]: Maja1221PL lost connection: Invalid teleport state
[23:39:21] [Server thread/INFO]: [InventoryRollbackPlus] Maja1221PLlayer% is not currently online.
[23:39:21] [Server thread/INFO]: -Maja1221PL
[23:39:32] [Server thread/INFO]: p_pandq issued server command: /warp pvp
[23:39:38] [Server thread/WARN]: p_pandq moved too quickly! 222.56841418266777,75.0,-977.4140198144642
[23:39:42] [User Authenticator #31/INFO]: UUID of player Maja1221PL is b79eee44-5db0-4751-812c-6d6f54174207
[23:39:42] [Server thread/INFO]: [goxy] Player Maja1221PL joins with id b79eee44-5db0-4751-812c-6d6f54174207 (5c8ef829-2bb1-358e-96ab-65d2c2a916d0) and premium: false
[23:39:42] [Server thread/INFO]: [Polar] Pledge patched
[23:39:42] [Server thread/INFO]: Maja1221PL[/46.114.230.248:58033] logged in with entity id 7817 at ([world]617.8500966737238, 76.0, -1182.9949305098899)
[23:39:42] [Server thread/INFO]: +Maja1221PL
[23:39:54] [User Authenticator #31/INFO]: [ExcellentCrates] Created new user data for: '465f494a-a6dd-36f5-a1b0-92c25dc2ff8a'
[23:39:54] [User Authenticator #31/INFO]: UUID of player Liro69420 is 465f494a-a6dd-36f5-a1b0-92c25dc2ff8a
[23:39:54] [Server thread/INFO]: [goxy] Player Liro69420 joins with id 465f494a-a6dd-36f5-a1b0-92c25dc2ff8a (a0788e3f-5f4f-3c29-b27c-c843ab21d649) and premium: false
[23:39:54] [Server thread/INFO]: [Polar] Pledge patched
[23:39:54] [Server thread/INFO]: Liro69420[/185.124.187.108:60437] logged in with entity id 7846 at ([world]3.5, -60.0, 6.5)
[23:39:54] [Server thread/INFO]: +Liro69420
[23:39:54] [Server thread/INFO]: Liro69420 has reached the goal [Sky's the Limit]
[23:40:00] [Server thread/INFO]: p_pandq issued server command: /warp pvp
[23:40:04] [Server thread/INFO]: Maja1221PL issued server command: /kit
[23:40:06] [Server thread/WARN]: p_pandq moved too quickly! 226.0,75.0,-977.0
[23:40:40] [Server thread/INFO]: p_pandq issued server command: /warp pvp
[23:40:46] [Server thread/WARN]: p_pandq moved too quickly! 223.96868361336277,75.0,-976.3929376041764
[23:40:57] [Server thread/INFO]: Liro69420 lost connection: Invalid teleport state
[23:40:57] [Server thread/INFO]: -Liro69420
[23:41:05] [Server thread/INFO]: czapus17 lost connection: Disconnected
[23:41:05] [Server thread/INFO]: -czapus17
[23:41:07] [Server thread/INFO]: Maja1221PL issued server command: /sklep[
[23:41:09] [Server thread/INFO]: Maja1221PL issued server command: /sklep
[23:41:09] [Server thread/INFO]: Maja1221PL [b79eee44-5db0-4751-812c-6d6f54174207]: /sklep
[23:41:14] [Timer-1/INFO]: [zAuctionHouseV3 v3.1.3.2] /home/container/plugins/zAuctionHouseV3/items.json successfully saved !
[23:41:15] [Craft Scheduler Thread - 158 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 4 online users | 0 offline users.
[23:41:16] [Server thread/ERROR]: [LibsDisguises] !! May I have your attention please !!
[23:41:16] [Server thread/ERROR]: [LibsDisguises] An update for ProtocolLib has been downloaded and will be installed when the server restarts. When possible, please restart the server. Lib's Disguises may not work correctly until you do so.
[23:41:16] [Server thread/ERROR]: [LibsDisguises] This message is on repeat due to the sheer number of people who don't see this.
[23:41:16] [Server thread/ERROR]: [LibsDisguises] !! May I have your attention please !!
[23:41:44] [Server thread/INFO]: 8491_IDOL lost connection: Disconnected
[23:41:44] [Server thread/INFO]: -8491_IDOL
[23:41:55] [Server thread/INFO]: p_pandq lost connection: Disconnected
[23:41:55] [Server thread/INFO]: [InventoryRollbackPlus] p_pandqlayer% is not currently online.
[23:41:55] [Server thread/INFO]: 
[23:41:55] [Server thread/INFO]: -p_pandq
[23:42:08] [Server thread/INFO]: Maja1221PL issued server command: /wymien
[23:42:35] [Server thread/INFO]: Yakusovv issued server command: /server skyblock
[23:42:35] [Server thread/INFO]: Yakusovv lost connection: Disconnected
[23:44:08] [Server thread/INFO]: Maja1221PL has made the advancement [Ice Bucket Challenge]
[23:45:53] [Server thread/INFO]: Given x1 of premium key(s) to Maja1221PL.
[23:45:57] [User Authenticator #32/INFO]: UUID of player majjusiaa1337 is d9090562-ba47-4a78-8805-b4fdd71dd760
[23:45:57] [Server thread/INFO]: [goxy] Player majjusiaa1337 joins with id d9090562-ba47-4a78-8805-b4fdd71dd760 (e46e82d5-942b-3517-b007-ce43434348dc) and premium: false
[23:45:57] [Server thread/INFO]: [Polar] Pledge patched
[23:45:57] [Server thread/INFO]: majjusiaa1337[/31.61.169.244:46053] logged in with entity id 8868 at ([world]490.5, 37.0, -193.5)
[23:45:57] [Server thread/INFO]: +majjusiaa1337
[23:46:01] [Server thread/INFO]: majjusiaa1337 issued server command: /kit
[23:46:04] [Async Chat Thread - #19/INFO]:  1031 Gracz majjusiaa1337 » hejj
[23:46:05] [Server thread/INFO]: majjusiaa1337 issued server command: /kit
[23:46:09] [Async Chat Thread - #19/INFO]:  984 Gracz Maja1221PL » siema
[23:46:17] [Async Chat Thread - #18/INFO]:  1031 Gracz majjusiaa1337 » soj?
[23:46:19] [Server thread/INFO]: majjusiaa1337 issued server command: /warp pvp
[23:46:24] [Server thread/WARN]: majjusiaa1337 moved too quickly! 222.95566311041335,75.0,-977.0307995195367
[23:46:35] [Async Chat Thread - #19/INFO]:  984 Gracz Maja1221PL » pewnie
[23:47:09] [Async Chat Thread - #18/INFO]:  1031 Gracz majjusiaa1337 » co robisz?
[23:47:18] [Server thread/INFO]: majjusiaa1337 lost connection:  
 BFSMC.PL 
 Zostales wyrzucony! 
 Administrator: Console 
 Powod: Wyłącz wspomagacze
[23:47:18] [Server thread/INFO]: -majjusiaa1337
[23:47:18] [Server thread/INFO]:  >> majjusiaa1337 zostal wyrzucony.
[23:47:18] [Server thread/INFO]:  >> majjusiaa1337 zostal wyrzucony przez Console za 'Wyłącz wspomagacze'.
[23:47:20] [Server thread/INFO]: Maja1221PL issued server command: /spawn
[23:47:29] [Server thread/INFO]: Maja1221PL issued server command: /spawn
[23:47:39] [Server thread/INFO]: Maja1221PL issued server command: /spawn
[23:48:04] [Server thread/INFO]: Maja1221PL issued server command: /wymien
[23:48:05] [User Authenticator #33/INFO]: UUID of player majjusiaa1337 is d9090562-ba47-4a78-8805-b4fdd71dd760
[23:48:05] [Server thread/INFO]: [goxy] Player majjusiaa1337 joins with id d9090562-ba47-4a78-8805-b4fdd71dd760 (e46e82d5-942b-3517-b007-ce43434348dc) and premium: false
[23:48:05] [Server thread/INFO]: [Polar] Pledge patched
[23:48:06] [Server thread/INFO]: majjusiaa1337[/31.61.169.244:51573] logged in with entity id 9346 at ([world]579.4199824879701, 76.0, -1170.6829432703855)
[23:48:06] [Server thread/INFO]: +majjusiaa1337
[23:48:16] [Server thread/INFO]: Maja1221PL issued server command: /wymien all bloki
[23:48:33] [User Authenticator #33/INFO]: [ExcellentCrates] Created new user data for: '6d2bdf47-fcb9-4bd7-ba0c-f9577a9b1b97'
[23:48:33] [User Authenticator #33/INFO]: UUID of player JunkCreature924 is 6d2bdf47-fcb9-4bd7-ba0c-f9577a9b1b97
[23:48:33] [Server thread/INFO]: [goxy] Player JunkCreature924 joins with id 6d2bdf47-fcb9-4bd7-ba0c-f9577a9b1b97 (85769b65-e04c-423b-b1a9-57606cd5a6b2) and premium: true
[23:48:33] [Server thread/INFO]: [Polar] Pledge patched
[23:48:34] [Server thread/INFO]: JunkCreature924[/89.64.115.22:43837] logged in with entity id 9573 at ([world]9.5, -60.0, -6.5)
[23:48:34] [Server thread/INFO]: +JunkCreature924
[23:48:34] [Server thread/INFO]: JunkCreature924 has reached the goal [Sky's the Limit]
[23:48:36] [User Authenticator #33/INFO]: [ExcellentCrates] Created new user data for: '07d0a8e4-ccb5-4123-b451-6b15808be9bd'
[23:48:36] [User Authenticator #33/INFO]: UUID of player BigPapaFilipsh33 is 07d0a8e4-ccb5-4123-b451-6b15808be9bd
[23:48:36] [Server thread/INFO]: [goxy] Player BigPapaFilipsh33 joins with id 07d0a8e4-ccb5-4123-b451-6b15808be9bd (e10e2e48-f4ae-4106-9276-4285e0e8eba9) and premium: true
[23:48:36] [Server thread/INFO]: [Polar] Pledge patched
[23:48:36] [Server thread/INFO]: BigPapaFilipsh33[/109.241.96.222:41395] logged in with entity id 9626 at ([world]6.5, -60.0, 7.5)
[23:48:36] [Server thread/INFO]: +BigPapaFilipsh33
[23:48:36] [Server thread/INFO]: BigPapaFilipsh33 has reached the goal [Sky's the Limit]
[23:50:27] [Server thread/INFO]: JunkCreature924 has made the advancement [Hidden in the Depths]
[23:50:29] [Server thread/INFO]: BigPapaFilipsh33 has made the advancement [Diamonds!]
[23:50:45] [Server thread/INFO]: JunkCreature924 issued server command: /kit
[23:51:05] [Server thread/INFO]: BigPapaFilipsh33 has made the advancement [Hidden in the Depths]
[23:51:16] [Server thread/ERROR]: [LibsDisguises] !! May I have your attention please !!
[23:51:16] [Server thread/ERROR]: [LibsDisguises] An update for ProtocolLib has been downloaded and will be installed when the server restarts. When possible, please restart the server. Lib's Disguises may not work correctly until you do so.
[23:51:16] [Server thread/ERROR]: [LibsDisguises] This message is on repeat due to the sheer number of people who don't see this.
[23:51:16] [Server thread/ERROR]: [LibsDisguises] !! May I have your attention please !!
[23:51:38] [Async Chat Thread - #20/INFO]:  1060 Gracz majjusiaa1337 » warto bylo?
[23:51:42] [Server thread/INFO]: BigPapaFilipsh33 issued server command: /kit BigPapaFilipsh33
[23:51:48] [Async Chat Thread - #21/INFO]:  986 Gracz BigPapaFilipsh33 » tak
[23:51:53] [Server thread/INFO]: BigPapaFilipsh33 issued server command: /kits
[23:51:58] [Server thread/INFO]: JunkCreature924 issued server command: /kit
[23:52:04] [luckperms-worker-4/INFO]: [LP] LOG > (Yakusovv@survival) [U] (nataliettapl)
[23:52:04] [luckperms-worker-4/INFO]: [LP] LOG > parent add mvp server-type=survival
[23:52:05] [Server thread/INFO]: JunkCreature924 issued server command: /kit
[23:52:05] [Server thread/INFO]: majjusiaa1337 issued server command: /spawn
[23:52:07] [Server thread/INFO]: majjusiaa1337 issued server command: /spawn
[23:52:10] [Server thread/INFO]: BigPapaFilipsh33 issued server command: /kits gracz
[23:52:12] [Server thread/INFO]: majjusiaa1337 issued server command: /spawn
[23:52:14] [Server thread/INFO]: majjusiaa1337 issued server command: /spawn
[23:52:18] [Server thread/INFO]: majjusiaa1337 issued server command: /spawn
[23:52:19] [Server thread/INFO]: JunkCreature924 issued server command: /kits gracz
[23:52:33] [Server thread/INFO]: JunkCreature924 issued server command: /lobby
[23:52:33] [Server thread/INFO]: JunkCreature924 [6d2bdf47-fcb9-4bd7-ba0c-f9577a9b1b97]: /lobby
[23:52:34] [Server thread/INFO]: JunkCreature924 lost connection: Disconnected
[23:52:34] [Server thread/INFO]: -JunkCreature924
[23:53:09] [User Authenticator #34/INFO]: UUID of player JunkCreature924 is 6d2bdf47-fcb9-4bd7-ba0c-f9577a9b1b97
[23:53:10] [Server thread/INFO]: [goxy] Player JunkCreature924 joins with id 6d2bdf47-fcb9-4bd7-ba0c-f9577a9b1b97 (85769b65-e04c-423b-b1a9-57606cd5a6b2) and premium: true
[23:53:10] [Server thread/INFO]: [Polar] Pledge patched
[23:53:10] [Server thread/INFO]: JunkCreature924[/89.64.115.22:35437] logged in with entity id 12578 at ([world]489.5204395324996, 37.0, -194.22835663604934)
[23:53:10] [Server thread/INFO]: +JunkCreature924
[23:53:15] [Server thread/INFO]: BigPapaFilipsh33 lost connection: Disconnected
[23:53:15] [Server thread/INFO]: -BigPapaFilipsh33
[23:53:26] [Server thread/INFO]: JunkCreature924 lost connection: Disconnected
[23:53:26] [Server thread/INFO]: -JunkCreature924
[23:53:59] [Server thread/INFO]: majjusiaa1337 issued server command: /warp pvp
[23:54:29] [Server thread/INFO]: majjusiaa1337 issued server command: /spawn
[23:54:53] [Server thread/INFO]: majjusiaa1337 issued server command: /warp pvp
[23:55:03] [Async Chat Thread - #22/INFO]:  1060 Gracz majjusiaa1337 » Maja1221PL a ty nie masz bani?
[23:55:20] [Async Chat Thread - #23/INFO]:  1060 Gracz majjusiaa1337 » Maja1221PL a ty nie masz bani?