Paste #124937: Unnamed Server Log Paste

Date: 2024/07/24 13:13:17 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[20:52:25] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.3+9-LTS; Eclipse Adoptium Temurin-21.0.3+9) on Linux 5.10.0-31-amd64 (amd64)
[20:52:25] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21-107-master@aa36ae6 (2024-07-21T10:39:28Z) for Minecraft 1.21
[20:52:25] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[20:52:26] [ServerMain/INFO]: [FileProviderSource] The spark plugin will not be loaded as this server bundles the spark profiler.
[20:52:26] [ServerMain/INFO]: [PluginInitializerManager] Initialized 58 plugins
[20:52:26] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (1):
 - EconomyShopGUI-Premium (5.14.0)
[20:52:26] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (57):
 - Aqua (1.1.1), BackPackPlus (1.1.3), BaseRaiders (3.1.0), BeastTokens (3.14.6), BeautyQuests (1.0.4_BUILD413), BeautyQuests-Expansion (1.2.6), Bolt (1.0.579), BungeeGuard (1.4.4), CMI (**.**.**.**), CMIEInjector (**.**.**.**), CMILib (**.**.**.**), Chunky (1.3.136), Citizens (2.0.35-SNAPSHOT (build 3484)), CommandDefender (2.1.7 b35), DailyRewardsPlus (1.3.8), DecentHolograms (2.8.9), DeluxeMenus (1.14.1-DEV-182), Denizen (1.3.1-SNAPSHOT (build 7057-DEV)), EcoJobs (3.67.0), ExcellentCrates (**.**.**.**), ExecutableItems (**.**.**.**), FilteredHoppers (1.10.0), GrimAC (2.3.66), HamsterAPI (0.2.4), HeadDatabase (4.19.8), LagFixer (1.3.25 (build 89)), LevelledMobs (4.1.0 b45), LuckPerms (5.4.137), MineBlocks (2.1.4), Multiverse-Core (4.3.12), Multiverse-NetherPortals (4.2.3-SNAPSHOT-b808), NexEngine (2.2.12), Oraxen (1.178.0), Orebfuscator (5.5.0-b322), PinataParty (2.67.0), PlaceholderAPI (2.11.7-DEV-200), ProtocolLib (5.3.0-SNAPSHOT-726), SCore (**.**.**.**), ServerTutorialPlus (1.25.2), SpawnerMeta (24.4), TAB (5.0.0-SNAPSHOT), TempFly (3.1.7), Vault (1.7.3-CMI), ViaBackwards (5.0.2-SNAPSHOT), ViaRewind (4.0.2-SNAPSHOT), ViaVersion (5.0.2-SNAPSHOT), Votifier (2.7.3), VotingPlugin (6.17), Vouchers (3.23.0), WorldEdit (7.3.5-SNAPSHOT+6863-9fae677), WorldGuard (7.0.11-SNAPSHOT+2283-fa357f4), ajLeaderboards (2.8.0), eco (6.73.0), nLogin (10.3.28), nightcore (2.6.2), zAuctionHouseV3 (**.**.**.**), zMenu (**.**.**.**)
[20:52:28] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[20:52:29] [ServerMain/INFO]: Loaded 1290 recipes
[20:52:29] [ServerMain/INFO]: Loaded 1399 advancements
[20:52:29] [Server thread/INFO]: Starting minecraft server version 1.21
[20:52:29] [Server thread/INFO]: Loading properties
[20:52:29] [Server thread/INFO]: This server is running Paper version 1.21-107-master@aa36ae6 (2024-07-21T10:39:28Z) (Implementing API version 1.21-R0.1-SNAPSHOT)
[20:52:30] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[20:52:30] [Server thread/INFO]: Server Ping Player Sample Count: 12
[20:52:30] [Server thread/INFO]: Using 4 threads for Netty based IO
[20:52:30] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend migrating to the spark profiler.
    For more information please visit: https://github.com/PaperMC/Paper/discussions/10565
[20:52:30] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and population gen parallelism of 1 threads
[20:52:30] [Server thread/INFO]: Default game type: SURVIVAL
[20:52:30] [Server thread/INFO]: Generating keypair
[20:52:30] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25566
[20:52:30] [Server thread/INFO]: Using epoll channel type
[20:52:30] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[20:52:30] [Server thread/INFO]: Paper: Using OpenSSL 3.0.x (Linux x86_64) cipher from Velocity.
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loading 10 libraries... please wait
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/org/springframework/spring-expression/6.0.6/spring-expression-6.0.6.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/org/springframework/spring-core/6.0.6/spring-core-6.0.6.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/org/springframework/spring-jcl/6.0.6/spring-jcl-6.0.6.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/org/apache/httpcomponents/httpmime/4.5.13/httpmime-4.5.13.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/commons-codec/commons-codec/1.11/commons-codec-1.11.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/org/joml/joml/1.10.5/joml-1.10.5.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/adventure-text-minimessage/4.17.0/adventure-text-minimessage-4.17.0.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/adventure-key/4.17.0/adventure-key-4.17.0.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/adventure-text-serializer-plain/4.17.0/adventure-text-serializer-plain-4.17.0.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/adventure-text-serializer-ansi/4.17.0/adventure-text-serializer-ansi-4.17.0.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/ansi/1.0.3/ansi-1.0.3.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/adventure-platform-bukkit/4.3.3/adventure-platform-bukkit-4.3.3.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/adventure-platform-api/4.3.3/adventure-platform-api-4.3.3.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.3/adventure-text-serializer-bungeecord-4.3.3.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/adventure-platform-facet/4.3.3/adventure-platform-facet-4.3.3.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/net/kyori/adventure-platform-viaversion/4.3.3/adventure-platform-viaversion-4.3.3.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/org/apache/commons/commons-lang3/3.14.0/commons-lang3-3.14.0.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/********/libraries/gs/mclo/java/2.2.1/java-2.2.1.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loading 2 libraries... please wait
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/********/libraries/org/mongodb/mongodb-driver-sync/4.8.1/mongodb-driver-sync-4.8.1.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/********/libraries/org/mongodb/bson/4.8.1/bson-4.8.1.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/********/libraries/org/mongodb/mongodb-driver-core/4.8.1/mongodb-driver-core-4.8.1.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/********/libraries/org/mongodb/bson-record-codec/4.8.1/bson-record-codec-4.8.1.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/********/libraries/redis/clients/jedis/4.3.1/jedis-4.3.1.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/********/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/********/libraries/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/********/libraries/org/json/json/20220320/json-20220320.jar
[20:52:31] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/********/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[20:52:32] [Server thread/INFO]: [eco] Initializing eco
[20:52:32] [Server thread/INFO]: [com.willfp.eco.libs.hikari.HikariDataSource] HikariPool-1 - Starting...
[20:52:33] [Server thread/INFO]: [com.willfp.eco.libs.hikari.pool.HikariPool] HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@28843d47
[20:52:33] [Server thread/INFO]: [com.willfp.eco.libs.hikari.HikariDataSource] HikariPool-1 - Start completed.
[20:52:34] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loading 2 libraries... please wait
[20:52:34] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/********/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[20:52:34] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/********/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[20:52:34] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/********/libraries/it/unimi/dsi/fastutil-core/8.5.13/fastutil-core-8.5.13.jar
[20:52:34] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loading 1 libraries... please wait
[20:52:34] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/********/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[20:52:34] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/********/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[20:52:34] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/********/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[20:52:34] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/********/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[20:52:34] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/********/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[20:52:34] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/********/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[20:52:35] [Server thread/INFO]: [SpigotLibraryLoader] [Vouchers] Loading 1 libraries... please wait
[20:52:35] [Server thread/INFO]: [SpigotLibraryLoader] [Vouchers] Loaded library /home/********/libraries/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar
[20:52:35] [Server thread/INFO]: [EcoJobs] Initializing EcoJobs
[20:52:36] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loading 2 libraries... please wait
[20:52:36] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/********/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[20:52:36] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/********/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[20:52:36] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/********/libraries/it/unimi/dsi/fastutil/8.5.11/fastutil-8.5.11.jar
[20:52:37] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.0.2-SNAPSHOT
[20:52:37] [Server thread/INFO]: [ViaVersion] ViaVersion 5.0.2-SNAPSHOT is now loaded. Registering protocol transformers and injecting...
[20:52:37] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[20:52:37] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[20:52:38] [Server thread/INFO]: [ViaBackwards] Loading translations...
[20:52:38] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[20:52:39] [Server thread/INFO]: [ViaRewind] Registering protocols...
[20:52:39] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.137
[20:52:39] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-CMI
[20:52:39] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.7-DEV-200
[20:52:39] [Server thread/INFO]: [WorldEdit] Loading server plugin WorldEdit v7.3.5-SNAPSHOT+6863-9fae677
[20:52:40] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@1c99c10d]
[20:52:40] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.3.0-SNAPSHOT-726
[20:52:40] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.21.0) has not yet been tested! Proceed with caution.
[20:52:40] [Server thread/INFO]: [HeadDatabase] Loading server plugin HeadDatabase v4.19.8
[20:52:40] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.11-SNAPSHOT+2283-fa357f4
[20:52:40] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.12
[20:52:40] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.9
[20:52:40] [Server thread/INFO]: [SCore] Loading server plugin SCore v5.24.7.18
[20:52:40] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.0.2-SNAPSHOT
[20:52:40] [Server thread/INFO]: [ExecutableItems] Loading server plugin ExecutableItems v7.24.7.18
[20:52:40] [Server thread/INFO]: [Oraxen] Loading server plugin Oraxen v1.178.0
[20:52:40] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.35-SNAPSHOT (build 3484)
[20:52:40] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.1-DEV-182
[20:52:40] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[20:52:40] [Server thread/INFO]: [Denizen] Loading server plugin Denizen v1.3.1-SNAPSHOT (build 7057-DEV)
[20:52:40] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.5.0.9
[20:52:40] [Server thread/INFO]: [eco] Loading server plugin eco v6.73.0
[20:52:40] [Server thread/INFO]: [CMI] Loading server plugin CMI v9.7.4.7
[20:52:40] [Server thread/INFO]: [LevelledMobs] Loading server plugin LevelledMobs v4.1.0 b45
[20:52:40] [Server thread/INFO]: [LevelledMobs] Loading commands
[20:52:41] [Server thread/INFO]: [nightcore] Loading server plugin nightcore v2.6.2
[20:52:41] [Server thread/INFO]: [BeautyQuests] Loading server plugin BeautyQuests v1.0.4_BUILD413
[20:52:41] [Server thread/INFO]: [Votifier] Loading server plugin Votifier v2.7.3
[20:52:41] [Server thread/INFO]: [ViaRewind] Loading server plugin ViaRewind v4.0.2-SNAPSHOT
[20:52:41] [Server thread/INFO]: [BeastTokens] Loading server plugin BeastTokens v3.14.6
[20:52:41] [Server thread/INFO]: [zMenu] Loading server plugin zMenu v1.0.3.3
[20:52:41] [Server thread/INFO]: [FilteredHoppers] Loading server plugin FilteredHoppers v1.10.0
[20:52:41] [Server thread/INFO]: [⚡] Loading server plugin LagFixer v1.3.25 (build 89)
[20:52:41] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v5.2.3.1
[20:52:41] [Server thread/INFO]: [HamsterAPI] Loading server plugin HamsterAPI v0.2.4
[20:52:41] [Server thread/INFO]: [Multiverse-NetherPortals] Loading server plugin Multiverse-NetherPortals v4.2.3-SNAPSHOT-b808
[20:52:41] [Server thread/INFO]: [Orebfuscator] Loading server plugin Orebfuscator v5.5.0-b322
[20:52:41] [Server thread/INFO]: [CommandDefender] Loading server plugin CommandDefender v2.1.7 b35
[20:52:41] [Server thread/INFO]: [Bolt] Loading server plugin Bolt v1.0.579
[20:52:41] [Server thread/INFO]: [BeautyQuests Expansion] Loading server plugin BeautyQuests-Expansion v1.2.6
[20:52:41] [Server thread/INFO]: [VotingPlugin] Loading server plugin VotingPlugin v6.17
[20:52:41] [Server thread/INFO]: [TempFly] Loading server plugin TempFly v3.1.7
[20:52:41] [Server thread/INFO]: [GrimAC] Loading server plugin GrimAC v2.3.66
[20:52:41] [Server thread/INFO]: [GrimAC] Loading PacketEvents...
[20:52:43] [Server thread/INFO]: [SpawnerMeta] Loading server plugin SpawnerMeta v24.4
[20:52:43] [Server thread/INFO]: [nLogin] Loading server plugin nLogin v10.3.28
[20:52:43] [Server thread/INFO]: [Aqua] Loading server plugin Aqua v1.1.1
[20:52:43] [Server thread/INFO]: [MineBlocks] Loading server plugin MineBlocks v2.1.4
[20:52:43] [Server thread/INFO]: [zAuctionHouseV3] Loading server plugin zAuctionHouseV3 v3.2.2.0
[20:52:43] [Server thread/INFO]: [BungeeGuard] Loading server plugin BungeeGuard v1.4.4
[20:52:43] [Server thread/INFO]: [Vouchers] Loading server plugin Vouchers v3.23.0
[20:52:43] [Server thread/INFO]: [EcoJobs] Loading server plugin EcoJobs v3.67.0
[20:52:43] [Server thread/INFO]: [libreforge] Initializing libreforge
[20:52:43] [Server thread/INFO]: [libreforge] Loading server plugin libreforge v4.69.0
[20:52:43] [Server thread/INFO]: [BackPackPlus] Loading server plugin BackPackPlus v1.1.3
[20:52:43] [Server thread/INFO]: [NexEngine] Loading server plugin NexEngine v2.2.12
[20:52:43] [Server thread/INFO]: [CMIEInjector] Loading server plugin CMIEInjector v1.0.2.4
[20:52:43] [Server thread/INFO]: [EconomyShopGUI-Premium] Loading server plugin EconomyShopGUI-Premium v5.14.0
[20:52:43] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.8.0
[20:52:43] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[20:52:43] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[20:52:43] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[20:52:43] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[20:52:43] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[20:52:43] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[20:52:43] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[20:52:43] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[20:52:43] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[20:52:43] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[20:52:43] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[20:52:43] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[20:52:43] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[20:52:43] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[20:52:43] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[20:52:43] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[20:52:43] [Server thread/INFO]: [Server Tutorial Plus] Loading server plugin ServerTutorialPlus v1.25.2
[20:52:43] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.0.0-SNAPSHOT
[20:52:43] [Server thread/INFO]: [BaseRaiders] Loading server plugin BaseRaiders v3.1.0
[20:52:43] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.3.136
[20:52:43] [Server thread/INFO]: [PinataParty] Loading server plugin PinataParty v2.67.0
[20:52:43] [Server thread/INFO]: [DailyRewardsPlus] Loading server plugin DailyRewardsPlus v1.3.8
[20:52:43] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[20:52:43] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.137
[20:52:44] [Server thread/INFO]:         __    
[20:52:44] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.137
[20:52:44] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[20:52:44] [Server thread/INFO]: 
[20:52:44] [Server thread/INFO]: [LuckPerms] Loading configuration...
[20:52:44] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MARIADB]
[20:52:44] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[20:52:44] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[20:52:45] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[20:52:45] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[20:52:45] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[20:52:45] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1871ms)
[20:52:45] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-CMI
[20:52:45] [Server thread/INFO]: [Vault] [Economy] CMI Economy found: Waiting
[20:52:45] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[20:52:46] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-CMI
[20:52:46] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[20:52:46] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.3.5-SNAPSHOT+6863-9fae677
[20:52:46] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[20:52:46] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[20:52:46] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_21.PaperweightAdapter as the Bukkit adapter
[20:52:47] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.3.0-SNAPSHOT-726
[20:52:47] [Server thread/INFO]: [eco] Enabling eco v6.73.0
[20:52:47] [Server thread/INFO]: [eco] Loading eco
[20:52:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: eco [6.73.0]
[20:52:47] [Server thread/INFO]: [eco] Loaded integrations: Oraxen, ExecutableItems, Denizen, EconomyShopGUI-Premium, HeadDatabase, DecentHolograms, Vault, CMI, PlaceholderAPI, WorldGuard
[20:52:47] [Server thread/INFO]: [eco] Scanning for conflicts...
[20:52:47] [Server thread/INFO]: [eco] No conflicts found!
[20:52:47] [Server thread/INFO]: [nightcore] Enabling nightcore v2.6.2
[20:52:47] [Server thread/INFO]: [nightcore] Found permissions provider: LuckPerms
[20:52:47] [Server thread/INFO]: [nightcore] Found economy provider: CMIEconomy
[20:52:47] [Server thread/INFO]: [nightcore] Found chat provider: LuckPerms
[20:52:47] [Server thread/INFO]: [nightcore] Server Version: 1.21 ✔
[20:52:47] [Server thread/INFO]: [nightcore] Entity Id Counter: OK ✔
[20:52:47] [Server thread/INFO]: [nightcore] Item NBT Compress: OK ✔
[20:52:47] [Server thread/INFO]: [nightcore] Plugin loaded in 119 ms!
[20:52:47] [Server thread/INFO]: [ViaRewind] Enabling ViaRewind v4.0.2-SNAPSHOT
[20:52:47] [Server thread/INFO]: [nLogin] Enabling nLogin v10.3.28
[20:52:47] [Server thread/INFO]: [nLogin] Successful plugin core start (took 0.46s)
[20:52:47] [Server thread/INFO]:           __             _       
[20:52:47] [Server thread/INFO]:   _ __   / /  ___   __ _(_)_ __  
[20:52:47] [Server thread/INFO]:  | '_ \ / /  / _ \ / _` | | '_ \ 
[20:52:47] [Server thread/INFO]:  | | | / /__| (_) | (_| | | | | |
[20:52:47] [Server thread/INFO]:  |_| |_\____/\___/ \__, |_|_| |_|
[20:52:47] [Server thread/INFO]:                   |___/            
[20:52:47] [Server thread/INFO]:  By: www.nickuc.com - V 10.3.28
[20:52:47] [Server thread/INFO]:  
[20:52:48] [Server thread/INFO]: [BungeeGuard] Enabling BungeeGuard v1.4.4
[20:52:48] [Server thread/INFO]: [BungeeGuard] Using Paper's PlayerHandshakeEvent to listen for connections.
[20:52:48] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.12
[20:52:48] [Server thread/INFO]: [NexEngine] Seems like we have Paper based fork here...
[20:52:48] [Server thread/WARN]: [NexEngine] ==================================
[20:52:48] [Server thread/WARN]: [NexEngine] WARNING: You're running an outdated/deprecated server version (Unknown)!
[20:52:48] [Server thread/WARN]: [NexEngine] Support for this version will be dropped soon.
[20:52:48] [Server thread/WARN]: [NexEngine] Please, upgrade your server to at least 1.18.2.
[20:52:48] [Server thread/WARN]: [NexEngine] ==================================
[20:52:48] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[20:52:48] [Server thread/INFO]: [NexEngine] Successfully hooked with CMIEconomy economy
[20:52:48] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[20:52:48] [Server thread/INFO]: [NexEngine] Plugin loaded in 61 ms!
[20:52:48] [Server thread/INFO]: [CMIEInjector] Enabling CMIEInjector v1.0.2.4
[20:52:48] [Server thread/INFO]: [CMIEInjector] Injecting CMI Economy
[20:52:48] [Server thread/INFO]: [NexEngine] Successfully hooked with CMIEconomy economy
[20:52:48] [Server thread/INFO]: [CMIEInjector] [Economy] CMI Economy found: Waiting
[20:52:48] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[20:52:48] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[20:52:48] [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.
[20:52:48] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[20:52:48] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[20:52:48] [Server thread/INFO]: Preparing level "world"
[20:52:48] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[20:52:48] [Server thread/INFO]: Time elapsed: 25 ms
[20:52:48] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[20:52:48] [Server thread/INFO]: Time elapsed: 389 ms
[20:52:48] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[20:52:48] [Server thread/INFO]: Time elapsed: 49 ms
[20:52:48] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.0.2-SNAPSHOT
[20:52:48] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21 (767)
[20:52:49] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.7-DEV-200
[20:52:49] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[20:52:49] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.19.8
[20:52:49] [Server thread/INFO]: [HeadDatabase] Používáte "cs_CZ.lang" přeloženo od Davideko
[20:52:49] [Server thread/ERROR]: [HeadDatabase] Failed to initialize head reflection, are you using a supported server version?
[20:52:49] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[20:52:49] [Server thread/WARN]: [HeadDatabase] Economy was not loaded, some features will be disabled!
[20:52:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: hdb [4.19.8]
[20:52:49] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.11-SNAPSHOT+2283-fa357f4
[20:52:50] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[20:52:50] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[20:52:50] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[20:52:50] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[20:52:50] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[20:52:50] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[20:52:50] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[20:52:50] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[20:52:50] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[20:52:50] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[20:52:50] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[20:52:50] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[20:52:50] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[20:52:50] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[20:52:50] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[20:52:50] [Server thread/INFO]: [WorldGuard] Loading region data...
[20:52:50] [Folia Async Scheduler Thread #3/INFO]: [HeadDatabase] Successfully loaded 77788 heads!
[20:52:50] [Folia Async Scheduler Thread #3/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[20:52:50] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.12
[20:52:50] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.12" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[20:52:50] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[20:52:50] [Server thread/INFO]: Preparing start region for dimension minecraft:survival
[20:52:50] [Server thread/INFO]: Time elapsed: 142 ms
[20:52:50] [Server thread/INFO]: [WorldGuard] (survival) TNT ignition is PERMITTED.
[20:52:50] [Server thread/INFO]: [WorldGuard] (survival) Lighters are PERMITTED.
[20:52:50] [Server thread/INFO]: [WorldGuard] (survival) Lava fire is PERMITTED.
[20:52:50] [Server thread/INFO]: [WorldGuard] (survival) Fire spread is UNRESTRICTED.
[20:52:50] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'survival'
[20:52:50] [Server thread/INFO]: Preparing start region for dimension minecraft:stavba
[20:52:50] [Server thread/INFO]: Time elapsed: 68 ms
[20:52:50] [Server thread/INFO]: [WorldGuard] (Stavba) TNT ignition is PERMITTED.
[20:52:50] [Server thread/INFO]: [WorldGuard] (Stavba) Lighters are PERMITTED.
[20:52:50] [Server thread/INFO]: [WorldGuard] (Stavba) Lava fire is PERMITTED.
[20:52:50] [Server thread/INFO]: [WorldGuard] (Stavba) Fire spread is UNRESTRICTED.
[20:52:50] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Stavba'
[20:52:50] [Server thread/INFO]: [Multiverse-Core] 5 - World(s) loaded.
[20:52:50] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[20:52:50] [Server thread/INFO]: [Multiverse-Core] Version 4.3.12 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[20:52:50] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.9
[20:52:51] [Server thread/INFO]: [SCore] Enabling SCore v5.24.7.18
[20:52:51] [Server thread/INFO]: ================ SCore ================
[20:52:51] [Server thread/INFO]: SCore is running on Folia
[20:52:51] [Server thread/INFO]: SCore is running on Paper or fork
[20:52:51] [Server thread/INFO]: SCore Version of the server 1.21-107-aa36ae6 (MC: 1.21) !
[20:52:51] [Server thread/INFO]: SCore ExecutableItems hooked !  (**.**.**.**) Load After
[20:52:51] [Server thread/INFO]: SCore PlaceholderAPI hooked !  (2.11.7-DEV-200)  Load Before
[20:52:51] [Server thread/INFO]: SCore WorldGuard hooked !  (7.0.11-SNAPSHOT+2283-fa357f4)  Load Before
[20:52:51] [Server thread/INFO]: SCore Vault hooked !  (1.7.3-CMI)  Load Before
[20:52:51] [Server thread/INFO]: SCore Multiverse-Core hooked !  (4.3.12)  Load Before
[20:52:51] [Server thread/INFO]: SCore ProtocolLib hooked !
[20:52:51] [Server thread/INFO]: SCore Locale setup: EN
[20:52:51] [Server thread/INFO]: SCore HeadDatabase hooked !  (4.19.8)  Load Before
[20:52:51] [Server thread/INFO]: SCore DecentHolograms hooked !  (2.8.9)  Load Before
[20:52:51] [Server thread/INFO]: SCore CMI hooked !  (**.**.**.**) Load After
[20:52:51] [Server thread/INFO]: SCore Oraxen hooked !  (1.178.0) Load After
[20:52:51] [Server thread/INFO]: SCore TAB hooked !  (5.0.0-SNAPSHOT) Load After
[20:52:51] [Server thread/INFO]: SCore WorldEdit hooked !  (7.3.5-SNAPSHOT+6863-9fae677)  Load Before
[20:52:51] [Server thread/INFO]: SCore Language of the editor setup on EN
[20:52:51] [Server thread/INFO]: SCore Language for in-game messages setup on EN
[20:52:51] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[20:52:51] [Server thread/INFO]: SCore Connection to the db...
[20:52:51] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[20:52:51] [Server thread/INFO]: SCore Creating table SecurityOP if not exists...
[20:52:51] [Server thread/INFO]: SCore Creating table Commands if not exists...
[20:52:51] [Server thread/INFO]: SCore Creating table Cooldowns if not exists...
[20:52:51] [Server thread/INFO]: SCore Creating table Commands Player if not exists...
[20:52:51] [Server thread/INFO]: SCore Creating table Commands Entity if not exists...
[20:52:51] [Server thread/INFO]: SCore Creating table Commands Block if not exists...
[20:52:51] [Server thread/INFO]: SCore Creating table UsePerDay if not exists...
[20:52:51] [Server thread/INFO]: SCore SCore loaded 1 variables from local files !
[20:52:51] [Server thread/INFO]: SCore SCore loaded 0 delayed commands saved
[20:52:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: SCore [1.0.0]
[20:52:51] [Server thread/INFO]: ================ SCore ================
[20:52:51] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.0.2-SNAPSHOT
[20:52:51] [Server thread/INFO]: [ExecutableItems] Enabling ExecutableItems v7.24.7.18
[20:52:51] [Server thread/INFO]: ========*======== ExecutableItems ========*========
[20:52:51] [Server thread/ERROR]: [ExecutableItems] Invalid world: myWorld in the option disableItemsPerWorld
[20:52:51] [Server thread/ERROR]: [ExecutableItems] Invalid world: myWorld2 in the option disableItemsPerWorld
[20:52:52] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the Enchantment value of enchantment from config, value: SWEEPING (Item: basic_sword) >> Enchantments available: Look in-game, it's the same name
[20:52:52] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the Enchantment value of enchantment from config, value: SWEEPING (Item: medium_sword) >> Enchantments available: Look in-game, it's the same name
[20:52:52] [Server thread/INFO]: ExecutableItems Amount of Executable Items configurations loaded: 81
[20:52:52] [Server thread/INFO]: ExecutableItems Items with display conditions :  
[20:52:52] [Server thread/INFO]: ========*======== ExecutableItems ========*========
[20:52:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ExecutableItems [1.0.0]
[20:52:52] [Server thread/INFO]: [Oraxen] Enabling Oraxen v1.178.0
[20:52:53] [Server thread/INFO]: Oraxen | Version v1_21_R1 has been detected.
[20:52:53] [Server thread/INFO]: Oraxen | Oraxen will use the NMSHandler for this version.
[20:52:53] [Server thread/INFO]: Oraxen | emerald_helmet is using deprecated Durability-Mechanic...
[20:52:53] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[20:52:53] [Server thread/INFO]: Oraxen | emerald_chestplate is using deprecated Durability-Mechanic...
[20:52:53] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[20:52:53] [Server thread/INFO]: Oraxen | emerald_leggings is using deprecated Durability-Mechanic...
[20:52:53] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[20:52:53] [Server thread/INFO]: Oraxen | emerald_boots is using deprecated Durability-Mechanic...
[20:52:53] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[20:52:53] [Server thread/INFO]: Oraxen | obsidian_helmet is using deprecated Durability-Mechanic...
[20:52:53] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[20:52:53] [Server thread/INFO]: Oraxen | obsidian_chestplate is using deprecated Durability-Mechanic...
[20:52:53] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[20:52:53] [Server thread/INFO]: Oraxen | obsidian_leggings is using deprecated Durability-Mechanic...
[20:52:53] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[20:52:53] [Server thread/INFO]: Oraxen | obsidian_boots is using deprecated Durability-Mechanic...
[20:52:53] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[20:52:53] [Server thread/INFO]: Oraxen | ruby_helmet is using deprecated Durability-Mechanic...
[20:52:53] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[20:52:53] [Server thread/INFO]: Oraxen | ruby_chestplate is using deprecated Durability-Mechanic...
[20:52:53] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[20:52:53] [Server thread/INFO]: Oraxen | ruby_leggings is using deprecated Durability-Mechanic...
[20:52:53] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[20:52:53] [Server thread/INFO]: Oraxen | ruby_boots is using deprecated Durability-Mechanic...
[20:52:53] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[20:52:53] [Server thread/INFO]: Oraxen | example_sword is using deprecated Durability-Mechanic...
[20:52:53] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[20:52:53] [Server thread/INFO]: Oraxen | legendary_hammer is using deprecated Durability-Mechanic...
[20:52:53] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[20:52:53] [Server thread/INFO]: Oraxen | obsidian_pickaxe is using deprecated Durability-Mechanic...
[20:52:53] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[20:52:53] [Server thread/INFO]: Oraxen | bedrock_pickaxe is using deprecated Durability-Mechanic...
[20:52:53] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[20:52:53] [Server thread/INFO]: Oraxen | onyx_hammer is using deprecated Durability-Mechanic...
[20:52:53] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[20:52:53] [Server thread/INFO]: Oraxen | orax_hammer is using deprecated Durability-Mechanic...
[20:52:53] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[20:52:53] [Server thread/INFO]: Oraxen | fire_hammer is using deprecated Durability-Mechanic...
[20:52:53] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[20:52:53] [Server thread/INFO]: Oraxen | glass_sword is using deprecated Durability-Mechanic...
[20:52:53] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[20:52:53] [Server thread/INFO]: Oraxen | obsidian_sword is using deprecated Durability-Mechanic...
[20:52:53] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[20:52:53] [Server thread/INFO]: Oraxen | blood_sword is using deprecated Durability-Mechanic...
[20:52:53] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[20:52:53] [Server thread/INFO]: Oraxen | octavia_sword is using deprecated Durability-Mechanic...
[20:52:53] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[20:52:53] [Server thread/INFO]: Oraxen | dagger is using deprecated Durability-Mechanic...
[20:52:53] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[20:52:53] [Server thread/INFO]: Oraxen | katana is using deprecated Durability-Mechanic...
[20:52:53] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[20:52:53] [Server thread/INFO]: Oraxen | Slicing gui-textures to 1.20.2-format...
[20:52:53] [Server thread/INFO]: Oraxen | Successfully sliced gui-textures for 1.20.2
[20:52:53] [Server thread/INFO]: Oraxen | Žádný item s názvem leggings nenalezen. Nelze použít armor_layer_2.png
[20:52:53] [Server thread/INFO]: Oraxen | Žádný item s názvem boots nenalezen. Nelze použít armor_layer_2.png
[20:52:53] [Server thread/INFO]: Oraxen | Žádný item s názvem helmet nenalezen. Nelze použít armor_layer_1.png
[20:52:53] [Server thread/INFO]: Oraxen | Žádný item s názvem chestplate nenalezen. Nelze použít armor_layer_1.png
[20:52:53] [Server thread/INFO]: Oraxen | Converting global lang file to individual language files...
[20:52:54] [Server thread/INFO]: Oraxen | Verifying formatting for textures and models...
[20:52:54] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[20:52:54] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[20:52:54] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[20:52:54] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[20:52:54] [Server thread/INFO]: Oraxen | Pack contains malformed texture(s) and/or model(s)
[20:52:54] [Server thread/INFO]: Oraxen | These need to be fixed, otherwise the resourcepack will be broken

[20:52:54] [Server thread/INFO]: Oraxen | Generating atlas-file for 1.19.3+ Resource Pack format
[20:52:54] [Server thread/INFO]: Oraxen | Attempting to exclude malformed textures from atlas-file
[20:52:54] [Server thread/INFO]: 
[20:52:54] [Server thread/INFO]: Oraxen | No duplicate font files found!
[20:52:54] [Server thread/INFO]: 
[20:52:54] [Server thread/INFO]: Oraxen | Úspěšně načten na Ubuntu 22.04.4 LTS (jammy)
[20:52:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: oraxen [1.178.0]
[20:52:54] [Server thread/INFO]: Oraxen | Plugin "PlaceholderAPI" detekován, zapínám hooky
[20:52:54] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.35-SNAPSHOT (build 3484)
[20:52:54] [Server thread/INFO]: [Citizens] Loading external libraries
[20:52:54] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[20:52:54] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[20:52:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[20:52:54] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[20:52:54] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.1-DEV-182
[20:52:54] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[20:52:55] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[20:52:55] [Server thread/INFO]: [DeluxeMenus] 5 GUI menus loaded!
[20:52:55] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[20:52:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.1-DEV-182]
[20:52:55] [Server thread/INFO]: [Denizen] Enabling Denizen v1.3.1-SNAPSHOT (build 7057-DEV)
[20:52:55] [Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.91.0-SNAPSHOT (Build 1384), impl for Spigot v1.3.1-SNAPSHOT (build 7057-DEV) 
[20:52:56] [Server thread/INFO]: +> [Denizen] Running on java version: 21.0.3 
[20:52:56] [Server thread/INFO]: +> [Denizen] Running on fully supported Java 21. 
[20:52:56] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[20:52:56] [Server thread/INFO]: +> [Denizen]  Denizen  scriptable minecraft 
[20:52:56] [Server thread/INFO]: +> [Denizen]  
[20:52:56] [Server thread/INFO]: +> [Denizen] by: The DenizenScript team 
[20:52:56] [Server thread/INFO]: +> [Denizen] Chat with us at: https://discord.gg/Q6pZGSR 
[20:52:56] [Server thread/INFO]: +> [Denizen] Or learn more at: https://denizenscript.com 
[20:52:56] [Server thread/INFO]: +> [Denizen] version: 1.3.1-SNAPSHOT (build 7057-DEV) 
[20:52:56] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[20:52:57] [Server thread/INFO]: +> [TriggerRegistry] Loaded 4 core triggers 
[20:52:58] [Server thread/INFO]: +> [PaperModule] Loading Paper support module... 
[20:52:58] [Server thread/INFO]: +> [Denizen] Loaded 153 core commands and 30 core object types, at 2840ms from start. 
[20:52:58] [Server thread/INFO]: +> [ScriptRegistry] Loading 1 script files... 
[20:52:58] [Server thread/INFO]: +> [DenizenCore] Scripts loaded! File load took 3ms, processing 10ms. 
[20:52:58] [Server thread/INFO]: +> [Denizen] Final full init took 2882ms. 
[20:52:58] [Server thread/INFO]: [CMILib] Enabling CMILib v1.5.0.9
[20:52:58] [Server thread/INFO]: Server version: v1_21_R1 - 1.21.0 - paper  1.21-107-aa36ae6 (MC: 1.21)
[20:52:59] [Server thread/INFO]: CMI hooked.
[20:52:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [**.**.**.**]
[20:52:59] [Server thread/INFO]: PlaceholderAPI hooked.
[20:52:59] [Server thread/INFO]: Updated (EN) language file. Took 32ms
[20:52:59] [Server thread/INFO]: Updated (CZ) language file. Took 8ms
[20:52:59] [Server thread/INFO]: [CMI] Enabling CMI v9.7.4.7
[20:52:59] [Server thread/INFO]: _______________________________________________________
[20:52:59] [Server thread/INFO]: ┏━━━┓ ┏━┓┏━┓ ┏━━┓
[20:52:59] [Server thread/INFO]: ┃┏━┓┃ ┃ ┗┛ ┃ ┗┫┣┛
[20:52:59] [Server thread/INFO]: ┃┃ ┗┛ ┃┏┓┏┓┃  ┃┃ 
[20:52:59] [Server thread/INFO]: ┃┃ ┏┓ ┃┃┃┃┃┃  ┃┃ 
[20:52:59] [Server thread/INFO]: ┃┗━┛┃ ┃┃┃┃┃┃ ┏┫┣┓
[20:52:59] [Server thread/INFO]: ┗━━━┛ ┗┛┗┛┗┛ ┗━━┛
[20:52:59] [Server thread/INFO]: _______________________________________________________
[20:52:59] [Server thread/INFO]: Integrating PaperSpigot async methods
[20:52:59] [Server thread/INFO]: Vault found. (Loaded: true)
[20:52:59] [Server thread/INFO]: Citizens found. (Loaded: true)
[20:52:59] [Server thread/INFO]: 66 Enabled and 0 Disabled modules
[20:52:59] [Server thread/INFO]: Votifier found. (Loaded: false)
[20:52:59] [Server thread/INFO]: ProtocolLib found. (Loaded: true)
[20:52:59] [Server thread/INFO]: Permission plugin: LuckPerms5.4.137
[20:53:00] [Server thread/INFO]: Initialized Cipher256 AES
[20:53:00] [Server thread/INFO]: Loaded (61) regular alias into memory. Took 38ms
[20:53:00] [Server thread/INFO]: Loaded (2) custom text's into memory. Took 6ms
[20:53:01] [Server thread/INFO]: Random teleport location is out of minimal (-323.27893829345703 -> -15000.0) world border X coordinate bounds for world world. Please update values.
[20:53:01] [Server thread/INFO]: Random teleport location is out of maximal (176.72106170654297 -> 15000.0) world border X coordinate bounds for world world. Please update values.
[20:53:01] [Server thread/INFO]: Random teleport location is out of minimal (-99.23822021484375 -> -15000.0) world border Z coordinate bounds for world world. Please update values.
[20:53:01] [Server thread/INFO]: Random teleport location is out of maximal (400.76177978515625 -> 15000.0) world border Z coordinate bounds for world world. Please update values.
[20:53:01] [Server thread/INFO]: Detected Java21
[20:53:01] [Server thread/INFO]: 5.5.5-10.5.23-MariaDB-0+deb11u1 data base type detected
[20:53:01] [Server thread/INFO]: Started MySQL data base. Took 115ms
[20:53:01] [Server thread/INFO]: Vault was found - Enabling capabilities. Economy: CMIEconomy
[20:53:01] [Server thread/INFO]: Loaded (5) warning categories into memory. Took 1ms
[20:53:01] [Server thread/INFO]: Loaded (3) warning commands into memory. Took 0ms
[20:53:01] [Server thread/INFO]: Loaded (0) cooldowns into memory. Took 0ms
[20:53:01] [Server thread/INFO]: Loaded (145) custom mob heads into memory. Took 8ms
[20:53:01] [Server thread/INFO]: Enabling BungeeCord Support
[20:53:01] [Server thread/INFO]: Loaded (4) kits into memory. Took 23ms
[20:53:01] [Server thread/INFO]: Loaded (7) ranks into memory. Took 15ms
[20:53:01] [Server thread/INFO]: Loaded (8) playtime rewards into memory. Took 1ms
[20:53:01] [Server thread/INFO]: Loaded (26) player data into memory. Took 28ms
[20:53:01] [Server thread/INFO]: Loaded (0) playtime records into memory. Took 0ms
[20:53:01] [Server thread/INFO]: Loaded (0) playtime reward records into memory. Took 0ms
[20:53:01] [Server thread/INFO]: Loaded (0) custom alias into memory. Took 1ms
[20:53:02] [Server thread/INFO]: Registered events. Took 140ms
[20:53:02] [Server thread/INFO]: Loaded (7) event action commands into memory. Took 2ms
[20:53:02] [Server thread/INFO]: Loaded (EN) language file into memory. Took 49ms
[20:53:02] [Server thread/INFO]: Loaded (CZ) language file into memory. Took 47ms
[20:53:02] [Server thread/INFO]: Loaded (245) worth values into memory. Took 21ms
[20:53:02] [Server thread/INFO]: Loaded (2) warps into memory. Took 4ms
[20:53:02] [Server thread/INFO]: VaultPermissions found. (Loaded: true)
[20:53:02] [Server thread/INFO]: PlaceholderAPI found. (Loaded: true)
[20:53:02] [Server thread/INFO]: Starting world timer.
[20:53:02] [Server thread/INFO]: Initializing world manager.
[20:53:02] [Server thread/INFO]: Loaded (4) schedules into memory. Took 6ms
[20:53:02] [Server thread/INFO]: Loaded GeoIP
[20:53:02] [Server thread/INFO]: Loaded (5) holograms into memory. Took 76ms
[20:53:02] [Server thread/INFO]: Loaded (49) skin cache entries into memory. Took 2ms
[20:53:02] [Server thread/INFO]: Loaded (1) custom recipes into memory. Took 6ms
[20:53:02] [Server thread/INFO]: Loaded (1) ArmorStand templates into memory. Took 7ms
[20:53:02] [Server thread/INFO]: Version 9.7.4.7 has been enabled
[20:53:02] [Server thread/INFO]: _______________________________________________________
[20:53:02] [Server thread/INFO]: [Vault][Economy] CMI Economy hooked.
[20:53:02] [Server thread/INFO]: [CMIEInjector][Economy] CMI Economy hooked.
[20:53:02] [Server thread/INFO]: [LevelledMobs] Enabling LevelledMobs v4.1.0 b45
[20:53:02] [Server thread/INFO]: [LevelledMobs] Enabling commands
[20:53:02] [Server thread/INFO]: [LevelledMobs] Using NMS version 1.21 for nametag support
[20:53:02] [Server thread/INFO]: [LevelledMobs] File Loader: Loading files...
[20:53:02] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'settings.yml'...
[20:53:02] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'messages.yml'...
[20:53:02] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'externalplugins.yml'...
[20:53:02] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'rules.yml'...
[20:53:02] [Server thread/INFO]: [LevelledMobs] Current rules hash: 672a84db51a2f7ad99fc499cf891df75e70a7614c363a014788783d2a5563e64
[20:53:02] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'customdrops.yml'...
[20:53:02] [Server thread/INFO]: [LevelledMobs] Listeners: Registering event listeners...
[20:53:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: LevelledMobs [4.1.0 b45]
[20:53:02] [Server thread/INFO]: [LevelledMobs] Running misc procedures
[20:53:02] [Server thread/INFO]: [LevelledMobs] Tasks: Starting async nametag auto update task...
[20:53:02] [Server thread/INFO]: [LevelledMobs] Start-up complete (took 244ms)
[20:53:02] [Server thread/INFO]: [BeautyQuests] Enabling BeautyQuests v1.0.4_BUILD413
[20:53:02] [Server thread/INFO]: [BeautyQuests] ------------ BeautyQuests ------------
[20:53:02] [Server thread/INFO]: [BeautyQuests] Loaded valid Minecraft version 1_21_R1.
[20:53:02] [Server thread/INFO]: [BeautyQuests] Loaded language en_US (0.018s)!
[20:53:02] [Server thread/INFO]: [BeautyQuests] Loaded start particles: DUST in shape POINT with color R255 G255 B0
[20:53:02] [Server thread/INFO]: [BeautyQuests] Loaded talk particles: HAPPY_VILLAGER in shape BAR
[20:53:02] [Server thread/INFO]: [BeautyQuests] Loaded next particles: SMOKE in shape SPOT
[20:53:02] [Server thread/INFO]: [fr.skytasul.quests.utils.hikari.HikariDataSource] BeautyQuests-SQL-pool - Starting...
[20:53:02] [Server thread/INFO]: [fr.skytasul.quests.utils.hikari.HikariDataSource] BeautyQuests-SQL-pool - Start completed.
[20:53:02] [Server thread/INFO]: [BeautyQuests] Connection to database etablished.
[20:53:03] [Server thread/INFO]: [BeautyQuests] Adding citizens as a npc factory
[20:53:03] [Server thread/WARN]: [BeautyQuests] BQDecentHolograms will replace BQCMI as the new holograms manager.
[20:53:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: beautyquests [1.0.4_BUILD413]
[20:53:03] [Server thread/INFO]: [BeautyQuests] Placeholders registered !
[20:53:03] [Server thread/INFO]: [WorldGuard] Registering session handler fr.skytasul.quests.integrations.worldguard.WorldGuardEntryHandler
[20:53:03] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[20:53:03] [Server thread/INFO]: [Votifier] Loaded token for website: default
[20:53:03] [Server thread/INFO]: [Votifier] Loaded token for website: Czech-Craft
[20:53:03] [Server thread/INFO]: [Votifier] Loaded token for website: MINECRAFTLISTCZ
[20:53:03] [Server thread/INFO]: [Votifier] Loaded token for website: MinecraftServery
[20:53:03] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[20:53:03] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[20:53:03] [Server thread/INFO]: [BeastTokens] Enabling BeastTokens v3.14.6
[20:53:03] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /[****:****:****:****:****:****:****:****
[20:53:04] [Server thread/INFO]: [BeastTokens] Loading library mysql-connector-j
[20:53:04] [Server thread/INFO]: [BeastTokens] Loading library mariadb-java-client
[20:53:04] [Server thread/INFO]: [BeastTokens] Loading library boosted-yaml
[20:53:04] [Server thread/INFO]: [BeastTokens] Loading library HikariCP
[20:53:04] [Server thread/INFO]: [BeastTokens] Loading library XSeries
[20:53:04] [Server thread/INFO]: [BeastTokens] Loading library gson
[20:53:04] [Server thread/INFO]: [BeastTokens] Loading library triumph-gui
[20:53:04] [Server thread/INFO]: [BeastTokens] [NBTAPI] Found Minecraft: 1.21! Trying to find NMS support
[20:53:04] [Server thread/INFO]: [BeastTokens] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[20:53:04] [Server thread/INFO]: [me.mraxetv.beasttokens.libs.hikari.HikariDataSource] Database - HikariPool - Starting...
[20:53:04] [Server thread/INFO]: [me.mraxetv.beasttokens.libs.hikari.HikariDataSource] Database - HikariPool - Start completed.
[20:53:04] [Server thread/INFO]: [Tokeny] Successfully connected to database with: com.mysql.cj.jdbc.Driver
[20:53:04] [Server thread/INFO]: Loading PlaceHolderAPI expansion!
[20:53:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: beasttokens [1.1]
[20:53:04] [Server thread/INFO]: [BeastTokens] /Token command aliases [tokens, btoken, btokens] are registered.
[20:53:04] [Server thread/INFO]: [BeastTokens] /BeastToken command aliases [beasttokenadmin, bta, beasttokensadmin, beasttokens] are registered.
[20:53:04] [Server thread/INFO]: [BeastTokens] Version 3.14.6 : has been enabled!
[20:53:04] [Server thread/INFO]: [BeastTokens] #=================#
[20:53:04] [Server thread/INFO]: [BeastTokens] # BeastTokens #
[20:53:04] [Server thread/INFO]: [BeastTokens] # Made by: [MrAxeTv] #
[20:53:04] [Server thread/INFO]: [BeastTokens] # Version: 3.14.6 #
[20:53:04] [Server thread/INFO]: [BeastTokens] #=================#
[20:53:04] [Server thread/INFO]: [zMenu] Enabling zMenu v1.0.3.3
[20:53:04] [Server thread/INFO]: [zMenu v1.0.3.3] === ENABLE START ===
[20:53:04] [Server thread/INFO]: [zMenu v1.0.3.3] Plugin Version V1.0.3.3
[20:53:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: zmenu [**.**.**.**]
[20:53:04] [Server thread/INFO]: [zMenu v1.0.3.3] plugins/zMenu/patterns/pattern_example.yml loaded successfully !
[20:53:04] [Server thread/INFO]: [zMenu v1.0.3.3] plugins/zMenu/inventories/advanced_inventory.yml loaded successfully !
[20:53:04] [Server thread/INFO]: [zMenu v1.0.3.3] plugins/zMenu/inventories/pro_inventory.yml loaded successfully !
[20:53:04] [Server thread/INFO]: [zMenu v1.0.3.3] plugins/zMenu/inventories/example_punish.yml loaded successfully !
[20:53:04] [Server thread/INFO]: [zMenu v1.0.3.3] plugins/zMenu/inventories/basic_inventory.yml loaded successfully !
[20:53:04] [Server thread/INFO]: [zMenu v1.0.3.3] plugins/zMenu/website/inventories.yml loaded successfully !
[20:53:04] [Server thread/WARN]: [zMenu] /punish (in file plugins/zMenu/commands/punish/punish.yml) command uses the old argument system. Please update your configuration ! (https://docs.zmenu.dev/configurations/commands) Your command will still work properly but it is advisable to update it.
[20:53:04] [Server thread/INFO]: [zMenu v1.0.3.3] Command /punish successfully register.
[20:53:04] [Server thread/INFO]: [zMenu v1.0.3.3] Command /basic_command successfully register.
[20:53:04] [Server thread/INFO]: [zMenu v1.0.3.3] Command /advanced_command successfully register.
[20:53:04] [Server thread/INFO]: [zMenu v1.0.3.3] Command /pro_command successfully register.
[20:53:04] [Server thread/INFO]: [zMenu v1.0.3.3] 
[20:53:04] [Server thread/INFO]: [zMenu v1.0.3.3] You can support zMenu by upgrading your account here: https://minecraft-inventory-builder.com/account-upgrade
[20:53:04] [Server thread/INFO]: [zMenu v1.0.3.3] zMenu’s site includes an inventory editor (under development), a marketplace (already available) is a forum (under development)
[20:53:04] [Server thread/INFO]: [zMenu v1.0.3.3] 
[20:53:04] [Server thread/INFO]: [zMenu v1.0.3.3] Use ComponentMeta
[20:53:04] [Server thread/INFO]: [zMenu v1.0.3.3] Loading 5 commands
[20:53:04] [Server thread/INFO]: [zMenu v1.0.3.3] === ENABLE DONE (273ms) ===
[20:53:04] [Server thread/INFO]: [FilteredHoppers] Enabling FilteredHoppers v1.10.0
[20:53:05] [Server thread/INFO]: [FilteredHoppers] Hooked into WorldGuard 7.0.11-SNAPSHOT+2283-fa357f4
[20:53:05] [Server thread/INFO]: [FilteredHoppers] [ACF] Enabled Asynchronous Tab Completion Support!
[20:53:05] [Server thread/INFO]: [FilteredHoppers] Registering custom crafting recipe
[20:53:05] [Server thread/INFO]: [⚡] Enabling LagFixer v1.3.25 (build 89)
[20:53:05] [Server thread/INFO]: [⚡] 
LagFixer - Best Performance Solution!
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
░██╗░░░░░░█████╗░░██████╗░░░███████╗██╗██╗░░██╗███████╗██████╗░░
░██║░░░░░██╔══██╗██╔════╝░░░██╔════╝██║╚██╗██╔╝██╔════╝██╔══██╗░
░██║░░░░░███████║██║░░██╗░░░█████╗░░██║░╚███╔╝░█████╗░░██████╔╝░
░██║░░░░░██╔══██║██║░░╚██╗░░██╔══╝░░██║░██╔██╗░██╔══╝░░██╔══██╗░
░███████╗██║░░██║╚██████╔╝░░██║░░░░░██║██╔╝╚██╗███████╗██║░░██║░
░╚══════╝╚═╝░░╚═╝░╚═════╝░░░╚═╝░░░░░╚═╝╚═╝░░╚═╝╚══════╝╚═╝░░╚═╝░
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
[20:53:05] [Server thread/INFO]: [⚡] (ErrorsManager) -> Enabling manager...
[20:53:05] [Server thread/INFO]: [⚡]  • Started listening for console LagFixer errors!
[20:53:05] [Server thread/INFO]: [⚡] (ErrorsManager) -> Enabled manager in 1ms!
[20:53:05] [Server thread/INFO]: [⚡] (SupportManager) -> Enabling manager...
[20:53:05] [Server thread/INFO]: [⚡]  • Loaded creatures 23 to creature container!
[20:53:05] [Server thread/INFO]: [⚡]  • Loaded items 0 to item container!
[20:53:05] [Server thread/INFO]: [⚡]  • Loaded fork support ~ xyz.lychee.lagfixer.support.Folia
[20:53:05] [Server thread/INFO]: [⚡]  • Loaded nms support ~ xyz.lychee.lagfixer.nms.v1_21_R1.SupportNms
[20:53:05] [Server thread/INFO]: [⚡] (SupportManager) -> Enabled manager in 15ms!
[20:53:05] [Server thread/INFO]: [⚡] (ConfigManager) -> Enabling manager...
[20:53:05] [Server thread/INFO]: [⚡] (ConfigManager) -> Enabled manager in 59ms!
[20:53:05] [Server thread/INFO]: [⚡] (HookManager) -> Enabling manager...
[20:53:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lagfixer [1.3.25 (build 89)]
[20:53:05] [Server thread/INFO]: [⚡]  • Sucessfully loaded hook PlaceholderAPI in 1ms!
[20:53:05] [Server thread/INFO]: [⚡] (HookManager) -> Enabled manager in 1ms!
[20:53:05] [Server thread/INFO]: [⚡] (MetricsManager) -> Enabling manager...
[20:53:05] [Server thread/INFO]: [⚡] (MetricsManager) -> Enabled manager in 2ms!
[20:53:05] [Server thread/INFO]: [⚡] (ModuleManager) -> Enabling manager...
[20:53:05] [Server thread/INFO]: [⚡]  • Sucessfully loaded module LagMonitor in 2ms.
[20:53:05] [Server thread/INFO]: [⚡]  • Sucessfully loaded module InstantLeafDecay in 0ms.
[20:53:05] [Server thread/INFO]: [⚡]  • Sucessfully loaded module WorldCleaner in 5ms.
[20:53:05] [Server thread/INFO]: [⚡]  • Sucessfully loaded module RedstoneLimiter in 2ms.
[20:53:05] [Server thread/INFO]: [⚡]  • Sucessfully loaded module EntityLimiter in 1ms.
[20:53:05] [Server thread/INFO]: [⚡]  • Sucessfully loaded module CustomVehicles in 4ms.
[20:53:05] [Server thread/INFO]: [⚡]  • Sucessfully loaded module CustomAi in 9ms.
[20:53:05] [Server thread/INFO]: [⚡] (ModuleManager) -> Enabled manager in 23ms!
[20:53:05] [Server thread/INFO]: [⚡] (CommandManager) -> Enabling manager...
[20:53:05] [Server thread/INFO]: [⚡] (CommandManager) -> Enabled manager in 23ms!
[20:53:05] [Server thread/INFO]: [⚡] Remember to leave a rating! ★ ★ ★ ★ ★
[20:53:05] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v5.2.3.1
[20:53:05] [Server thread/INFO]: [ExcellentCrates] Powered by nightcore
[20:53:05] [Server thread/INFO]: [ExcellentCrates] Read database configuration...
[20:53:06] [Server thread/INFO]: [ExcellentCrates] Using Decent Holograms hologram handler.
[20:53:06] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[20:53:06] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@42f0d909
[20:53:06] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[20:53:06] [Server thread/INFO]: [ExcellentCrates] Enabled data synchronization with 60 seconds interval.
[20:53:06] [Server thread/INFO]: [ExcellentCrates] Registered currency: xp
[20:53:06] [Server thread/INFO]: [ExcellentCrates] Registered currency: levels
[20:53:06] [Server thread/INFO]: [ExcellentCrates] Registered currency: money
[20:53:06] [Server thread/INFO]: [ExcellentCrates] Loaded 8 crate openings.
[20:53:06] [Server thread/INFO]: [ExcellentCrates] Loaded 4 crate keys.
[20:53:06] [Server thread/INFO]: [ExcellentCrates] Loaded 4 rarities!
[20:53:06] [Server thread/WARN]: [nightcore] 'Head_Texture' itemstack option is deprecated and will be removed soon. Please, use 'SkinURL' option instead. Caused by: plugins/ExcellentCrates/previews/default.yml
[20:53:06] [Server thread/WARN]: [nightcore] 'Head_Texture' itemstack option is deprecated and will be removed soon. Please, use 'SkinURL' option instead. Caused by: plugins/ExcellentCrates/previews/default.yml
[20:53:06] [Server thread/WARN]: [nightcore] 'Head_Texture' itemstack option is deprecated and will be removed soon. Please, use 'SkinURL' option instead. Caused by: plugins/ExcellentCrates/previews/default.yml
[20:53:06] [Server thread/WARN]: [nightcore] 'Head_Texture' itemstack option is deprecated and will be removed soon. Please, use 'SkinURL' option instead. Caused by: plugins/ExcellentCrates/previews/default.yml
[20:53:06] [Server thread/INFO]: [ExcellentCrates] Loaded 5 crates.
[20:53:06] [Server thread/WARN]: [nightcore] 'Head_Texture' itemstack option is deprecated and will be removed soon. Please, use 'SkinURL' option instead. Caused by: plugins/ExcellentCrates/menu/default.yml
[20:53:06] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[20:53:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [**.**.**.**]
[20:53:06] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 503 ms!
[20:53:06] [Server thread/INFO]: [HamsterAPI] Enabling HamsterAPI v0.2.4
[20:53:06] [Server thread/INFO]: [Multiverse-NetherPortals] Enabling Multiverse-NetherPortals v4.2.3-SNAPSHOT-b808
[20:53:06] [Server thread/INFO]: [Multiverse-NetherPortals 4.2.3-SNAPSHOT-b808]  Enabled - By Rigby and fernferret
[20:53:06] [Server thread/INFO]: [Orebfuscator] Enabling Orebfuscator v5.5.0-b322
[20:53:07] [Server thread/INFO]: [CommandDefender] Enabling CommandDefender v2.1.7 b35
[20:53:07] [Server thread/INFO]: CommandDefender: File Loader: Loading files...
[20:53:07] [Server thread/INFO]: CommandDefender: Start-up: Registering listeners...
[20:53:07] [Server thread/INFO]: CommandDefender: Start-up: Registering commands...
[20:53:07] [Server thread/INFO]: CommandDefender: Start-up complete (took 17454342000000ms).
[20:53:07] [Server thread/INFO]: [Bolt] Enabling Bolt v1.0.579
[20:53:07] [pool-66-thread-1/INFO]: Loaded 14 block protections in 1.343 ms
[20:53:07] [pool-66-thread-1/INFO]: Loaded 10 entity protections in 0.276 ms
[20:53:07] [Server thread/INFO]: Loaded 13 localization files in 4.477 ms
[20:53:07] [Server thread/WARN]: [Bolt] Invalid entity defined in config: leash_hitch. Skipping.
[20:53:07] [Server thread/WARN]: [Bolt] Invalid entity defined in config: minecart_chest. Skipping.
[20:53:07] [Server thread/WARN]: [Bolt] Invalid entity defined in config: minecart_furnace. Skipping.
[20:53:07] [Server thread/WARN]: [Bolt] Invalid entity defined in config: minecart_hopper. Skipping.
[20:53:08] [Server thread/INFO]: [BeautyQuests Expansion] Enabling BeautyQuests-Expansion v1.2.6
[20:53:08] [Server thread/INFO]: [BeautyQuests Expansion] ------- BeautyQuests Expansion -------
[20:53:08] [Server thread/INFO]: [BeautyQuests Expansion] Thank you for purchasing the expansion!
[20:53:08] [Server thread/INFO]: [BeautyQuests Expansion] Hooked expansion version 1.2.6
[20:53:08] [Server thread/INFO]: [BeautyQuests Expansion] Loaded language en_US (0.002s)!
[20:53:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: beautyquests-expansion-points [1.2.6]
[20:53:08] [Server thread/INFO]: [BeautyQuests Expansion] Registered quest points placeholders.
[20:53:08] [Server thread/INFO]: [BeautyQuests Expansion] 4 expanded features have been loaded.
[20:53:08] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.17
[20:53:08] [Server thread/INFO]: [VotingPlugin] Loaded LuckPerms hook!
[20:53:08] [Server thread/INFO]: [com.bencodez.votingplugin.advancedcore.hikari.HikariDataSource] HikariPool-1 - Starting...
[20:53:08] [Server thread/INFO]: [com.bencodez.votingplugin.advancedcore.hikari.HikariDataSource] HikariPool-1 - Start completed.
[20:53:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: votingplugin [1.6]
[20:53:08] [Server thread/INFO]: [VotingPlugin] Loading PlaceholderAPI expansion
[20:53:09] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[20:53:09] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.17
[20:53:09] [Server thread/INFO]: [TempFly] Enabling TempFly v3.1.7
[20:53:09] [Server thread/INFO]: [TempFly] Initializing ClipAPI
[20:53:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tempfly [3.1.7]
[20:53:09] [Server thread/INFO]: [GrimAC] Enabling GrimAC v2.3.66
[20:53:09] [Server thread/INFO]: [GrimAC] Registering singular bukkit event... (PistonEvent)
[20:53:09] [Server thread/INFO]: [GrimAC] Registering packets...
[20:53:09] [Server thread/INFO]: [GrimAC] Registering an outgoing plugin channel...
[20:53:09] [Server thread/INFO]: [GrimAC] Registering tick schedulers...
[20:53:09] [Server thread/INFO]: [GrimAC] [ACF] Enabled Asynchronous Tab Completion Support!
[20:53:09] [Server thread/INFO]: [SpawnerMeta] Enabling SpawnerMeta v24.4
[20:53:09] [Server thread/INFO]: [SpawnerMeta v24.4] enabled!
[20:53:09] [Server thread/INFO]: [SpawnerMeta] Vault has been found, economy enabled!
[20:53:09] [Server thread/INFO]: [Aqua] Enabling Aqua v1.1.1
[20:53:09] [Server thread/INFO]: =================================================================================
[20:53:09] [Server thread/INFO]: [Aqua]  Warning: outdated config. Some default values will be used.
[20:53:09] [Server thread/INFO]: [Aqua]  Please re-generate or get the latest config from spigot.
[20:53:09] [Server thread/INFO]: =================================================================================
[20:53:09] [Server thread/INFO]: [MineBlocks] Enabling MineBlocks v2.1.4
[20:53:10] [Server thread/INFO]: [zAuctionHouseV3] Enabling zAuctionHouseV3 v3.2.2.0
[20:53:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: zauctionhouse [**.**.**.**]
[20:53:10] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] === ENABLE START ===
[20:53:10] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Plugin Version V3.2.2.0
[20:53:10] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loading of 4 price items
[20:53:10] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] /home/********/plugins/zAuctionHouseV3/blacklistplayers.json loaded successfully !
[20:53:10] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loaded config.yml
[20:53:10] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loading of 3 tax items
[20:53:10] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loaded 4 blacklist items
[20:53:10] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loaded 0 whitelist items
[20:53:10] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loading the Examples category with 4 materials
[20:53:10] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loading the Blocks category with 1058 materials
[20:53:10] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loading the Potions category with 17 materials
[20:53:10] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loading the Tools category with 20 materials
[20:53:10] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loading the Weapons category with 13 materials
[20:53:10] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loading 3 inventories
[20:53:10] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loading 0 commands
[20:53:10] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Load SQL...
[20:53:10] [Server thread/INFO]: [zMenu v1.0.3.3] plugins/zAuctionHouseV3/patterns/decoration.yml loaded successfully !
[20:53:10] [Server thread/INFO]: [zMenu v1.0.3.3] plugins/zAuctionHouseV3/patterns/auction.yml loaded successfully !
[20:53:10] [Server thread/INFO]: [zMenu v1.0.3.3] plugins/zAuctionHouseV3/patterns/back.yml loaded successfully !
[20:53:10] [Server thread/INFO]: [zMenu v1.0.3.3] plugins/zAuctionHouseV3/patterns/pagination.yml loaded successfully !
[20:53:10] [Server thread/INFO]: [zMenu v1.0.3.3] plugins/zAuctionHouseV3/inventories/search.yml loaded successfully !
[20:53:10] [Server thread/INFO]: [zMenu v1.0.3.3] plugins/zAuctionHouseV3/inventories/show.yml loaded successfully !
[20:53:10] [Server thread/INFO]: [zMenu v1.0.3.3] plugins/zAuctionHouseV3/inventories/sellshow.yml loaded successfully !
[20:53:10] [Server thread/INFO]: [zMenu v1.0.3.3] plugins/zAuctionHouseV3/inventories/economy.yml loaded successfully !
[20:53:10] [Server thread/INFO]: [zMenu v1.0.3.3] plugins/zAuctionHouseV3/inventories/sell.yml loaded successfully !
[20:53:10] [Server thread/INFO]: [zMenu v1.0.3.3] plugins/zAuctionHouseV3/inventories/items.yml loaded successfully !
[20:53:10] [Server thread/INFO]: [zMenu v1.0.3.3] plugins/zAuctionHouseV3/inventories/buyconfirminventory.yml loaded successfully !
[20:53:10] [Server thread/INFO]: [zMenu v1.0.3.3] plugins/zAuctionHouseV3/inventories/auction.yml loaded successfully !
[20:53:10] [Server thread/INFO]: [zMenu v1.0.3.3] plugins/zAuctionHouseV3/inventories/adminremove.yml loaded successfully !
[20:53:10] [Server thread/INFO]: [zMenu v1.0.3.3] plugins/zAuctionHouseV3/inventories/expire.yml loaded successfully !
[20:53:10] [Server thread/INFO]: [zMenu v1.0.3.3] plugins/zAuctionHouseV3/inventories/category.yml loaded successfully !
[20:53:10] [Server thread/INFO]: [zMenu v1.0.3.3] plugins/zAuctionHouseV3/inventories/categories.yml loaded successfully !
[20:53:10] [Server thread/INFO]: [zMenu v1.0.3.3] plugins/zAuctionHouseV3/inventories/buyconfirm.yml loaded successfully !
[20:53:10] [Server thread/INFO]: [zMenu v1.0.3.3] plugins/zAuctionHouseV3/inventories/buying.yml loaded successfully !
[20:53:10] [Server thread/INFO]: [zMenu v1.0.3.3] plugins/zAuctionHouseV3/inventories/removeconfirm.yml loaded successfully !
[20:53:10] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] === ENABLE DONE (173ms) ===
[20:53:10] [Server thread/INFO]: [Vouchers] Enabling Vouchers v3.23.0
[20:53:10] [Server thread/INFO]:  
[20:53:10] [Server thread/INFO]: =============================
[20:53:10] [Server thread/INFO]: Vouchers v3.23.0 by Tweetzy
[20:53:10] [Server thread/INFO]: Developer: Kiran Hart
[20:53:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: vouchers [1.0.0]
[20:53:10] [Server thread/INFO]: [FlightCore] Enabling metrics for Vouchers
[20:53:10] [Server thread/INFO]: =============================
[20:53:10] [Server thread/INFO]:  
[20:53:10] [Server thread/INFO]: [EcoJobs] Enabling EcoJobs v3.67.0
[20:53:10] [Server thread/INFO]: [EcoJobs] Loading EcoJobs
[20:53:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecojobs [3.67.0]
[20:53:11] [Server thread/INFO]: [BackPackPlus] Enabling BackPackPlus v1.1.3
[20:53:11] [Server thread/ERROR]: [BackPackPlus] [STDERR] SLF4J: No SLF4J providers were found.
[20:53:11] [Server thread/WARN]: Nag author(s): '[minion325]' of 'BackPackPlus v1.1.3' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[20:53:11] [Server thread/ERROR]: [BackPackPlus] [STDERR] SLF4J: Defaulting to no-operation (NOP) logger implementation
[20:53:11] [Server thread/ERROR]: [BackPackPlus] [STDERR] SLF4J: See http://www.slf4j.org/codes.html#noProviders for further details.
[20:53:11] [Server thread/INFO]: [BackPackPlus] Database connection test successful.
[20:53:11] [Server thread/WARN]: [BackPackPlus] Could not save lang.yml to plugins/BackPackPlus/lang.yml because lang.yml already exists.
[20:53:11] [Server thread/WARN]: [BackPackPlus] Could not save prices.yml to plugins/BackPackPlus/prices.yml because prices.yml already exists.
[20:53:11] [Server thread/INFO]: [BackPackPlus] Loading template: full-page.yml
[20:53:11] [Server thread/INFO]: [BackPackPlus] Finished loading template: full-page
[20:53:11] [Server thread/INFO]: [BackPackPlus] Loading template: bordered.yml
[20:53:11] [Server thread/INFO]: [BackPackPlus] Finished loading template: bordered
[20:53:11] [Server thread/INFO]: [BackPackPlus] Loading template: default.yml
[20:53:11] [Server thread/INFO]: [BackPackPlus] Finished loading template: default
[20:53:11] [Server thread/WARN]: [BackPackPlus] Could not save vouchers.yml to plugins/BackPackPlus/vouchers.yml because vouchers.yml already exists.
[20:53:11] [Server thread/INFO]: [BackPackPlus] Loaded voucher 'single-slot'
[20:53:11] [Server thread/INFO]: [BackPackPlus] Loaded voucher 'single-max-slot'
[20:53:11] [Server thread/INFO]: [BackPackPlus] Loaded voucher 'triple-slots'
[20:53:11] [Server thread/INFO]: [BackPackPlus] Loaded voucher 'triple-max-slots'
[20:53:11] [Server thread/INFO]: [BackPackPlus] Loaded 4 vouchers.
[20:53:11] [Server thread/INFO]: [EconomyShopGUI-Premium] Enabling EconomyShopGUI-Premium v5.14.0
[20:53:11] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Using lang-cz.yml as language file.
[20:53:11] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Dokončeno načítání konfigurací 19 sekcí z /sections/
[20:53:12] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Dokončeno načítání konfigurací 19 obchodu z /shops/
[20:53:12] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Aktualizace nastavení obchodu...
[20:53:12] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Používání verze minecraftu 1.21...
[20:53:12] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Successfully hooked into Vault
[20:53:12] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Dokončeno načítání poskytovatele 1 economy pro všechny sekce obchodu 11.
[20:53:12] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Zprostředkovatel spawneru nastavený na AUTO v konfiguraci
[20:53:12] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Automatically searching for compatible spawner provider....
[20:53:12] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: SpawnerMeta nalezeno, integrace...
[20:53:12] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Použití SpawnerMeta jako poskytovatele spawneru.
[20:53:12] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Povoleno PlaceholderAPI hook...
[20:53:12] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Providers not enabled yet, waiting...
[20:53:12] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.8.0
[20:53:12] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[20:53:12] [Server thread/INFO]: [ajLeaderboards] Loaded 10 boards
[20:53:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.8.0]
[20:53:12] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[20:53:12] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.8.0 by ajgeiss0702 enabled!
[20:53:12] [Server thread/INFO]: [Server Tutorial Plus] Enabling ServerTutorialPlus v1.25.2
[20:53:12] [Server thread/INFO]: [Server Tutorial Plus] Enabling server tutorial...
[20:53:12] [Server thread/INFO]: [Server Tutorial Plus] Using FlatFile as datasource...
[20:53:12] [Server thread/INFO]: [Server Tutorial Plus] Using protocol: nl.martenm.servertutorialplus.reflection.v1_14.Protocol_1_14_V1
[20:53:12] [Server thread/INFO]: [Server Tutorial Plus] Loading server tutorial: tutorial
[20:53:12] [Server thread/INFO]: [Server Tutorial Plus] Loading server tutorial: npc1
[20:53:12] [Server thread/INFO]: Bukkit API version: 1.21.0
[20:53:12] [Server thread/INFO]: [Server Tutorial Plus] PlaceholderAPI has been found!
[20:53:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ServerTutorialPlus [1.25.2]
[20:53:12] [Server thread/INFO]: [Server Tutorial Plus] Servertutorial enabled successfully!
[20:53:12] [Server thread/INFO]: [TAB] Enabling TAB v5.0.0-SNAPSHOT
[20:53:12] [Server thread/INFO]: [TAB] Loaded NMS hook in 42ms
[20:53:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [5.0.0-SNAPSHOT]
[20:53:13] [Server thread/INFO]: [TAB] [WARN] File plugins/TAB/errors.log has reached its size limit (1MB). No new errors will be logged. Take a look at the existing reported errors, as they may have caused the plugin to not work properly in the past and if not fixed, will most likely cause problems in the future as well.
[20:53:13] [Server thread/INFO]: [TAB] [WARN] Found a total of 1 issues.
[20:53:13] [Server thread/INFO]: [TAB] Enabled in 355ms
[20:53:13] [Server thread/INFO]: [BaseRaiders] Enabling BaseRaiders v3.1.0
[20:53:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: baseraiders [3.1.0]
[20:53:13] [Server thread/INFO]:  
[20:53:13] [Server thread/INFO]: ------------------[BASE RAIDERS]---------------------
[20:53:13] [Server thread/INFO]: Plugin has been ENABLED
[20:53:13] [Server thread/INFO]: For support join our discord at: https://discord.gg/MYK3zTSJkY
[20:53:13] [Server thread/INFO]: PlaceholderAPI was found!
[20:53:13] [Server thread/INFO]: Economy type: Vault
[20:53:13] [Server thread/INFO]:  
[20:53:13] [Server thread/INFO]: [Chunky] Enabling Chunky v1.3.136
[20:53:13] [Server thread/INFO]: [PinataParty] Enabling PinataParty v2.67.0
[20:53:14] [Server thread/INFO]: [PinataParty] Loading data...
[20:53:14] [Server thread/INFO]: [PinataParty] Registering hooks...
[20:53:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pinataparty [2.67.0]
[20:53:14] [Server thread/INFO]: [PinataParty] Hooked into PlaceholderAPI
[20:53:14] [Server thread/INFO]: [PinataParty] Hooked into Votifier
[20:53:14] [Server thread/INFO]: [PinataParty] Hooked into Vault
[20:53:14] [Server thread/INFO]: [PinataParty] Registering commands...
[20:53:14] [Server thread/INFO]: [PinataParty] Registering listeners...
[20:53:14] [Server thread/INFO]: [PinataParty] Starting tasks...
[20:53:14] [Server thread/INFO]: [PinataParty] Starting metrics...
[20:53:14] [Server thread/INFO]: [PinataParty] Plugin registered to 1264545 | 915217353
[20:53:14] [Server thread/INFO]: [PinataParty] Done and enabled in 33.40ms
[20:53:14] [Server thread/INFO]: [DailyRewardsPlus] Enabling DailyRewardsPlus v1.3.8
[20:53:14] [Server thread/INFO]: [DailyRewardsPlus] [DailyRewards+] Establishing MySQL Connection Pool
[20:53:14] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Starting...
[20:53:14] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Start completed.
[20:53:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: daily [1.0.0]
[20:53:14] [Server thread/INFO]: [DailyRewards+] Detected Placeholder API. Successfully enabled plugin support.
[20:53:14] [Server thread/INFO]: [DailyRewards+] Cleaning up...
[20:53:14] [Server thread/INFO]: [DailyRewards+] Detected version group as V1.20.5+[1210]. Applying necessary settings.
[20:53:14] [Server thread/INFO]: [DailyRewards+] Has started successfully!
 ** Need great rewards to give to your users?
 ** Check out Vouchers+! >> https://www.spigotmc.org/resources/111185/
[20:53:14] [Server thread/INFO]: [libreforge] Enabling libreforge v4.69.0
[20:53:14] [Server thread/INFO]: [libreforge] Loading libreforge
[20:53:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: libreforge [4.69.0]
[20:53:14] [Server thread/INFO]: [libreforge] Loaded integrations: Citizens, TAB, LevelledMobs, Vault, Votifier, WorldGuard
[20:53:14] [Server thread/INFO]: [libreforge] 
[20:53:14] [Server thread/INFO]: [libreforge] Hey, what's this plugin doing here? I didn't install it!
[20:53:14] [Server thread/INFO]: [libreforge] libreforge is the effects system for plugins like EcoEnchants,
[20:53:14] [Server thread/INFO]: [libreforge] EcoJobs, EcoItems, etc. If you're looking for config options for
[20:53:14] [Server thread/INFO]: [libreforge] things like cooldown messages, lrcdb, and stuff like that, you'll
[20:53:14] [Server thread/INFO]: [libreforge] find it under /plugins/libreforge
[20:53:14] [Server thread/INFO]: [libreforge] 
[20:53:14] [Server thread/INFO]: [libreforge] Don't worry about updating libreforge, it's handled automatically!
[20:53:14] [Server thread/INFO]: [libreforge] 
[20:53:15] [Server thread/INFO]: [spark] Starting background profiler...
[20:53:15] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[20:53:15] [Server thread/INFO]: Done preparing level "world" (26.999s)
[20:53:15] [Server thread/INFO]: Starting GS4 status listener
[20:53:15] [Server thread/INFO]: Thread Query Listener started
[20:53:15] [Query Listener #1/INFO]: Query running on 0.0.0.0:25566
[20:53:15] [Server thread/INFO]: Running delayed init tasks
[20:53:15] [Craft Scheduler Thread - 6 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[20:53:15] [Craft Scheduler Thread - 6 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[20:53:15] [Craft Scheduler Thread - 6 - DecentHolograms/INFO]: [DecentHolograms] Loaded 3 holograms!
[20:53:15] [Craft Scheduler Thread - 4 - eco/WARN]: [eco] eco is out of date! (Version 6.73.0)
[20:53:15] [Craft Scheduler Thread - 4 - eco/WARN]: [eco] The newest version is 6.73.1
[20:53:15] [Craft Scheduler Thread - 4 - eco/WARN]: [eco] Download the new version!
[20:53:15] [Craft Scheduler Thread - 14 - LevelledMobs/WARN]: [LevelledMobs] Your LevelledMobs version is a pre-release. Latest release version is 4.0.6. (You're running 4.1.0)
[20:53:15] [Craft Scheduler Thread - 9 - VotingPlugin/INFO]: [VotingPlugin] CMI found, loading hook
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/INFO]: [zAuctionHouseV3] The database connection is valid ! (g-play.cz)
[20:53:15] [Craft Scheduler Thread - 26 - Vault/INFO]: [Vault] Checking for Updates ... 
[20:53:15] [Craft Scheduler Thread - 26 - Vault/INFO]: [Vault] No new version available
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]: java.sql.SQLSyntaxErrorException: Duplicate column name 'server_name'
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:112)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:113)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:938)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:359)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at zAuctionHouse-3.2.2.0.jar//fr.maxlego08.zauctionhouse.zcore.utils.sarah.requests.AlterRequest.execute(AlterRequest.java:49)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at zAuctionHouse-3.2.2.0.jar//fr.maxlego08.zauctionhouse.zcore.utils.sarah.SchemaBuilder.execute(SchemaBuilder.java:540)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at zAuctionHouse-3.2.2.0.jar//fr.maxlego08.zauctionhouse.zcore.utils.sarah.MigrationManager.lambda$execute$1(MigrationManager.java:41)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at zAuctionHouse-3.2.2.0.jar//fr.maxlego08.zauctionhouse.zcore.utils.sarah.MigrationManager.execute(MigrationManager.java:39)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at zAuctionHouse-3.2.2.0.jar//fr.maxlego08.zauctionhouse.storage.storages.SqlStorage.lambda$load$0(SqlStorage.java:93)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at zAuctionHouse-3.2.2.0.jar//fr.maxlego08.zauctionhouse.zcore.utils.folialib.impl.SpigotImplementation.lambda$runAsync$1(SpigotImplementation.java:49)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]: java.sql.SQLException: Failed to execute schema creation: Duplicate column name 'server_name'
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at zAuctionHouse-3.2.2.0.jar//fr.maxlego08.zauctionhouse.zcore.utils.sarah.requests.AlterRequest.execute(AlterRequest.java:52)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at zAuctionHouse-3.2.2.0.jar//fr.maxlego08.zauctionhouse.zcore.utils.sarah.SchemaBuilder.execute(SchemaBuilder.java:540)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at zAuctionHouse-3.2.2.0.jar//fr.maxlego08.zauctionhouse.zcore.utils.sarah.MigrationManager.lambda$execute$1(MigrationManager.java:41)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at zAuctionHouse-3.2.2.0.jar//fr.maxlego08.zauctionhouse.zcore.utils.sarah.MigrationManager.execute(MigrationManager.java:39)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at zAuctionHouse-3.2.2.0.jar//fr.maxlego08.zauctionhouse.storage.storages.SqlStorage.lambda$load$0(SqlStorage.java:93)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at zAuctionHouse-3.2.2.0.jar//fr.maxlego08.zauctionhouse.zcore.utils.folialib.impl.SpigotImplementation.lambda$runAsync$1(SpigotImplementation.java:49)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]: Caused by: java.sql.SQLSyntaxErrorException: Duplicate column name 'server_name'
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:112)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:113)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:938)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:359)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     at zAuctionHouse-3.2.2.0.jar//fr.maxlego08.zauctionhouse.zcore.utils.sarah.requests.AlterRequest.execute(AlterRequest.java:49)
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/WARN]:     ... 12 more
[20:53:15] [Craft Scheduler Thread - 17 - zAuctionHouseV3/INFO]: [zAuctionHouseV3 v3.2.2.0] Loading items
[20:53:15] [Craft Scheduler Thread - 15 - BeastTokens/INFO]: [BeastTokens] Thanks for using latest version!
[20:53:15] [pool-83-thread-1/INFO]: [zAuctionHouseV3 v3.2.2.0] Loading of items successfully completed.
[20:53:15] [Server thread/INFO]: Loaded 1290 recipes
[20:53:15] [Server thread/INFO]: Loaded 1399 advancements
[20:53:15] [Craft Scheduler Thread - 5 - zMenu/INFO]: [zMenu v1.0.3.3] No update available.
[20:53:15] [Craft Scheduler Thread - 21 - zAuctionHouseV3/INFO]: [zAuctionHouseV3 v3.2.2.0] No update available.
[20:53:16] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Povoleno Oraxen hook...
[20:53:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmi [**.**.**.**]
[20:53:16] [Server thread/INFO]: [CMI] PlaceholderAPI hooked.
[20:53:16] [Server thread/INFO]: [Citizens] Loaded 38 NPCs.
[20:53:16] [Server thread/INFO]: +> [ScriptEvent] Processed 0 script event paths. 
[20:53:16] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[20:53:16] [Server thread/INFO]: +> [Denizen] Denizen fully loaded at: 2024/07/24 20:52:55 
[20:53:16] [Server thread/INFO]: [MineBlocks] Integration with plugin LuckPerms successfully enabled!
[20:53:16] [Server thread/INFO]: [MineBlocks] Integration with plugin DecentHolograms successfully enabled!
[20:53:16] [Server thread/INFO]: [MineBlocks] Integration with plugin CMI successfully enabled!
[20:53:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mb [2.1.4]
[20:53:16] [Server thread/INFO]: [MineBlocks] Integration with plugin PlaceholderAPI successfully enabled!
[20:53:16] [Server thread/INFO]: [MineBlocks] Using DecentHolograms as hologram provider
[20:53:16] [Server thread/INFO]: [MineBlocks] Using LuckPerms as prefix provider
[20:53:16] [Server thread/WARN]: [MineBlocks] Block example could not be loaded: Invalid world world_name configured for block example
[20:53:16] [Server thread/INFO]: [MineBlocks] Loaded blocks from the config: miner
[20:53:16] [Server thread/INFO]: [MineBlocks] MineBlocks enabled successfully!
[20:53:17] [Server thread/INFO]: [ViaVersion] You are running a development version of the plugin, please report any bugs to GitHub.
[20:53:17] [Server thread/INFO]: [BeautyQuests] You are using the latest version of BeautyQuests.
[20:53:17] [Server thread/WARN]: [PlaceholderAPI] Failed to load external expansion votingplugin. Identifier is already in use.
[20:53:17] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion votingplugin due to an unknown issue.
[20:53:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[20:53:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: playerlist [3.0.7]
[20:53:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: Animations [1.0.5]
[20:53:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[20:53:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: worldguard [1.4.2]
[20:53:17] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playerstats due to a missing plugin: PlayerStats
[20:53:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[20:53:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[20:53:17] [Server thread/INFO]: 7 placeholder hook(s) registered!
[20:53:17] [Server thread/INFO]: Done (51.968s)! For help, type "help"
[20:53:17] [Server thread/INFO]: Timings Reset
[20:53:17] [Craft Scheduler Thread - 21 - Oraxen/INFO]: Oraxen | Automatické nahrání resource packu je zapnuto, nahrávám...
[20:53:17] [Server thread/INFO]: [eco] Loaded eco
[20:53:17] [Server thread/INFO]: [GlowingEntities] [GlowingEntities] Found server version 1.21.0
[20:53:17] [Server thread/WARN]: [GlowingEntities] [GlowingEntities] Loaded not matching version of the mappings for your server version
[20:53:17] [Server thread/INFO]: [GlowingEntities] [GlowingEntities] Loaded mappings V1_20_5_REMAPPED
[20:53:17] [Server thread/INFO]: [BeautyQuests] 28 quests loaded (0.185s)!
[20:53:17] [Server thread/INFO]: [BeautyQuests] Periodic saves task started (18000 ticks). Task ID: 303
[20:53:17] [Server thread/INFO]: [EcoJobs] Loaded EcoJobs
[20:53:17] [Server thread/INFO]: [libreforge] Loaded libreforge
[20:53:17] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Povoleno HeadDatabase hook...
[20:53:17] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21! Trying to find NMS support
[20:53:17] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[20:53:17] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[20:53:17] [Server thread/INFO]: [EconomyShopGUI-Premium] [WARN]: Provider(s) [ITEMS] not enabled yet after waiting for server to finish, loading now...
[20:53:17] [Server thread/INFO]: [EconomyShopGUI-Premium] [ERROR]: Failed to load cached schedule from schedulecache.json: Rotating shop with name RotatingShop does not exist
[20:53:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: esgui [1.0.0]
[20:53:17] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Režim ladění je povolen.
[20:53:17] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Načítání skladového dodavatele položek...
[20:53:17] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Načítání poskytovatele s omezeným prodejem...
[20:53:17] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Načítání všech položek...
[20:53:17] [Server thread/INFO]: [EconomyShopGUI-Premium] [WARN]: Could not load currency format of '#.##0,00', with reason: Malformed pattern "#.##0,00"
[20:53:17] [Server thread/INFO]: [EconomyShopGUI-Premium] [DEBUG]: Found incompatible component tag for current minecraft version: Did you mean 'repair_cost' instead of 'RepairCost'?
Please change the value manually to get rid of this message
[20:53:17] [Server thread/INFO]: [EconomyShopGUI-Premium] [WARN]: Item path in config.yml: sold-items-ignored-NBTtags
[20:53:17] [Server thread/INFO]: [EconomyShopGUI-Premium] [DEBUG]: Found incompatible component tag for current minecraft version: Did you mean 'profile::id' instead of 'SkullOwner::Id'?
Please change the value manually to get rid of this message
[20:53:17] [Server thread/INFO]: [EconomyShopGUI-Premium] [WARN]: Item path in config.yml: sold-items-ignored-NBTtags
[20:53:17] [Server thread/INFO]: [EconomyShopGUI-Premium] [WARN]: Cannot load item 'page1.items.45' from section Miscellaneous because it is out of range for page size 45
[20:53:18] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed delayed loading.
[20:53:18] [Craft Scheduler Thread - 21 - Oraxen/INFO]: Oraxen | Resourcepack nahrán na url http://atlas.oraxen.com:8080/pack.zip?id=27c50a4a493e95c2c48fe7dee0f1330749d144e4 za 2294 ms
[20:53:20] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[20:53:20] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[20:53:25] [Craft Scheduler Thread - 15 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin is up to date! Version: 6.17
[20:53:26] [User Authenticator #0/INFO]: [BackPackPlus] Loading backpack for a1ef9bb7-44d9-4ba3-805f-ee2d1ff59338
[20:53:26] [User Authenticator #0/INFO]: [BackPackPlus] Backpack of a1ef9bb7-44d9-4ba3-805f-ee2d1ff59338 took 0ms to load.
[20:53:26] [User Authenticator #0/INFO]: [BackPackPlus] Loaded data for LuKyN94
[20:53:26] [User Authenticator #0/INFO]: UUID of player LuKyN94 is a1ef9bb7-44d9-4ba3-805f-ee2d1ff59338
[20:53:28] [Server thread/INFO]: Showing new subtitle for LuKyN94
[20:53:28] [Server thread/INFO]: Showing new title for LuKyN94
[20:53:28] [Server thread/INFO]: Všechny effekty byly smazány hráči LuKyN94 (Online).
[20:53:28] [Server thread/INFO]: [Online] ⏚ LuKyN94 se připojil na server!
[20:53:28] [Server thread/INFO]: LuKyN94[/**.**.**.**:38934] logged in with entity id 414 at ([world]-104.82051838084176, 63.9375, 212.94399819215803)
[20:53:34] [Server thread/INFO]: LuKyN94 issued server command: /shop
[21:00:02] [Server thread/INFO]: Saving is already turned on
[21:00:02] [Server thread/INFO]: Automatic saving is now disabled
[21:00:02] [Server thread/INFO]: Saving the game (this may take a moment!)
[21:00:02] [Server thread/INFO]: Saved the game
[21:00:02] [Server thread/INFO]: Automatic saving is now enabled
[21:00:02] [Server thread/INFO]: [Not Secure] [Server] Ukládání mapy [G-PLAY.CZ]
[21:00:17] [User Authenticator #1/INFO]: [BackPackPlus] Loading backpack for 9cbbfbb4-1e50-3c68-bef2-f6a2eaf2e00a
[21:00:17] [User Authenticator #1/INFO]: [BackPackPlus] Backpack of 9cbbfbb4-1e50-3c68-bef2-f6a2eaf2e00a took 0ms to load.
[21:00:17] [User Authenticator #1/INFO]: [BackPackPlus] Loaded data for POLESIE
[21:00:17] [User Authenticator #1/INFO]: UUID of player POLESIE is 9cbbfbb4-1e50-3c68-bef2-f6a2eaf2e00a
[21:00:19] [Server thread/INFO]: Showing new subtitle for POLESIE
[21:00:19] [Server thread/INFO]: Showing new title for POLESIE
[21:00:19] [Server thread/INFO]: Všechny effekty byly smazány hráči POLESIE (Online).
[21:00:19] [Server thread/INFO]: [Online] ⵡ POLESIE se připojil na server!
[21:00:19] [Server thread/INFO]: POLESIE[/**.**.**.**:37404] logged in with entity id 813 at ([world]-39.70234347309469, 67.0, 151.97856468192478)
[21:00:21] [Server thread/INFO]: POLESIE lost connection: Disconnected
[21:00:21] [Server thread/INFO]: [BackPackPlus] Saving data for POLESIE
[21:00:21] [Server thread/INFO]: Effect Mining fatigue byl přidán hráči POLESIE. Čas: 1 sekund. Level: 1 (Online).
[21:00:21] [Server thread/INFO]: Effect Slowness byl přidán hráči POLESIE. Čas: 1 sekund. Level: 1 (Online).
[21:00:21] [Server thread/INFO]: Effect Glowing byl přidán hráči POLESIE. Čas: 1 sekund. Level: 1 (Online).
[21:00:21] [Server thread/INFO]: Effect Darkness byl přidán hráči POLESIE. Čas: 1 sekund. Level: 1 (Online).
[21:00:21] [Server thread/INFO]: [Offline] ⵡ POLESIE opustil server!
[21:00:25] [Server thread/INFO]: ⏚ LuKyN94 je nyní AFK
[21:00:25] [Server thread/INFO]: Effect Mining fatigue byl přidán hráči LuKyN94. Čas: 60000000 sekund. Level: 600000 (Online).
[21:00:25] [Server thread/INFO]: Effect Slowness byl přidán hráči LuKyN94. Čas: 60000000 sekund. Level: 600000 (Online).
[21:00:25] [Server thread/INFO]: Effect Glowing byl přidán hráči LuKyN94. Čas: 60000000 sekund. Level: 1 (Online).
[21:00:25] [Server thread/INFO]: Effect Darkness byl přidán hráči LuKyN94. Čas: 60000000 sekund. Level: 1 (Online).
[21:00:36] [User Authenticator #1/INFO]: [BackPackPlus] Loading backpack for 9cbbfbb4-1e50-3c68-bef2-f6a2eaf2e00a
[21:00:36] [User Authenticator #1/INFO]: [BackPackPlus] Backpack of 9cbbfbb4-1e50-3c68-bef2-f6a2eaf2e00a took 0ms to load.
[21:00:36] [User Authenticator #1/INFO]: [BackPackPlus] Loaded data for POLESIE
[21:00:36] [User Authenticator #1/INFO]: UUID of player POLESIE is 9cbbfbb4-1e50-3c68-bef2-f6a2eaf2e00a
[21:00:37] [Server thread/INFO]: Showing new subtitle for POLESIE
[21:00:37] [Server thread/INFO]: Showing new title for POLESIE
[21:00:37] [Server thread/INFO]: Všechny effekty byly smazány hráči POLESIE (Online).
[21:00:37] [Server thread/INFO]: [Online] ⵡ POLESIE se připojil na server!
[21:00:37] [Server thread/INFO]: POLESIE[/**.**.**.**:38710] logged in with entity id 816 at ([world]-39.70234347309469, 67.0, 151.97856468192478)
[21:00:40] [Server thread/INFO]: POLESIE lost connection: Disconnected
[21:00:40] [Server thread/INFO]: [BackPackPlus] Saving data for POLESIE
[21:00:40] [Server thread/INFO]: Effect Mining fatigue byl přidán hráči POLESIE. Čas: 1 sekund. Level: 1 (Online).
[21:00:40] [Server thread/INFO]: Effect Slowness byl přidán hráči POLESIE. Čas: 1 sekund. Level: 1 (Online).
[21:00:40] [Server thread/INFO]: Effect Glowing byl přidán hráči POLESIE. Čas: 1 sekund. Level: 1 (Online).
[21:00:40] [Server thread/INFO]: Effect Darkness byl přidán hráči POLESIE. Čas: 1 sekund. Level: 1 (Online).
[21:00:40] [Server thread/INFO]: [Offline] ⵡ POLESIE opustil server!
[21:07:19] [Server thread/INFO]: ⏚ LuKyN94 již není AFK
[21:07:19] [Server thread/INFO]: Effect Mining fatigue byl přidán hráči LuKyN94. Čas: 1 sekund. Level: 1 (Online).
[21:07:19] [Server thread/INFO]: Effect Slowness byl přidán hráči LuKyN94. Čas: 1 sekund. Level: 1 (Online).
[21:07:19] [Server thread/INFO]: Effect Glowing byl přidán hráči LuKyN94. Čas: 1 sekund. Level: 1 (Online).
[21:07:19] [Server thread/INFO]: Effect Darkness byl přidán hráči LuKyN94. Čas: 1 sekund. Level: 1 (Online).
[21:07:24] [Server thread/INFO]: LuKyN94 issued server command: /afk
[21:07:24] [Server thread/INFO]: ⏚ LuKyN94 je nyní AFK
[21:07:24] [Server thread/INFO]: Effect Mining fatigue byl přidán hráči LuKyN94. Čas: 60000000 sekund. Level: 600000 (Online).
[21:07:24] [Server thread/INFO]: Effect Slowness byl přidán hráči LuKyN94. Čas: 60000000 sekund. Level: 600000 (Online).
[21:07:24] [Server thread/INFO]: Effect Glowing byl přidán hráči LuKyN94. Čas: 60000000 sekund. Level: 1 (Online).
[21:07:24] [Server thread/INFO]: Effect Darkness byl přidán hráči LuKyN94. Čas: 60000000 sekund. Level: 1 (Online).
[21:08:15] [Craft Scheduler Thread - 53 - BeautyQuests/INFO]: [BeautyQuests] Datas saved ~ periodic save
[21:09:05] [Server thread/INFO]: ⏚ LuKyN94 již není AFK
[21:09:05] [Server thread/INFO]: Effect Mining fatigue byl přidán hráči LuKyN94. Čas: 1 sekund. Level: 1 (Online).
[21:09:05] [Server thread/INFO]: Effect Slowness byl přidán hráči LuKyN94. Čas: 1 sekund. Level: 1 (Online).
[21:09:05] [Server thread/INFO]: Effect Glowing byl přidán hráči LuKyN94. Čas: 1 sekund. Level: 1 (Online).
[21:09:05] [Server thread/INFO]: Effect Darkness byl přidán hráči LuKyN94. Čas: 1 sekund. Level: 1 (Online).
[21:09:14] [Server thread/INFO]: LuKyN94 issued server command: /oxn reload all
[21:09:14] [Server thread/INFO]: Oraxen | emerald_helmet is using deprecated Durability-Mechanic...
[21:09:14] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:14] [Server thread/INFO]: Oraxen | emerald_chestplate is using deprecated Durability-Mechanic...
[21:09:14] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:14] [Server thread/INFO]: Oraxen | emerald_leggings is using deprecated Durability-Mechanic...
[21:09:14] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:14] [Server thread/INFO]: Oraxen | emerald_boots is using deprecated Durability-Mechanic...
[21:09:14] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:14] [Server thread/INFO]: Oraxen | obsidian_helmet is using deprecated Durability-Mechanic...
[21:09:14] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:14] [Server thread/INFO]: Oraxen | obsidian_chestplate is using deprecated Durability-Mechanic...
[21:09:14] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:14] [Server thread/INFO]: Oraxen | obsidian_leggings is using deprecated Durability-Mechanic...
[21:09:14] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:14] [Server thread/INFO]: Oraxen | obsidian_boots is using deprecated Durability-Mechanic...
[21:09:14] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:14] [Server thread/INFO]: Oraxen | ruby_helmet is using deprecated Durability-Mechanic...
[21:09:14] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:14] [Server thread/INFO]: Oraxen | ruby_chestplate is using deprecated Durability-Mechanic...
[21:09:14] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:14] [Server thread/INFO]: Oraxen | ruby_leggings is using deprecated Durability-Mechanic...
[21:09:14] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:14] [Server thread/INFO]: Oraxen | ruby_boots is using deprecated Durability-Mechanic...
[21:09:14] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:14] [Server thread/INFO]: Oraxen | example_sword is using deprecated Durability-Mechanic...
[21:09:14] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:14] [Server thread/INFO]: Oraxen | legendary_hammer is using deprecated Durability-Mechanic...
[21:09:14] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:14] [Server thread/INFO]: Oraxen | obsidian_pickaxe is using deprecated Durability-Mechanic...
[21:09:14] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:14] [Server thread/INFO]: Oraxen | bedrock_pickaxe is using deprecated Durability-Mechanic...
[21:09:14] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:14] [Server thread/INFO]: Oraxen | onyx_hammer is using deprecated Durability-Mechanic...
[21:09:14] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:14] [Server thread/INFO]: Oraxen | orax_hammer is using deprecated Durability-Mechanic...
[21:09:14] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:14] [Server thread/INFO]: Oraxen | fire_hammer is using deprecated Durability-Mechanic...
[21:09:14] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:14] [Server thread/INFO]: Oraxen | glass_sword is using deprecated Durability-Mechanic...
[21:09:14] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:14] [Server thread/INFO]: Oraxen | obsidian_sword is using deprecated Durability-Mechanic...
[21:09:14] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:14] [Server thread/INFO]: Oraxen | blood_sword is using deprecated Durability-Mechanic...
[21:09:14] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:14] [Server thread/INFO]: Oraxen | octavia_sword is using deprecated Durability-Mechanic...
[21:09:14] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:14] [Server thread/INFO]: Oraxen | dagger is using deprecated Durability-Mechanic...
[21:09:14] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:14] [Server thread/INFO]: Oraxen | katana is using deprecated Durability-Mechanic...
[21:09:14] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:14] [Server thread/INFO]: Oraxen | Updating all items in player-inventories...
[21:09:14] [Server thread/INFO]: Oraxen | The ascent is bigger than the height for top_logo_1. This will break all your glyphs.
[21:09:14] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[21:09:14] [Server thread/INFO]: Oraxen | The ascent is bigger than the height for top_logo_2. This will break all your glyphs.
[21:09:14] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[21:09:14] [Server thread/INFO]: Oraxen | Slicing gui-textures to 1.20.2-format...
[21:09:14] [Server thread/INFO]: Oraxen | Successfully sliced gui-textures for 1.20.2
[21:09:14] [Server thread/INFO]: Oraxen | Žádný item s názvem leggings nenalezen. Nelze použít armor_layer_2.png
[21:09:14] [Server thread/INFO]: Oraxen | Žádný item s názvem boots nenalezen. Nelze použít armor_layer_2.png
[21:09:14] [Server thread/INFO]: Oraxen | Žádný item s názvem helmet nenalezen. Nelze použít armor_layer_1.png
[21:09:14] [Server thread/INFO]: Oraxen | Žádný item s názvem chestplate nenalezen. Nelze použít armor_layer_1.png
[21:09:14] [Server thread/INFO]: Oraxen | Converting global lang file to individual language files...
[21:09:14] [Server thread/INFO]: Oraxen | Verifying formatting for textures and models...
[21:09:14] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[21:09:14] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[21:09:14] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[21:09:14] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[21:09:14] [Server thread/INFO]: Oraxen | Pack contains malformed texture(s) and/or model(s)
[21:09:14] [Server thread/INFO]: Oraxen | These need to be fixed, otherwise the resourcepack will be broken

[21:09:14] [Server thread/INFO]: Oraxen | Generating atlas-file for 1.19.3+ Resource Pack format
[21:09:14] [Server thread/INFO]: Oraxen | Attempting to exclude malformed textures from atlas-file
[21:09:14] [Server thread/INFO]: 
[21:09:14] [Server thread/INFO]: Oraxen | No duplicate font files found!
[21:09:14] [Server thread/INFO]: 
[21:09:15] [Craft Scheduler Thread - 33 - Oraxen/INFO]: Oraxen | Automatické nahrání resource packu je zapnuto, nahrávám...
[21:09:16] [Craft Scheduler Thread - 33 - Oraxen/INFO]: Oraxen | Resourcepack nahrán na url http://atlas.oraxen.com:8080/pack.zip?id=d784d1a9812b9a7d605994f15ea5342128142721 za 1097 ms
[21:09:31] [Server thread/INFO]: LuKyN94 issued server command: /oxn reload all
[21:09:31] [Server thread/INFO]: Oraxen | emerald_helmet is using deprecated Durability-Mechanic...
[21:09:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:31] [Server thread/INFO]: Oraxen | emerald_chestplate is using deprecated Durability-Mechanic...
[21:09:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:31] [Server thread/INFO]: Oraxen | emerald_leggings is using deprecated Durability-Mechanic...
[21:09:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:31] [Server thread/INFO]: Oraxen | emerald_boots is using deprecated Durability-Mechanic...
[21:09:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:31] [Server thread/INFO]: Oraxen | obsidian_helmet is using deprecated Durability-Mechanic...
[21:09:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:31] [Server thread/INFO]: Oraxen | obsidian_chestplate is using deprecated Durability-Mechanic...
[21:09:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:31] [Server thread/INFO]: Oraxen | obsidian_leggings is using deprecated Durability-Mechanic...
[21:09:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:31] [Server thread/INFO]: Oraxen | obsidian_boots is using deprecated Durability-Mechanic...
[21:09:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:31] [Server thread/INFO]: Oraxen | ruby_helmet is using deprecated Durability-Mechanic...
[21:09:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:31] [Server thread/INFO]: Oraxen | ruby_chestplate is using deprecated Durability-Mechanic...
[21:09:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:31] [Server thread/INFO]: Oraxen | ruby_leggings is using deprecated Durability-Mechanic...
[21:09:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:31] [Server thread/INFO]: Oraxen | ruby_boots is using deprecated Durability-Mechanic...
[21:09:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:31] [Server thread/INFO]: Oraxen | example_sword is using deprecated Durability-Mechanic...
[21:09:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:31] [Server thread/INFO]: Oraxen | legendary_hammer is using deprecated Durability-Mechanic...
[21:09:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:31] [Server thread/INFO]: Oraxen | obsidian_pickaxe is using deprecated Durability-Mechanic...
[21:09:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:31] [Server thread/INFO]: Oraxen | bedrock_pickaxe is using deprecated Durability-Mechanic...
[21:09:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:31] [Server thread/INFO]: Oraxen | onyx_hammer is using deprecated Durability-Mechanic...
[21:09:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:31] [Server thread/INFO]: Oraxen | orax_hammer is using deprecated Durability-Mechanic...
[21:09:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:31] [Server thread/INFO]: Oraxen | fire_hammer is using deprecated Durability-Mechanic...
[21:09:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:31] [Server thread/INFO]: Oraxen | glass_sword is using deprecated Durability-Mechanic...
[21:09:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:31] [Server thread/INFO]: Oraxen | obsidian_sword is using deprecated Durability-Mechanic...
[21:09:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:31] [Server thread/INFO]: Oraxen | blood_sword is using deprecated Durability-Mechanic...
[21:09:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:31] [Server thread/INFO]: Oraxen | octavia_sword is using deprecated Durability-Mechanic...
[21:09:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:31] [Server thread/INFO]: Oraxen | dagger is using deprecated Durability-Mechanic...
[21:09:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:31] [Server thread/INFO]: Oraxen | katana is using deprecated Durability-Mechanic...
[21:09:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:31] [Server thread/INFO]: Oraxen | Updating all items in player-inventories...
[21:09:31] [Server thread/INFO]: Oraxen | Slicing gui-textures to 1.20.2-format...
[21:09:31] [Server thread/INFO]: Oraxen | Successfully sliced gui-textures for 1.20.2
[21:09:31] [Server thread/INFO]: Oraxen | Žádný item s názvem leggings nenalezen. Nelze použít armor_layer_2.png
[21:09:31] [Server thread/INFO]: Oraxen | Žádný item s názvem boots nenalezen. Nelze použít armor_layer_2.png
[21:09:31] [Server thread/INFO]: Oraxen | Žádný item s názvem helmet nenalezen. Nelze použít armor_layer_1.png
[21:09:31] [Server thread/INFO]: Oraxen | Žádný item s názvem chestplate nenalezen. Nelze použít armor_layer_1.png
[21:09:31] [Server thread/INFO]: Oraxen | Converting global lang file to individual language files...
[21:09:31] [Server thread/INFO]: Oraxen | Verifying formatting for textures and models...
[21:09:31] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[21:09:31] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[21:09:31] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[21:09:31] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[21:09:31] [Server thread/INFO]: Oraxen | Pack contains malformed texture(s) and/or model(s)
[21:09:31] [Server thread/INFO]: Oraxen | These need to be fixed, otherwise the resourcepack will be broken

[21:09:31] [Server thread/INFO]: Oraxen | Generating atlas-file for 1.19.3+ Resource Pack format
[21:09:31] [Server thread/INFO]: Oraxen | Attempting to exclude malformed textures from atlas-file
[21:09:31] [Server thread/INFO]: 
[21:09:31] [Server thread/INFO]: Oraxen | No duplicate font files found!
[21:09:31] [Server thread/INFO]: 
[21:09:31] [Craft Scheduler Thread - 21 - Oraxen/INFO]: Oraxen | Automatické nahrání resource packu je zapnuto, nahrávám...
[21:09:32] [Craft Scheduler Thread - 21 - Oraxen/INFO]: Oraxen | Resourcepack nahrán na url http://atlas.oraxen.com:8080/pack.zip?id=f4ba919fd5ed4510c02c1bd79528845ca1165080 za 1087 ms
[21:09:47] [Server thread/INFO]: LuKyN94 issued server command: /oxn reload all
[21:09:47] [Server thread/INFO]: Oraxen | emerald_helmet is using deprecated Durability-Mechanic...
[21:09:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:47] [Server thread/INFO]: Oraxen | emerald_chestplate is using deprecated Durability-Mechanic...
[21:09:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:47] [Server thread/INFO]: Oraxen | emerald_leggings is using deprecated Durability-Mechanic...
[21:09:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:47] [Server thread/INFO]: Oraxen | emerald_boots is using deprecated Durability-Mechanic...
[21:09:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:47] [Server thread/INFO]: Oraxen | obsidian_helmet is using deprecated Durability-Mechanic...
[21:09:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:47] [Server thread/INFO]: Oraxen | obsidian_chestplate is using deprecated Durability-Mechanic...
[21:09:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:47] [Server thread/INFO]: Oraxen | obsidian_leggings is using deprecated Durability-Mechanic...
[21:09:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:47] [Server thread/INFO]: Oraxen | obsidian_boots is using deprecated Durability-Mechanic...
[21:09:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:47] [Server thread/INFO]: Oraxen | ruby_helmet is using deprecated Durability-Mechanic...
[21:09:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:47] [Server thread/INFO]: Oraxen | ruby_chestplate is using deprecated Durability-Mechanic...
[21:09:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:47] [Server thread/INFO]: Oraxen | ruby_leggings is using deprecated Durability-Mechanic...
[21:09:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:47] [Server thread/INFO]: Oraxen | ruby_boots is using deprecated Durability-Mechanic...
[21:09:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:47] [Server thread/INFO]: Oraxen | example_sword is using deprecated Durability-Mechanic...
[21:09:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:47] [Server thread/INFO]: Oraxen | legendary_hammer is using deprecated Durability-Mechanic...
[21:09:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:47] [Server thread/INFO]: Oraxen | obsidian_pickaxe is using deprecated Durability-Mechanic...
[21:09:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:47] [Server thread/INFO]: Oraxen | bedrock_pickaxe is using deprecated Durability-Mechanic...
[21:09:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:47] [Server thread/INFO]: Oraxen | onyx_hammer is using deprecated Durability-Mechanic...
[21:09:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:47] [Server thread/INFO]: Oraxen | orax_hammer is using deprecated Durability-Mechanic...
[21:09:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:47] [Server thread/INFO]: Oraxen | fire_hammer is using deprecated Durability-Mechanic...
[21:09:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:47] [Server thread/INFO]: Oraxen | glass_sword is using deprecated Durability-Mechanic...
[21:09:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:47] [Server thread/INFO]: Oraxen | obsidian_sword is using deprecated Durability-Mechanic...
[21:09:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:47] [Server thread/INFO]: Oraxen | blood_sword is using deprecated Durability-Mechanic...
[21:09:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:47] [Server thread/INFO]: Oraxen | octavia_sword is using deprecated Durability-Mechanic...
[21:09:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:47] [Server thread/INFO]: Oraxen | dagger is using deprecated Durability-Mechanic...
[21:09:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:47] [Server thread/INFO]: Oraxen | katana is using deprecated Durability-Mechanic...
[21:09:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:09:47] [Server thread/INFO]: Oraxen | Updating all items in player-inventories...
[21:09:47] [Server thread/INFO]: Oraxen | Slicing gui-textures to 1.20.2-format...
[21:09:47] [Server thread/INFO]: Oraxen | Successfully sliced gui-textures for 1.20.2
[21:09:47] [Server thread/INFO]: Oraxen | Žádný item s názvem leggings nenalezen. Nelze použít armor_layer_2.png
[21:09:47] [Server thread/INFO]: Oraxen | Žádný item s názvem boots nenalezen. Nelze použít armor_layer_2.png
[21:09:47] [Server thread/INFO]: Oraxen | Žádný item s názvem helmet nenalezen. Nelze použít armor_layer_1.png
[21:09:47] [Server thread/INFO]: Oraxen | Žádný item s názvem chestplate nenalezen. Nelze použít armor_layer_1.png
[21:09:47] [Server thread/INFO]: Oraxen | Converting global lang file to individual language files...
[21:09:47] [Server thread/INFO]: Oraxen | Verifying formatting for textures and models...
[21:09:47] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[21:09:47] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[21:09:47] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[21:09:47] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[21:09:47] [Server thread/INFO]: Oraxen | Pack contains malformed texture(s) and/or model(s)
[21:09:47] [Server thread/INFO]: Oraxen | These need to be fixed, otherwise the resourcepack will be broken

[21:09:47] [Server thread/INFO]: Oraxen | Generating atlas-file for 1.19.3+ Resource Pack format
[21:09:47] [Server thread/INFO]: Oraxen | Attempting to exclude malformed textures from atlas-file
[21:09:47] [Server thread/INFO]: 
[21:09:47] [Server thread/INFO]: Oraxen | No duplicate font files found!
[21:09:47] [Server thread/INFO]: 
[21:09:47] [Craft Scheduler Thread - 46 - Oraxen/INFO]: Oraxen | Automatické nahrání resource packu je zapnuto, nahrávám...
[21:09:49] [Craft Scheduler Thread - 46 - Oraxen/INFO]: Oraxen | Resourcepack nahrán na url http://atlas.oraxen.com:8080/pack.zip?id=5a3e2d05f2ff228c92e1af1aa549135472e58d15 za 1010 ms
[21:10:06] [Server thread/INFO]: LuKyN94 issued server command: /oxn reload all
[21:10:06] [Server thread/INFO]: Oraxen | emerald_helmet is using deprecated Durability-Mechanic...
[21:10:06] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:06] [Server thread/INFO]: Oraxen | emerald_chestplate is using deprecated Durability-Mechanic...
[21:10:06] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:06] [Server thread/INFO]: Oraxen | emerald_leggings is using deprecated Durability-Mechanic...
[21:10:06] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:06] [Server thread/INFO]: Oraxen | emerald_boots is using deprecated Durability-Mechanic...
[21:10:06] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:06] [Server thread/INFO]: Oraxen | obsidian_helmet is using deprecated Durability-Mechanic...
[21:10:06] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:06] [Server thread/INFO]: Oraxen | obsidian_chestplate is using deprecated Durability-Mechanic...
[21:10:06] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:06] [Server thread/INFO]: Oraxen | obsidian_leggings is using deprecated Durability-Mechanic...
[21:10:06] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:06] [Server thread/INFO]: Oraxen | obsidian_boots is using deprecated Durability-Mechanic...
[21:10:06] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:06] [Server thread/INFO]: Oraxen | ruby_helmet is using deprecated Durability-Mechanic...
[21:10:06] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:06] [Server thread/INFO]: Oraxen | ruby_chestplate is using deprecated Durability-Mechanic...
[21:10:06] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:06] [Server thread/INFO]: Oraxen | ruby_leggings is using deprecated Durability-Mechanic...
[21:10:06] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:06] [Server thread/INFO]: Oraxen | ruby_boots is using deprecated Durability-Mechanic...
[21:10:06] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:06] [Server thread/INFO]: Oraxen | example_sword is using deprecated Durability-Mechanic...
[21:10:06] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:06] [Server thread/INFO]: Oraxen | legendary_hammer is using deprecated Durability-Mechanic...
[21:10:06] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:06] [Server thread/INFO]: Oraxen | obsidian_pickaxe is using deprecated Durability-Mechanic...
[21:10:06] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:06] [Server thread/INFO]: Oraxen | bedrock_pickaxe is using deprecated Durability-Mechanic...
[21:10:06] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:06] [Server thread/INFO]: Oraxen | onyx_hammer is using deprecated Durability-Mechanic...
[21:10:06] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:06] [Server thread/INFO]: Oraxen | orax_hammer is using deprecated Durability-Mechanic...
[21:10:06] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:06] [Server thread/INFO]: Oraxen | fire_hammer is using deprecated Durability-Mechanic...
[21:10:06] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:06] [Server thread/INFO]: Oraxen | glass_sword is using deprecated Durability-Mechanic...
[21:10:06] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:06] [Server thread/INFO]: Oraxen | obsidian_sword is using deprecated Durability-Mechanic...
[21:10:06] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:06] [Server thread/INFO]: Oraxen | blood_sword is using deprecated Durability-Mechanic...
[21:10:06] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:06] [Server thread/INFO]: Oraxen | octavia_sword is using deprecated Durability-Mechanic...
[21:10:06] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:06] [Server thread/INFO]: Oraxen | dagger is using deprecated Durability-Mechanic...
[21:10:06] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:06] [Server thread/INFO]: Oraxen | katana is using deprecated Durability-Mechanic...
[21:10:06] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:06] [Server thread/INFO]: Oraxen | Updating all items in player-inventories...
[21:10:06] [Server thread/INFO]: Oraxen | Slicing gui-textures to 1.20.2-format...
[21:10:06] [Server thread/INFO]: Oraxen | Successfully sliced gui-textures for 1.20.2
[21:10:06] [Server thread/INFO]: Oraxen | Žádný item s názvem leggings nenalezen. Nelze použít armor_layer_2.png
[21:10:06] [Server thread/INFO]: Oraxen | Žádný item s názvem boots nenalezen. Nelze použít armor_layer_2.png
[21:10:06] [Server thread/INFO]: Oraxen | Žádný item s názvem helmet nenalezen. Nelze použít armor_layer_1.png
[21:10:06] [Server thread/INFO]: Oraxen | Žádný item s názvem chestplate nenalezen. Nelze použít armor_layer_1.png
[21:10:06] [Server thread/INFO]: Oraxen | Converting global lang file to individual language files...
[21:10:06] [Server thread/INFO]: Oraxen | Verifying formatting for textures and models...
[21:10:06] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[21:10:06] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[21:10:06] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[21:10:06] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[21:10:06] [Server thread/INFO]: Oraxen | Pack contains malformed texture(s) and/or model(s)
[21:10:06] [Server thread/INFO]: Oraxen | These need to be fixed, otherwise the resourcepack will be broken

[21:10:06] [Server thread/INFO]: Oraxen | Generating atlas-file for 1.19.3+ Resource Pack format
[21:10:06] [Server thread/INFO]: Oraxen | Attempting to exclude malformed textures from atlas-file
[21:10:06] [Server thread/INFO]: 
[21:10:06] [Server thread/INFO]: Oraxen | No duplicate font files found!
[21:10:06] [Server thread/INFO]: 
[21:10:06] [Craft Scheduler Thread - 36 - Oraxen/INFO]: Oraxen | Automatické nahrání resource packu je zapnuto, nahrávám...
[21:10:07] [Craft Scheduler Thread - 36 - Oraxen/INFO]: Oraxen | Resourcepack nahrán na url http://atlas.oraxen.com:8080/pack.zip?id=33d6109e5681c3c90293956883a50369b55d3de8 za 1062 ms
[21:10:22] [Server thread/INFO]: LuKyN94 issued server command: /oxn reload all
[21:10:22] [Server thread/INFO]: Oraxen | emerald_helmet is using deprecated Durability-Mechanic...
[21:10:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:22] [Server thread/INFO]: Oraxen | emerald_chestplate is using deprecated Durability-Mechanic...
[21:10:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:22] [Server thread/INFO]: Oraxen | emerald_leggings is using deprecated Durability-Mechanic...
[21:10:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:22] [Server thread/INFO]: Oraxen | emerald_boots is using deprecated Durability-Mechanic...
[21:10:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:22] [Server thread/INFO]: Oraxen | obsidian_helmet is using deprecated Durability-Mechanic...
[21:10:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:22] [Server thread/INFO]: Oraxen | obsidian_chestplate is using deprecated Durability-Mechanic...
[21:10:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:22] [Server thread/INFO]: Oraxen | obsidian_leggings is using deprecated Durability-Mechanic...
[21:10:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:22] [Server thread/INFO]: Oraxen | obsidian_boots is using deprecated Durability-Mechanic...
[21:10:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:22] [Server thread/INFO]: Oraxen | ruby_helmet is using deprecated Durability-Mechanic...
[21:10:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:22] [Server thread/INFO]: Oraxen | ruby_chestplate is using deprecated Durability-Mechanic...
[21:10:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:22] [Server thread/INFO]: Oraxen | ruby_leggings is using deprecated Durability-Mechanic...
[21:10:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:22] [Server thread/INFO]: Oraxen | ruby_boots is using deprecated Durability-Mechanic...
[21:10:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:22] [Server thread/INFO]: Oraxen | example_sword is using deprecated Durability-Mechanic...
[21:10:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:22] [Server thread/INFO]: Oraxen | legendary_hammer is using deprecated Durability-Mechanic...
[21:10:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:22] [Server thread/INFO]: Oraxen | obsidian_pickaxe is using deprecated Durability-Mechanic...
[21:10:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:22] [Server thread/INFO]: Oraxen | bedrock_pickaxe is using deprecated Durability-Mechanic...
[21:10:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:22] [Server thread/INFO]: Oraxen | onyx_hammer is using deprecated Durability-Mechanic...
[21:10:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:22] [Server thread/INFO]: Oraxen | orax_hammer is using deprecated Durability-Mechanic...
[21:10:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:22] [Server thread/INFO]: Oraxen | fire_hammer is using deprecated Durability-Mechanic...
[21:10:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:22] [Server thread/INFO]: Oraxen | glass_sword is using deprecated Durability-Mechanic...
[21:10:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:22] [Server thread/INFO]: Oraxen | obsidian_sword is using deprecated Durability-Mechanic...
[21:10:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:22] [Server thread/INFO]: Oraxen | blood_sword is using deprecated Durability-Mechanic...
[21:10:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:22] [Server thread/INFO]: Oraxen | octavia_sword is using deprecated Durability-Mechanic...
[21:10:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:22] [Server thread/INFO]: Oraxen | dagger is using deprecated Durability-Mechanic...
[21:10:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:22] [Server thread/INFO]: Oraxen | katana is using deprecated Durability-Mechanic...
[21:10:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:22] [Server thread/INFO]: Oraxen | Updating all items in player-inventories...
[21:10:22] [Server thread/INFO]: Oraxen | Slicing gui-textures to 1.20.2-format...
[21:10:22] [Server thread/INFO]: Oraxen | Successfully sliced gui-textures for 1.20.2
[21:10:22] [Server thread/INFO]: Oraxen | Žádný item s názvem leggings nenalezen. Nelze použít armor_layer_2.png
[21:10:22] [Server thread/INFO]: Oraxen | Žádný item s názvem boots nenalezen. Nelze použít armor_layer_2.png
[21:10:22] [Server thread/INFO]: Oraxen | Žádný item s názvem helmet nenalezen. Nelze použít armor_layer_1.png
[21:10:22] [Server thread/INFO]: Oraxen | Žádný item s názvem chestplate nenalezen. Nelze použít armor_layer_1.png
[21:10:22] [Server thread/INFO]: Oraxen | Converting global lang file to individual language files...
[21:10:22] [Server thread/INFO]: Oraxen | Verifying formatting for textures and models...
[21:10:22] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[21:10:22] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[21:10:22] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[21:10:22] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[21:10:23] [Server thread/INFO]: Oraxen | Pack contains malformed texture(s) and/or model(s)
[21:10:23] [Server thread/INFO]: Oraxen | These need to be fixed, otherwise the resourcepack will be broken

[21:10:23] [Server thread/INFO]: Oraxen | Generating atlas-file for 1.19.3+ Resource Pack format
[21:10:23] [Server thread/INFO]: Oraxen | Attempting to exclude malformed textures from atlas-file
[21:10:23] [Server thread/INFO]: 
[21:10:23] [Server thread/INFO]: Oraxen | No duplicate font files found!
[21:10:23] [Server thread/INFO]: 
[21:10:23] [Craft Scheduler Thread - 23 - Oraxen/INFO]: Oraxen | Automatické nahrání resource packu je zapnuto, nahrávám...
[21:10:24] [Craft Scheduler Thread - 23 - Oraxen/INFO]: Oraxen | Resourcepack nahrán na url http://atlas.oraxen.com:8080/pack.zip?id=38737e8b3bfd83c03c2f72a23a0cb4a08805f45c za 1069 ms
[21:10:35] [Server thread/INFO]: LuKyN94 issued server command: /oxn reload all
[21:10:35] [Server thread/INFO]: Oraxen | emerald_helmet is using deprecated Durability-Mechanic...
[21:10:35] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:35] [Server thread/INFO]: Oraxen | emerald_chestplate is using deprecated Durability-Mechanic...
[21:10:35] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:35] [Server thread/INFO]: Oraxen | emerald_leggings is using deprecated Durability-Mechanic...
[21:10:35] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:35] [Server thread/INFO]: Oraxen | emerald_boots is using deprecated Durability-Mechanic...
[21:10:35] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:35] [Server thread/INFO]: Oraxen | obsidian_helmet is using deprecated Durability-Mechanic...
[21:10:35] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:35] [Server thread/INFO]: Oraxen | obsidian_chestplate is using deprecated Durability-Mechanic...
[21:10:35] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:35] [Server thread/INFO]: Oraxen | obsidian_leggings is using deprecated Durability-Mechanic...
[21:10:35] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:35] [Server thread/INFO]: Oraxen | obsidian_boots is using deprecated Durability-Mechanic...
[21:10:35] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:35] [Server thread/INFO]: Oraxen | ruby_helmet is using deprecated Durability-Mechanic...
[21:10:35] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:35] [Server thread/INFO]: Oraxen | ruby_chestplate is using deprecated Durability-Mechanic...
[21:10:35] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:35] [Server thread/INFO]: Oraxen | ruby_leggings is using deprecated Durability-Mechanic...
[21:10:35] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:35] [Server thread/INFO]: Oraxen | ruby_boots is using deprecated Durability-Mechanic...
[21:10:35] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:35] [Server thread/INFO]: Oraxen | example_sword is using deprecated Durability-Mechanic...
[21:10:35] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:35] [Server thread/INFO]: Oraxen | legendary_hammer is using deprecated Durability-Mechanic...
[21:10:35] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:35] [Server thread/INFO]: Oraxen | obsidian_pickaxe is using deprecated Durability-Mechanic...
[21:10:35] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:35] [Server thread/INFO]: Oraxen | bedrock_pickaxe is using deprecated Durability-Mechanic...
[21:10:35] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:35] [Server thread/INFO]: Oraxen | onyx_hammer is using deprecated Durability-Mechanic...
[21:10:35] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:35] [Server thread/INFO]: Oraxen | orax_hammer is using deprecated Durability-Mechanic...
[21:10:35] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:35] [Server thread/INFO]: Oraxen | fire_hammer is using deprecated Durability-Mechanic...
[21:10:35] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:35] [Server thread/INFO]: Oraxen | glass_sword is using deprecated Durability-Mechanic...
[21:10:35] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:35] [Server thread/INFO]: Oraxen | obsidian_sword is using deprecated Durability-Mechanic...
[21:10:35] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:35] [Server thread/INFO]: Oraxen | blood_sword is using deprecated Durability-Mechanic...
[21:10:35] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:35] [Server thread/INFO]: Oraxen | octavia_sword is using deprecated Durability-Mechanic...
[21:10:35] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:35] [Server thread/INFO]: Oraxen | dagger is using deprecated Durability-Mechanic...
[21:10:35] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:35] [Server thread/INFO]: Oraxen | katana is using deprecated Durability-Mechanic...
[21:10:35] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:35] [Server thread/INFO]: Oraxen | Updating all items in player-inventories...
[21:10:35] [Server thread/INFO]: Oraxen | Slicing gui-textures to 1.20.2-format...
[21:10:35] [Server thread/INFO]: Oraxen | Successfully sliced gui-textures for 1.20.2
[21:10:35] [Server thread/INFO]: Oraxen | Žádný item s názvem leggings nenalezen. Nelze použít armor_layer_2.png
[21:10:35] [Server thread/INFO]: Oraxen | Žádný item s názvem boots nenalezen. Nelze použít armor_layer_2.png
[21:10:35] [Server thread/INFO]: Oraxen | Žádný item s názvem helmet nenalezen. Nelze použít armor_layer_1.png
[21:10:35] [Server thread/INFO]: Oraxen | Žádný item s názvem chestplate nenalezen. Nelze použít armor_layer_1.png
[21:10:35] [Server thread/INFO]: Oraxen | Converting global lang file to individual language files...
[21:10:35] [Server thread/INFO]: Oraxen | Verifying formatting for textures and models...
[21:10:35] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[21:10:35] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[21:10:35] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[21:10:35] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[21:10:35] [Server thread/INFO]: Oraxen | Pack contains malformed texture(s) and/or model(s)
[21:10:35] [Server thread/INFO]: Oraxen | These need to be fixed, otherwise the resourcepack will be broken

[21:10:35] [Server thread/INFO]: Oraxen | Generating atlas-file for 1.19.3+ Resource Pack format
[21:10:35] [Server thread/INFO]: Oraxen | Attempting to exclude malformed textures from atlas-file
[21:10:35] [Server thread/INFO]: 
[21:10:35] [Server thread/INFO]: Oraxen | No duplicate font files found!
[21:10:35] [Server thread/INFO]: 
[21:10:36] [Craft Scheduler Thread - 40 - Oraxen/INFO]: Oraxen | Automatické nahrání resource packu je zapnuto, nahrávám...
[21:10:37] [Craft Scheduler Thread - 40 - Oraxen/INFO]: Oraxen | Resourcepack nahrán na url http://atlas.oraxen.com:8080/pack.zip?id=b8cbb833bca78c4f360a154d1c5ab99c0791d290 za 1123 ms
[21:10:47] [Server thread/INFO]: LuKyN94 issued server command: /oxn reload all
[21:10:47] [Server thread/INFO]: Oraxen | emerald_helmet is using deprecated Durability-Mechanic...
[21:10:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:47] [Server thread/INFO]: Oraxen | emerald_chestplate is using deprecated Durability-Mechanic...
[21:10:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:47] [Server thread/INFO]: Oraxen | emerald_leggings is using deprecated Durability-Mechanic...
[21:10:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:47] [Server thread/INFO]: Oraxen | emerald_boots is using deprecated Durability-Mechanic...
[21:10:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:47] [Server thread/INFO]: Oraxen | obsidian_helmet is using deprecated Durability-Mechanic...
[21:10:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:47] [Server thread/INFO]: Oraxen | obsidian_chestplate is using deprecated Durability-Mechanic...
[21:10:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:47] [Server thread/INFO]: Oraxen | obsidian_leggings is using deprecated Durability-Mechanic...
[21:10:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:47] [Server thread/INFO]: Oraxen | obsidian_boots is using deprecated Durability-Mechanic...
[21:10:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:47] [Server thread/INFO]: Oraxen | ruby_helmet is using deprecated Durability-Mechanic...
[21:10:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:47] [Server thread/INFO]: Oraxen | ruby_chestplate is using deprecated Durability-Mechanic...
[21:10:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:47] [Server thread/INFO]: Oraxen | ruby_leggings is using deprecated Durability-Mechanic...
[21:10:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:47] [Server thread/INFO]: Oraxen | ruby_boots is using deprecated Durability-Mechanic...
[21:10:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:47] [Server thread/INFO]: Oraxen | example_sword is using deprecated Durability-Mechanic...
[21:10:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:47] [Server thread/INFO]: Oraxen | legendary_hammer is using deprecated Durability-Mechanic...
[21:10:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:47] [Server thread/INFO]: Oraxen | obsidian_pickaxe is using deprecated Durability-Mechanic...
[21:10:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:47] [Server thread/INFO]: Oraxen | bedrock_pickaxe is using deprecated Durability-Mechanic...
[21:10:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:47] [Server thread/INFO]: Oraxen | onyx_hammer is using deprecated Durability-Mechanic...
[21:10:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:47] [Server thread/INFO]: Oraxen | orax_hammer is using deprecated Durability-Mechanic...
[21:10:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:47] [Server thread/INFO]: Oraxen | fire_hammer is using deprecated Durability-Mechanic...
[21:10:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:47] [Server thread/INFO]: Oraxen | glass_sword is using deprecated Durability-Mechanic...
[21:10:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:47] [Server thread/INFO]: Oraxen | obsidian_sword is using deprecated Durability-Mechanic...
[21:10:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:47] [Server thread/INFO]: Oraxen | blood_sword is using deprecated Durability-Mechanic...
[21:10:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:47] [Server thread/INFO]: Oraxen | octavia_sword is using deprecated Durability-Mechanic...
[21:10:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:47] [Server thread/INFO]: Oraxen | dagger is using deprecated Durability-Mechanic...
[21:10:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:47] [Server thread/INFO]: Oraxen | katana is using deprecated Durability-Mechanic...
[21:10:47] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:10:47] [Server thread/INFO]: Oraxen | Updating all items in player-inventories...
[21:10:47] [Server thread/INFO]: Oraxen | Slicing gui-textures to 1.20.2-format...
[21:10:47] [Server thread/INFO]: Oraxen | Successfully sliced gui-textures for 1.20.2
[21:10:47] [Server thread/INFO]: Oraxen | Žádný item s názvem leggings nenalezen. Nelze použít armor_layer_2.png
[21:10:47] [Server thread/INFO]: Oraxen | Žádný item s názvem boots nenalezen. Nelze použít armor_layer_2.png
[21:10:47] [Server thread/INFO]: Oraxen | Žádný item s názvem helmet nenalezen. Nelze použít armor_layer_1.png
[21:10:47] [Server thread/INFO]: Oraxen | Žádný item s názvem chestplate nenalezen. Nelze použít armor_layer_1.png
[21:10:47] [Server thread/INFO]: Oraxen | Converting global lang file to individual language files...
[21:10:47] [Server thread/INFO]: Oraxen | Verifying formatting for textures and models...
[21:10:47] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[21:10:47] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[21:10:47] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[21:10:47] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[21:10:47] [Server thread/INFO]: Oraxen | Pack contains malformed texture(s) and/or model(s)
[21:10:47] [Server thread/INFO]: Oraxen | These need to be fixed, otherwise the resourcepack will be broken

[21:10:47] [Server thread/INFO]: Oraxen | Generating atlas-file for 1.19.3+ Resource Pack format
[21:10:47] [Server thread/INFO]: Oraxen | Attempting to exclude malformed textures from atlas-file
[21:10:47] [Server thread/INFO]: 
[21:10:47] [Server thread/INFO]: Oraxen | No duplicate font files found!
[21:10:47] [Server thread/INFO]: 
[21:10:48] [Craft Scheduler Thread - 21 - Oraxen/INFO]: Oraxen | Automatické nahrání resource packu je zapnuto, nahrávám...
[21:10:49] [Craft Scheduler Thread - 21 - Oraxen/INFO]: Oraxen | Resourcepack nahrán na url http://atlas.oraxen.com:8080/pack.zip?id=3e5675ca9c5fddd51eea016d13493cf2c979e7fa za 1091 ms
[21:11:01] [Server thread/INFO]: LuKyN94 issued server command: /oxn reload all
[21:11:01] [Server thread/INFO]: Oraxen | emerald_helmet is using deprecated Durability-Mechanic...
[21:11:01] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:01] [Server thread/INFO]: Oraxen | emerald_chestplate is using deprecated Durability-Mechanic...
[21:11:01] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:01] [Server thread/INFO]: Oraxen | emerald_leggings is using deprecated Durability-Mechanic...
[21:11:01] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:01] [Server thread/INFO]: Oraxen | emerald_boots is using deprecated Durability-Mechanic...
[21:11:01] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:01] [Server thread/INFO]: Oraxen | obsidian_helmet is using deprecated Durability-Mechanic...
[21:11:01] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:01] [Server thread/INFO]: Oraxen | obsidian_chestplate is using deprecated Durability-Mechanic...
[21:11:01] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:01] [Server thread/INFO]: Oraxen | obsidian_leggings is using deprecated Durability-Mechanic...
[21:11:01] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:01] [Server thread/INFO]: Oraxen | obsidian_boots is using deprecated Durability-Mechanic...
[21:11:01] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:01] [Server thread/INFO]: Oraxen | ruby_helmet is using deprecated Durability-Mechanic...
[21:11:01] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:01] [Server thread/INFO]: Oraxen | ruby_chestplate is using deprecated Durability-Mechanic...
[21:11:01] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:01] [Server thread/INFO]: Oraxen | ruby_leggings is using deprecated Durability-Mechanic...
[21:11:01] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:01] [Server thread/INFO]: Oraxen | ruby_boots is using deprecated Durability-Mechanic...
[21:11:01] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:01] [Server thread/INFO]: Oraxen | example_sword is using deprecated Durability-Mechanic...
[21:11:01] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:01] [Server thread/INFO]: Oraxen | legendary_hammer is using deprecated Durability-Mechanic...
[21:11:01] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:01] [Server thread/INFO]: Oraxen | obsidian_pickaxe is using deprecated Durability-Mechanic...
[21:11:01] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:01] [Server thread/INFO]: Oraxen | bedrock_pickaxe is using deprecated Durability-Mechanic...
[21:11:01] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:01] [Server thread/INFO]: Oraxen | onyx_hammer is using deprecated Durability-Mechanic...
[21:11:01] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:01] [Server thread/INFO]: Oraxen | orax_hammer is using deprecated Durability-Mechanic...
[21:11:01] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:01] [Server thread/INFO]: Oraxen | fire_hammer is using deprecated Durability-Mechanic...
[21:11:01] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:01] [Server thread/INFO]: Oraxen | glass_sword is using deprecated Durability-Mechanic...
[21:11:01] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:01] [Server thread/INFO]: Oraxen | obsidian_sword is using deprecated Durability-Mechanic...
[21:11:01] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:01] [Server thread/INFO]: Oraxen | blood_sword is using deprecated Durability-Mechanic...
[21:11:01] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:01] [Server thread/INFO]: Oraxen | octavia_sword is using deprecated Durability-Mechanic...
[21:11:01] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:01] [Server thread/INFO]: Oraxen | dagger is using deprecated Durability-Mechanic...
[21:11:01] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:01] [Server thread/INFO]: Oraxen | katana is using deprecated Durability-Mechanic...
[21:11:01] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:01] [Server thread/INFO]: Oraxen | Updating all items in player-inventories...
[21:11:01] [Server thread/INFO]: Oraxen | Slicing gui-textures to 1.20.2-format...
[21:11:01] [Server thread/INFO]: Oraxen | Successfully sliced gui-textures for 1.20.2
[21:11:01] [Server thread/INFO]: Oraxen | Žádný item s názvem leggings nenalezen. Nelze použít armor_layer_2.png
[21:11:01] [Server thread/INFO]: Oraxen | Žádný item s názvem boots nenalezen. Nelze použít armor_layer_2.png
[21:11:01] [Server thread/INFO]: Oraxen | Žádný item s názvem helmet nenalezen. Nelze použít armor_layer_1.png
[21:11:01] [Server thread/INFO]: Oraxen | Žádný item s názvem chestplate nenalezen. Nelze použít armor_layer_1.png
[21:11:01] [Server thread/INFO]: Oraxen | Converting global lang file to individual language files...
[21:11:01] [Server thread/INFO]: Oraxen | Verifying formatting for textures and models...
[21:11:01] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[21:11:01] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[21:11:01] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[21:11:01] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[21:11:01] [Server thread/INFO]: Oraxen | Pack contains malformed texture(s) and/or model(s)
[21:11:01] [Server thread/INFO]: Oraxen | These need to be fixed, otherwise the resourcepack will be broken

[21:11:01] [Server thread/INFO]: Oraxen | Generating atlas-file for 1.19.3+ Resource Pack format
[21:11:01] [Server thread/INFO]: Oraxen | Attempting to exclude malformed textures from atlas-file
[21:11:01] [Server thread/INFO]: 
[21:11:01] [Server thread/INFO]: Oraxen | No duplicate font files found!
[21:11:01] [Server thread/INFO]: 
[21:11:01] [Craft Scheduler Thread - 33 - Oraxen/INFO]: Oraxen | Automatické nahrání resource packu je zapnuto, nahrávám...
[21:11:02] [Craft Scheduler Thread - 33 - Oraxen/INFO]: Oraxen | Resourcepack nahrán na url http://atlas.oraxen.com:8080/pack.zip?id=b6e57948f037d37b8a88f298b3c244ec85df5db2 za 1057 ms
[21:11:20] [Server thread/INFO]: LuKyN94 issued server command: /oxn reload all
[21:11:20] [Server thread/INFO]: Oraxen | emerald_helmet is using deprecated Durability-Mechanic...
[21:11:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:20] [Server thread/INFO]: Oraxen | emerald_chestplate is using deprecated Durability-Mechanic...
[21:11:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:20] [Server thread/INFO]: Oraxen | emerald_leggings is using deprecated Durability-Mechanic...
[21:11:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:20] [Server thread/INFO]: Oraxen | emerald_boots is using deprecated Durability-Mechanic...
[21:11:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:20] [Server thread/INFO]: Oraxen | obsidian_helmet is using deprecated Durability-Mechanic...
[21:11:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:20] [Server thread/INFO]: Oraxen | obsidian_chestplate is using deprecated Durability-Mechanic...
[21:11:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:20] [Server thread/INFO]: Oraxen | obsidian_leggings is using deprecated Durability-Mechanic...
[21:11:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:20] [Server thread/INFO]: Oraxen | obsidian_boots is using deprecated Durability-Mechanic...
[21:11:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:20] [Server thread/INFO]: Oraxen | ruby_helmet is using deprecated Durability-Mechanic...
[21:11:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:20] [Server thread/INFO]: Oraxen | ruby_chestplate is using deprecated Durability-Mechanic...
[21:11:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:20] [Server thread/INFO]: Oraxen | ruby_leggings is using deprecated Durability-Mechanic...
[21:11:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:20] [Server thread/INFO]: Oraxen | ruby_boots is using deprecated Durability-Mechanic...
[21:11:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:20] [Server thread/INFO]: Oraxen | example_sword is using deprecated Durability-Mechanic...
[21:11:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:20] [Server thread/INFO]: Oraxen | legendary_hammer is using deprecated Durability-Mechanic...
[21:11:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:20] [Server thread/INFO]: Oraxen | obsidian_pickaxe is using deprecated Durability-Mechanic...
[21:11:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:20] [Server thread/INFO]: Oraxen | bedrock_pickaxe is using deprecated Durability-Mechanic...
[21:11:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:20] [Server thread/INFO]: Oraxen | onyx_hammer is using deprecated Durability-Mechanic...
[21:11:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:20] [Server thread/INFO]: Oraxen | orax_hammer is using deprecated Durability-Mechanic...
[21:11:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:20] [Server thread/INFO]: Oraxen | fire_hammer is using deprecated Durability-Mechanic...
[21:11:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:20] [Server thread/INFO]: Oraxen | glass_sword is using deprecated Durability-Mechanic...
[21:11:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:20] [Server thread/INFO]: Oraxen | obsidian_sword is using deprecated Durability-Mechanic...
[21:11:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:20] [Server thread/INFO]: Oraxen | blood_sword is using deprecated Durability-Mechanic...
[21:11:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:20] [Server thread/INFO]: Oraxen | octavia_sword is using deprecated Durability-Mechanic...
[21:11:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:20] [Server thread/INFO]: Oraxen | dagger is using deprecated Durability-Mechanic...
[21:11:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:20] [Server thread/INFO]: Oraxen | katana is using deprecated Durability-Mechanic...
[21:11:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:20] [Server thread/INFO]: Oraxen | Updating all items in player-inventories...
[21:11:20] [Server thread/INFO]: Oraxen | Slicing gui-textures to 1.20.2-format...
[21:11:20] [Server thread/INFO]: Oraxen | Successfully sliced gui-textures for 1.20.2
[21:11:20] [Server thread/INFO]: Oraxen | Žádný item s názvem leggings nenalezen. Nelze použít armor_layer_2.png
[21:11:20] [Server thread/INFO]: Oraxen | Žádný item s názvem boots nenalezen. Nelze použít armor_layer_2.png
[21:11:20] [Server thread/INFO]: Oraxen | Žádný item s názvem helmet nenalezen. Nelze použít armor_layer_1.png
[21:11:20] [Server thread/INFO]: Oraxen | Žádný item s názvem chestplate nenalezen. Nelze použít armor_layer_1.png
[21:11:20] [Server thread/INFO]: Oraxen | Converting global lang file to individual language files...
[21:11:20] [Server thread/INFO]: Oraxen | Verifying formatting for textures and models...
[21:11:20] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[21:11:20] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[21:11:20] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[21:11:20] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[21:11:20] [Server thread/INFO]: Oraxen | Pack contains malformed texture(s) and/or model(s)
[21:11:20] [Server thread/INFO]: Oraxen | These need to be fixed, otherwise the resourcepack will be broken

[21:11:20] [Server thread/INFO]: Oraxen | Generating atlas-file for 1.19.3+ Resource Pack format
[21:11:20] [Server thread/INFO]: Oraxen | Attempting to exclude malformed textures from atlas-file
[21:11:20] [Server thread/INFO]: 
[21:11:20] [Server thread/INFO]: Oraxen | No duplicate font files found!
[21:11:20] [Server thread/INFO]: 
[21:11:21] [Craft Scheduler Thread - 45 - Oraxen/INFO]: Oraxen | Automatické nahrání resource packu je zapnuto, nahrávám...
[21:11:22] [Craft Scheduler Thread - 45 - Oraxen/INFO]: Oraxen | Resourcepack nahrán na url http://atlas.oraxen.com:8080/pack.zip?id=ecb5d769795036ecba89c25a754adc6795d78ca4 za 1004 ms
[21:11:39] [Server thread/INFO]: LuKyN94 issued server command: /oxn reload all
[21:11:39] [Server thread/INFO]: Oraxen | emerald_helmet is using deprecated Durability-Mechanic...
[21:11:39] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:39] [Server thread/INFO]: Oraxen | emerald_chestplate is using deprecated Durability-Mechanic...
[21:11:39] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:39] [Server thread/INFO]: Oraxen | emerald_leggings is using deprecated Durability-Mechanic...
[21:11:39] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:39] [Server thread/INFO]: Oraxen | emerald_boots is using deprecated Durability-Mechanic...
[21:11:39] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:39] [Server thread/INFO]: Oraxen | obsidian_helmet is using deprecated Durability-Mechanic...
[21:11:39] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:39] [Server thread/INFO]: Oraxen | obsidian_chestplate is using deprecated Durability-Mechanic...
[21:11:39] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:39] [Server thread/INFO]: Oraxen | obsidian_leggings is using deprecated Durability-Mechanic...
[21:11:39] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:39] [Server thread/INFO]: Oraxen | obsidian_boots is using deprecated Durability-Mechanic...
[21:11:39] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:39] [Server thread/INFO]: Oraxen | ruby_helmet is using deprecated Durability-Mechanic...
[21:11:39] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:39] [Server thread/INFO]: Oraxen | ruby_chestplate is using deprecated Durability-Mechanic...
[21:11:39] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:39] [Server thread/INFO]: Oraxen | ruby_leggings is using deprecated Durability-Mechanic...
[21:11:39] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:39] [Server thread/INFO]: Oraxen | ruby_boots is using deprecated Durability-Mechanic...
[21:11:39] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:39] [Server thread/INFO]: Oraxen | example_sword is using deprecated Durability-Mechanic...
[21:11:39] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:39] [Server thread/INFO]: Oraxen | legendary_hammer is using deprecated Durability-Mechanic...
[21:11:39] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:39] [Server thread/INFO]: Oraxen | obsidian_pickaxe is using deprecated Durability-Mechanic...
[21:11:39] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:39] [Server thread/INFO]: Oraxen | bedrock_pickaxe is using deprecated Durability-Mechanic...
[21:11:39] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:39] [Server thread/INFO]: Oraxen | onyx_hammer is using deprecated Durability-Mechanic...
[21:11:39] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:39] [Server thread/INFO]: Oraxen | orax_hammer is using deprecated Durability-Mechanic...
[21:11:39] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:39] [Server thread/INFO]: Oraxen | fire_hammer is using deprecated Durability-Mechanic...
[21:11:39] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:39] [Server thread/INFO]: Oraxen | glass_sword is using deprecated Durability-Mechanic...
[21:11:39] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:39] [Server thread/INFO]: Oraxen | obsidian_sword is using deprecated Durability-Mechanic...
[21:11:39] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:39] [Server thread/INFO]: Oraxen | blood_sword is using deprecated Durability-Mechanic...
[21:11:39] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:39] [Server thread/INFO]: Oraxen | octavia_sword is using deprecated Durability-Mechanic...
[21:11:39] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:39] [Server thread/INFO]: Oraxen | dagger is using deprecated Durability-Mechanic...
[21:11:39] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:39] [Server thread/INFO]: Oraxen | katana is using deprecated Durability-Mechanic...
[21:11:39] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:11:39] [Server thread/INFO]: Oraxen | Updating all items in player-inventories...
[21:11:39] [Server thread/INFO]: Oraxen | Slicing gui-textures to 1.20.2-format...
[21:11:39] [Server thread/INFO]: Oraxen | Successfully sliced gui-textures for 1.20.2
[21:11:39] [Server thread/INFO]: Oraxen | Žádný item s názvem leggings nenalezen. Nelze použít armor_layer_2.png
[21:11:39] [Server thread/INFO]: Oraxen | Žádný item s názvem boots nenalezen. Nelze použít armor_layer_2.png
[21:11:39] [Server thread/INFO]: Oraxen | Žádný item s názvem helmet nenalezen. Nelze použít armor_layer_1.png
[21:11:39] [Server thread/INFO]: Oraxen | Žádný item s názvem chestplate nenalezen. Nelze použít armor_layer_1.png
[21:11:39] [Server thread/INFO]: Oraxen | Converting global lang file to individual language files...
[21:11:39] [Server thread/INFO]: Oraxen | Verifying formatting for textures and models...
[21:11:39] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[21:11:39] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[21:11:39] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[21:11:39] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[21:11:39] [Server thread/INFO]: Oraxen | Pack contains malformed texture(s) and/or model(s)
[21:11:39] [Server thread/INFO]: Oraxen | These need to be fixed, otherwise the resourcepack will be broken

[21:11:39] [Server thread/INFO]: Oraxen | Generating atlas-file for 1.19.3+ Resource Pack format
[21:11:39] [Server thread/INFO]: Oraxen | Attempting to exclude malformed textures from atlas-file
[21:11:39] [Server thread/INFO]: 
[21:11:39] [Server thread/INFO]: Oraxen | No duplicate font files found!
[21:11:39] [Server thread/INFO]: 
[21:11:40] [Craft Scheduler Thread - 52 - Oraxen/INFO]: Oraxen | Automatické nahrání resource packu je zapnuto, nahrávám...
[21:11:41] [Craft Scheduler Thread - 52 - Oraxen/INFO]: Oraxen | Resourcepack nahrán na url http://atlas.oraxen.com:8080/pack.zip?id=b6e57948f037d37b8a88f298b3c244ec85df5db2 za 1061 ms
[21:12:00] [Server thread/INFO]: LuKyN94 issued server command: /oxn reload all
[21:12:00] [Server thread/INFO]: Oraxen | emerald_helmet is using deprecated Durability-Mechanic...
[21:12:00] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:00] [Server thread/INFO]: Oraxen | emerald_chestplate is using deprecated Durability-Mechanic...
[21:12:00] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:00] [Server thread/INFO]: Oraxen | emerald_leggings is using deprecated Durability-Mechanic...
[21:12:00] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:00] [Server thread/INFO]: Oraxen | emerald_boots is using deprecated Durability-Mechanic...
[21:12:00] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:00] [Server thread/INFO]: Oraxen | obsidian_helmet is using deprecated Durability-Mechanic...
[21:12:00] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:00] [Server thread/INFO]: Oraxen | obsidian_chestplate is using deprecated Durability-Mechanic...
[21:12:00] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:00] [Server thread/INFO]: Oraxen | obsidian_leggings is using deprecated Durability-Mechanic...
[21:12:00] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:00] [Server thread/INFO]: Oraxen | obsidian_boots is using deprecated Durability-Mechanic...
[21:12:00] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:00] [Server thread/INFO]: Oraxen | ruby_helmet is using deprecated Durability-Mechanic...
[21:12:00] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:00] [Server thread/INFO]: Oraxen | ruby_chestplate is using deprecated Durability-Mechanic...
[21:12:00] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:00] [Server thread/INFO]: Oraxen | ruby_leggings is using deprecated Durability-Mechanic...
[21:12:00] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:00] [Server thread/INFO]: Oraxen | ruby_boots is using deprecated Durability-Mechanic...
[21:12:00] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:00] [Server thread/INFO]: Oraxen | example_sword is using deprecated Durability-Mechanic...
[21:12:00] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:00] [Server thread/INFO]: Oraxen | legendary_hammer is using deprecated Durability-Mechanic...
[21:12:00] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:00] [Server thread/INFO]: Oraxen | obsidian_pickaxe is using deprecated Durability-Mechanic...
[21:12:00] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:00] [Server thread/INFO]: Oraxen | bedrock_pickaxe is using deprecated Durability-Mechanic...
[21:12:00] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:00] [Server thread/INFO]: Oraxen | onyx_hammer is using deprecated Durability-Mechanic...
[21:12:00] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:00] [Server thread/INFO]: Oraxen | orax_hammer is using deprecated Durability-Mechanic...
[21:12:00] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:00] [Server thread/INFO]: Oraxen | fire_hammer is using deprecated Durability-Mechanic...
[21:12:00] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:00] [Server thread/INFO]: Oraxen | glass_sword is using deprecated Durability-Mechanic...
[21:12:00] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:00] [Server thread/INFO]: Oraxen | obsidian_sword is using deprecated Durability-Mechanic...
[21:12:00] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:00] [Server thread/INFO]: Oraxen | blood_sword is using deprecated Durability-Mechanic...
[21:12:00] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:00] [Server thread/INFO]: Oraxen | octavia_sword is using deprecated Durability-Mechanic...
[21:12:00] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:00] [Server thread/INFO]: Oraxen | dagger is using deprecated Durability-Mechanic...
[21:12:00] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:00] [Server thread/INFO]: Oraxen | katana is using deprecated Durability-Mechanic...
[21:12:00] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:00] [Server thread/INFO]: Oraxen | Updating all items in player-inventories...
[21:12:00] [Server thread/INFO]: Oraxen | Slicing gui-textures to 1.20.2-format...
[21:12:00] [Server thread/INFO]: Oraxen | Successfully sliced gui-textures for 1.20.2
[21:12:00] [Server thread/INFO]: Oraxen | Žádný item s názvem leggings nenalezen. Nelze použít armor_layer_2.png
[21:12:00] [Server thread/INFO]: Oraxen | Žádný item s názvem boots nenalezen. Nelze použít armor_layer_2.png
[21:12:00] [Server thread/INFO]: Oraxen | Žádný item s názvem helmet nenalezen. Nelze použít armor_layer_1.png
[21:12:00] [Server thread/INFO]: Oraxen | Žádný item s názvem chestplate nenalezen. Nelze použít armor_layer_1.png
[21:12:00] [Server thread/INFO]: Oraxen | Converting global lang file to individual language files...
[21:12:00] [Server thread/INFO]: Oraxen | Verifying formatting for textures and models...
[21:12:00] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[21:12:00] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[21:12:00] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[21:12:00] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[21:12:00] [Server thread/INFO]: Oraxen | Pack contains malformed texture(s) and/or model(s)
[21:12:00] [Server thread/INFO]: Oraxen | These need to be fixed, otherwise the resourcepack will be broken

[21:12:00] [Server thread/INFO]: Oraxen | Generating atlas-file for 1.19.3+ Resource Pack format
[21:12:00] [Server thread/INFO]: Oraxen | Attempting to exclude malformed textures from atlas-file
[21:12:00] [Server thread/INFO]: 
[21:12:00] [Server thread/INFO]: Oraxen | No duplicate font files found!
[21:12:00] [Server thread/INFO]: 
[21:12:01] [Craft Scheduler Thread - 33 - Oraxen/INFO]: Oraxen | Automatické nahrání resource packu je zapnuto, nahrávám...
[21:12:02] [Craft Scheduler Thread - 33 - Oraxen/INFO]: Oraxen | Resourcepack nahrán na url http://atlas.oraxen.com:8080/pack.zip?id=043f5576d5f17e34ba258cdbed931dc0ecd34545 za 1571 ms
[21:12:31] [Server thread/INFO]: LuKyN94 issued server command: /oxn reload all
[21:12:31] [Server thread/INFO]: Oraxen | emerald_helmet is using deprecated Durability-Mechanic...
[21:12:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:31] [Server thread/INFO]: Oraxen | emerald_chestplate is using deprecated Durability-Mechanic...
[21:12:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:31] [Server thread/INFO]: Oraxen | emerald_leggings is using deprecated Durability-Mechanic...
[21:12:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:31] [Server thread/INFO]: Oraxen | emerald_boots is using deprecated Durability-Mechanic...
[21:12:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:31] [Server thread/INFO]: Oraxen | obsidian_helmet is using deprecated Durability-Mechanic...
[21:12:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:31] [Server thread/INFO]: Oraxen | obsidian_chestplate is using deprecated Durability-Mechanic...
[21:12:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:31] [Server thread/INFO]: Oraxen | obsidian_leggings is using deprecated Durability-Mechanic...
[21:12:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:31] [Server thread/INFO]: Oraxen | obsidian_boots is using deprecated Durability-Mechanic...
[21:12:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:31] [Server thread/INFO]: Oraxen | ruby_helmet is using deprecated Durability-Mechanic...
[21:12:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:31] [Server thread/INFO]: Oraxen | ruby_chestplate is using deprecated Durability-Mechanic...
[21:12:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:31] [Server thread/INFO]: Oraxen | ruby_leggings is using deprecated Durability-Mechanic...
[21:12:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:31] [Server thread/INFO]: Oraxen | ruby_boots is using deprecated Durability-Mechanic...
[21:12:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:31] [Server thread/INFO]: Oraxen | example_sword is using deprecated Durability-Mechanic...
[21:12:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:31] [Server thread/INFO]: Oraxen | legendary_hammer is using deprecated Durability-Mechanic...
[21:12:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:31] [Server thread/INFO]: Oraxen | obsidian_pickaxe is using deprecated Durability-Mechanic...
[21:12:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:31] [Server thread/INFO]: Oraxen | bedrock_pickaxe is using deprecated Durability-Mechanic...
[21:12:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:31] [Server thread/INFO]: Oraxen | onyx_hammer is using deprecated Durability-Mechanic...
[21:12:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:31] [Server thread/INFO]: Oraxen | orax_hammer is using deprecated Durability-Mechanic...
[21:12:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:31] [Server thread/INFO]: Oraxen | fire_hammer is using deprecated Durability-Mechanic...
[21:12:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:31] [Server thread/INFO]: Oraxen | glass_sword is using deprecated Durability-Mechanic...
[21:12:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:31] [Server thread/INFO]: Oraxen | obsidian_sword is using deprecated Durability-Mechanic...
[21:12:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:31] [Server thread/INFO]: Oraxen | blood_sword is using deprecated Durability-Mechanic...
[21:12:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:31] [Server thread/INFO]: Oraxen | octavia_sword is using deprecated Durability-Mechanic...
[21:12:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:31] [Server thread/INFO]: Oraxen | dagger is using deprecated Durability-Mechanic...
[21:12:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:31] [Server thread/INFO]: Oraxen | katana is using deprecated Durability-Mechanic...
[21:12:31] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:12:31] [Server thread/INFO]: Oraxen | Updating all items in player-inventories...
[21:12:31] [Server thread/INFO]: Oraxen | Slicing gui-textures to 1.20.2-format...
[21:12:31] [Server thread/INFO]: Oraxen | Successfully sliced gui-textures for 1.20.2
[21:12:31] [Server thread/INFO]: Oraxen | Žádný item s názvem leggings nenalezen. Nelze použít armor_layer_2.png
[21:12:31] [Server thread/INFO]: Oraxen | Žádný item s názvem boots nenalezen. Nelze použít armor_layer_2.png
[21:12:31] [Server thread/INFO]: Oraxen | Žádný item s názvem helmet nenalezen. Nelze použít armor_layer_1.png
[21:12:31] [Server thread/INFO]: Oraxen | Žádný item s názvem chestplate nenalezen. Nelze použít armor_layer_1.png
[21:12:32] [Server thread/INFO]: Oraxen | Converting global lang file to individual language files...
[21:12:32] [Server thread/INFO]: Oraxen | Verifying formatting for textures and models...
[21:12:32] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[21:12:32] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[21:12:32] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[21:12:32] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[21:12:32] [Server thread/INFO]: Oraxen | Pack contains malformed texture(s) and/or model(s)
[21:12:32] [Server thread/INFO]: Oraxen | These need to be fixed, otherwise the resourcepack will be broken

[21:12:32] [Server thread/INFO]: Oraxen | Generating atlas-file for 1.19.3+ Resource Pack format
[21:12:32] [Server thread/INFO]: Oraxen | Attempting to exclude malformed textures from atlas-file
[21:12:32] [Server thread/INFO]: 
[21:12:32] [Server thread/INFO]: Oraxen | No duplicate font files found!
[21:12:32] [Server thread/INFO]: 
[21:12:32] [Craft Scheduler Thread - 33 - Oraxen/INFO]: Oraxen | Automatické nahrání resource packu je zapnuto, nahrávám...
[21:12:35] [Craft Scheduler Thread - 33 - Oraxen/INFO]: Oraxen | Resourcepack nahrán na url http://atlas.oraxen.com:8080/pack.zip?id=e8739c531b554cb6e592c520764ceb82cc657ac2 za 2695 ms
[21:13:04] [Server thread/INFO]: LuKyN94 issued server command: /oxn reload all
[21:13:04] [Server thread/INFO]: Oraxen | emerald_helmet is using deprecated Durability-Mechanic...
[21:13:04] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:04] [Server thread/INFO]: Oraxen | emerald_chestplate is using deprecated Durability-Mechanic...
[21:13:04] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:04] [Server thread/INFO]: Oraxen | emerald_leggings is using deprecated Durability-Mechanic...
[21:13:04] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:04] [Server thread/INFO]: Oraxen | emerald_boots is using deprecated Durability-Mechanic...
[21:13:04] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:04] [Server thread/INFO]: Oraxen | obsidian_helmet is using deprecated Durability-Mechanic...
[21:13:04] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:04] [Server thread/INFO]: Oraxen | obsidian_chestplate is using deprecated Durability-Mechanic...
[21:13:04] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:04] [Server thread/INFO]: Oraxen | obsidian_leggings is using deprecated Durability-Mechanic...
[21:13:04] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:04] [Server thread/INFO]: Oraxen | obsidian_boots is using deprecated Durability-Mechanic...
[21:13:04] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:04] [Server thread/INFO]: Oraxen | ruby_helmet is using deprecated Durability-Mechanic...
[21:13:04] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:04] [Server thread/INFO]: Oraxen | ruby_chestplate is using deprecated Durability-Mechanic...
[21:13:04] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:04] [Server thread/INFO]: Oraxen | ruby_leggings is using deprecated Durability-Mechanic...
[21:13:04] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:04] [Server thread/INFO]: Oraxen | ruby_boots is using deprecated Durability-Mechanic...
[21:13:04] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:04] [Server thread/INFO]: Oraxen | example_sword is using deprecated Durability-Mechanic...
[21:13:04] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:04] [Server thread/INFO]: Oraxen | legendary_hammer is using deprecated Durability-Mechanic...
[21:13:04] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:04] [Server thread/INFO]: Oraxen | obsidian_pickaxe is using deprecated Durability-Mechanic...
[21:13:04] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:04] [Server thread/INFO]: Oraxen | bedrock_pickaxe is using deprecated Durability-Mechanic...
[21:13:04] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:04] [Server thread/INFO]: Oraxen | onyx_hammer is using deprecated Durability-Mechanic...
[21:13:04] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:04] [Server thread/INFO]: Oraxen | orax_hammer is using deprecated Durability-Mechanic...
[21:13:04] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:04] [Server thread/INFO]: Oraxen | fire_hammer is using deprecated Durability-Mechanic...
[21:13:04] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:04] [Server thread/INFO]: Oraxen | glass_sword is using deprecated Durability-Mechanic...
[21:13:04] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:04] [Server thread/INFO]: Oraxen | obsidian_sword is using deprecated Durability-Mechanic...
[21:13:04] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:04] [Server thread/INFO]: Oraxen | blood_sword is using deprecated Durability-Mechanic...
[21:13:04] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:04] [Server thread/INFO]: Oraxen | octavia_sword is using deprecated Durability-Mechanic...
[21:13:04] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:04] [Server thread/INFO]: Oraxen | dagger is using deprecated Durability-Mechanic...
[21:13:04] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:04] [Server thread/INFO]: Oraxen | katana is using deprecated Durability-Mechanic...
[21:13:04] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:04] [Server thread/INFO]: Oraxen | Updating all items in player-inventories...
[21:13:04] [Server thread/INFO]: Oraxen | Slicing gui-textures to 1.20.2-format...
[21:13:04] [Server thread/INFO]: Oraxen | Successfully sliced gui-textures for 1.20.2
[21:13:04] [Server thread/INFO]: Oraxen | Žádný item s názvem leggings nenalezen. Nelze použít armor_layer_2.png
[21:13:04] [Server thread/INFO]: Oraxen | Žádný item s názvem boots nenalezen. Nelze použít armor_layer_2.png
[21:13:04] [Server thread/INFO]: Oraxen | Žádný item s názvem helmet nenalezen. Nelze použít armor_layer_1.png
[21:13:04] [Server thread/INFO]: Oraxen | Žádný item s názvem chestplate nenalezen. Nelze použít armor_layer_1.png
[21:13:04] [Server thread/INFO]: Oraxen | Converting global lang file to individual language files...
[21:13:04] [Server thread/INFO]: Oraxen | Verifying formatting for textures and models...
[21:13:04] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[21:13:04] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[21:13:04] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[21:13:04] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[21:13:04] [Server thread/INFO]: Oraxen | Pack contains malformed texture(s) and/or model(s)
[21:13:04] [Server thread/INFO]: Oraxen | These need to be fixed, otherwise the resourcepack will be broken

[21:13:04] [Server thread/INFO]: Oraxen | Generating atlas-file for 1.19.3+ Resource Pack format
[21:13:04] [Server thread/INFO]: Oraxen | Attempting to exclude malformed textures from atlas-file
[21:13:04] [Server thread/INFO]: 
[21:13:04] [Server thread/INFO]: Oraxen | No duplicate font files found!
[21:13:04] [Server thread/INFO]: 
[21:13:04] [Craft Scheduler Thread - 4 - Oraxen/INFO]: Oraxen | Automatické nahrání resource packu je zapnuto, nahrávám...
[21:13:05] [Craft Scheduler Thread - 4 - Oraxen/INFO]: Oraxen | Resourcepack nahrán na url http://atlas.oraxen.com:8080/pack.zip?id=7844f283250475cbd200993edf6174a57676d44e za 1133 ms
[21:13:22] [Server thread/INFO]: LuKyN94 issued server command: /oxn reload all
[21:13:22] [Server thread/INFO]: Oraxen | emerald_helmet is using deprecated Durability-Mechanic...
[21:13:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:22] [Server thread/INFO]: Oraxen | emerald_chestplate is using deprecated Durability-Mechanic...
[21:13:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:22] [Server thread/INFO]: Oraxen | emerald_leggings is using deprecated Durability-Mechanic...
[21:13:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:22] [Server thread/INFO]: Oraxen | emerald_boots is using deprecated Durability-Mechanic...
[21:13:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:22] [Server thread/INFO]: Oraxen | obsidian_helmet is using deprecated Durability-Mechanic...
[21:13:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:22] [Server thread/INFO]: Oraxen | obsidian_chestplate is using deprecated Durability-Mechanic...
[21:13:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:22] [Server thread/INFO]: Oraxen | obsidian_leggings is using deprecated Durability-Mechanic...
[21:13:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:22] [Server thread/INFO]: Oraxen | obsidian_boots is using deprecated Durability-Mechanic...
[21:13:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:22] [Server thread/INFO]: Oraxen | ruby_helmet is using deprecated Durability-Mechanic...
[21:13:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:22] [Server thread/INFO]: Oraxen | ruby_chestplate is using deprecated Durability-Mechanic...
[21:13:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:22] [Server thread/INFO]: Oraxen | ruby_leggings is using deprecated Durability-Mechanic...
[21:13:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:22] [Server thread/INFO]: Oraxen | ruby_boots is using deprecated Durability-Mechanic...
[21:13:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:22] [Server thread/INFO]: Oraxen | example_sword is using deprecated Durability-Mechanic...
[21:13:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:22] [Server thread/INFO]: Oraxen | legendary_hammer is using deprecated Durability-Mechanic...
[21:13:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:22] [Server thread/INFO]: Oraxen | obsidian_pickaxe is using deprecated Durability-Mechanic...
[21:13:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:22] [Server thread/INFO]: Oraxen | bedrock_pickaxe is using deprecated Durability-Mechanic...
[21:13:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:22] [Server thread/INFO]: Oraxen | onyx_hammer is using deprecated Durability-Mechanic...
[21:13:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:22] [Server thread/INFO]: Oraxen | orax_hammer is using deprecated Durability-Mechanic...
[21:13:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:22] [Server thread/INFO]: Oraxen | fire_hammer is using deprecated Durability-Mechanic...
[21:13:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:22] [Server thread/INFO]: Oraxen | glass_sword is using deprecated Durability-Mechanic...
[21:13:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:22] [Server thread/INFO]: Oraxen | obsidian_sword is using deprecated Durability-Mechanic...
[21:13:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:22] [Server thread/INFO]: Oraxen | blood_sword is using deprecated Durability-Mechanic...
[21:13:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:22] [Server thread/INFO]: Oraxen | octavia_sword is using deprecated Durability-Mechanic...
[21:13:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:22] [Server thread/INFO]: Oraxen | dagger is using deprecated Durability-Mechanic...
[21:13:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:22] [Server thread/INFO]: Oraxen | katana is using deprecated Durability-Mechanic...
[21:13:22] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:22] [Server thread/INFO]: Oraxen | Updating all items in player-inventories...
[21:13:22] [Server thread/INFO]: Oraxen | Slicing gui-textures to 1.20.2-format...
[21:13:22] [Server thread/INFO]: Oraxen | Successfully sliced gui-textures for 1.20.2
[21:13:22] [Server thread/INFO]: Oraxen | Žádný item s názvem leggings nenalezen. Nelze použít armor_layer_2.png
[21:13:22] [Server thread/INFO]: Oraxen | Žádný item s názvem boots nenalezen. Nelze použít armor_layer_2.png
[21:13:22] [Server thread/INFO]: Oraxen | Žádný item s názvem helmet nenalezen. Nelze použít armor_layer_1.png
[21:13:22] [Server thread/INFO]: Oraxen | Žádný item s názvem chestplate nenalezen. Nelze použít armor_layer_1.png
[21:13:22] [Server thread/INFO]: Oraxen | Converting global lang file to individual language files...
[21:13:22] [Server thread/INFO]: Oraxen | Verifying formatting for textures and models...
[21:13:22] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[21:13:22] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[21:13:22] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[21:13:22] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[21:13:22] [Server thread/INFO]: Oraxen | Pack contains malformed texture(s) and/or model(s)
[21:13:22] [Server thread/INFO]: Oraxen | These need to be fixed, otherwise the resourcepack will be broken

[21:13:22] [Server thread/INFO]: Oraxen | Generating atlas-file for 1.19.3+ Resource Pack format
[21:13:22] [Server thread/INFO]: Oraxen | Attempting to exclude malformed textures from atlas-file
[21:13:22] [Server thread/INFO]: 
[21:13:22] [Server thread/INFO]: Oraxen | No duplicate font files found!
[21:13:22] [Server thread/INFO]: 
[21:13:23] [Craft Scheduler Thread - 56 - Oraxen/INFO]: Oraxen | Automatické nahrání resource packu je zapnuto, nahrávám...
[21:13:24] [Craft Scheduler Thread - 56 - Oraxen/INFO]: Oraxen | Resourcepack nahrán na url http://atlas.oraxen.com:8080/pack.zip?id=043f5576d5f17e34ba258cdbed931dc0ecd34545 za 1050 ms
[21:13:36] [Server thread/INFO]: LuKyN94 issued server command: /oxn reload all
[21:13:36] [Server thread/INFO]: Oraxen | emerald_helmet is using deprecated Durability-Mechanic...
[21:13:36] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:36] [Server thread/INFO]: Oraxen | emerald_chestplate is using deprecated Durability-Mechanic...
[21:13:36] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:36] [Server thread/INFO]: Oraxen | emerald_leggings is using deprecated Durability-Mechanic...
[21:13:36] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:36] [Server thread/INFO]: Oraxen | emerald_boots is using deprecated Durability-Mechanic...
[21:13:36] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:36] [Server thread/INFO]: Oraxen | obsidian_helmet is using deprecated Durability-Mechanic...
[21:13:36] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:36] [Server thread/INFO]: Oraxen | obsidian_chestplate is using deprecated Durability-Mechanic...
[21:13:36] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:36] [Server thread/INFO]: Oraxen | obsidian_leggings is using deprecated Durability-Mechanic...
[21:13:36] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:36] [Server thread/INFO]: Oraxen | obsidian_boots is using deprecated Durability-Mechanic...
[21:13:36] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:36] [Server thread/INFO]: Oraxen | ruby_helmet is using deprecated Durability-Mechanic...
[21:13:36] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:36] [Server thread/INFO]: Oraxen | ruby_chestplate is using deprecated Durability-Mechanic...
[21:13:36] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:36] [Server thread/INFO]: Oraxen | ruby_leggings is using deprecated Durability-Mechanic...
[21:13:36] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:36] [Server thread/INFO]: Oraxen | ruby_boots is using deprecated Durability-Mechanic...
[21:13:36] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:36] [Server thread/INFO]: Oraxen | example_sword is using deprecated Durability-Mechanic...
[21:13:36] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:36] [Server thread/INFO]: Oraxen | legendary_hammer is using deprecated Durability-Mechanic...
[21:13:36] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:36] [Server thread/INFO]: Oraxen | obsidian_pickaxe is using deprecated Durability-Mechanic...
[21:13:36] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:36] [Server thread/INFO]: Oraxen | bedrock_pickaxe is using deprecated Durability-Mechanic...
[21:13:36] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:36] [Server thread/INFO]: Oraxen | onyx_hammer is using deprecated Durability-Mechanic...
[21:13:36] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:36] [Server thread/INFO]: Oraxen | orax_hammer is using deprecated Durability-Mechanic...
[21:13:36] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:36] [Server thread/INFO]: Oraxen | fire_hammer is using deprecated Durability-Mechanic...
[21:13:36] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:36] [Server thread/INFO]: Oraxen | glass_sword is using deprecated Durability-Mechanic...
[21:13:36] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:36] [Server thread/INFO]: Oraxen | obsidian_sword is using deprecated Durability-Mechanic...
[21:13:36] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:36] [Server thread/INFO]: Oraxen | blood_sword is using deprecated Durability-Mechanic...
[21:13:36] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:36] [Server thread/INFO]: Oraxen | octavia_sword is using deprecated Durability-Mechanic...
[21:13:36] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:36] [Server thread/INFO]: Oraxen | dagger is using deprecated Durability-Mechanic...
[21:13:36] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:36] [Server thread/INFO]: Oraxen | katana is using deprecated Durability-Mechanic...
[21:13:36] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[21:13:36] [Server thread/INFO]: Oraxen | Updating all items in player-inventories...
[21:13:36] [Server thread/INFO]: Oraxen | Slicing gui-textures to 1.20.2-format...
[21:13:36] [Server thread/INFO]: Oraxen | Successfully sliced gui-textures for 1.20.2
[21:13:36] [Server thread/INFO]: Oraxen | Žádný item s názvem leggings nenalezen. Nelze použít armor_layer_2.png
[21:13:36] [Server thread/INFO]: Oraxen | Žádný item s názvem boots nenalezen. Nelze použít armor_layer_2.png
[21:13:36] [Server thread/INFO]: Oraxen | Žádný item s názvem helmet nenalezen. Nelze použít armor_layer_1.png
[21:13:36] [Server thread/INFO]: Oraxen | Žádný item s názvem chestplate nenalezen. Nelze použít armor_layer_1.png
[21:13:36] [Server thread/INFO]: Oraxen | Converting global lang file to individual language files...
[21:13:36] [Server thread/INFO]: Oraxen | Verifying formatting for textures and models...
[21:13:36] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[21:13:36] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[21:13:36] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[21:13:36] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[21:13:36] [Server thread/INFO]: Oraxen | Pack contains malformed texture(s) and/or model(s)
[21:13:36] [Server thread/INFO]: Oraxen | These need to be fixed, otherwise the resourcepack will be broken

[21:13:36] [Server thread/INFO]: Oraxen | Generating atlas-file for 1.19.3+ Resource Pack format
[21:13:36] [Server thread/INFO]: Oraxen | Attempting to exclude malformed textures from atlas-file
[21:13:36] [Server thread/INFO]: 
[21:13:36] [Server thread/INFO]: Oraxen | No duplicate font files found!
[21:13:36] [Server thread/INFO]: 
[21:13:36] [Craft Scheduler Thread - 21 - Oraxen/INFO]: Oraxen | Automatické nahrání resource packu je zapnuto, nahrávám...
[21:13:37] [Craft Scheduler Thread - 21 - Oraxen/INFO]: Oraxen | Resourcepack nahrán na url http://atlas.oraxen.com:8080/pack.zip?id=e8739c531b554cb6e592c520764ceb82cc657ac2 za 1161 ms
[21:20:15] [Server thread/INFO]: ⏚ LuKyN94 je nyní AFK
[21:20:15] [Server thread/INFO]: Effect Mining fatigue byl přidán hráči LuKyN94. Čas: 60000000 sekund. Level: 600000 (Online).
[21:20:15] [Server thread/INFO]: Effect Slowness byl přidán hráči LuKyN94. Čas: 60000000 sekund. Level: 600000 (Online).
[21:20:15] [Server thread/INFO]: Effect Glowing byl přidán hráči LuKyN94. Čas: 60000000 sekund. Level: 1 (Online).
[21:20:15] [Server thread/INFO]: Effect Darkness byl přidán hráči LuKyN94. Čas: 60000000 sekund. Level: 1 (Online).
[21:20:19] [User Authenticator #2/INFO]: [BackPackPlus] Loading backpack for 59522c6d-162f-343d-9be2-1bcf837ee218
[21:20:19] [User Authenticator #2/INFO]: [BackPackPlus] Backpack of 59522c6d-162f-343d-9be2-1bcf837ee218 took 1ms to load.
[21:20:19] [User Authenticator #2/INFO]: UUID of player Myska558 is 59522c6d-162f-343d-9be2-1bcf837ee218
[21:20:19] [Server thread/INFO]: Myska558[/**.**.**.**:44500] logged in with entity id 1555 at ([world]-35.5, 78.0, 149.5)
[21:20:43] [Server thread/INFO]: LuKyN94 issued server command: /dm reload
[21:20:43] [Server thread/ERROR]: [DeluxeMenus] Menu title for menu: discord is not present!
Skipping menu: discord
[21:20:43] [Server thread/INFO]: ⏚ LuKyN94 již není AFK
[21:20:43] [Server thread/INFO]: Effect Mining fatigue byl přidán hráči LuKyN94. Čas: 1 sekund. Level: 1 (Online).
[21:20:43] [Server thread/INFO]: Effect Slowness byl přidán hráči LuKyN94. Čas: 1 sekund. Level: 1 (Online).
[21:20:43] [Server thread/INFO]: Effect Glowing byl přidán hráči LuKyN94. Čas: 1 sekund. Level: 1 (Online).
[21:20:43] [Server thread/INFO]: Effect Darkness byl přidán hráči LuKyN94. Čas: 1 sekund. Level: 1 (Online).
[21:20:54] [Server thread/INFO]: LuKyN94 issued server command: /dmenu help
[21:20:57] [Server thread/INFO]: LuKyN94 issued server command: /dmenu list
[21:21:10] [Server thread/INFO]: Myska558 lost connection: Disconnected
[21:21:10] [Server thread/INFO]: [BackPackPlus] Saving data for Myska558
[21:21:10] [Server thread/INFO]: Effect Mining fatigue byl přidán hráči Myska558. Čas: 1 sekund. Level: 1 (Online).
[21:21:10] [Server thread/INFO]: Effect Slowness byl přidán hráči Myska558. Čas: 1 sekund. Level: 1 (Online).
[21:21:10] [Server thread/INFO]: Effect Glowing byl přidán hráči Myska558. Čas: 1 sekund. Level: 1 (Online).
[21:21:10] [Server thread/INFO]: Effect Darkness byl přidán hráči Myska558. Čas: 1 sekund. Level: 1 (Online).
[21:21:10] [Server thread/INFO]: [Offline] ⵡ Myska558 opustil server!
[21:21:20] [User Authenticator #3/INFO]: [BackPackPlus] Loading backpack for 59522c6d-162f-343d-9be2-1bcf837ee218
[21:21:20] [User Authenticator #3/INFO]: [BackPackPlus] Backpack of 59522c6d-162f-343d-9be2-1bcf837ee218 took 1ms to load.
[21:21:20] [User Authenticator #3/INFO]: [BackPackPlus] Loaded data for Myska558
[21:21:20] [User Authenticator #3/INFO]: UUID of player Myska558 is 59522c6d-162f-343d-9be2-1bcf837ee218
[21:21:20] [Server thread/INFO]: Showing new subtitle for Myska558
[21:21:20] [Server thread/INFO]: Showing new title for Myska558
[21:21:20] [Server thread/INFO]: Všechny effekty byly smazány hráči Myska558 (Online).
[21:21:20] [Server thread/INFO]: [Online] ⵡ Myska558 se připojil na server!
[21:21:20] [Server thread/INFO]: Myska558[/**.**.**.**:50086] logged in with entity id 1560 at ([world]-52.0, 67.0, 149.0)
[21:22:31] [Server thread/INFO]: Set Myska558's game mode to Spectator Mode
[21:22:31] [Server thread/WARN]: Myska558 moved too quickly! -60.0252447782471,18.0,-3.98223317687345
[21:23:07] [Server thread/INFO]: Set Myska558's game mode to Survival Mode
[21:23:15] [Craft Scheduler Thread - 73 - BeautyQuests/INFO]: [BeautyQuests] Datas saved ~ periodic save
[21:23:21] [Server thread/INFO]: LuKyN94 issued server command: /dm open discord_menu
[21:23:29] [Server thread/INFO]: Myska558 issued server command: /fl
[21:23:49] [Server thread/INFO]: Dal jsi 3x Oak Log () hráči Myska558
[21:24:17] [Async Chat Thread - #2/INFO]: [Not Secure] ⵡ  » Myska558 → mohu na někoho tpa
[21:24:34] [Async Chat Thread - #2/INFO]: ⏚  » LuKyN94 → ahoj
[21:24:38] [Async Chat Thread - #2/INFO]: [Not Secure] ⵡ  » Myska558 → ahoj
[21:24:42] [Server thread/INFO]: LuKyN94 issued server command: /tp Myska558
[21:24:42] [Server thread/WARN]: LuKyN94 moved too quickly! -120.93910970902274,4.0,-12.486717975619968
[21:24:42] [Server thread/WARN]: LuKyN94 moved too quickly! -120.93910970902274,4.0,-12.486717975619968
[21:25:03] [Async Chat Thread - #2/INFO]: ⏚  » LuKyN94 → tpa jde myslim ne ?
[21:25:10] [Async Chat Thread - #2/INFO]: [Not Secure] ⵡ  » Myska558 → jj :D
[21:25:25] [Async Chat Thread - #2/INFO]: [Not Secure] ⵡ  » Myska558 → ale nikdo tu není jen ty a já xD
[21:25:31] [Async Chat Thread - #2/INFO]: ⏚  » LuKyN94 → furt to je v bete nastavuji a morduji se s tim
[21:25:40] [Async Chat Thread - #2/INFO]: [Not Secure] ⵡ  » Myska558 → to je blbé :D
[21:25:51] [Async Chat Thread - #2/INFO]: ⏚  » LuKyN94 → lehce v klidecku vis co
[21:26:02] [Async Chat Thread - #2/INFO]: [Not Secure] ⵡ  » Myska558 → njn
[21:26:05] [Async Chat Thread - #2/INFO]: ⏚  » LuKyN94 → Tutorial se dal pochopit ?
[21:26:14] [Async Chat Thread - #2/INFO]: [Not Secure] ⵡ  » Myska558 → jj
[21:26:28] [Async Chat Thread - #2/INFO]: [Not Secure] ⵡ  » Myska558 → hezkej skin :D
[21:26:34] [User Authenticator #4/INFO]: [BackPackPlus] Loading backpack for f31a3e8d-c9a0-4fe1-ba64-cd90db962840
[21:26:34] [User Authenticator #4/INFO]: [BackPackPlus] Backpack of f31a3e8d-c9a0-4fe1-ba64-cd90db962840 took 0ms to load.
[21:26:34] [User Authenticator #4/INFO]: [BackPackPlus] Loaded data for AlunnDrakann
[21:26:34] [User Authenticator #4/INFO]: UUID of player AlunnDrakann is f31a3e8d-c9a0-4fe1-ba64-cd90db962840
[21:26:34] [Server thread/INFO]: Showing new subtitle for AlunnDrakann
[21:26:34] [Server thread/INFO]: Showing new title for AlunnDrakann
[21:26:34] [Server thread/INFO]: Všechny effekty byly smazány hráči AlunnDrakann (Online).
[21:26:34] [Server thread/INFO]: [Online] ⵡ AlunnDrakann se připojil na server!
[21:26:34] [Server thread/INFO]: AlunnDrakann[/**.**.**.**:34696] logged in with entity id 1771 at ([survival]-1670.205866062181, -55.9999999, 1719.0945940727565)
[21:26:37] [Server thread/INFO]: AlunnDrakann lost connection: Disconnected
[21:26:37] [Server thread/INFO]: [BackPackPlus] Saving data for AlunnDrakann
[21:26:38] [Server thread/INFO]: Effect Mining fatigue byl přidán hráči AlunnDrakann. Čas: 1 sekund. Level: 1 (Online).
[21:26:38] [Server thread/INFO]: Effect Slowness byl přidán hráči AlunnDrakann. Čas: 1 sekund. Level: 1 (Online).
[21:26:38] [Server thread/INFO]: Effect Glowing byl přidán hráči AlunnDrakann. Čas: 1 sekund. Level: 1 (Online).
[21:26:38] [Server thread/INFO]: Effect Darkness byl přidán hráči AlunnDrakann. Čas: 1 sekund. Level: 1 (Online).
[21:26:38] [Server thread/INFO]: [Offline] ⵡ AlunnDrakann opustil server!
[21:26:40] [Async Chat Thread - #2/INFO]: ⏚  » LuKyN94 → ty mas warez ?
[21:26:44] [Async Chat Thread - #2/INFO]: [Not Secure] ⵡ  » Myska558 → yes
[21:26:58] [Async Chat Thread - #2/INFO]: [Not Secure] ⵡ  » Myska558 → ale mám plánu si koupit za 1000 :D
[21:27:09] [User Authenticator #4/INFO]: [BackPackPlus] Loading backpack for f31a3e8d-c9a0-4fe1-ba64-cd90db962840
[21:27:09] [User Authenticator #4/INFO]: [BackPackPlus] Backpack of f31a3e8d-c9a0-4fe1-ba64-cd90db962840 took 0ms to load.
[21:27:09] [User Authenticator #4/INFO]: [BackPackPlus] Loaded data for AlunnDrakann
[21:27:09] [User Authenticator #4/INFO]: UUID of player AlunnDrakann is f31a3e8d-c9a0-4fe1-ba64-cd90db962840
[21:27:09] [Server thread/INFO]: Showing new subtitle for AlunnDrakann
[21:27:09] [Server thread/INFO]: Showing new title for AlunnDrakann
[21:27:09] [Server thread/INFO]: Všechny effekty byly smazány hráči AlunnDrakann (Online).
[21:27:09] [Server thread/INFO]: [Online] ⵡ AlunnDrakann se připojil na server!
[21:27:09] [Server thread/INFO]: AlunnDrakann[/**.**.**.**:33574] logged in with entity id 1917 at ([survival]-1670.205866062181, -55.9999997, 1719.0945940727565)
[21:27:16] [Async Chat Thread - #3/INFO]: ⏚  » LuKyN94 → to je tak drahy ?
[21:27:19] [Async Chat Thread - #3/INFO]: [Not Secure] ⵡ  » Myska558 → jj
[21:27:26] [Server thread/INFO]: AlunnDrakann issued server command: /quest scoreboard
[21:27:38] [Async Chat Thread - #3/INFO]: [Not Secure] ⵡ  » Myska558 → tak jeden je za 700 ale ten co má vše stojí 1000 :D
[21:27:52] [Async Chat Thread - #3/INFO]: ⵡ  » AlunnDrakann → helou
[21:27:55] [Async Chat Thread - #3/INFO]: [Not Secure] ⵡ  » Myska558 → čs
[21:28:00] [Async Chat Thread - #3/INFO]: ⏚  » LuKyN94 → mam to tu pro warez i pro origo no .. origo nedava login pozna ze mas origo
[21:28:09] [Server thread/INFO]: AlunnDrakann issued server command: /spawn
[21:28:13] [Async Chat Thread - #3/INFO]: [Not Secure] ⵡ  » Myska558 → aha
[21:28:22] [Async Chat Thread - #3/INFO]: ⏚  » LuKyN94 → cs Alunn
[21:28:32] [Async Chat Thread - #3/INFO]: [Not Secure] ⵡ  » Myska558 → ty máš warez nebo origo :D
[21:28:52] [Async Chat Thread - #3/INFO]: ⏚  » LuKyN94 → origo
[21:29:00] [Async Chat Thread - #3/INFO]: ⏚  » LuKyN94 → ty vidis jinak skiny no
[21:29:07] [Async Chat Thread - #2/INFO]: ⏚  » LuKyN94 → i u npc
[21:29:09] [Async Chat Thread - #2/INFO]: [Not Secure] ⵡ  » Myska558 → ne vidím skin jaký máš :D
[21:29:14] [Async Chat Thread - #2/INFO]: ⏚  » LuKyN94 → aha tak to cumim
[21:29:28] [Async Chat Thread - #2/INFO]: [Not Secure] ⵡ  » Myska558 → máš takové košili modrou žlutý něco a máš plešouna :D
[21:29:36] [Async Chat Thread - #2/INFO]: ⏚  » LuKyN94 → cely ja no :D
[21:29:39] [Async Chat Thread - #3/INFO]: [Not Secure] ⵡ  » Myska558 → xd
[21:29:48] [Async Chat Thread - #3/INFO]: [Not Secure] ⵡ  » Myska558 → takže je ti tak přes 30 :D
[21:30:05] [Server thread/INFO]: Myska558 issued server command: /kit
[21:30:07] [Server thread/INFO]: Myska558 has made the advancement [Getting an Upgrade]
[21:30:20] [Async Chat Thread - #3/INFO]: ⏚  » LuKyN94 → ted v sprnu bude 30 :D a vlasy mam jen je to prijemnejsi a staci ti jeden sampon :D
[21:30:28] [Async Chat Thread - #3/INFO]: [Not Secure] ⵡ  » Myska558 → xD
[21:31:03] [Async Chat Thread - #2/INFO]: ⏚  » LuKyN94 → vyzkousej survival mobky jsou lehce tezsi
[21:31:10] [Async Chat Thread - #2/INFO]: ⏚  » LuKyN94 → na lodi je port
[21:31:12] [Async Chat Thread - #2/INFO]: [Not Secure] ⵡ  » Myska558 → jsem byla na jednom serveru ale dali ban xD prej jsem urážela admin team xD
[21:31:34] [Async Chat Thread - #2/INFO]: [Not Secure] ⵡ  » Myska558 → no aby ne když se chová jak dítě xD
[21:31:45] [Async Chat Thread - #2/INFO]: ⏚  » LuKyN94 → A tobe je kolik ? :D
[21:31:58] [Async Chat Thread - #2/INFO]: [Not Secure] ⵡ  » Myska558 → typni si
[21:32:04] [Async Chat Thread - #2/INFO]: ⏚  » LuKyN94 → 12
[21:32:15] [Async Chat Thread - #2/INFO]: [Not Secure] ⵡ  » Myska558 → neee
[21:32:21] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21! Trying to find NMS support
[21:32:21] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[21:32:21] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'Vouchers' to create a bStats instance!
[21:32:28] [Async Chat Thread - #2/INFO]: [Not Secure] ⵡ  » Myska558 → víc jak 15
[21:32:44] [Async Chat Thread - #2/INFO]: [Not Secure] ⵡ  » Myska558 → já mám jít na tu loď ?
[21:32:52] [Server thread/INFO]: Myska558 issued server command: /fly
[21:32:52] [Server thread/INFO]: [Server] Hráč Myska558 nemá právo na cmi.command.fly
[21:32:53] [Async Chat Thread - #2/INFO]: ⏚  » LuKyN94 → :D hele dneska u sebe nemam vesteckou kouli :D
[21:33:10] [Async Chat Thread - #2/INFO]: [Not Secure] ⵡ  » Myska558 → typni si ale je mi víc jak 15q
[21:33:13] [Async Chat Thread - #2/INFO]: [Not Secure] ⵡ  » Myska558 → 15+
[21:33:14] [Async Chat Thread - #2/INFO]: ⏚  » LuKyN94 → jj port do survival svetu
[21:33:41] [Async Chat Thread - #2/INFO]: [Not Secure] ⵡ  » Myska558 → jsem na loďi
[21:34:03] [Async Chat Thread - #2/INFO]: ⵡ  » AlunnDrakann → klikni na to npc
[21:34:11] [Async Chat Thread - #2/INFO]: [Not Secure] ⵡ  » Myska558 → what
[21:34:18] [Server thread/INFO]: LuKyN94 issued server command: /tp Myska558
[21:34:21] [Server thread/INFO]: AlunnDrakann issued server command: /tf
[21:34:47] [Async Chat Thread - #2/INFO]: ⏚  » LuKyN94 → pekny misto mas
[21:34:50] [Async Chat Thread - #2/INFO]: [Not Secure] ⵡ  » Myska558 → xd
[21:34:56] [Server thread/INFO]: AlunnDrakann issued server command: /home
[21:34:56] [Server thread/WARN]: AlunnDrakann moved too quickly! -713.1324702303149,10.0,2186.255326648322
[21:35:07] [Async Chat Thread - #2/INFO]: [Not Secure] ⵡ  » Myska558 → je mi 18 :D
[21:35:19] [Async Chat Thread - #2/INFO]: ⏚  » LuKyN94 → tak parada :D
[21:35:25] [Async Chat Thread - #2/INFO]: [Not Secure] ⵡ  » Myska558 → :D
[21:35:45] [Async Chat Thread - #3/INFO]: [Not Secure] ⵡ  » Myska558 → odkud jsi :D jestli se mohu zeptat :D
[21:36:02] [Async Chat Thread - #3/INFO]: ⏚  » LuKyN94 → zkus to uhodnout :) :D
[21:36:04] [Server thread/INFO]: Myska558 issued server command: /spawn
[21:36:35] [Async Chat Thread - #3/INFO]: ⏚  » LuKyN94 → kde ted byl filmovy festival ? :)
[21:36:58] [Async Chat Thread - #3/INFO]: [Not Secure] ⵡ  » Myska558 → já nevím že byl festival xD
[21:37:13] [Async Chat Thread - #3/INFO]: ⏚  » LuKyN94 → napis do googlu a zjistis :D
[21:37:16] [Async Chat Thread - #2/INFO]: [Not Secure] ⵡ  » Myska558 → xd
[21:37:18] [Server thread/INFO]: LuKyN94 issued server command: /tp AlunnDrakann
[21:37:18] [Server thread/WARN]: LuKyN94 moved too quickly! -2392.3951321004074,-132.0,2690.9114947560893
[21:37:18] [Server thread/WARN]: LuKyN94 moved too quickly! -2392.3951321004074,-132.0,2690.9114947560893
[21:37:44] [Async Chat Thread - #2/INFO]: [Not Secure] ⵡ  » Myska558 → jaj karlové vary
[21:37:50] [Async Chat Thread - #2/INFO]: ⏚  » LuKyN94 → bingo
[21:38:01] [Async Chat Thread - #2/INFO]: [Not Secure] ⵡ  » Myska558 → jsi daleko xD
[21:38:15] [Craft Scheduler Thread - 64 - BeautyQuests/INFO]: [BeautyQuests] Datas saved ~ periodic save
[21:38:37] [Async Chat Thread - #2/INFO]: ⏚  » LuKyN94 → To mi rika kazdy :D
[21:39:34] [Server thread/INFO]: LuKyN94 issued server command: /tp Myska558
[21:39:35] [Server thread/INFO]: AlunnDrakann issued server command: /vote
[21:39:43] [Server thread/INFO]: AlunnDrakann issued server command: /voteall
[21:40:06] [Votifier epoll worker/INFO]: [Votifier] Got a protocol v2 vote record from /**.**.**.**:37612 -> Vote (from:Craftlist.org username:AlunnDrakann address:**.**.**.** timeStamp:1721850803909 additionalData:null)
[21:40:06] [Server thread/INFO]: [VotingPlugin] Received a vote from service site 'Craftlist.org' by player 'AlunnDrakann'!
[21:40:06] [pool-77-thread-1/INFO]: [Hlasování] Děkujeme AlunnDrakann za hlasování na : craftlist.org
[21:40:06] [Server thread/INFO]: [Tokeny] 50⻇ přidané od AlunnDrakann.
            Nový stav: 501⻇ !
[21:40:22] [Votifier epoll worker/INFO]: [Votifier] Got a protocol v2 vote record from /**.**.**.**:59230 -> Vote (from:MINECRAFTLISTCZ username:AlunnDrakann address:mc.g-play.cz timeStamp:1721850031 additionalData:null)
[21:40:22] [Server thread/INFO]: [VotingPlugin] Received a vote from service site 'MINECRAFTLISTCZ' by player 'AlunnDrakann'!
[21:40:22] [pool-77-thread-1/INFO]: [Hlasování] Děkujeme AlunnDrakann za hlasování na : minecraft-list.cz
[21:40:22] [Server thread/INFO]: [Tokeny] 50⻇ přidané od AlunnDrakann.
            Nový stav: 551⻇ !
[21:40:47] [Votifier epoll worker/INFO]: [Votifier] Got a protocol v2 vote record from /**.**.**.**:49304 -> Vote (from:MinecraftServery.eu username:AlunnDrakann address:**.**.**.** timeStamp:1721850059000 additionalData:null)
[21:40:47] [Server thread/INFO]: [VotingPlugin] Received a vote from service site 'MinecraftServery.eu' by player 'AlunnDrakann'!
[21:40:47] [pool-77-thread-1/INFO]: [Hlasování] Děkujeme AlunnDrakann za hlasování na : minecraftservery.eu
[21:40:47] [Server thread/INFO]: [Tokeny] 50⻇ přidané od AlunnDrakann.
            Nový stav: 601⻇ !
[21:42:59] [Async Chat Thread - #4/INFO]: [Not Secure] ⵡ  » Myska558 → znáš bruntal
[21:43:38] [Async Chat Thread - #4/INFO]: ⏚  » LuKyN94 → kousek od ostravi no
[21:43:53] [Async Chat Thread - #4/INFO]: ⏚  » LuKyN94 → štreka
[21:44:44] [Async Chat Thread - #4/INFO]: [Not Secure] ⵡ  » Myska558 → tak bydlím bruntál
[21:45:30] [Async Chat Thread - #4/INFO]: ⏚  » LuKyN94 → neni tam cerno ? :D
[21:45:36] [Server thread/INFO]: LuKyN94 issued server command: /tp Myska558
[21:45:36] [Server thread/WARN]: LuKyN94 moved too quickly! 182.7758991564595,-19.5,-30.077186115688136
[21:45:36] [Server thread/WARN]: LuKyN94 moved too quickly! 182.7758991564595,-19.5,-30.077186115688136
[21:45:46] [Server thread/INFO]: LuKyN94 issued server command: /pinata summon Myska558
[21:46:52] [Server thread/INFO]: AlunnDrakann issued server command: /tf
[21:47:22] [Server thread/INFO]: AlunnDrakann issued server command: /tf
[21:49:37] [Async Chat Thread - #6/INFO]: [Not Secure] ⵡ  » Myska558 → noo moc ne
[21:49:50] [Server thread/INFO]: AlunnDrakann issued server command: /home
[21:49:50] [Server thread/WARN]: AlunnDrakann moved too quickly! 375.71676363139477,-28.5,-115.55468527470612
[21:49:55] [Async Chat Thread - #6/INFO]: ⏚  » LuKyN94 → ah a skym jeste hrajes mc ?
[21:50:02] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:50:03] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:50:09] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:50:10] [Server thread/INFO]: Myska558 has made the advancement [Acquire Hardware]
[21:50:10] [Server thread/INFO]: Gave 1 [Iron Ingot] to Myska558
[21:50:11] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:50:12] [Server thread/INFO]: Gave 1 [Iron Ingot] to Myska558
[21:50:16] [Server thread/INFO]: Gave 1 [Iron Ingot] to Myska558
[21:50:19] [Server thread/INFO]: Gave 1 [Netherite Ingot] to Myska558
[21:50:20] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:50:21] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:50:22] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:50:24] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:50:28] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:50:31] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:50:33] [Server thread/INFO]: Gave 1 [Iron Ingot] to Myska558
[21:50:35] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:50:37] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:50:39] [Server thread/INFO]: AlunnDrakann issued server command: /home
[21:50:39] [Server thread/WARN]: AlunnDrakann moved too quickly! -5.121037769150689,156.0,-47.292138161117464
[21:50:39] [Server thread/WARN]: AlunnDrakann moved too quickly! -5.121037769150689,156.0,-47.292138161117464
[21:50:41] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:50:43] [Server thread/INFO]: AlunnDrakann issued server command: /tf
[21:50:45] [Server thread/INFO]: Gave 1 [Iron Ingot] to Myska558
[21:50:46] [Server thread/INFO]: Gave 1 [Iron Ingot] to Myska558
[21:50:47] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:50:51] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:50:55] [Server thread/INFO]: Gave 1 [Netherite Scrap] to Myska558
[21:50:56] [Server thread/INFO]: Gave 1 [Iron Ingot] to Myska558
[21:50:57] [Server thread/INFO]: Gave 1 [Iron Ingot] to Myska558
[21:50:58] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:51:04] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:51:07] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:51:10] [Server thread/INFO]: Gave 1 [Netherite Ingot] to Myska558
[21:51:13] [Server thread/INFO]: Gave 1 [Netherite Ingot] to Myska558
[21:51:15] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:51:16] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:51:20] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:51:21] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:51:22] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:51:24] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:51:32] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:51:33] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:51:35] [Server thread/INFO]: Gave 1 [Iron Ingot] to Myska558
[21:51:36] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:51:39] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:51:41] [Server thread/INFO]: Gave 1 [Netherite Ingot] to Myska558
[21:51:42] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:51:58] [Async Chat Thread - #8/INFO]: [Not Secure] ⵡ  » Myska558 → mohu na někoho tpa
[21:52:13] [Async Chat Thread - #8/INFO]: ⏚  » LuKyN94 → ja jsem spawn nastavuji
[21:52:20] [Async Chat Thread - #8/INFO]: [Not Secure] ⵡ  » Myska558 → ok
[21:52:28] [Server thread/INFO]: Myska558 issued server command: /tpa AlunnDrakann
[21:52:33] [Async Chat Thread - #8/INFO]: ⏚  » LuKyN94 → zkus alunna
[21:52:40] [Server thread/INFO]: Myska558 issued server command: /msg LuKyN94 kk
[21:53:06] [Server thread/INFO]: Myska558 issued server command: /msg AlunnDrakann mohu tpa
[21:53:15] [Craft Scheduler Thread - 96 - BeautyQuests/INFO]: [BeautyQuests] Datas saved ~ periodic save
[21:53:15] [Async Chat Thread - #8/INFO]: ⵡ ⨍ » AlunnDrakann → dej mi chvili sem mimo home
[21:53:15] [Server thread/WARN]: [Citizens] Task #419004 for Citizens v2.0.35-SNAPSHOT (build 3484) generated an exception
java.lang.NullPointerException: Cannot invoke "net.citizensnpcs.api.npc.NPC.getEntity()" because "this.hologram" is null
    at Citizens-2.0.35-b3484.jar/net.citizensnpcs.trait.HologramTrait$InteractionVehicleRenderer.onSeenByPlayer(HologramTrait.java:637) ~[Citizens-2.0.35-b3484.jar:?]
    at Citizens-2.0.35-b3484.jar/net.citizensnpcs.EventListen.lambda$onNPCLinkToPlayer$4(EventListen.java:478) ~[Citizens-2.0.35-b3484.jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86) ~[paper-1.21.jar:1.21-107-aa36ae6]
    at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475) ~[paper-1.21.jar:1.21-107-aa36ae6]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1725) ~[paper-1.21.jar:1.21-107-aa36ae6]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.jar:1.21-107-aa36ae6]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1597) ~[paper-1.21.jar:1.21-107-aa36ae6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1303) ~[paper-1.21.jar:1.21-107-aa36ae6]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.jar:1.21-107-aa36ae6]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[21:53:15] [Server thread/WARN]: [Citizens] Task #419005 for Citizens v2.0.35-SNAPSHOT (build 3484) generated an exception
java.lang.NullPointerException: Cannot invoke "net.citizensnpcs.api.npc.NPC.getEntity()" because "this.hologram" is null
    at Citizens-2.0.35-b3484.jar/net.citizensnpcs.trait.HologramTrait$InteractionVehicleRenderer.onSeenByPlayer(HologramTrait.java:637) ~[Citizens-2.0.35-b3484.jar:?]
    at Citizens-2.0.35-b3484.jar/net.citizensnpcs.EventListen.lambda$onNPCLinkToPlayer$4(EventListen.java:478) ~[Citizens-2.0.35-b3484.jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86) ~[paper-1.21.jar:1.21-107-aa36ae6]
    at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475) ~[paper-1.21.jar:1.21-107-aa36ae6]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1725) ~[paper-1.21.jar:1.21-107-aa36ae6]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473) ~[paper-1.21.jar:1.21-107-aa36ae6]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1597) ~[paper-1.21.jar:1.21-107-aa36ae6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1303) ~[paper-1.21.jar:1.21-107-aa36ae6]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.jar:1.21-107-aa36ae6]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[21:53:24] [Server thread/INFO]: Myska558 issued server command: /msg AlunnDrakann ok
[21:54:04] [Server thread/INFO]: Myska558 issued server command: /msg LuKyN94 nehledáš členy do admin team ?
[21:54:05] [Async Chat Thread - #8/INFO]: ⵡ  » AlunnDrakann → ale nic jeste nemam
[21:54:12] [Server thread/INFO]: Myska558 issued server command: /msg AlunnDrakann neva
[21:54:17] [Server thread/INFO]: Myska558 issued server command: /tpa AlunnDrakann
[21:54:23] [Server thread/INFO]: AlunnDrakann issued server command: /home
[21:54:23] [Server thread/WARN]: AlunnDrakann moved too quickly! 376.3653030911737,-28.0,-113.83883770538432
[21:54:32] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:54:33] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:54:35] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:54:36] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:54:39] [Server thread/INFO]: Gave 1 [Leather] to Myska558
[21:54:40] [Async Chat Thread - #8/INFO]: ⵡ  » AlunnDrakann → muyes
[21:54:50] [Server thread/INFO]: AlunnDrakann issued server command: /cmi tpaccept Myska558 tpa
[21:55:16] [Server thread/INFO]: Myska558 lost connection: Disconnected
[21:55:16] [Server thread/INFO]: [BackPackPlus] Saving data for Myska558
[21:55:16] [Server thread/INFO]: Effect Mining fatigue byl přidán hráči Myska558. Čas: 1 sekund. Level: 1 (Online).
[21:55:16] [Server thread/INFO]: Effect Slowness byl přidán hráči Myska558. Čas: 1 sekund. Level: 1 (Online).
[21:55:16] [Server thread/INFO]: Effect Glowing byl přidán hráči Myska558. Čas: 1 sekund. Level: 1 (Online).
[21:55:16] [Server thread/INFO]: Effect Darkness byl přidán hráči Myska558. Čas: 1 sekund. Level: 1 (Online).
[21:55:16] [Server thread/INFO]: [Offline] ⵡ Myska558 opustil server!
[21:56:01] [Server thread/INFO]: LuKyN94 issued server command: /pinata killall
[21:56:22] [Server thread/INFO]: AlunnDrakann issued server command: /home
[21:56:22] [Server thread/WARN]: AlunnDrakann moved too quickly! -7.089607099593195,157.0,-48.56618253797046
[21:56:22] [Server thread/WARN]: AlunnDrakann moved too quickly! -7.089607099593195,157.0,-48.56618253797046