Paste #132166: Citizens 1.21.4

Date: 2025/03/27 10:45:44 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[11:30:12] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.6+7-LTS; Amazon.com Inc. Corretto-21.0.6.7.1) on Linux 6.1.0-31-amd64 (amd64)
[11:30:12] [ServerMain/INFO]: [bootstrap] Loading Purpur 1.21.4-2411-HEAD@75efb97 (2025-03-24T00:42:33Z) for Minecraft 1.21.4
[11:30:13] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[11:30:13] [ServerMain/INFO]: [FileProviderSource] The spark plugin will not be loaded as this server bundles the spark profiler.
[11:30:13] [ServerMain/INFO]: [PluginInitializerManager] Initialized 106 plugins
[11:30:13] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (6):
 - AdvancedKits (1.19.9), ColoredArmors (1.0.0), EcoBits (1.8.4), EcoMenus (0.6.0), MarriageMaster (2.7.8), RPGDrops (1.0.0)
[11:30:13] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (100):
 - 40ServidoresMC (2.5), Actions (2.70.0), AdvancedChat (1.8.16), AlonsoTags (2.2.1-BETA-PRO), Aurora (2.1.7), AuroraCollections (1.5.3), AuroraCrafting (2.0.0), AuroraLevels (1.6.2), AxAuctions (1.20.3), AxBoosters (3.8.1), AxDarkAuctions (1.2.3), AxKoth (2.13.2), BeautyQuests (1.0.5_BUILD447), BetterProfiles (1.7-BETA-DEV-002), BetterRTP (3.6.13), BetterRTPAddons (1.8.9), BlockEffects (4.0), BreakControl (1.0.0), CMILib (1.5.3.5), ChatGames-Premium (1.9.9), Chunky (1.4.28), Citizens (2.0.38-SNAPSHOT (build 3767)), Codex (2.3.4), DecentHolograms (2.8.15), DeluxeCombat (1.70.2), DeluxeMenus (1.14.0-Release), DropGuard (1.0.9), EasyArmorStands (2.4.1), EcoArmor (8.71.2), EcoEnchants (12.21.0), EcoItems (5.59.2), EcoJobs (3.72.0), EcoPets (2.71.2), EcoPets-Addon (1.0.0), EcoScrolls (1.8.0), EcoSkills (3.60.5), EnchantmentDisabler (0.2.3), EnchantmentSlots (4.3.3), Essentials (2.21.1-dev+5-dabe687), EssentialsChat (2.21.1-dev+5-dabe687), EssentialsProtect (2.21.1-dev+5-dabe687), EssentialsSpawn (2.21.1-dev+5-dabe687), ExploitFixer (3.1.2), FastAsyncWorldEdit (2.13.1-SNAPSHOT-1057;093c30d), HamsterAPI (0.2.4), HeadDatabase (4.20.4), IllegalStack (2.9.12a), Interactions (2.8.3), InteractiveChat (4.2.16.0), InventoryRollbackPlus (1.6.21), Iris (3.6.4-1.20.1-1.21.4), ItemEdit (3.5.5), ItsMyConfig (4.0.0), JPremium (CLEARED-1.24.1), LevelledMobs (4.3.1 b111), LiteBans (2.16.1), LuckPerms (5.4.141), MMOItems (6.10.1-SNAPSHOT), MythicChanger (2.3.12), MythicCrucible (2.2.0-SNAPSHOT), MythicLib (1.7.1-SNAPSHOT), MythicMobs (5.8.2-SNAPSHOT-5b666f3a), MythicMobsGUI (1.11.1), NBTAPI (2.14.1), PSMenu (1.7.1-STABLE), PlaceholderAPI (2.11.6), PlayerVaults (4.4.3), ProtectionStones (2.10.5), ProtocolLib (5.4.0-SNAPSHOT-742), Reforges (6.71.2), RoyaleEconomy (2.3.9.7), SelectionVisualizer (3.3.2.1), Shopkeepers (2.23.3), SimpleBlockRegen (0.5.8-SNAPSHOT), SpawnerLegacy (1.3.5), TAB (5.1.0), Talismans (6.70.2), Tebex (2.1.0), TimedTopper (2.4.0), ToastedAFK (2.6.5.5), Topper (3.8.1), UltimateClans (8.1.1), UltimateRewards (2.10.1), UltimateShop (3.6.6), UltimateShopEditor (0.0.8), Ultimate_BlockRegeneration (2.0.31-BETA), UltraRegions (1.10.2), Vault (1.7.3-CMI), ViaBackwards (5.2.1), ViaVersion (5.2.1), Workstations (1.0.0), WorldGuard (7.0.12+829a4a4), WorldGuard-TitleX (1.0), WorldGuardExtraFlags (4.2.4-SNAPSHOT), WorldGuardRegionProtect (1.8.3.21), asCMD (2.3), eco (6.75.2), floodgate (2.2.3-SNAPSHOT (b114-83fbd6e)), nightcore (2.7.2), packetevents (2.7.0)
[11:30:17] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[11:30:18] [ServerMain/INFO]: Loaded 1370 recipes
[11:30:18] [ServerMain/INFO]: Loaded 1481 advancements
[11:30:18] [ServerMain/INFO]: [MCTypeRegistry] Initialising converters for DataConverter...
[11:30:18] [ServerMain/INFO]: [MCTypeRegistry] Finished initialising converters for DataConverter in 187.5ms
[11:30:18] [Server thread/INFO]: Starting minecraft server version 1.21.4
[11:30:18] [Server thread/INFO]: Loading properties
[11:30:18] [Server thread/INFO]: This server is running Purpur version 1.21.4-2411-HEAD@75efb97 (2025-03-24T00:42:33Z) (Implementing API version 1.21.4-R0.1-SNAPSHOT)
[11:30:18] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[11:30:18] [Server thread/INFO]: Server Ping Player Sample Count: 12
[11:30:18] [Server thread/INFO]: Using 4 threads for Netty based IO
[11:30:18] [Server thread/INFO]: [MoonriseCommon] Paper is using 6 worker threads, 1 I/O threads
[11:30:18] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using population gen parallelism: true
[11:30:18] [Server thread/INFO]: Default game type: SURVIVAL
[11:30:18] [Server thread/INFO]: Generating keypair
[11:30:18] [Server thread/INFO]: Starting Minecraft server on localhost:26444
[11:30:18] [Server thread/INFO]: Using epoll channel type
[11:30:19] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[11:30:19] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
[11:30:19] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loading 1 libraries... please wait
[11:30:19] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loaded library /home/mycraft/rpg/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[11:30:19] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loaded library /home/mycraft/rpg/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[11:30:19] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loaded library /home/mycraft/rpg/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[11:30:19] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loaded library /home/mycraft/rpg/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[11:30:19] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loaded library /home/mycraft/rpg/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[11:30:19] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loaded library /home/mycraft/rpg/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[11:30:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loading 4 libraries... please wait
[11:30:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-api/4.16.0/adventure-api-4.16.0.jar
[11:30:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-key/4.16.0/adventure-key-4.16.0.jar
[11:30:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/mycraft/rpg/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[11:30:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/mycraft/rpg/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[11:30:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/mycraft/rpg/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[11:30:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-platform-bukkit/4.3.2/adventure-platform-bukkit-4.3.2.jar
[11:30:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-platform-api/4.3.2/adventure-platform-api-4.3.2.jar
[11:30:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.2/adventure-text-serializer-bungeecord-4.3.2.jar
[11:30:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[11:30:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[11:30:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[11:30:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-platform-facet/4.3.2/adventure-platform-facet-4.3.2.jar
[11:30:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-platform-viaversion/4.3.2/adventure-platform-viaversion-4.3.2.jar
[11:30:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-text-minimessage/4.16.0/adventure-text-minimessage-4.16.0.jar
[11:30:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-text-serializer-gson/4.16.0/adventure-text-serializer-gson-4.16.0.jar
[11:30:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-text-serializer-json/4.16.0/adventure-text-serializer-json-4.16.0.jar
[11:30:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/mycraft/rpg/libraries/net/kyori/option/1.0.0/option-1.0.0.jar
[11:30:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/mycraft/rpg/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[11:30:19] [Server thread/INFO]: [eco] Initializing eco
[11:30:19] [Server thread/INFO]: [EcoItems] Initializing EcoItems
[11:30:21] [Server thread/INFO]: [EcoArmor] Initializing EcoArmor
[11:30:23] [Server thread/INFO]: [EcoSkills] Initializing EcoSkills
[11:30:24] [Server thread/INFO]: [EcoBits] Initializing EcoBits
[11:30:24] [Server thread/INFO]: [EcoJobs] Initializing EcoJobs
[11:30:25] [Server thread/INFO]: [EcoEnchants] Initializing EcoEnchants
[11:30:25] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 5 libraries... please wait
[11:30:25] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/mycraft/rpg/libraries/ch/ethz/globis/phtree/phtree/2.8.1/phtree-2.8.1.jar
[11:30:25] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/mycraft/rpg/libraries/org/joml/joml/1.10.8/joml-1.10.8.jar
[11:30:25] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/mycraft/rpg/libraries/it/unimi/dsi/fastutil/8.5.15/fastutil-8.5.15.jar
[11:30:25] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-platform-bukkit/4.3.3/adventure-platform-bukkit-4.3.3.jar
[11:30:25] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-platform-api/4.3.3/adventure-platform-api-4.3.3.jar
[11:30:25] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.3/adventure-text-serializer-bungeecord-4.3.3.jar
[11:30:25] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[11:30:25] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[11:30:25] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/mycraft/rpg/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[11:30:25] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/mycraft/rpg/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[11:30:25] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/mycraft/rpg/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[11:30:25] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[11:30:25] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[11:30:25] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-platform-facet/4.3.3/adventure-platform-facet-4.3.3.jar
[11:30:25] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-platform-viaversion/4.3.3/adventure-platform-viaversion-4.3.3.jar
[11:30:25] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-text-minimessage/4.17.0/adventure-text-minimessage-4.17.0.jar
[11:30:25] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.jar
[11:30:25] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-key/4.17.0/adventure-key-4.17.0.jar
[11:30:25] [Server thread/INFO]: [EcoPets] Initializing EcoPets
[11:30:27] [Server thread/INFO]: [SpigotLibraryLoader] [AxBoosters] Loading 1 libraries... please wait
[11:30:27] [Server thread/INFO]: [SpigotLibraryLoader] [AxBoosters] Loaded library /home/mycraft/rpg/libraries/club/minnced/discord-webhooks/0.8.4/discord-webhooks-0.8.4.jar
[11:30:27] [Server thread/INFO]: [SpigotLibraryLoader] [AxBoosters] Loaded library /home/mycraft/rpg/libraries/org/slf4j/slf4j-api/1.7.32/slf4j-api-1.7.32.jar
[11:30:27] [Server thread/INFO]: [SpigotLibraryLoader] [AxBoosters] Loaded library /home/mycraft/rpg/libraries/com/squareup/okhttp3/okhttp/4.10.0/okhttp-4.10.0.jar
[11:30:27] [Server thread/INFO]: [SpigotLibraryLoader] [AxBoosters] Loaded library /home/mycraft/rpg/libraries/com/squareup/okio/okio-jvm/3.0.0/okio-jvm-3.0.0.jar
[11:30:27] [Server thread/INFO]: [SpigotLibraryLoader] [AxBoosters] Loaded library /home/mycraft/rpg/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.5.31/kotlin-stdlib-jdk8-1.5.31.jar
[11:30:27] [Server thread/INFO]: [SpigotLibraryLoader] [AxBoosters] Loaded library /home/mycraft/rpg/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.5.31/kotlin-stdlib-jdk7-1.5.31.jar
[11:30:27] [Server thread/INFO]: [SpigotLibraryLoader] [AxBoosters] Loaded library /home/mycraft/rpg/libraries/org/jetbrains/kotlin/kotlin-stdlib-common/1.5.31/kotlin-stdlib-common-1.5.31.jar
[11:30:27] [Server thread/INFO]: [SpigotLibraryLoader] [AxBoosters] Loaded library /home/mycraft/rpg/libraries/org/jetbrains/kotlin/kotlin-stdlib/1.6.20/kotlin-stdlib-1.6.20.jar
[11:30:27] [Server thread/INFO]: [SpigotLibraryLoader] [AxBoosters] Loaded library /home/mycraft/rpg/libraries/org/jetbrains/annotations/13.0/annotations-13.0.jar
[11:30:27] [Server thread/INFO]: [SpigotLibraryLoader] [AxBoosters] Loaded library /home/mycraft/rpg/libraries/org/json/json/20230618/json-20230618.jar
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loading 5 libraries... please wait
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-api/4.16.0/adventure-api-4.16.0.jar
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-key/4.16.0/adventure-key-4.16.0.jar
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/mycraft/rpg/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/mycraft/rpg/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/mycraft/rpg/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-platform-bukkit/4.3.2/adventure-platform-bukkit-4.3.2.jar
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-platform-api/4.3.2/adventure-platform-api-4.3.2.jar
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.2/adventure-text-serializer-bungeecord-4.3.2.jar
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-platform-facet/4.3.2/adventure-platform-facet-4.3.2.jar
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-platform-viaversion/4.3.2/adventure-platform-viaversion-4.3.2.jar
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-text-minimessage/4.16.0/adventure-text-minimessage-4.16.0.jar
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-text-serializer-gson/4.16.0/adventure-text-serializer-gson-4.16.0.jar
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-text-serializer-json/4.16.0/adventure-text-serializer-json-4.16.0.jar
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/mycraft/rpg/libraries/net/kyori/option/1.0.0/option-1.0.0.jar
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/mycraft/rpg/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-text-serializer-legacy/4.16.0/adventure-text-serializer-legacy-4.16.0.jar
[11:30:28] [Server thread/INFO]: [MarriageMaster] PCGF-PluginLib not installed. Switching to standalone mode!
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [WorldGuardRegionProtect] Loading 2 libraries... please wait
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [WorldGuardRegionProtect] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-text-minimessage/4.17.0/adventure-text-minimessage-4.17.0.jar
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [WorldGuardRegionProtect] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.jar
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [WorldGuardRegionProtect] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-key/4.17.0/adventure-key-4.17.0.jar
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [WorldGuardRegionProtect] Loaded library /home/mycraft/rpg/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [WorldGuardRegionProtect] Loaded library /home/mycraft/rpg/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [WorldGuardRegionProtect] Loaded library /home/mycraft/rpg/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [WorldGuardRegionProtect] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-platform-bukkit/4.3.2/adventure-platform-bukkit-4.3.2.jar
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [WorldGuardRegionProtect] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-platform-api/4.3.2/adventure-platform-api-4.3.2.jar
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [WorldGuardRegionProtect] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.2/adventure-text-serializer-bungeecord-4.3.2.jar
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [WorldGuardRegionProtect] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [WorldGuardRegionProtect] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [WorldGuardRegionProtect] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [WorldGuardRegionProtect] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [WorldGuardRegionProtect] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-platform-facet/4.3.2/adventure-platform-facet-4.3.2.jar
[11:30:28] [Server thread/INFO]: [SpigotLibraryLoader] [WorldGuardRegionProtect] Loaded library /home/mycraft/rpg/libraries/net/kyori/adventure-platform-viaversion/4.3.2/adventure-platform-viaversion-4.3.2.jar
[11:30:28] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[11:30:32] [Server thread/WARN]: Legacy plugin asCMD v2.3 does not specify an api-version.
[11:30:32] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loading 2 libraries... please wait
[11:30:32] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/mycraft/rpg/libraries/com/zaxxer/HikariCP/6.0.0/HikariCP-6.0.0.jar
[11:30:32] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/mycraft/rpg/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[11:30:32] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/mycraft/rpg/libraries/it/unimi/dsi/fastutil-core/8.5.13/fastutil-core-8.5.13.jar
[11:30:32] [Server thread/INFO]: [nightcore] Server version detected as Purpur Unknown.
[11:30:32] [Server thread/INFO]: [nightcore] [Core Components] ENTITY_ID_GENERATOR: Loaded
[11:30:32] [Server thread/INFO]: [nightcore] [Core Components] ITEM_NBT_COMPRESSOR: Loaded
[11:30:33] [Server thread/INFO]: [Workstations] Initializing Workstations
[11:30:35] [Server thread/INFO]: [Actions] Initializing Actions
[11:30:36] [Server thread/INFO]: [SpigotLibraryLoader] [AxAuctions] Loading 1 libraries... please wait
[11:30:36] [Server thread/INFO]: [SpigotLibraryLoader] [AxAuctions] Loaded library /home/mycraft/rpg/libraries/club/minnced/discord-webhooks/0.8.4/discord-webhooks-0.8.4.jar
[11:30:36] [Server thread/INFO]: [SpigotLibraryLoader] [AxAuctions] Loaded library /home/mycraft/rpg/libraries/org/slf4j/slf4j-api/1.7.32/slf4j-api-1.7.32.jar
[11:30:36] [Server thread/INFO]: [SpigotLibraryLoader] [AxAuctions] Loaded library /home/mycraft/rpg/libraries/com/squareup/okhttp3/okhttp/4.10.0/okhttp-4.10.0.jar
[11:30:36] [Server thread/INFO]: [SpigotLibraryLoader] [AxAuctions] Loaded library /home/mycraft/rpg/libraries/com/squareup/okio/okio-jvm/3.0.0/okio-jvm-3.0.0.jar
[11:30:36] [Server thread/INFO]: [SpigotLibraryLoader] [AxAuctions] Loaded library /home/mycraft/rpg/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.5.31/kotlin-stdlib-jdk8-1.5.31.jar
[11:30:36] [Server thread/INFO]: [SpigotLibraryLoader] [AxAuctions] Loaded library /home/mycraft/rpg/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.5.31/kotlin-stdlib-jdk7-1.5.31.jar
[11:30:36] [Server thread/INFO]: [SpigotLibraryLoader] [AxAuctions] Loaded library /home/mycraft/rpg/libraries/org/jetbrains/kotlin/kotlin-stdlib-common/1.5.31/kotlin-stdlib-common-1.5.31.jar
[11:30:36] [Server thread/INFO]: [SpigotLibraryLoader] [AxAuctions] Loaded library /home/mycraft/rpg/libraries/org/jetbrains/kotlin/kotlin-stdlib/1.6.20/kotlin-stdlib-1.6.20.jar
[11:30:36] [Server thread/INFO]: [SpigotLibraryLoader] [AxAuctions] Loaded library /home/mycraft/rpg/libraries/org/jetbrains/annotations/13.0/annotations-13.0.jar
[11:30:36] [Server thread/INFO]: [SpigotLibraryLoader] [AxAuctions] Loaded library /home/mycraft/rpg/libraries/org/json/json/20230618/json-20230618.jar
[11:30:37] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loading 14 libraries... please wait
[11:30:37] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/mycraft/rpg/libraries/com/googlecode/concurrentlinkedhashmap/concurrentlinkedhashmap-lru/1.4.2/concurrentlinkedhashmap-lru-1.4.2.jar
[11:30:37] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/mycraft/rpg/libraries/com/github/ben-manes/caffeine/caffeine/3.0.5/caffeine-3.0.5.jar
[11:30:37] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/mycraft/rpg/libraries/org/checkerframework/checker-qual/3.19.0/checker-qual-3.19.0.jar
[11:30:37] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/mycraft/rpg/libraries/com/google/errorprone/error_prone_annotations/2.10.0/error_prone_annotations-2.10.0.jar
[11:30:37] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/mycraft/rpg/libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
[11:30:37] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/mycraft/rpg/libraries/commons-io/commons-io/2.13.0/commons-io-2.13.0.jar
[11:30:37] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/mycraft/rpg/libraries/io/timeandspace/smoothie-map/2.0.2/smoothie-map-2.0.2.jar
[11:30:37] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/mycraft/rpg/libraries/io/timeandspace/jpsg-core/1.4/jpsg-core-1.4.jar
[11:30:37] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/mycraft/rpg/libraries/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.jar
[11:30:37] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/mycraft/rpg/libraries/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar
[11:30:37] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/mycraft/rpg/libraries/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar
[11:30:37] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/mycraft/rpg/libraries/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar
[11:30:37] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/mycraft/rpg/libraries/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar
[11:30:37] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/mycraft/rpg/libraries/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar
[11:30:37] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/mycraft/rpg/libraries/org/zeroturnaround/zt-zip/1.14/zt-zip-1.14.jar
[11:30:37] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/mycraft/rpg/libraries/org/slf4j/slf4j-api/1.6.6/slf4j-api-1.6.6.jar
[11:30:37] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/mycraft/rpg/libraries/it/unimi/dsi/fastutil/8.5.6/fastutil-8.5.6.jar
[11:30:37] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/mycraft/rpg/libraries/org/ow2/asm/asm/9.2/asm-9.2.jar
[11:30:37] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/mycraft/rpg/libraries/rhino/js/1.7R2/js-1.7R2.jar
[11:30:37] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/mycraft/rpg/libraries/bsf/bsf/2.4.0/bsf-2.4.0.jar
[11:30:37] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/mycraft/rpg/libraries/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar
[11:30:37] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/mycraft/rpg/libraries/org/lz4/lz4-java/1.8.0/lz4-java-1.8.0.jar
[11:30:37] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/mycraft/rpg/libraries/com/github/oshi/oshi-core/6.6.5/oshi-core-6.6.5.jar
[11:30:37] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/mycraft/rpg/libraries/net/java/dev/jna/jna/5.15.0/jna-5.15.0.jar
[11:30:37] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/mycraft/rpg/libraries/net/java/dev/jna/jna-platform/5.15.0/jna-platform-5.15.0.jar
[11:30:37] [Server thread/INFO]: [EcoScrolls] Initializing EcoScrolls
[11:30:38] [Server thread/INFO]: [EcoMenus] Initializing EcoMenus
[11:30:38] [Server thread/INFO]: [SpigotLibraryLoader] [AxKoth] Loading 1 libraries... please wait
[11:30:38] [Server thread/INFO]: [SpigotLibraryLoader] [AxKoth] Loaded library /home/mycraft/rpg/libraries/club/minnced/discord-webhooks/0.8.4/discord-webhooks-0.8.4.jar
[11:30:38] [Server thread/INFO]: [SpigotLibraryLoader] [AxKoth] Loaded library /home/mycraft/rpg/libraries/org/slf4j/slf4j-api/1.7.32/slf4j-api-1.7.32.jar
[11:30:38] [Server thread/INFO]: [SpigotLibraryLoader] [AxKoth] Loaded library /home/mycraft/rpg/libraries/com/squareup/okhttp3/okhttp/4.10.0/okhttp-4.10.0.jar
[11:30:38] [Server thread/INFO]: [SpigotLibraryLoader] [AxKoth] Loaded library /home/mycraft/rpg/libraries/com/squareup/okio/okio-jvm/3.0.0/okio-jvm-3.0.0.jar
[11:30:38] [Server thread/INFO]: [SpigotLibraryLoader] [AxKoth] Loaded library /home/mycraft/rpg/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.5.31/kotlin-stdlib-jdk8-1.5.31.jar
[11:30:38] [Server thread/INFO]: [SpigotLibraryLoader] [AxKoth] Loaded library /home/mycraft/rpg/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.5.31/kotlin-stdlib-jdk7-1.5.31.jar
[11:30:38] [Server thread/INFO]: [SpigotLibraryLoader] [AxKoth] Loaded library /home/mycraft/rpg/libraries/org/jetbrains/kotlin/kotlin-stdlib-common/1.5.31/kotlin-stdlib-common-1.5.31.jar
[11:30:38] [Server thread/INFO]: [SpigotLibraryLoader] [AxKoth] Loaded library /home/mycraft/rpg/libraries/org/jetbrains/kotlin/kotlin-stdlib/1.6.20/kotlin-stdlib-1.6.20.jar
[11:30:38] [Server thread/INFO]: [SpigotLibraryLoader] [AxKoth] Loaded library /home/mycraft/rpg/libraries/org/jetbrains/annotations/13.0/annotations-13.0.jar
[11:30:38] [Server thread/INFO]: [SpigotLibraryLoader] [AxKoth] Loaded library /home/mycraft/rpg/libraries/org/json/json/20230618/json-20230618.jar
[11:30:39] [Server thread/INFO]: [RPGDrops] Initializing RPGDrops
[11:30:40] [Server thread/INFO]: [BreakControl] Initializing BreakControl
[11:30:42] [Server thread/INFO]: [Reforges] Initializing Reforges
[11:30:42] [Server thread/INFO]: [Talismans] Initializing Talismans
[11:30:42] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loading 3 libraries... please wait
[11:30:42] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/mycraft/rpg/libraries/org/apache/commons/commons-lang3/3.13.0/commons-lang3-3.13.0.jar
[11:30:42] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/mycraft/rpg/libraries/com/mysql/mysql-connector-j/9.0.0/mysql-connector-j-9.0.0.jar
[11:30:42] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/mycraft/rpg/libraries/com/google/protobuf/protobuf-java/4.26.1/protobuf-java-4.26.1.jar
[11:30:42] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/mycraft/rpg/libraries/org/mariadb/jdbc/mariadb-java-client/3.5.1/mariadb-java-client-3.5.1.jar
[11:30:42] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/mycraft/rpg/libraries/com/github/waffle/waffle-jna/3.3.0/waffle-jna-3.3.0.jar
[11:30:42] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/mycraft/rpg/libraries/net/java/dev/jna/jna/5.13.0/jna-5.13.0.jar
[11:30:42] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/mycraft/rpg/libraries/net/java/dev/jna/jna-platform/5.13.0/jna-platform-5.13.0.jar
[11:30:42] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/mycraft/rpg/libraries/org/slf4j/jcl-over-slf4j/2.0.7/jcl-over-slf4j-2.0.7.jar
[11:30:42] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/mycraft/rpg/libraries/org/slf4j/slf4j-api/2.0.7/slf4j-api-2.0.7.jar
[11:30:42] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/mycraft/rpg/libraries/com/github/ben-manes/caffeine/caffeine/2.9.3/caffeine-2.9.3.jar
[11:30:42] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/mycraft/rpg/libraries/com/google/errorprone/error_prone_annotations/2.10.0/error_prone_annotations-2.10.0.jar
[11:30:42] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/mycraft/rpg/libraries/org/checkerframework/checker-qual/3.32.0/checker-qual-3.32.0.jar
[11:30:42] [Server thread/INFO]: [ColoredArmors] Initializing ColoredArmors
[11:30:43] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.2.1
[11:30:43] [Server thread/INFO]: [ViaVersion] ViaVersion 5.2.1 is now loaded. Registering protocol transformers and injecting...
[11:30:43] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[11:30:43] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[11:30:44] [Server thread/INFO]: [ViaBackwards] Loading translations...
[11:30:44] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[11:30:44] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.4.0-SNAPSHOT-742
[11:30:44] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.21.4) has not yet been tested! Proceed with caution.
[11:30:44] [Server thread/INFO]: [RoyaleEconomy] Loading server plugin RoyaleEconomy v2.3.9.7
[11:30:44] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.141
[11:30:44] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-CMI
[11:30:44] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[11:30:44] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.13.1-SNAPSHOT-1057;093c30d
[11:30:44] [Server thread/WARN]: 
**********************************************
** You are using the Spigot-mapped FAWE jar on a modern Paper version.
** This will result in slower first-run times and wasted disk space from plugin remapping.
** Download the Paper FAWE jar from Modrinth to avoid this: https://modrinth.com/plugin/fastasyncworldedit/
**********************************************
[11:30:46] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@6316f3bf]
[11:30:46] [Server thread/INFO]: [HeadDatabase] Loading server plugin HeadDatabase v4.20.4
[11:30:46] [Server thread/INFO]: [LiteBans] Loading server plugin LiteBans v2.16.1
[11:30:46] [Server thread/INFO]: [AdvancedChat] Loading server plugin AdvancedChat v1.8.16
[11:30:46] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.12+829a4a4
[11:30:46] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.0-Release
[11:30:46] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[11:30:46] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.1-dev+5-dabe687
[11:30:46] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.15
[11:30:46] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.8.2-SNAPSHOT-5b666f3a
[11:30:46] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[11:30:46] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[11:30:46] [Server thread/INFO]: [eco] Loading server plugin eco v6.75.2
[11:30:46] [Server thread/INFO]: [MythicLib] Loading server plugin MythicLib v1.7.1-SNAPSHOT
[11:30:46] [Server thread/INFO]: [MythicLib] Plugin file is called 'MythicLib-dist-1.7.1-20250316.185528-18.jar'
[11:30:46] [Server thread/INFO]: [MythicLib] Detected Bukkit Version: v1_21_R3
[11:30:46] [Server thread/INFO]: [MythicLib] Hooked onto WorldGuard
[11:30:46] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.21.1-dev+5-dabe687
[11:30:46] [Server thread/INFO]: [floodgate] Loading server plugin floodgate v2.2.3-SNAPSHOT (b114-83fbd6e)
[11:30:46] [Server thread/WARN]: [floodgate] en_ is not a supported Floodgate language.
[11:30:46] [Server thread/INFO]: [floodgate] Took 280ms to boot Floodgate
[11:30:46] [Server thread/INFO]: [EcoItems] Loading server plugin EcoItems v5.59.2
[11:30:46] [Server thread/INFO]: [libreforge] Initializing libreforge
[11:30:46] [Server thread/INFO]: [libreforge] Loading server plugin libreforge v4.74.0
[11:30:46] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.14.1
[11:30:46] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[11:30:46] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[11:30:46] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'NBTAPI' to create a bStats instance!
[11:30:46] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.2.1
[11:30:46] [Server thread/INFO]: [MMOItems] Loading server plugin MMOItems v6.10.1-SNAPSHOT
[11:30:46] [Server thread/INFO]: [MMOItems] Plugin file is called 'MMOItems-6.10.1-20250317.064757-14.jar'
[11:30:46] [Server thread/INFO]: [MMOItems] Hooked onto WorldEdit
[11:30:46] [Thread-11/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[11:30:46] [Server thread/INFO]: [MMOItems Template Modifiers] Preloading template modifiers, please wait..
[11:30:46] [Server thread/INFO]: [MMOItems Item Templates] Preloading item templates, please wait..
[11:30:46] [Server thread/INFO]: [InteractiveChat] Loading server plugin InteractiveChat v4.2.16.0
[11:30:46] [Server thread/INFO]: [EcoArmor] Loading server plugin EcoArmor v8.71.2
[11:30:46] [Server thread/INFO]: [LevelledMobs] Loading server plugin LevelledMobs v4.3.1 b111
[11:30:46] [Server thread/INFO]: [LevelledMobs] Loading commands
[11:30:46] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.7.0
[11:30:48] [Server thread/INFO]: [EcoSkills] Loading server plugin EcoSkills v3.60.5
[11:30:48] [Server thread/INFO]: [Aurora] Loading server plugin Aurora v2.1.7
[11:30:48] [Server thread/INFO]: [EcoBits] Loading server plugin EcoBits v1.8.4
[11:30:48] [Server thread/INFO]: [MythicChanger] Loading server plugin MythicChanger v2.3.12
[11:30:48] [Server thread/INFO]: [UltimateClans] Loading server plugin UltimateClans v8.1.1
[11:30:48] [Server thread/INFO]: [UltimateClans] Loading library EConfig
[11:30:48] [Server thread/INFO]: [UltimateClans] Loading library HikariCP
[11:30:48] [Server thread/INFO]: [UltimateClans] Loading library jedis
[11:30:48] [Server thread/INFO]: [UltimateClans] Loading library EvalEx
[11:30:48] [Server thread/INFO]: [UltimateClans] Loading library triumph-gui
[11:30:48] [Server thread/INFO]: [UltimateClans] Loading library anvilgui
[11:30:50] [Server thread/INFO]: [UltimateClans] Downloaded library https://repo.codemc.io/repository/maven-snapshots/net/wesjd/anvilgui/1.10.3-SNAPSHOT/anvilgui-1.10.3-20241024.152924-1.jar
[11:30:50] [Server thread/INFO]: [EcoJobs] Loading server plugin EcoJobs v3.72.0
[11:30:50] [Server thread/INFO]: [UltraRegions] Loading server plugin UltraRegions v1.10.2
[11:30:50] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.13
[11:30:50] [Server thread/INFO]: [ProtectionStones] Loading server plugin ProtectionStones v2.10.5
[11:30:50] [Server thread/INFO]: [EcoEnchants] Loading server plugin EcoEnchants v12.21.0
[11:30:50] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.38-SNAPSHOT (build 3767)
[11:30:50] [Server thread/INFO]: [EcoPets] Loading server plugin EcoPets v2.71.2
[11:30:50] [Server thread/INFO]: [Topper] Loading server plugin Topper v3.8.1
[11:30:50] [Server thread/INFO]: [AuroraLevels] Loading server plugin AuroraLevels v1.6.2
[11:30:50] [Server thread/INFO]: AuroraLevels | Registered WorldGuard flag aurora-levels-min-level-entry
[11:30:50] [Server thread/INFO]: AuroraLevels | Registered WorldGuard flag aurora-levels-max-level-entry
[11:30:50] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.5.3.5
[11:30:50] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.4.28
[11:30:50] [Server thread/INFO]: [MythicCrucible] Loading server plugin MythicCrucible v2.2.0-SNAPSHOT
[11:30:50] [Server thread/INFO]: [UltimateShop] Loading server plugin UltimateShop v3.6.6
[11:30:50] [Server thread/INFO]: [HamsterAPI] Loading server plugin HamsterAPI v0.2.4
[11:30:50] [Server thread/INFO]: [AxBoosters] Loading server plugin AxBoosters v3.8.1
[11:30:50] [Server thread/INFO]: [DeluxeCombat] Loading server plugin DeluxeCombat v1.70.2
[11:30:50] [Server thread/INFO]: [ItemEdit] Loading server plugin ItemEdit v3.5.5
[11:30:50] [Server thread/INFO]: [MarriageMaster] Loading server plugin MarriageMaster v2.7.8
[11:30:50] [Server thread/INFO]: [EcoPets-Addon] Loading server plugin EcoPets-Addon v1.0.0
[11:30:50] [Server thread/INFO]: [JPremium] Loading server plugin JPremium vCLEARED-1.24.1
[11:30:50] [Server thread/INFO]: [WorldGuardRegionProtect] Loading server plugin WorldGuardRegionProtect v1.8.3.21
[11:30:50] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.1.0
[11:30:50] [Server thread/INFO]: [Shopkeepers] Loading server plugin Shopkeepers v2.23.3
[11:30:51] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (278 ms).
[11:30:51] [Server thread/INFO]: [Shopkeepers] Loading config.
[11:30:51] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
[11:30:51] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[11:30:51] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[11:30:51] [Server thread/INFO]: [EssentialsProtect] Loading server plugin EssentialsProtect v2.21.1-dev+5-dabe687
[11:30:51] [Server thread/INFO]: [40ServidoresMC] Loading server plugin 40ServidoresMC v2.5
[11:30:51] [Server thread/INFO]: [EasyArmorStands] Loading server plugin EasyArmorStands v2.4.1
[11:30:51] [Server thread/INFO]: [asCMD] Loading server plugin asCMD v2.3
[11:30:51] [Server thread/INFO]: [nightcore] Loading server plugin nightcore v2.7.2
[11:30:51] [Server thread/INFO]: [Interactions] Loading server plugin Interactions v2.8.3
[11:30:51] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.1-dev+5-dabe687
[11:30:51] [Server thread/INFO]: [BetterProfiles] Loading server plugin BetterProfiles v1.7-BETA-DEV-002
[11:30:51] [Server thread/INFO]: [BetterProfiles] Hex colors are available!
[11:30:51] [Server thread/INFO]: [BetterProfiles] Inventory title with support for more than 32 characters. Skipping..
[11:30:51] [Server thread/INFO]: [BetterProfiles] Old constructor for HoverEvent found! Using it..
[11:30:51] [Server thread/INFO]: [BetterProfiles] New sendTitle method found! Using it..
[11:30:51] [Server thread/INFO]: [BetterProfiles] New getItemInMainHand method found! Using it..
[11:30:51] [Server thread/INFO]: [BetterProfiles] WorldGuard found! Registering custom flag(s)..
[11:30:51] [Server thread/INFO]: [BetterProfiles] WorldGuard v7.x or newer detected. Using new methods..
[11:30:51] [Server thread/INFO]: [BetterProfiles] [WorldGuard] Successfully registered 'betterprofiles-can-view-profile' flag!
[11:30:51] [Server thread/INFO]: [Workstations] Loading server plugin Workstations v1.0.0
[11:30:51] [Server thread/INFO]: [SpawnerLegacy] Loading server plugin SpawnerLegacy v1.3.5
[11:30:51] [Server thread/INFO]: [WorldGuard-TitleX] Loading server plugin WorldGuard-TitleX v1.0
[11:30:51] [Server thread/INFO]: [BeautyQuests] Loading server plugin BeautyQuests v1.0.5_BUILD447
[11:30:51] [Server thread/INFO]: [TimedTopper] Loading server plugin TimedTopper v2.4.0
[11:30:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: timedtopper [2.4.0]
[11:30:51] [Server thread/INFO]: [AxDarkAuctions] Loading server plugin AxDarkAuctions v1.2.3
[11:30:51] [Server thread/INFO]: [Actions] Loading server plugin Actions v2.70.0
[11:30:51] [Server thread/INFO]: [EnchantmentDisabler] Loading server plugin EnchantmentDisabler v0.2.3
[11:30:51] [Server thread/INFO]: [AxAuctions] Loading server plugin AxAuctions v1.20.3
[11:30:51] [Server thread/INFO]: [AuroraCollections] Loading server plugin AuroraCollections v1.5.3
[11:30:51] [Server thread/INFO]: AuroraCollections | Registered WorldGuard flag aurora-collections-xp-gain
[11:30:51] [Server thread/INFO]: [Iris] Loading server plugin Iris v3.6.4-1.20.1-1.21.4
[11:30:51] [Server thread/INFO]: [PSMenu] Loading server plugin PSMenu v1.7.1-STABLE
[11:30:51] [Server thread/INFO]: [PSMenu] WorldGuard detected! Attempting to register region flags.
[11:30:51] [Server thread/INFO]: [PSMenu] Flag "psmenu-ban-players" successfully registered!
[11:30:51] [Server thread/INFO]: [EcoScrolls] Loading server plugin EcoScrolls v1.8.0
[11:30:51] [Server thread/INFO]: [ToastedAFK] Loading server plugin ToastedAFK v2.6.5.5
[11:30:51] [Server thread/INFO]: [Tebex] Loading server plugin Tebex v2.1.0
[11:30:51] [Server thread/INFO]: [AlonsoTags] Loading server plugin AlonsoTags v2.2.1-BETA-PRO
[11:30:51] [Server thread/INFO]: [SelectionVisualizer] Loading server plugin SelectionVisualizer v3.3.2.1
[11:30:51] [Server thread/INFO]: [Ultimate_BlockRegeneration] Loading server plugin Ultimate_BlockRegeneration v2.0.31-BETA
[11:30:51] [Server thread/INFO]: [PlayerVaults] Loading server plugin PlayerVaults v4.4.3
[11:30:51] [Server thread/INFO]: [DropGuard] Loading server plugin DropGuard v1.0.9
[11:30:51] [Server thread/INFO]: [DropGuard] Loading mongo-java-driver-3.12.14 library...
[11:30:51] [Server thread/INFO]: [DropGuard] Successfully loaded mongo-java-driver-3.12.14 library!
[11:30:51] [Server thread/INFO]: [MythicMobsGUI] Loading server plugin MythicMobsGUI v1.11.1
[11:30:51] [Server thread/INFO]: [UltimateShopEditor] Loading server plugin UltimateShopEditor v0.0.8
[11:30:51] [Server thread/INFO]: [InventoryRollbackPlus] Loading server plugin InventoryRollbackPlus v1.6.21
[11:30:51] [Server thread/INFO]: [ExploitFixer] Loading server plugin ExploitFixer v3.1.2
[11:30:51] [Server thread/INFO]: [SimpleBlockRegen] Loading server plugin SimpleBlockRegen v0.5.8-SNAPSHOT
[11:30:51] [Server thread/INFO]: [EcoMenus] Loading server plugin EcoMenus v0.6.0
[11:30:51] [Server thread/INFO]: [IllegalStack] Loading server plugin IllegalStack v2.9.12a
[11:30:51] [Server thread/INFO]: [AxKoth] Loading server plugin AxKoth v2.13.2
[11:30:51] [Server thread/INFO]: [ChatGames-Premium] Loading server plugin ChatGames-Premium v1.9.9
[11:30:51] [Server thread/INFO]: [RPGDrops] Loading server plugin RPGDrops v1.0.0
[11:30:51] [Server thread/INFO]: [AdvancedKits] Loading server plugin AdvancedKits v1.19.9
[11:30:51] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.4-SNAPSHOT
[11:30:51] [Server thread/INFO]: [AuroraCrafting] Loading server plugin AuroraCrafting v2.0.0
[11:30:51] [Server thread/INFO]: [Codex] Loading server plugin Codex v2.3.4
[11:30:51] [Server thread/INFO]: [BreakControl] Loading server plugin BreakControl v1.0.0
[11:30:51] [Server thread/INFO]: [ItsMyConfig] Loading server plugin ItsMyConfig v4.0.0
[11:30:51] [Server thread/INFO]: [Reforges] Loading server plugin Reforges v6.71.2
[11:30:51] [Server thread/INFO]: [Talismans] Loading server plugin Talismans v6.70.2
[11:30:51] [Server thread/INFO]: [EnchantmentSlots] Loading server plugin EnchantmentSlots v4.3.3
[11:30:51] [Server thread/INFO]: [BlockEffects] Loading server plugin BlockEffects v4.0
[11:30:51] [Server thread/INFO]: [UltimateRewards] Loading server plugin UltimateRewards v2.10.1
[11:30:51] [Server thread/INFO]: [BetterRTPAddons] Loading server plugin BetterRTPAddons v1.8.9
[11:30:51] [Server thread/INFO]: [ColoredArmors] Loading server plugin ColoredArmors v1.0.0
[11:30:51] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[11:30:51] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.4.0-SNAPSHOT-742
[11:30:52] [Server thread/INFO]: [RoyaleEconomy] Enabling RoyaleEconomy v2.3.9.7
[11:30:52] [Server thread/INFO]: [RoyaleEconomy] -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
[11:30:52] [Server thread/INFO]: [RoyaleEconomy]   Plugin: RoyaleEconomy
[11:30:52] [Server thread/INFO]: [RoyaleEconomy]   Version: 2.3
[11:30:52] [Server thread/INFO]: [RoyaleEconomy]   Author: qKing12 (Dragos-Dumitru Ghinea)
[11:30:52] [Server thread/INFO]: [RoyaleEconomy]   Copyright: 2020-2025 All Rights Reserved
[11:30:52] [Server thread/INFO]: [RoyaleEconomy] -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
[11:30:52] [Server thread/INFO]: [RoyaleEconomy] Succesfully connected to the Player Purse SQL.
[11:30:52] [Server thread/INFO]: [RoyaleEconomy] Succesfully connected to the Personal Banks SQL.
[11:30:52] [Server thread/INFO]: [RoyaleEconomy] Succesfully loaded the interest.
[11:30:52] [Server thread/INFO]: [RoyaleEconomy] Succesfully connected to the Shared Banks SQL.
[11:30:52] [Server thread/INFO]: [RoyaleEconomy] Succesfully connected to the External Generated Data SQL.
[11:30:52] [Server thread/INFO]: [me.qKing12.RoyaleEconomy.hikari.HikariDataSource] RoyaleEconomySQLitePool - Starting...
[11:30:52] [Server thread/INFO]: [me.qKing12.RoyaleEconomy.hikari.HikariDataSource] RoyaleEconomySQLitePool - Start completed.
[11:30:52] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[11:30:52] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[11:30:52] [Server thread/WARN]: [NBTAPI] [NBTAPI] This Server-Version(1.21.4-R0.1-SNAPSHOT) is not supported by this NBT-API Version(2.14.0) located in RoyaleEconomy. The NBT-API will try to work as good as it can! Some functions may not work!
[11:30:52] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'RoyaleEconomy' to create a bStats instance!
[11:30:52] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.141
[11:30:53] [Server thread/INFO]:         __    
[11:30:53] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.141
[11:30:53] [Server thread/INFO]:   |___ |      Running on Bukkit - Purpur
[11:30:53] [Server thread/INFO]: 
[11:30:53] [Server thread/INFO]: [LuckPerms] Loading configuration...
[11:30:54] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[11:30:55] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[11:30:55] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[11:30:55] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 3668ms)
[11:30:55] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-CMI
[11:30:56] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[11:30:56] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[11:30:56] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-CMI
[11:30:56] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[11:30:56] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.13.1-SNAPSHOT-1057;093c30d
[11:30:56] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[11:30:56] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[11:30:56] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[11:30:56] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[11:30:56] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_4.PaperweightFaweAdapter as the Bukkit adapter
[11:30:56] [Server thread/INFO]: [eco] Enabling eco v6.75.2
[11:30:56] [Server thread/INFO]: [eco] Loading eco
[11:30:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: eco [6.75.2]
[11:30:56] [Server thread/INFO]: [eco] Loaded integrations: DeluxeCombat, HeadDatabase, MythicMobs, DecentHolograms, Essentials, Vault, RoyaleEconomy, PlaceholderAPI, WorldGuard
[11:30:56] [Server thread/INFO]: [eco] Scanning for conflicts...
[11:30:57] [Server thread/WARN]: [eco] WorldGuardRegionProtect will likely conflict with eco! Reason: Kotlin shaded into jar
[11:30:57] [Server thread/WARN]: [eco] BreakControl will likely conflict with eco! Reason: Kotlin shaded into jar
[11:30:57] [Server thread/WARN]: [eco] You can fix the conflicts by either removing the conflicting plugins, or by asking on the support discord to have them patched!
[11:30:57] [Server thread/WARN]: [eco] Only remove potentially conflicting plugins if you see Loader Constraint Violation / LinkageError anywhere
[11:30:57] [Server thread/INFO]: [EcoBits] Enabling EcoBits v1.8.4
[11:30:57] [Server thread/INFO]: [EcoBits] Loading EcoBits
[11:30:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecobits [1.8.4]
[11:30:57] [Server thread/INFO]: [EcoEnchants] Enabling EcoEnchants v12.21.0
[11:30:57] [Server thread/INFO]: [EcoEnchants] Loading EcoEnchants
[11:30:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecoenchants [12.21.0]
[11:30:57] [Server thread/INFO]: [EcoEnchants] Loaded integrations: Essentials
[11:30:57] [Server thread/INFO]: [WorldGuardRegionProtect] Enabling WorldGuardRegionProtect v1.8.3.21
[11:30:57] [Server thread/INFO]: [WorldGuardRegionProtect] Started checking the new version of the config file...
[11:30:57] [Server thread/INFO]: [WorldGuardRegionProtect] No update is required for the config file.
[11:30:57] [Server thread/INFO]: [WorldGuardRegionProtect] Started loading messages...
[11:30:57] [ForkJoinPool.commonPool-worker-1/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 15 build(s) out of date.
You are running build 1057, the latest version is build 1072.
Update at https://ci.athion.net/job/FastAsyncWorldEdit
[11:30:57] [Server thread/INFO]: [WorldGuardRegionProtect] Started checking the new version of the language file...
[11:30:57] [Server thread/INFO]: [WorldGuardRegionProtect] No update is required for the lang file.
[11:30:57] [Server thread/INFO]: [WorldGuardRegionProtect] All configs load successfully!
[11:30:57] [Server thread/INFO]: [WorldGuardRegionProtect] Loaded NMS hook in 0ms
[11:30:57] [Server thread/INFO]: [WorldGuardRegionProtect] Current supported versions range: 1.20 - 1.21.4
[11:30:57] [Server thread/INFO]: [WorldGuardRegionProtect] ====================================================

        WorldGuardRegionProtect 1.8.3.21
        Server running on Paper - 1.21.4
        Your setup is optimal for plugin performance and support.
        Using English language, author of this localization - RSTeamCore.

====================================================

[11:30:57] [Server thread/INFO]: [WorldGuardRegionProtect] Compatibility checks passed successfully.
[11:30:57] [Folia Async Scheduler Thread #0/INFO]: [WorldGuardRegionProtect] Checking for updates using Paper schedulers.
[11:30:57] [Server thread/INFO]: [WorldGuardRegionProtect] Registered command: CommandWGRP
[11:30:57] [Server thread/INFO]: [WorldGuardRegionProtect] All commands registered successfully! List of available registered commands: CommandWGRP
[11:30:57] [Server thread/INFO]: [WorldGuardRegionProtect] Registered listener: AdminProtect
[11:30:57] [Server thread/INFO]: [WorldGuardRegionProtect] Registered listener: BlockProtect
[11:30:57] [Server thread/INFO]: [WorldGuardRegionProtect] Registered listener: EntityProtect
[11:30:57] [Server thread/INFO]: [WorldGuardRegionProtect] Registered listener: HangingProtect
[11:30:57] [Server thread/INFO]: [WorldGuardRegionProtect] Registered listener: MiscProtect
[11:30:57] [Server thread/INFO]: [WorldGuardRegionProtect] Registered listener: PlayerProtect
[11:30:57] [Server thread/INFO]: [WorldGuardRegionProtect] Registered listener: ToolsProtect
[11:30:57] [Server thread/INFO]: [WorldGuardRegionProtect] Registered listener: VehicleProtect
[11:30:57] [Server thread/INFO]: [WorldGuardRegionProtect] Finished registering listeners.
[11:30:57] [Server thread/INFO]: [WorldGuardRegionProtect] All listeners registered successfully! List of Listeners: AdminProtect, BlockProtect, EntityProtect, HangingProtect, MiscProtect, PlayerProtect, ToolsProtect, VehicleProtect
[11:30:57] [Server thread/INFO]: [WorldGuardRegionProtect] All tasks registered successfully! List of available registered tasks: 
[11:30:57] [Server thread/INFO]: [WorldGuardRegionProtect] Successfully enabled. (took 241ms)
[11:30:57] [Server thread/INFO]: [nightcore] Enabling nightcore v2.7.2
[11:30:57] [Server thread/WARN]: [nightcore] ===================================
[11:30:57] [Server thread/WARN]: [nightcore] WARNING: This plugin is not supposed to run on this server version!
[11:30:57] [Server thread/WARN]: [nightcore] If server version is newer than UNKNOWN, then wait for an update please.
[11:30:57] [Server thread/WARN]: [nightcore] Otherwise this plugin will not work properly or even load.
[11:30:57] [Server thread/WARN]: [nightcore] ABSOLUTELY NO DISCORD SUPPORT WILL BE PROVIDED
[11:30:57] [Server thread/WARN]: [nightcore] ===================================
[11:30:57] [Folia Async Scheduler Thread #0/INFO]: [WorldGuardRegionProtect] The plugin is already up-to-date. No download needed.
[11:30:57] [Folia Async Scheduler Thread #0/INFO]: ========[WorldGuardRegionProtect]========
[11:30:57] [Folia Async Scheduler Thread #0/INFO]:                Current version: 1.8.3.21
[11:30:57] [Folia Async Scheduler Thread #0/INFO]:              You are using the latest version.
[11:30:57] [Folia Async Scheduler Thread #0/INFO]: =======================================
[11:30:57] [Server thread/INFO]: [nightcore] Found permissions provider: LuckPerms
[11:30:57] [Server thread/INFO]: [nightcore] Found economy provider: EssentialsX Economy
[11:30:57] [Server thread/INFO]: [nightcore] Found chat provider: LuckPerms
[11:30:57] [Server thread/INFO]: [nightcore] [DEBUG] Inject post-loading code...
[11:30:57] [Server thread/INFO]: [nightcore] Plugin loaded in 95 ms!
[11:30:57] [Server thread/INFO]: [Iris] Enabling Iris v3.6.4-1.20.1-1.21.4
[11:30:57] [Server thread/INFO]: [Iris]: Locating NMS Binding for v1_21_R3
[11:30:57] [Server thread/INFO]: [Iris]: Craftbukkit v1_21_R3 <-> NMSBinding Successfully Bound
[11:30:57] [Server thread/INFO]: [Iris]: Enabled Iris SafeGuard
[11:30:57] [Server thread/INFO]: [Iris]: Checking for possible conflicts..
[11:30:57] [Server thread/INFO]: [Iris]: Stable mode has been activated.
[11:30:57] [Server thread/INFO]: [Iris]: Loading ExternalDataProvider...
[11:30:57] [Server thread/INFO]: [Iris]: MythicCrucible found, loading MythicCrucibleDataProvider...
[11:30:57] [Server thread/INFO]: [Iris]: MMOItems found, loading MMOItemsDataProvider...
[11:30:57] [Server thread/INFO]: [Iris]: EcoItems found, loading EcoItemsDataProvider...
[11:30:58] [Server thread/INFO]: [Iris]: Version Information: 1.21.4-2411-75efb97 (MC: 1.21.4) | 1.21.4-R0.1-SNAPSHOT
[11:30:58] [Server thread/INFO]: [Iris]: We recommend using Purpur for the best experience with Iris.
[11:30:58] [Server thread/INFO]: [Iris]: Purpur is a fork of Paper that is optimized for performance and stability.
[11:30:58] [Server thread/INFO]: [Iris]: Plugins that work on Spigot / Paper work on Purpur.
[11:30:58] [Server thread/INFO]: [Iris]: You can download it here: https://purpurmc.org
[11:30:58] [Server thread/INFO]: Preparing level "world"
[11:30:58] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[11:30:58] [Server thread/INFO]: Preparing spawn area: 0%
[11:30:59] [Server thread/INFO]: Preparing spawn area: 20%
[11:30:59] [Server thread/INFO]: Time elapsed: 565 ms
[11:30:59] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[11:30:59] [Server thread/INFO]: Preparing spawn area: 0%
[11:30:59] [Server thread/INFO]: Time elapsed: 54 ms
[11:30:59] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[11:30:59] [Server thread/INFO]: Preparing spawn area: 0%
[11:30:59] [Server thread/INFO]: Time elapsed: 33 ms
[11:30:59] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.2.1
[11:30:59] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21.4 (769)
[11:30:59] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[11:30:59] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[11:30:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: royaleeconomy [2.3.9.7]
[11:30:59] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.20.4
[11:30:59] [Server thread/INFO]: [HeadDatabase] Using default "en_US.lang" created by Arcaniax
[11:30:59] [Server thread/WARN]: [HeadDatabase] Economy was not loaded, some features will be disabled!
[11:30:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: hdb [4.20.4]
[11:30:59] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.16.1
[11:30:59] [Server thread/INFO]: [LiteBans] Using system locale (en)
[11:30:59] [Server thread/INFO]: [LiteBans] Loaded 2 templates from templates.yml!
[11:30:59] [Server thread/INFO]: [LiteBans] Loading SQL driver: h2 1.4.197 (org.h2.Driver)
[11:30:59] [Server thread/INFO]: [LiteBans] Connecting to database...
[11:30:59] [Server thread/INFO]: [LiteBans] Connected to H2 database successfully (82.3 ms).
[11:30:59] [Server thread/INFO]: [LiteBans] Database connection fully initialized (84.9 ms).
[11:30:59] [Server thread/INFO]: [LiteBans] v2.16.1 enabled. Startup took 301 ms.
[11:30:59] [Server thread/INFO]: [AdvancedChat] Enabling AdvancedChat v1.8.16
[11:31:00] [Folia Async Scheduler Thread #1/INFO]: [HeadDatabase] Successfully loaded 69344 heads!
[11:31:00] [Folia Async Scheduler Thread #1/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[11:31:00] [Folia Async Scheduler Thread #2/WARN]: [HeadDatabase] You are using an outdated version!
[11:31:00] [Folia Async Scheduler Thread #2/WARN]: [HeadDatabase] Latest version: 4.21.2. You are on version: 4.20.4.
[11:31:00] [Folia Async Scheduler Thread #2/WARN]: [HeadDatabase] Update here: https://www.spigotmc.org/resources/head-database.14280/
[11:31:00] [Server thread/INFO]: [AdvancedChat] Loaded 1 chat colors
[11:31:00] [Server thread/INFO]: [AdvancedChat] Loaded 33 tags
[11:31:00] [Server thread/INFO]: [AdvancedChat] Loading chat rules...
[11:31:00] [Server thread/INFO]: [AdvancedChat] Registered caps chat rule
[11:31:00] [Server thread/INFO]: [AdvancedChat] Registered similarity chat rule
[11:31:00] [Server thread/INFO]: [AdvancedChat] Registered emojis chat rule
[11:31:00] [Server thread/INFO]: [AdvancedChat] Registered advertising chat rule
[11:31:00] [Server thread/INFO]: [AdvancedChat] Registered spam chat rule
[11:31:00] [Server thread/INFO]: [AdvancedChat] Loaded 5 chat rules
[11:31:00] [Server thread/INFO]: [AdvancedChat] Loaded 8 join message formats
[11:31:00] [Server thread/INFO]: [AdvancedChat] Registered default chat format
[11:31:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedchat [1.0.0]
[11:31:00] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.12+829a4a4
[11:31:00] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[11:31:00] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[11:31:00] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[11:31:00] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[11:31:00] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[11:31:00] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[11:31:00] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[11:31:00] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[11:31:00] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[11:31:00] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[11:31:00] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[11:31:00] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[11:31:00] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[11:31:00] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[11:31:00] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[11:31:00] [Server thread/INFO]: [WorldGuard] Loading region data...
[11:31:00] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.0-Release
[11:31:00] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[11:31:01] [Server thread/WARN]: [DeluxeMenus] Material for item: grass in menu: cubos is not valid!
Skipping item: grass
[11:31:01] [Server thread/WARN]: [DeluxeMenus] Material for item: grass in menu: rangos is not valid!
Skipping item: grass
[11:31:01] [Server thread/WARN]: [DeluxeMenus] No type set for requirement: has_item for path: items.canje_12.view_requirement.requirements.has_item
[11:31:01] [Server thread/WARN]: [DeluxeMenus] No type set for requirement: has_item for path: items.canje_64.view_requirement.requirements.has_item
[11:31:01] [Server thread/WARN]: [DeluxeMenus] No type set for requirement: has_item for path: items.canje_128.view_requirement.requirements.has_item
[11:31:01] [Server thread/INFO]: [DeluxeMenus] 14 GUI menus loaded!
[11:31:01] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[11:31:01] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[11:31:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.0-Release]
[11:31:01] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.1-dev+5-dabe687
[11:31:01] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[11:31:01] [Server thread/INFO]: [Essentials] No kits found to migrate.
[11:31:01] [Server thread/INFO]: [Essentials] Selected 1.8.3+ Spawner Item Provider as the provider for SpawnerItemProvider
[11:31:01] [Server thread/INFO]: [Essentials] Selected 1.12+ Spawner Block Provider as the provider for SpawnerBlockProvider
[11:31:01] [Server thread/INFO]: [Essentials] Selected 1.14+ Sign Data Provider as the provider for SignDataProvider
[11:31:01] [Server thread/INFO]: [Essentials] Selected Paper Biome Key Provider as the provider for BiomeKeyProvider
[11:31:01] [Server thread/INFO]: [Essentials] Selected 1.12.2+ Player Locale Provider as the provider for PlayerLocaleProvider
[11:31:01] [Server thread/INFO]: [Essentials] Selected 1.20.5+ Banner Data Provider as the provider for BannerDataProvider
[11:31:01] [Server thread/INFO]: [Essentials] Selected 1.21+ InventoryView Interface ABI Provider as the provider for InventoryViewProvider
[11:31:01] [Server thread/INFO]: [Essentials] Selected Paper Tick Count Provider as the provider for TickCountProvider
[11:31:01] [Server thread/INFO]: [Essentials] Selected 1.17.1+ World Info Provider as the provider for WorldInfoProvider
[11:31:01] [Server thread/INFO]: [Essentials] Selected Reflection Formatted Command Alias Provider as the provider for FormattedCommandAliasProvider
[11:31:01] [Server thread/INFO]: [Essentials] Selected 1.20.4+ Damage Event Provider as the provider for DamageEventProvider
[11:31:01] [Server thread/INFO]: [Essentials] Selected Paper Container Provider as the provider for ContainerProvider
[11:31:01] [Server thread/INFO]: [Essentials] Selected 1.13+ Spawn Egg Provider as the provider for SpawnEggProvider
[11:31:01] [Server thread/INFO]: [Essentials] Selected 1.11+ Item Unbreakable Provider as the provider for ItemUnbreakableProvider
[11:31:01] [Server thread/INFO]: [Essentials] Selected Paper Material Tag Provider as the provider for MaterialTagProvider
[11:31:01] [Server thread/INFO]: [Essentials] Selected Paper Server State Provider as the provider for ServerStateProvider
[11:31:01] [Server thread/INFO]: [Essentials] Selected 1.20.6+ Potion Meta Provider as the provider for PotionMetaProvider
[11:31:01] [Server thread/INFO]: [Essentials] Selected Reflection Online Mode Provider as the provider for OnlineModeProvider
[11:31:01] [Server thread/INFO]: [Essentials] Selected 1.21.4+ Sync Commands Provider as the provider for SyncCommandsProvider
[11:31:01] [Server thread/INFO]: [Essentials] Selected 1.14.4+ Persistent Data Container Provider as the provider for PersistentDataProvider
[11:31:01] [Server thread/INFO]: [Essentials] Selected Paper Serialization Provider as the provider for SerializationProvider
[11:31:01] [Server thread/INFO]: [Essentials] Selected Paper Known Commands Provider as the provider for KnownCommandsProvider
[11:31:01] [Server thread/INFO]: [Essentials] Loaded 43465 items from items.json.
[11:31:01] [Server thread/INFO]: [Essentials] Using locale es
[11:31:01] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[11:31:01] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[11:31:01] [Server thread/INFO]: [RoyaleEconomy] Hooked into Essentials Economy
[11:31:01] [Server thread/INFO]: [Vault][Economy] Essentials Economy hooked.
[11:31:01] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[11:31:01] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.15
[11:31:01] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[11:31:01] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[11:31:01] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[11:31:01] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.8.2-SNAPSHOT-5b666f3a
[11:31:02] [Server thread/INFO]: [MythicMobs] Failed to parse class io.lumine.mythic.core.volatilecode.v1_21_R3.ai.goals.CreeperSwellGoal$MythicSwellGoal
[11:31:02] [Server thread/INFO]: [MythicMobs] Failed to parse class io.lumine.mythic.core.volatilecode.v1_21_R3.ai.goals.LookAtTargetGoal$LookAtTarget
[11:31:02] [Server thread/INFO]: [MythicMobs] Failed to parse class io.lumine.mythic.core.volatilecode.v1_21_R3.ai.goals.MeleeAttackGoal$ModifiedMeleeAttackGoal
[11:31:02] [Server thread/INFO]: [MythicMobs] Failed to parse class io.lumine.mythic.core.volatilecode.v1_21_R3.ai.goals.MoveToBlockGoal$GoToBlockGoal
[11:31:02] [Server thread/INFO]: [MythicMobs] Failed to parse class io.lumine.mythic.core.volatilecode.v1_21_R3.ai.goals.MoveToLavaGoal$StriderGoToLavaGoal
[11:31:02] [Server thread/INFO]: [MythicMobs] Failed to parse class io.lumine.mythic.core.volatilecode.v1_21_R3.ai.goals.MoveToWaterGoal$TurtleGoToWaterGoal
[11:31:02] [Server thread/INFO]: [MythicMobs] Failed to parse class io.lumine.mythic.core.volatilecode.v1_21_R3.ai.goals.SpiderAttackGoal$SpiderMeleeAttackGoal
[11:31:02] [Server thread/INFO]: [MythicMobs] Failed to parse class io.lumine.mythic.core.volatilecode.v1_21_R3.ai.goals.ZombieAttackGoal$ZombieMeleeAttackGoal
[11:31:02] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.21.4)...
[11:31:02] [Server thread/INFO]: [MythicMobs] The server is running Paper; enabled Paper exclusive functionality
[11:31:02] [Server thread/INFO]: [MythicMobs] Mythic Citizens Support has been enabled!
[11:31:02] [Server thread/INFO]: [MythicMobs] Mythic MMOItems Support has been enabled!
[11:31:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[11:31:03] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[11:31:03] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[11:31:03] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[11:31:03] [Server thread/INFO]: [MythicMobs] Base directory /home/mycraft/rpg/plugins/MythicMobs/data
[11:31:03] [Server thread/INFO]: [MythicMobs] Module directory /home/mycraft/rpg/plugins/MythicMobs/data/worlds
[11:31:04] [Server thread/INFO]: [MythicMobs] Loading Packs...
[11:31:04] [Server thread/INFO]: [MythicMobs] Loading Items...
[11:31:04] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[11:31:04] [Server thread/INFO]: [MythicMobs] Loading Skills...
[11:31:04] [Server thread/WARN]: java.lang.reflect.InvocationTargetException
[11:31:04] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:74)
[11:31:04] [Server thread/WARN]:     at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502)
[11:31:04] [Server thread/WARN]:     at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486)
[11:31:04] [Server thread/WARN]:     at MythicMobsPremium-5.8.2-SNAPSHOT.jar//io.lumine.mythic.core.skills.projectiles.ProjectileBulletType.create(ProjectileBulletType.java:57)
[11:31:04] [Server thread/WARN]:     at MythicMobsPremium-5.8.2-SNAPSHOT.jar//io.lumine.mythic.core.skills.projectiles.Projectile.<init>(Projectile.java:213)
[11:31:04] [Server thread/WARN]:     at MythicMobsPremium-5.8.2-SNAPSHOT.jar//io.lumine.mythic.core.skills.mechanics.ProjectileMechanic.<init>(ProjectileMechanic.java:71)
[11:31:04] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62)
[11:31:04] [Server thread/WARN]:     at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502)
[11:31:04] [Server thread/WARN]:     at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486)
[11:31:04] [Server thread/WARN]:     at MythicMobsPremium-5.8.2-SNAPSHOT.jar//io.lumine.mythic.core.skills.SkillExecutor.getMechanic(SkillExecutor.java:339)
[11:31:04] [Server thread/WARN]:     at MythicMobsPremium-5.8.2-SNAPSHOT.jar//io.lumine.mythic.core.skills.MetaSkill.lambda$new$1(MetaSkill.java:79)
[11:31:04] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[11:31:04] [Server thread/WARN]:     at MythicMobsPremium-5.8.2-SNAPSHOT.jar//io.lumine.mythic.core.skills.MetaSkill.lambda$new$2(MetaSkill.java:75)
[11:31:04] [Server thread/WARN]:     at java.base/java.util.HashMap.forEach(HashMap.java:1429)
[11:31:04] [Server thread/WARN]:     at MythicMobsPremium-5.8.2-SNAPSHOT.jar//io.lumine.mythic.core.skills.MetaSkill.<init>(MetaSkill.java:67)
[11:31:04] [Server thread/WARN]:     at MythicMobsPremium-5.8.2-SNAPSHOT.jar//io.lumine.mythic.core.skills.SkillExecutor.loadSkills(SkillExecutor.java:115)
[11:31:04] [Server thread/WARN]:     at MythicMobsPremium-5.8.2-SNAPSHOT.jar//io.lumine.mythic.core.config.ConfigExecutor.load(ConfigExecutor.java:454)
[11:31:04] [Server thread/WARN]:     at MythicMobsPremium-5.8.2-SNAPSHOT.jar//io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:187)
[11:31:04] [Server thread/WARN]:     at MythicMobsPremium-5.8.2-SNAPSHOT.jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:81)
[11:31:04] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[11:31:04] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[11:31:04] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[11:31:04] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[11:31:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:671)
[11:31:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:620)
[11:31:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:746)
[11:31:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:491)
[11:31:04] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:365)
[11:31:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1178)
[11:31:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:313)
[11:31:04] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[11:31:04] [Server thread/WARN]: Caused by: java.lang.IllegalArgumentException: Could not parse data: MOSS_BLOCK
[11:31:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.block.data.CraftBlockData.createNewData(CraftBlockData.java:602)
[11:31:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.block.data.CraftBlockData.lambda$newData$1(CraftBlockData.java:577)
[11:31:04] [Server thread/WARN]:     at java.base/java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1708)
[11:31:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.block.data.CraftBlockData.newData(CraftBlockData.java:577)
[11:31:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.createBlockData(CraftServer.java:2929)
[11:31:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.createBlockData(CraftServer.java:2917)
[11:31:04] [Server thread/WARN]:     at org.bukkit.Bukkit.createBlockData(Bukkit.java:2506)
[11:31:04] [Server thread/WARN]:     at MythicMobsPremium-5.8.2-SNAPSHOT.jar//io.lumine.mythic.bukkit.adapters.BukkitBlock.<init>(BukkitBlock.java:23)
[11:31:04] [Server thread/WARN]:     at MythicMobsPremium-5.8.2-SNAPSHOT.jar//io.lumine.mythic.core.skills.projectiles.bullet.SmallBlockBullet.<init>(SmallBlockBullet.java:34)
[11:31:04] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62)
[11:31:04] [Server thread/WARN]:     ... 30 more
[11:31:04] [Server thread/WARN]: Caused by: com.mojang.brigadier.exceptions.CommandSyntaxException: Unknown block type 'minecraft:' at position 0: <--[HERE]
[11:31:05] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[11:31:05] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[11:31:05] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[11:31:05] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[11:31:05] [Server thread/WARN]: [MythicMobs] --| Mob: ZOMBIE_CAVE_MINER | File: /home/mycraft/rpg/plugins/MythicMobs/mobs/VanillaMobs.yml
[11:31:05] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill ZOMBIE_HORDE_SLOWDOWN
[11:31:05] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=ZOMBIE_HORDE_SLOWDOWN}
[11:31:05] [Server thread/INFO]: [MythicMobs] ✓ Loaded 31 mobs.
[11:31:05] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 vanilla mob overrides.
[11:31:05] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[11:31:05] [Server thread/INFO]: [MythicMobs] ✓ Loaded 424 skills.
[11:31:05] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[11:31:05] [Server thread/INFO]: [MythicMobs] ✓ Loaded 20 mythic items.
[11:31:05] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[11:31:05] [Server thread/INFO]: [MythicMobs] ✓ Loaded 64 mob spawners.
[11:31:05] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[11:31:05] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[11:31:05] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs Premium v5.8.2 ( build 5b666f3a ) has been successfully loaded!
[11:31:05] [Server thread/INFO]: [MythicLib] Enabling MythicLib v1.7.1-SNAPSHOT
[11:31:05] [Server thread/INFO]: [MythicLib] Hooked onto TextDisplays (holograms)
[11:31:05] [Server thread/INFO]: [MythicMobs] MMO Plugin Support has been enabled!
[11:31:05] [Server thread/INFO]: [MythicLib] Hooked onto MythicMobs
[11:31:05] [Server thread/INFO]: [MythicLib] Hooked onto ProtocolLib
[11:31:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythiclib [1.7.1-SNAPSHOT]
[11:31:05] [Server thread/INFO]: [MythicLib] Hooked onto PlaceholderAPI
[11:31:05] [Server thread/WARN]: [MythicLib] Found a dependency cycle! Please make sure that the plugins involved load with no errors.
[11:31:05] [Server thread/WARN]: [MythicLib] Plugin dependency cycle: [AxKoth, AxBoosters, UltimateClans, DeluxeCombat, UltimateClans]
[11:31:05] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.21.1-dev+5-dabe687
[11:31:05] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[11:31:05] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.3-SNAPSHOT (b114-83fbd6e)
[11:31:05] [Server thread/INFO]: [EcoItems] Enabling EcoItems v5.59.2
[11:31:05] [Server thread/INFO]: [EcoItems] Loading EcoItems
[11:31:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecoitems [5.59.2]
[11:31:05] [Server thread/INFO]: [Iris]: Setting up EcoItems Link...
[11:31:05] [Server thread/INFO]: [Iris]: Enabled ExternalDataProvider for EcoItems.
[11:31:05] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.14.1
[11:31:05] [Server thread/INFO]: [NBTAPI] Checking bindings...
[11:31:05] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[11:31:05] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[11:31:05] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[11:31:05] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[11:31:05] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.2.1
[11:31:05] [Server thread/INFO]: [MMOItems] Enabling MMOItems v6.10.1-SNAPSHOT
[11:31:05] [Server thread/INFO]: [MMOItems] Hooked onto MythicMobs
[11:31:05] [Server thread/INFO]: [MMOItems Template Modifiers] Loading template modifiers, please wait..
[11:31:05] [Server thread/INFO]: [MMOItems Item Templates] Loading item templates, please wait...
[11:31:05] [Server thread/INFO]: [MMOItems Item Templates (THRUSTING_SWORD)] Could not post-load item template 'SKILLED_SWORD': Could not find stat with ID 'REQUIRED_DEXTERITY'
[11:31:05] [Server thread/INFO]: [MMOItems Item Templates (SWORD)] Could not post-load item template 'YANISDARK_SWORD': Could not find stat with ID 'ADDITIONAL_EXPERIENCE'
[11:31:05] [Server thread/INFO]: [MMOItems Item Templates (OFF_CATALYST)] Could not post-load item template 'QUICKCASTER_CATALYST': Could not find stat with ID 'MANA_REGENERATION'
[11:31:05] [Server thread/INFO]: [MMOItems Item Templates (OFF_CATALYST)] Could not post-load item template 'CHARM_OF_LEVITATION': Could not find stat with ID 'MAX_STELLIUM'
[11:31:05] [Server thread/INFO]: [MMOItems Item Templates (KATANA)] Could not post-load item template 'MASTER_KATANA': Could not find stat with ID 'REQUIRED_DEXTERITY'
[11:31:05] [Server thread/INFO]: [MMOItems Item Templates (CATALYST)] Could not post-load item template 'LUCK_CHARM': Could not find stat with ID 'ADDITIONAL_EXPERIENCE'
[11:31:05] [Server thread/INFO]: [MMOItems Item Templates (HAMMER)] Could not post-load item template 'THOR_HAMMER': Could not find stat with ID 'ADDITIONAL_EXPERIENCE'
[11:31:06] [Server thread/INFO]: [MMOItems] Hooked onto Vault
[11:31:06] [Server thread/INFO]: [MMOItems] Loading crafting stations, please wait..
[11:31:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mmoitems [6.10.1-SNAPSHOT]
[11:31:06] [Server thread/INFO]: [MMOItems] Hooked onto PlaceholderAPI
[11:31:06] [Server thread/INFO]: [MMOItems] Loading recipes, please wait...
[11:31:06] [Server thread/INFO]: [Iris]: Setting up MMOItems Link...
[11:31:06] [Server thread/INFO]: [Iris]: Enabled ExternalDataProvider for MMOItems.
[11:31:06] [Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v4.2.16.0
[11:31:06] [Server thread/INFO]: [InteractiveChat] Opened Sqlite database successfully
[11:31:06] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Essentials!
[11:31:06] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ViaVersion!
[11:31:06] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Eco (Core)!
[11:31:06] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into LuckPerms!
[11:31:06] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Floodgate!
[11:31:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactivechat [4.2.16.0]
[11:31:06] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[11:31:06] [Server thread/INFO]: [EcoArmor] Enabling EcoArmor v8.71.2
[11:31:06] [Server thread/INFO]: [EcoArmor] Loading EcoArmor
[11:31:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecoarmor [8.71.2]
[11:31:06] [Server thread/INFO]: [LevelledMobs] Enabling LevelledMobs v4.3.1 b111
[11:31:06] [Server thread/INFO]: [LevelledMobs] Enabling commands
[11:31:06] [Server thread/INFO]: [LevelledMobs] Building reflection cache, use simple names: true
[11:31:06] [Server thread/INFO]: [LevelledMobs] Found Essentials, loading integration
[11:31:06] [Server thread/INFO]: [LevelledMobs] Using NMS version 1.21.4 for nametag support
[11:31:06] [Server thread/INFO]: [LevelledMobs] File Loader: Loading files...
[11:31:06] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'settings.yml'...
[11:31:06] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'messages.yml'...
[11:31:06] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'externalplugins.yml'...
[11:31:06] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'rules.yml'...
[11:31:06] [Server thread/INFO]: [LevelledMobs] Current rules hash: 9b0f48e3273bb9cc29d2891ad33fb3410fec8cf1e77c2092ff670fd38f6d4ff5
[11:31:06] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'customdrops.yml'...
[11:31:06] [Server thread/INFO]: [LevelledMobs] Listeners: Registering event listeners...
[11:31:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: LevelledMobs [4.3.1 b111]
[11:31:06] [Server thread/INFO]: [LevelledMobs] Running misc procedures
[11:31:06] [Server thread/INFO]: [LevelledMobs] Tasks: Starting async nametag auto update task...
[11:31:06] [Server thread/INFO]: [LevelledMobs] Start-up complete (took 121ms)
[11:31:06] [Server thread/INFO]: [packetevents] Enabling packetevents v2.7.0
[11:31:06] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[11:31:06] [Server thread/INFO]: [EcoSkills] Enabling EcoSkills v3.60.5
[11:31:06] [Server thread/INFO]: [EcoSkills] Loading EcoSkills
[11:31:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecoskills [3.60.5]
[11:31:07] [packetevents-update-check-thread/INFO]: [packetevents] You are running the latest release of PacketEvents. Your build: (2.7.0)
[11:31:07] [Server thread/INFO]: [Aurora] Enabling Aurora v2.1.7
[11:31:07] [Server thread/INFO]: [Aurora] [ACF] Enabled Asynchronous Tab Completion Support!
[11:31:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aurora [1.0]
[11:31:07] [Server thread/INFO]: Aurora | Loaded 5 economy providers. RoyaleEconomyBank, Vault, Essentials, EcoBits, RoyaleEconomy
[11:31:07] [Server thread/INFO]: Aurora | Using Essentials as the default economy provider.
[11:31:07] [Server thread/INFO]: [gg.auroramc.aurora.libs.hikari.HikariDataSource] aurora-leaderboard-pool - Starting...
[11:31:07] [Server thread/INFO]: [gg.auroramc.aurora.libs.hikari.pool.HikariPool] aurora-leaderboard-pool - Added connection org.sqlite.jdbc4.JDBC4Connection@47c9a35f
[11:31:07] [Server thread/INFO]: [gg.auroramc.aurora.libs.hikari.HikariDataSource] aurora-leaderboard-pool - Start completed.
[11:31:07] [Server thread/INFO]: [WorldGuard] Registering session handler gg.auroramc.aurora.expansions.worldguard.WorldGuardEntryAndLeaveHandler
[11:31:07] [Server thread/INFO]: [MythicChanger] Enabling MythicChanger v2.3.12
[11:31:07] [Server thread/INFO]: [MythicChanger] Paper is found, enabled Paper only feature!
[11:31:07] [Server thread/INFO]: [MythicChanger] Loaded rule: example.yml!
[11:31:07] [Server thread/INFO]: [MythicChanger] Loaded apply item: ItemSkin!
[11:31:07] [Server thread/INFO]: [MythicChanger] Loaded apply item: Deapply!
[11:31:07] [Server thread/INFO]: [MythicChanger] Hooking into InteractiveChat...
[11:31:07] [Server thread/INFO]: [MythicChanger] Registering special item register manager for MMOItems because it does not support async...
[11:31:07] [Server thread/ERROR]: [MMOItems] An error occurred while trying to generate item 'LUCKY_CHARM' with stat 'TIER': Could not find item tier with ID 'NORMAL'
[11:31:07] [Server thread/INFO]: [MythicChanger] Registering PREMIUM change rules...
[11:31:07] [Server thread/INFO]: [MythicChanger] Registering PREMIUM match rules...
[11:31:07] [Server thread/INFO]: [MythicChanger] New AuthLib found, enabled new skull get method!
[11:31:07] [Server thread/INFO]: [MythicChanger] Your Minecraft version is: 1.21.4!
[11:31:07] [Server thread/INFO]: [MythicChanger] Plugin is loaded. Author: PQguanfang.
[11:31:07] [Server thread/INFO]: [UltimateClans] Enabling UltimateClans v8.1.1
[11:31:07] [Server thread/INFO]: [UltimateClans] ========================================
[11:31:07] [Server thread/INFO]: [UltimateClans]  _     _  _        _                              ______  _                     
[11:31:07] [Server thread/INFO]: [UltimateClans] | |   | || | _    (_)               _            / _____)| |                  V8
[11:31:07] [Server thread/INFO]: [UltimateClans] | |   | || || |_   _  ____    ____ | |_    ____ | /      | |  ____  ____    ___ 
[11:31:07] [Server thread/INFO]: [UltimateClans] | |   | || ||  _) | ||    \  / _  ||  _)  / _  )| |      | | / _  ||  _ \  /___)
[11:31:07] [Server thread/INFO]: [UltimateClans] | |___| || || |__ | || | | |( ( | || |__ ( (/ / | \_____ | |( ( | || | | ||___ |
[11:31:07] [Server thread/INFO]: [UltimateClans]  \______||_| \___)|_||_|_|_| \_||_| \___) \____) \______)|_| \_||_||_| |_|(___/ 
[11:31:07] [Server thread/INFO]: [UltimateClans]  
[11:31:07] [Server thread/INFO]: [UltimateClans] Setup Packets:
[11:31:07] [Server thread/INFO]: [UltimateClans]  ! Not found
[11:31:08] [Server thread/INFO]: [UltimateClans] Licensed to: BOWIE_MC (6652)
[11:31:08] [Server thread/INFO]: [UltimateClans] Language: ES (default)
[11:31:08] [Server thread/INFO]: [UltimateClans] Setup ScriptEngine: 
[11:31:08] [Server thread/INFO]: [UltimateClans]  - Loaded successfully
[11:31:08] [Server thread/INFO]: [UltimateClans] Setup database: SQLITE (Medium)
[11:31:08] [Server thread/INFO]: [UltimateClans]  - Clan database [OK]
[11:31:08] [Server thread/INFO]: [UltimateClans]  - Player database [OK]
[11:31:08] [Server thread/INFO]: [UltimateClans]  - Invite database [OK]
[11:31:08] [Server thread/INFO]: [UltimateClans]  - Moderation database [OK]
[11:31:08] [Server thread/INFO]: [UltimateClans]  - Logger database [OK]
[11:31:08] [Server thread/INFO]: [UltimateClans]  - Mail database [OK]
[11:31:08] [Server thread/INFO]: [UltimateClans]  - Rewards database [OK]
[11:31:08] [Server thread/INFO]: [UltimateClans] Setup hooks...
[11:31:08] [Server thread/INFO]: [UltimateClans]  - PlaceholderAPI
[11:31:08] [Server thread/INFO]: [UltimateClans]  - Essentials (Vanish)
[11:31:08] [Server thread/INFO]: [UltimateClans]  - NBTAPI
[11:31:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: uclans [UClans V7]
[11:31:08] [Server thread/INFO]: [UltimateClans] Setup bedrock hook...
[11:31:08] [Server thread/INFO]: [UltimateClans]  - floodgate
[11:31:08] [Server thread/INFO]: [UltimateClans] Loaded 45 gui menus.
[11:31:08] [pool-65-thread-1/INFO]: [UltimateClans] Start invite loader...
[11:31:08] [pool-65-thread-1/INFO]: [UltimateClans] Loaded 0 invites(s).
[11:31:08] [Server thread/INFO]: [UltimateClans] Loaded 5 clan patent(s).
[11:31:08] [Server thread/INFO]: [UltimateClans] Loaded 5 clan level requeriments(s).
[11:31:08] [pool-66-thread-1/INFO]: [UltimateClans] Start logger loader...
[11:31:08] [pool-66-thread-1/INFO]: [UltimateClans] Loaded 1 log(s).
[11:31:08] [pool-67-thread-1/INFO]: [UltimateClans] Start mail loader...
[11:31:08] [pool-67-thread-1/INFO]: [UltimateClans] Loaded 0 mail(s).
[11:31:08] [pool-68-thread-1/INFO]: [UltimateClans] Start rewards loader...
[11:31:08] [pool-68-thread-1/INFO]: [UltimateClans] Loaded 0 rewards(s).
[11:31:08] [Server thread/INFO]: [UltimateClans] Setup Extensions...
[11:31:08] [pool-69-thread-1/INFO]: [UltimateClans] Start clans loader...
[11:31:08] [Server thread/INFO]: [UltimateClans] Setup Addons...
[11:31:08] [pool-69-thread-1/INFO]: [UltimateClans] Loaded 1 clan(s).
[11:31:08] [pool-70-thread-1/INFO]: [UltimateClans] Start players loader...
[11:31:08] [pool-70-thread-1/INFO]: [UltimateClans] Loaded 2 player(s).
[11:31:08] [Server thread/INFO]: [UltimateClans] ========================================
[11:31:08] [Server thread/INFO]: [EcoJobs] Enabling EcoJobs v3.72.0
[11:31:08] [Server thread/INFO]: [EcoJobs] Loading EcoJobs
[11:31:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecojobs [3.72.0]
[11:31:08] [Server thread/INFO]: [UltraRegions] Enabling UltraRegions v1.10.2
[11:31:08] [Server thread/INFO]: [UltraRegions] Loading Plugin...
[11:31:09] [Server thread/INFO]: Preparing start region for dimension minecraft:pvp
[11:31:09] [Server thread/INFO]: Preparing spawn area: 0%
[11:31:09] [Server thread/INFO]: Time elapsed: 99 ms
[11:31:09] [Server thread/INFO]: [WorldGuard] (pvp) TNT ignition is PERMITTED.
[11:31:09] [Server thread/INFO]: [WorldGuard] (pvp) Lighters are PERMITTED.
[11:31:09] [Server thread/INFO]: [WorldGuard] (pvp) Lava fire is PERMITTED.
[11:31:09] [Server thread/INFO]: [WorldGuard] (pvp) Fire spread is UNRESTRICTED.
[11:31:09] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'pvp'
[11:31:09] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn
[11:31:09] [Server thread/INFO]: Preparing spawn area: 0%
[11:31:09] [Server thread/INFO]: Time elapsed: 25 ms
[11:31:09] [Server thread/INFO]: [WorldGuard] (Spawn) TNT ignition is PERMITTED.
[11:31:09] [Server thread/INFO]: [WorldGuard] (Spawn) Lighters are PERMITTED.
[11:31:09] [Server thread/INFO]: [WorldGuard] (Spawn) Lava fire is PERMITTED.
[11:31:09] [Server thread/INFO]: [WorldGuard] (Spawn) Fire spread is UNRESTRICTED.
[11:31:09] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Spawn'
[11:31:09] [Server thread/INFO]: Preparing start region for dimension minecraft:dungeons
[11:31:09] [Server thread/INFO]: Preparing spawn area: 0%
[11:31:09] [Server thread/INFO]: Time elapsed: 269 ms
[11:31:09] [Server thread/INFO]: [WorldGuard] (Dungeons) TNT ignition is PERMITTED.
[11:31:09] [Server thread/INFO]: [WorldGuard] (Dungeons) Lighters are PERMITTED.
[11:31:09] [Server thread/INFO]: [WorldGuard] (Dungeons) Lava fire is PERMITTED.
[11:31:09] [Server thread/INFO]: [WorldGuard] (Dungeons) Fire spread is UNRESTRICTED.
[11:31:09] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Dungeons'
[11:31:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: uregions [1.0.0]
[11:31:09] [Server thread/INFO]: [UltraRegions] Hooked into PlaceholderAPI
[11:31:09] [Server thread/INFO]: [UltraRegions] Successfully loaded in 976 ms
[11:31:09] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.13
[11:31:10] [Server thread/INFO]: [BetterRTP] Cooldown = 10
[11:31:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterrtp [3.6.13]
[11:31:10] [Server thread/INFO]: [ProtectionStones] Enabling ProtectionStones v2.10.5
[11:31:10] [Server thread/INFO]: [WorldGuard] Registering session handler dev.espi.protectionstones.flags.GreetingFlagHandler
[11:31:10] [Server thread/INFO]: [WorldGuard] Registering session handler dev.espi.protectionstones.flags.FarewellFlagHandler
[11:31:10] [Server thread/INFO]: [ProtectionStones] PlaceholderAPI support enabled!
[11:31:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: protectionstones [2.10.5]
[11:31:10] [Server thread/INFO]: [ProtectionStones] LuckPerms support enabled!
[11:31:10] [Server thread/INFO]: [ProtectionStones] Protection Stone Blocks:
[11:31:10] [Server thread/INFO]: [ProtectionStones] - PLAYER_HEAD:eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDdjMmJjODExODFiMGE0ZDhkNDdjZmM5MzY2MDlkYTg4NjRjZTQwM2E2NDdjN2E2MDNmODNmNTU3ZjBhMDI2ZCJ9fX0= (9)
[11:31:10] [Server thread/INFO]: [ProtectionStones] - PLAYER_HEAD:eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOWZhMjYxMDU0NWM1MTkzYjE3NzZmYWU2ZjVkNmYxNzU3OWQ2MDAyYWVhMDMyZjlmNTJiNTRiZDNiZmY1OWE1MSJ9fX0= (6)
[11:31:10] [Server thread/INFO]: [ProtectionStones] - PLAYER_HEAD:eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOWZjYTZmOWY4ZTZiMzE0Nzg0N2JiZGViMTBhNTI3NzM5NmI5YjA1ZDA3NjMyNjczNmY3ZjBiMmJmZDZkMWE2NCJ9fX0= (2)
[11:31:10] [Server thread/INFO]: [ProtectionStones] - PLAYER_HEAD:eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNmFlZThiZTVkN2Q2MDMyNDY5NjFhNmI1YTgxZGNiMmJhNDA4MWI2NGJkNTQ1YTg3NTRhNTk5ZTNjZTQ5ZGQyMCJ9fX0= (gratis)
[11:31:10] [Server thread/INFO]: [ProtectionStones] - PLAYER_HEAD:eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDdjMmJjODExODFiMGE0ZDhkNDdjZmM5MzY2MDlkYTg4NjRjZTQwM2E2NDdjN2E2MDNmODNmNTU3ZjBhMDI2ZCJ9fX0= (8)
[11:31:10] [Server thread/INFO]: [ProtectionStones] - PLAYER_HEAD:eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOTk2MGQ2ZmZhZjQ0ZThhZmNiZGY4YjI5YTc3ZDg0Y2UyMmM3MWQwMGM2NGJmZDk5YWYzNDBhNjk1MzViZmQ3In19fQ== (5)
[11:31:10] [Server thread/INFO]: [ProtectionStones] - PLAYER_HEAD:eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODE3ZWQwMzY2NzE1YmZlZWFkYjM5MjJiNGFmNjIzMDE0OTJhNmQxOTc0NGI4YzVhM2M2ZmE2YTc1NWYwMGUyNSJ9fX0= (1)
[11:31:10] [Server thread/INFO]: [ProtectionStones] - PLAYER_HEAD:eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDdjMmJjODExODFiMGE0ZDhkNDdjZmM5MzY2MDlkYTg4NjRjZTQwM2E2NDdjN2E2MDNmODNmNTU3ZjBhMDI2ZCJ9fX0= (10)
[11:31:10] [Server thread/INFO]: [ProtectionStones] - PLAYER_HEAD:eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOTdmNTdlN2FhOGRlODY1OTFiYjBiYzUyY2JhMzBhNDlkOTMxYmZhYmJkNDdiYmM4MGJkZDY2MjI1MTM5MjE2MSJ9fX0= (3)
[11:31:10] [Server thread/INFO]: [ProtectionStones] - PLAYER_HEAD:eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmY3YTQyMmRiMzVkMjhjZmI2N2U2YzE2MTVjZGFjNGQ3MzAwNzI0NzE4Nzc0MGJhODY1Mzg5OWE0NGI3YjUyMCJ9fX0= (7)
[11:31:10] [Server thread/INFO]: [ProtectionStones] - PLAYER_HEAD:eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOTYzMTU5N2RjZTRlNDA1MWU4ZDVhNTQzNjQxOTY2YWI1NGZiZjI1YTBlZDYwNDdmMTFlNjE0MGQ4OGJmNDhmIn19fQ== (4)
[11:31:10] [Server thread/INFO]: [ProtectionStones] Building region cache...
[11:31:10] [Server thread/INFO]: [ProtectionStones] Building UUID cache... (if slow change async-load-uuid-cache in the config to true)
[11:31:10] [Server thread/INFO]: [ProtectionStones] Checking if PS regions have been updated to UUIDs...
[11:31:10] [Server thread/INFO]: [ProtectionStones] ProtectionStones has successfully started!
[11:31:10] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.38-SNAPSHOT (build 3767)
[11:31:10] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[11:31:10] [Server thread/ERROR]: [Citizens] Could not fetch NMS field bT: [[bT.
[11:31:10] [Server thread/ERROR]: [Citizens] Could not fetch NMS field bT: [[null.
[11:31:10] [Server thread/ERROR]: Error occurred while enabling Citizens v2.0.38-SNAPSHOT (build 3767) (Is it up to date?)
java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_21_R4/boss/CraftBossBar
    at Citizens-2.0.38-b3767.jar/net.citizensnpcs.nms.v1_21_R4.util.NMSImpl.<clinit>(NMSImpl.java:2742) ~[Citizens-2.0.38-b3767.jar:?]
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:534) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:513) ~[?:?]
    at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.forName(AbstractDefaultRulesReflectionProxy.java:68) ~[reflection-rewriter-runtime-0.0.3.jar:?]
    at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.forName(Unknown Source) ~[purpur-1.21.4.jar:1.21.4-2411-75efb97]
    at Citizens-2.0.38-b3767.jar/net.citizensnpcs.api.util.SpigotUtil.lambda$getMinecraftPackage$1(SpigotUtil.java:175) ~[Citizens-2.0.38-b3767.jar:?]
    at Citizens-2.0.38-b3767.jar/net.citizensnpcs.api.util.SpigotUtil.getMinecraftPackage(SpigotUtil.java:180) ~[Citizens-2.0.38-b3767.jar:?]
    at Citizens-2.0.38-b3767.jar/net.citizensnpcs.Citizens.onEnable(Citizens.java:326) ~[Citizens-2.0.38-b3767.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[purpur-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[purpur-1.21.4.jar:1.21.4-2411-75efb97]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[purpur-1.21.4.jar:1.21.4-2411-75efb97]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[purpur-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:671) ~[purpur-1.21.4.jar:1.21.4-2411-75efb97]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:620) ~[purpur-1.21.4.jar:1.21.4-2411-75efb97]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:746) ~[purpur-1.21.4.jar:1.21.4-2411-75efb97]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:491) ~[purpur-1.21.4.jar:1.21.4-2411-75efb97]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:365) ~[purpur-1.21.4.jar:1.21.4-2411-75efb97]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1178) ~[purpur-1.21.4.jar:1.21.4-2411-75efb97]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:313) ~[purpur-1.21.4.jar:1.21.4-2411-75efb97]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_21_R4.boss.CraftBossBar
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[purpur-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[purpur-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 21 more
[11:31:10] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.38-SNAPSHOT (build 3767)
[11:31:10] [Server thread/INFO]: [EcoPets] Enabling EcoPets v2.71.2
[11:31:10] [Server thread/INFO]: [EcoPets] Loading EcoPets
[11:31:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecopets [2.71.2]
[11:31:10] [Server thread/INFO]: [Topper] Enabling Topper v3.8.1
[11:31:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: topper [3.8.1]
[11:31:10] [Server thread/INFO]: [AuroraLevels] Enabling AuroraLevels v1.6.2
[11:31:10] [ForkJoinPool.commonPool-worker-2/INFO]: [Topper] You are using the latest version
[11:31:10] [Server thread/INFO]: [AuroraLevels] [ACF] Enabled Asynchronous Tab Completion Support!
[11:31:10] [Server thread/INFO]: AuroraLevels | Hooked into AuraSkills for stat rewards with reward type: 'ecoskills_stat'. Auto reward corrector for stats is registered.
[11:31:10] [Server thread/INFO]: AuroraLevels | Hooked into MythicLib (MMOLib) for stat rewards with reward type: 'mmo_stat'. Auto reward corrector for stats is registered.
[11:31:10] [Server thread/INFO]: [WorldGuard] Registering session handler gg.auroramc.levels.hooks.worldguard.EntryHandler
[11:31:10] [Server thread/INFO]: AuroraLevels | Hooked into WorldGuard for region entry tracking.
[11:31:10] [Server thread/INFO]: AuroraLevels | Hooked into MythicMobs for custom mechanics (addAuroraLevel, giveAuroraXP), conditions (hasAuroraLevel) and "mythic_stat" reward. Auto reward corrector for stats is registered.
[11:31:10] [Server thread/INFO]: AuroraLevels | Hooked into LuckPerms for permission rewards with reward type: 'permission'. Auto reward corrector for permissions is registered.
[11:31:10] [Server thread/INFO]: [CMILib] Enabling CMILib v1.5.3.5
[11:31:11] [Server thread/INFO]: Server version: v1_21_R3 - 1.21.4 - purpur  1.21.4-2411-75efb97 (MC: 1.21.4)
[11:31:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.5.3.5]
[11:31:11] [Server thread/INFO]: PlaceholderAPI hooked.
[11:31:11] [Server thread/INFO]: Updated (EN) language file. Took 18ms
[11:31:11] [Server thread/INFO]: [Chunky] Enabling Chunky v1.4.28
[11:31:11] [Server thread/INFO]: [MythicCrucible] Enabling MythicCrucible v2.2.0-SNAPSHOT
[11:31:11] [Server thread/INFO]: [MythicMobs] ------------------------------------------------
[11:31:11] [Server thread/INFO]: [MythicMobs] + Loading MythicCrucible for Bukkit
[11:31:11] [Server thread/INFO]: [MythicMobs] ------------------------------------------------
[11:31:11] [Folia Async Scheduler Thread #8/INFO]: [UltimateClans] Find for new versions...
[11:31:11] [Server thread/INFO]: [MythicMobs] Registering Durability Listener
[11:31:11] [Folia Async Scheduler Thread #8/WARN]: [UltimateClans] New version (8.7.1) of Ultimate Clans is avaliable in https://polymart.org/r/1162
[11:31:17] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[11:31:17] [Server thread/INFO]: [MythicMobs] MythicCrucible Support has been enabled!
[11:31:17] [Server thread/INFO]: [MythicMobs] MythicCrucible WorldEdit support enabled!
[11:31:17] [Server thread/INFO]: [MythicMobs] Attached traits to items.
[11:31:17] [Server thread/INFO]: [MythicMobs] Loaded 20 items.
[11:31:17] [Server thread/INFO]: [MythicMobs] Loaded 2 drop tables.
[11:31:17] [Server thread/INFO]: [MythicMobs] ✓ MythicCrucible  v2.2.0 has been successfully loaded!
[11:31:17] [Server thread/INFO]: [Iris]: Setting up MythicCrucible Link...
[11:31:17] [Server thread/INFO]: [Iris]: Enabled ExternalDataProvider for MythicCrucible.
[11:31:17] [Server thread/INFO]: [UltimateShop] Enabling UltimateShop v3.6.6
[11:31:17] [Server thread/INFO]: [UltimateShop] Paper is found, enabled Paper only feature!
[11:31:17] [Server thread/INFO]: [UltimateShop] Loading PREMIUM version only features...
[11:31:17] [Server thread/ERROR]: Cannot load plugins/UltimateShop/shops/comidas2.yml
org.bukkit.configuration.InvalidConfigurationException: while parsing a block mapping
 in 'reader', line 89, column 5:
        display-name: '&fᴏʙᴊᴇᴛᴏ &7● &eCh ... 
        ^
expected <block end>, but found '<scalar>'
 in 'reader', line 94, column 14:
          icon: 'url;;https://raw.githubuserconte ... 
                 ^

    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:112) ~[purpur-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[purpur-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[purpur-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:310) ~[purpur-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at UltimateShop-3.6.6.jar/cn.superiormc.ultimateshop.managers.ConfigManager.initShopConfigs(ConfigManager.java:67) ~[UltimateShop-3.6.6.jar:?]
    at UltimateShop-3.6.6.jar/cn.superiormc.ultimateshop.managers.ConfigManager.<init>(ConfigManager.java:43) ~[UltimateShop-3.6.6.jar:?]
    at UltimateShop-3.6.6.jar/cn.superiormc.ultimateshop.UltimateShop.onEnable(UltimateShop.java:57) ~[UltimateShop-3.6.6.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[purpur-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[purpur-1.21.4.jar:1.21.4-2411-75efb97]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[purpur-1.21.4.jar:1.21.4-2411-75efb97]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[purpur-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:671) ~[purpur-1.21.4.jar:1.21.4-2411-75efb97]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:620) ~[purpur-1.21.4.jar:1.21.4-2411-75efb97]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:746) ~[purpur-1.21.4.jar:1.21.4-2411-75efb97]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:491) ~[purpur-1.21.4.jar:1.21.4-2411-75efb97]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:365) ~[purpur-1.21.4.jar:1.21.4-2411-75efb97]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1178) ~[purpur-1.21.4.jar:1.21.4-2411-75efb97]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:313) ~[purpur-1.21.4.jar:1.21.4-2411-75efb97]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: org.yaml.snakeyaml.parser.ParserException: while parsing a block mapping
 in 'reader', line 89, column 5:
        display-name: '&fᴏʙᴊᴇᴛᴏ &7● &eCh ... 
        ^
expected <block end>, but found '<scalar>'
 in 'reader', line 94, column 14:
          icon: 'url;;https://raw.githubuserconte ... 
                 ^

    at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingKey.produce(ParserImpl.java:654) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:161) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:57) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:43) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:136) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:116) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeScalarNode(Composer.java:241) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:205) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:369) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:348) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:323) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:369) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:348) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:323) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:369) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:348) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:323) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.getNode(Composer.java:131) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:157) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.Yaml.compose(Yaml.java:575) ~[snakeyaml-2.2.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:105) ~[purpur-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    ... 18 more
[11:31:17] [Server thread/INFO]: [UltimateShop] Error: Can not get items section in your shop config!!
[11:31:17] [Server thread/INFO]: [UltimateShop] Loaded shop: comidas2.yml!
[11:31:17] [Server thread/INFO]: [UltimateShop] Loaded shop: concreto.yml!
[11:31:17] [Server thread/INFO]: [UltimateShop] Loaded shop: armors.yml!
[11:31:17] [Server thread/INFO]: [UltimateShop] Loaded shop: mesas.yml!
[11:31:17] [Server thread/INFO]: [UltimateShop] Loaded shop: terracotta.yml!
[11:31:17] [Server thread/INFO]: [UltimateShop] Loaded shop: tools.yml!
[11:31:17] [Server thread/INFO]: [UltimateShop] Loaded shop: misc.yml!
[11:31:17] [Server thread/INFO]: [UltimateShop] Loaded shop: redstone.yml!
[11:31:17] [Server thread/INFO]: [UltimateShop] Loaded shop: peces.yml!
[11:31:17] [Server thread/INFO]: [UltimateShop] Loaded shop: maderas.yml!
[11:31:17] [Server thread/INFO]: [UltimateShop] Loaded shop: tintes.yml!
[11:31:17] [Server thread/INFO]: [UltimateShop] Loaded shop: deco2.yml!
[11:31:17] [Server thread/INFO]: [UltimateShop] Loaded shop: farming.yml!
[11:31:17] [Server thread/INFO]: [UltimateShop] Loaded shop: tools2.yml!
[11:31:17] [Server thread/INFO]: [UltimateShop] Loaded shop: lana.yml!
[11:31:17] [Server thread/INFO]: [UltimateShop] Loaded shop: vidrio.yml!
[11:31:17] [Server thread/INFO]: [UltimateShop] Loaded shop: maderas2.yml!
[11:31:17] [Server thread/INFO]: [UltimateShop] Loaded shop: comidas.yml!
[11:31:17] [Server thread/INFO]: [UltimateShop] Loaded shop: deco1.yml!
[11:31:17] [Server thread/INFO]: [UltimateShop] Loaded shop: drops.yml!
[11:31:17] [Server thread/INFO]: [UltimateShop] Loaded shop: minerals.yml!
[11:31:17] [Server thread/INFO]: [UltimateShop] Loaded menu: comida2.yml!
[11:31:17] [Server thread/INFO]: [UltimateShop] Loaded menu: buy-more-sell.yml!
[11:31:17] [Server thread/INFO]: [UltimateShop] Loaded menu: bloquescolores.yml!
[11:31:17] [Server thread/INFO]: [UltimateShop] Loaded menu: main.yml!
[11:31:17] [Server thread/INFO]: [UltimateShop] Loaded random placeholder: rotate.yml!
[11:31:17] [Server thread/INFO]: [UltimateShop] Loaded random placeholder: daily.yml!
[11:31:17] [Server thread/INFO]: [UltimateShop] Hooking into WorldGuard...
[11:31:17] [Server thread/INFO]: [UltimateShop] Hooking into PlaceholderAPI...
[11:31:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultimateshop [1.2.0]
[11:31:17] [Server thread/INFO]: [UltimateShop] Finished hook!
[11:31:17] [Server thread/INFO]: [UltimateShop] Hooking into Floodgate...
[11:31:17] [Server thread/INFO]: [UltimateShop] Hooking into Vault...
[11:31:17] [Server thread/INFO]: [UltimateShop] Hooking into EcoBits...
[11:31:17] [Server thread/INFO]: [UltimateShop] Hooking into RoyaleEconomy...
[11:31:17] [Server thread/INFO]: [UltimateShop] Hooking into MMOItems...
[11:31:17] [Server thread/INFO]: [UltimateShop] Hooking into EcoItems...
[11:31:17] [Server thread/INFO]: [UltimateShop] Hooking into EcoArmor...
[11:31:17] [Server thread/INFO]: [UltimateShop] Hooking into MythicMobs...
[11:31:17] [Server thread/INFO]: [UltimateShop] Hooking into eco...
[11:31:17] [Server thread/INFO]: [UltimateShop] New AuthLib found, enabled new skull get method!
[11:31:17] [Server thread/INFO]: [UltimateShop] Your Minecraft version is: 1.21.4!
[11:31:17] [Server thread/INFO]: [UltimateShop] Plugin is loaded. Author: PQguanfang.
[11:31:17] [Server thread/INFO]: [HamsterAPI] Enabling HamsterAPI v0.2.4
[11:31:17] [Server thread/INFO]: [AxBoosters] Enabling AxBoosters v3.8.1
[11:31:18] [Server thread/INFO]: [AxBoosters] Hooked into LuckPerms!
[11:31:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: axboosters [3.0.0]
[11:31:18] [Server thread/INFO]: [AxBoosters] Hooked into PlaceholderAPI!
[11:31:18] [Server thread/INFO]: [AxBoosters] Loaded team hook: UltimateClans!
[11:31:18] [Server thread/INFO]: [AxBoosters] Loaded plugin! Using H2 database to store data!
[11:31:18] [Server thread/INFO]: [DeluxeCombat] Enabling DeluxeCombat v1.70.2
[11:31:19] [Server thread/INFO]: [DeluxeCombat]  _____        _                   ______            _                
[11:31:19] [Server thread/INFO]: [DeluxeCombat] (____ \      | |                 / _____)          | |          _    
[11:31:19] [Server thread/INFO]: [DeluxeCombat]  _   \ \ ____| |_   _ _   _ ____| /      ___  ____ | | _   ____| |_  
[11:31:19] [Server thread/INFO]: [DeluxeCombat] | |   | / _  ) | | | ( \ / ) _  ) |     / _ \|    \| || \ / _  |  _) 
[11:31:19] [Server thread/INFO]: [DeluxeCombat] | |__/ ( (/ /| | |_| |) X ( (/ /| \____| |_| | | | | |_) | ( | | |__ 
[11:31:19] [Server thread/INFO]: [DeluxeCombat] |_____/ \____)_|\____(_/ \_)____)\______)___/|_|_|_|____/ \_||_|\___)
[11:31:19] [Server thread/INFO]: [DeluxeCombat] 
[11:31:19] [Server thread/INFO]: [DeluxeCombat] Hook packetevents (2.7.0, Common Hook) has been registered.
[11:31:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxecombat [0.1.2]
[11:31:19] [Server thread/INFO]: [DeluxeCombat] Hook PlaceholderAPI (2.10.9, Common Hook) has been registered.
[11:31:19] [Server thread/ERROR]: [DeluxeCombat] Failed to register events for class nl.marido.deluxecombat.hooks.citizens.CombatLogCitizenListener because net/citizensnpcs/api/event/NPCDeathEvent does not exist.
[11:31:19] [Server thread/ERROR]: [DeluxeCombat] Failed to register events for class nl.marido.deluxecombat.hooks.plugins.commonhook.CitizenHook because net/citizensnpcs/api/event/NPCLeftClickEvent does not exist.
[11:31:19] [Server thread/INFO]: [DeluxeCombat] Hook Citizens (2.0.27, Common Hook) has been registered.
[11:31:19] [Server thread/INFO]: [DeluxeCombat] Hook ProtectionStones (2.8.5, Common Hook) has been registered.
[11:31:19] [Server thread/INFO]: [DeluxeCombat] Hook BetterRTP (3.2.1-3, Common Hook) has been registered.
[11:31:19] [Server thread/INFO]: [DeluxeCombat] Hook UltimateClans (7.0.4, Clan Hook) has been registered.
[11:31:19] [Server thread/INFO]: [DeluxeCombat] Hook MMOItems (5.2.1, Item Hook) has been registered.
[11:31:19] [Server thread/INFO]: [DeluxeCombat] Hook Vault (1.7.3, Common Hook) has been registered.
[11:31:19] [Server thread/INFO]: [DeluxeCombat] Spawnpoints (0), Kill-Streaks (1), Rewards (2), Custom Tools (1) loaded!
[11:31:19] [Server thread/INFO]: [DeluxeCombat] Loaded 14 Elo ranges.
[11:31:19] [Server thread/INFO]: [DeluxeCombat] Start fetching marketplace addons...
[11:31:19] [Server thread/INFO]: [ItemEdit] Enabling ItemEdit v3.5.5
[11:31:19] [Server thread/INFO]: [ItemEdit] Hooking into MiniMessageAPI see https://webui.advntr.dev/
[11:31:19] [Server thread/INFO]: [ItemEdit] Selected Storage Type: YAML
[11:31:19] [Server thread/INFO]: [ItemEdit] Hooking into Vault
[11:31:19] [Server thread/INFO]: [ItemEdit] Hooking into PlaceHolderAPI
[11:31:19] [Server thread/INFO]: [ItemEdit] placeholders:
[11:31:19] [Server thread/INFO]: [ItemEdit]   %itemedit_amount_<{itemid}>_[{slot}]_[{player}]%
[11:31:19] [Server thread/INFO]: [ItemEdit]     shows how many itemid player has on slot
[11:31:19] [Server thread/INFO]: [ItemEdit]     <{itemid}> for item id on serveritem
[11:31:19] [Server thread/INFO]: [ItemEdit]     [{slot}] for the slot where the item should be counted, by default inventory
[11:31:19] [Server thread/INFO]: [ItemEdit]       Values: inventory (include offhand), equip (include offhand), inventoryandequip (include offhand), hand, offhand, head, chest, legs, feet
[11:31:19] [Server thread/INFO]: [ItemEdit]     [{player}] for the player, by default self
[11:31:19] [Server thread/INFO]: [ItemEdit]     example: %itemedit_amount_{my_item_id}_{hand}%
[11:31:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: itemedit [1.0]
[11:31:19] [Server thread/INFO]: [ItemEdit] Hooking into MythicMobs
[11:31:19] [Server thread/INFO]: [ItemEdit] # Enabled (took 52 ms)
[11:31:19] [Server thread/INFO]: [MarriageMaster] Enabling MarriageMaster v2.7.8
[11:31:19] [Server thread/INFO]: [MarriageMaster] Starting Marriage Master in standalone mode!
[11:31:19] [Server thread/INFO]: [MarriageMaster] Config file successfully loaded.
[11:31:20] [Server thread/INFO]: [MarriageMaster] No compatible backpack plugin found.
[11:31:20] [Server thread/INFO]: [MarriageMaster] Language file successfully loaded. Language: Spanish  Author: FrannDzs
[11:31:20] [Thread-45/INFO]: [MarriageMaster] Loading marriages ...
[11:31:20] [Thread-45/INFO]: [MarriageMaster] Marriages loaded
[11:31:20] [Thread-45/INFO]: [MarriageMaster] Loading priests ...
[11:31:20] [Thread-45/INFO]: [MarriageMaster] Priests loaded
[11:31:20] [Thread-45/INFO]: [MarriageMaster] Loading players ...
[11:31:20] [Thread-45/INFO]: [MarriageMaster] Players loaded
[11:31:20] [Thread-45/INFO]: [MarriageMaster] Loading marriages into cache ...
[11:31:20] [Thread-45/INFO]: [MarriageMaster] Marriages loaded into cache
[11:31:20] [Thread-45/INFO]: [MarriageMaster] Loading homes ...
[11:31:20] [Thread-45/INFO]: [MarriageMaster] Homes loaded
[11:31:20] [Server thread/INFO]: [MarriageMaster] Item name language file successfully loaded. Language: english  Author: GeorgH93
[11:31:20] [Server thread/INFO]: [MarriageMaster] Loading item translations ...
[11:31:20] [Server thread/INFO]: [MarriageMaster] Finished loading item translations for 826 items.
[11:31:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: marriagemaster [2.7.8]
[11:31:20] [Server thread/INFO]: [MarriageMaster] PlaceholderAPI hook was successfully registered!
[11:31:20] [Server thread/INFO]: [MarriageMaster]  Marriage Master has been enabled!  :) 
[11:31:20] [Server thread/INFO]: [EcoPets-Addon] Enabling EcoPets-Addon v1.0.0
[11:31:20] [Server thread/INFO]: 
[11:31:20] [Server thread/INFO]: • Version compatible: 1.21.4
[11:31:20] [Server thread/INFO]: • Dependencia encontrada: PlaceholderAPI
[11:31:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: epa [1.0.0]
[11:31:20] [Server thread/INFO]: • Dependencia encontrada: Vault
[11:31:20] [Server thread/INFO]: • Dependencia encontrada: HeadDatabase
[11:31:20] [Server thread/INFO]: [EcoPets-Addon] La particula con la id particle-1 tiene un material invalido
[11:31:20] [Server thread/INFO]: 
[11:31:20] [Server thread/INFO]: [JPremium] Enabling JPremium vCLEARED-1.24.1
[11:31:20] [Server thread/INFO]: [JPremium] JPremium will use Paper's handshake listener!
[11:31:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: JPremium [SpigotVersion]
[11:31:20] [Server thread/INFO]: [TAB] Enabling TAB v5.1.0
[11:31:20] [Server thread/INFO]: [TAB] Loaded NMS hook in 2ms
[11:31:20] [Server thread/INFO]: [TAB] Enabled in 113ms
[11:31:20] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.23.3
[11:31:20] [Server thread/INFO]: [EssentialsProtect] Enabling EssentialsProtect v2.21.1-dev+5-dabe687
[11:31:20] [Server thread/INFO]: [EssentialsProtect] Continuing to enable Protect.
[11:31:20] [Server thread/INFO]: [EssentialsProtect] Starting Metrics. Opt-out using the global bStats config.
[11:31:20] [Server thread/INFO]: [40ServidoresMC] Enabling 40ServidoresMC v2.5
[11:31:20] [Server thread/INFO]: [40ServidoresMC] Plugin 40ServidoresMC v2.5 cargado completamente
[11:31:20] [Server thread/INFO]: [EasyArmorStands] Enabling EasyArmorStands v2.4.1
[11:31:21] [Server thread/INFO]: [EasyArmorStands] Enabling WorldGuard integration
[11:31:21] [Server thread/INFO]: [EasyArmorStands] Enabling HeadDatabase integration
[11:31:21] [Server thread/INFO]: [asCMD] Enabling asCMD v2.3*
[11:31:21] [Server thread/INFO]: [asCMD] asCMD version 2.3 is enabled!
[11:31:21] [Server thread/INFO]: [Interactions] Enabling Interactions v2.8.3
[11:31:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactions [2.8.3]
[11:31:21] [Server thread/INFO]: [Interactions]Has been enabled! Version: 2.8.3
[11:31:21] [Server thread/INFO]: [Interactions]Thanks for using my plugin!   ~Ajneb97
[11:31:21] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.1-dev+5-dabe687
[11:31:21] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[11:31:21] [Server thread/INFO]: [BetterProfiles] Enabling BetterProfiles v1.7-BETA-DEV-002
[11:31:21] [Server thread/INFO]:   ___      _   _           ___          __ _ _          Running v1.7-BETA-DEV-002 (v1_21)
[11:31:21] [Server thread/INFO]:  | _ ) ___| |_| |_ ___ _ _| _ \_ _ ___ / _(_) |___ ___  Server Purpur v1.21.4-2411-75efb97 (MC: 1.21.4)
[11:31:21] [Server thread/INFO]:  | _ \/ -_)  _|  _/ -_) '_|  _/ '_/ _ \  _| | / -_|_-<  Discord for support: https://alonsoaliaga.com/discord
[11:31:21] [Server thread/INFO]:  |___/\___|\__|\__\___|_| |_| |_| \___/_| |_|_\___/__/  Thanks for using my plugin ❤!
[11:31:21] [Server thread/INFO]:           Developed by AlonsoAliaga
[11:31:21] [Server thread/INFO]: 
[11:31:21] [Server thread/INFO]:    You are using a Development build of BetterProfiles. Make sure you update the plugin once
[11:31:21] [Server thread/INFO]:    an official update is released on SpigotMC to ensure plugin is free of bugs.
[11:31:21] [Server thread/INFO]: 
[11:31:21] [Server thread/INFO]: ==============================================================================================
[11:31:21] [Server thread/INFO]: [BetterProfiles] You are using a Paper fork (Purpur), plugin should work fine!
[11:31:21] [Server thread/INFO]: [BetterProfiles] If you have issues, join us on our official support server on alonsoaliaga.com/discord
[11:31:21] [Server thread/INFO]: ==============================================================================================
[11:31:21] [Server thread/INFO]: 
[11:31:21] [Server thread/INFO]: [Auto-update] Configuration items.yml is up-to-date!
[11:31:21] [Server thread/INFO]: [Auto-update] Configuration config.yml is up-to-date!
[11:31:21] [Server thread/INFO]: [BetterProfiles] BungeeCord action bar available. Hooking..
[11:31:21] [Server thread/INFO]: [BetterProfiles] ProtocolLib found! Checking..
[11:31:21] [Server thread/INFO]: [BetterProfiles] ================================================================================
[11:31:21] [Server thread/INFO]: [BetterProfiles] This is not an error! AlonsoLib is required for some commands command
[11:31:21] [Server thread/INFO]: [BetterProfiles] modifiers like [JSON] and related ones. These modifiers won't be available.
[11:31:21] [Server thread/INFO]: [BetterProfiles] Download latest version of AlonsoLib in https://alonsoaliaga.com/AlonsoLib
[11:31:21] [Server thread/INFO]: [BetterProfiles] For more questions join us on https://alonsoaliaga.com/discord
[11:31:21] [Server thread/INFO]: [BetterProfiles] Plugin will continue working without issues. Only those features won't work.
[11:31:21] [Server thread/INFO]: [BetterProfiles] ================================================================================
[11:31:21] [Server thread/INFO]: [BetterProfiles] [HikariCP] Using com.mysql.cj.jdbc.MysqlDataSource for source class name..
[11:31:21] [Server thread/INFO]: [BetterProfiles] [SQLite] Attempting to create 'betterprofiles' table..
[11:31:21] [Server thread/INFO]: [SQLite] Connecting to database 'database-betterprofiles.db'!
[11:31:21] [Server thread/INFO]: [SQLite] Driver available: SQLite JDBC | 3.47.0
[11:31:21] [Server thread/INFO]: [SQLite] Successfully connected to database!
[11:31:21] [Server thread/INFO]: [BetterProfiles] [SQLite] Table 'betterprofiles' has been created if didn't exist.
[11:31:21] [Server thread/INFO]: [BetterProfiles] Successfully loaded 1 books!
[11:31:21] [Server thread/INFO]: [BetterProfiles] Offline command is disabled. Skipping..
[11:31:21] [Server thread/INFO]: [BetterProfiles] Enabled profile on command.
[11:31:21] [Server thread/INFO]: [BetterProfiles] [Sound.class] Class Sound recognized as new type!
[11:31:21] [Server thread/INFO]: [BetterProfiles] [Sound.class] Successfully loaded 1651 sounds for Sound.class!
[11:31:21] [Server thread/INFO]: [BetterProfiles] [Attribute.class] Class Attribute recognized as new type!
[11:31:21] [Server thread/INFO]: [BetterProfiles] [Attribute.class] Successfully loaded 32 attributes for Attribute.class!
[11:31:21] [Server thread/INFO]: [BetterProfiles] [Attribute.class] Successfully loaded 64 attributes keys for Attribute.class!
[11:31:21] [Server thread/INFO]: [BetterProfiles] Enabling real time update profile..
[11:31:21] [Server thread/INFO]: [BetterProfiles] PlayerSwapHandItemsEvent class found. Enabling..
[11:31:21] [Server thread/INFO]: [BetterProfiles] Real time profile update is enabled.
[11:31:21] [Server thread/INFO]: [BetterProfiles] Enabled profile on right click.
[11:31:21] [Server thread/INFO]: [BetterProfiles] Old ItemStack constructor is available!
[11:31:21] [Server thread/INFO]: [BetterProfiles] SkullMeta#setOwningPlayer method is available for heads.
[11:31:21] [Server thread/INFO]: [BetterProfiles] SkullMeta#setOwner method is available for heads.
[11:31:21] [Server thread/INFO]: [BetterProfiles] SkullMeta#setOwnerProfile method is available for heads. Using it for heads..
[11:31:21] [Server thread/INFO]: [BetterProfiles] New setUnbreakable method found! Using it..
[11:31:21] [Server thread/INFO]: [BetterProfiles] New setOwningPlayer method is available!
[11:31:21] [Server thread/INFO]: [BetterProfiles] Old Bukkit#getOfflinePlayer(String name) method is available!
[11:31:21] [Server thread/INFO]: [BetterProfiles] New isUnbreakable method found! Using it..
[11:31:21] [Server thread/INFO]: [BetterProfiles] Loaded 6 items for 6 slots!
[11:31:21] [Server thread/INFO]: [BetterProfiles] PlaceholderAPI found! Hooking..
[11:31:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterprofiles [1.7-BETA-DEV-002]
[11:31:21] [Server thread/INFO]: [BetterProfiles] Bungee messaging system is allowed in this server. Enabling..
[11:31:21] [Server thread/INFO]: [Workstations] Enabling Workstations v1.0.0
[11:31:21] [Server thread/INFO]: [Workstations] Loading Workstations
[11:31:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: workstations [1.0.0]
[11:31:21] [Server thread/INFO]: [SpawnerLegacy] Enabling SpawnerLegacy v1.3.5
[11:31:21] [Server thread/INFO]: [SpawnerLegacy v1.3.5] enabled!
[11:31:21] [Server thread/INFO]: [SpawnerLegacy] Vault has been found, economy enabled!
[11:31:21] [Server thread/INFO]: [WorldGuard-TitleX] Enabling WorldGuard-TitleX v1.0
[11:31:21] [Server thread/INFO]: [WorldGuard-TitleX] WorldGuard found! Version: 7.0.12+829a4a4
[11:31:21] [Server thread/INFO]: [WorldGuard-TitleX] WorldGuardTitleX has been enabled!
[11:31:21] [Server thread/INFO]: [BeautyQuests] Enabling BeautyQuests v1.0.5_BUILD447
[11:31:21] [Server thread/INFO]: [BeautyQuests] ------------ BeautyQuests ------------
[11:31:21] [Server thread/INFO]: [BeautyQuests] Loaded valid Minecraft version 1_21_R3.
[11:31:22] [Server thread/WARN]: [BeautyQuests] The file is not fully translated! 59 missing translations.
[11:31:22] [Server thread/INFO]: [BeautyQuests] Loaded language es_ES (0.019s)!
[11:31:22] [Server thread/INFO]: [BeautyQuests] Loaded start particles: DUST in shape POINT with color R255 G255 B0
[11:31:22] [Server thread/INFO]: [BeautyQuests] Loaded talk particles: HAPPY_VILLAGER in shape BAR
[11:31:22] [Server thread/INFO]: [BeautyQuests] Loaded next particles: SMOKE in shape SPOT
[11:31:22] [Server thread/INFO]: [BeautyQuests] Adding mythicmobs as an npc factory
[11:31:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: beautyquests [1.0.5_BUILD447]
[11:31:22] [Server thread/INFO]: [BeautyQuests] Placeholders registered !
[11:31:22] [Server thread/INFO]: [WorldGuard] Registering session handler fr.skytasul.quests.integrations.worldguard.WorldGuardEntryHandler
[11:31:22] [Server thread/INFO]: [TimedTopper] Enabling TimedTopper v2.4.0
[11:31:22] [Server thread/WARN]: [TimedTopper] "TimedTopper v2.4.0" has registered a listener for me.hsgamer.topper.spigot.plugin.event.GenericEntryUpdateEvent on method "public void me.hsgamer.timedtopper.listener.UpdateListener.onUpdate(me.hsgamer.topper.spigot.plugin.event.GenericEntryUpdateEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [].
[11:31:22] [Server thread/INFO]: [AxDarkAuctions] Enabling AxDarkAuctions v1.2.3
[11:31:22] [Server thread/INFO]: [AxDarkAuctions] Hooked into Vault!
[11:31:22] [Server thread/INFO]: [AxDarkAuctions] Hooked into RoyaleEconomy!
[11:31:22] [Server thread/INFO]: [AxDarkAuctions] Hooked into EcoBits!
[11:31:22] [Server thread/INFO]: [AxDarkAuctions] Hooked into PlaceholderAPI!
[11:31:23] [Server thread/INFO]: [AxDarkAuctions] Loaded plugin!
[11:31:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: axdarkauctions [1.2.3]
[11:31:23] [Server thread/INFO]: [Actions] Enabling Actions v2.70.0
[11:31:23] [Server thread/INFO]: [Actions] Loading Actions
[11:31:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: actions [2.70.0]
[11:31:23] [Server thread/INFO]: [EnchantmentDisabler] Enabling EnchantmentDisabler v0.2.3
[11:31:23] [Server thread/INFO]: [AxAuctions] Enabling AxAuctions v1.20.3
[11:31:23] [Server thread/INFO]: [AxAuctions] Hooked into PlaceholderAPI!
[11:31:24] [Server thread/INFO]: [AxAuctions] Loaded plugin! Using H2 database to store data!
[11:31:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: axauctions [1.20.3]
[11:31:24] [Server thread/INFO]: [AuroraCollections] Enabling AuroraCollections v1.5.3
[11:31:24] [Server thread/INFO]: [AuroraCollections] [ACF] Enabled Asynchronous Tab Completion Support!
[11:31:24] [Server thread/INFO]: AuroraCollections | Hooked into MMOItems for block loot collection with namespace 'mmoitems'.
[11:31:24] [Server thread/INFO]: AuroraCollections | Hooked into MythicMobs for entity_kill and entity_loot collections with namespace 'mythicmobs'
[11:31:24] [Server thread/INFO]: AuroraCollections | Hooked into MythicMobs for custom mechanics (addToCollection, progressCollection), conditions (hasCollectionLevel) and "mythic_stat" reward.
[11:31:24] [Server thread/INFO]: AuroraCollections | Hooked into LuckPerms for permission rewards with reward type: 'permission'. Auto reward corrector for permissions is registered.
[11:31:24] [Server thread/INFO]: AuroraCollections | Hooked into AuroraLevels for xp rewards with reward type: 'levels_xp'
[11:31:24] [Server thread/INFO]: AuroraCollections | Hooked into WorldGuard for flags
[11:31:24] [Server thread/INFO]: [PSMenu] Enabling PSMenu v1.7.1-STABLE
[11:31:24] [Server thread/INFO]: [PSMenu] Registering Hooks...
[11:31:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: psaddon [1.7.1-STABLE]
[11:31:24] [Server thread/INFO]: [PSMenu] Hooked onto PlaceholderAPI
[11:31:24] [Server thread/INFO]: [PSMenu] Hooked onto ProtectionStones
[11:31:24] [Server thread/INFO]: [PSMenu] Registering files...
[11:31:24] [Server thread/INFO]: [PSMenu] Registering listeners...
[11:31:24] [Server thread/INFO]: [PSMenu] Registering commands...
[11:31:24] [Server thread/INFO]: [PSMenu] Registering Metrics...
[11:31:24] [Server thread/INFO]: [WorldGuard] Registering session handler xshyo.com.psmenu.H.B
[11:31:24] [Server thread/INFO]: [PSMenu] The folder or JSON file was not found.
[11:31:24] [Server thread/INFO]: [PSMenu] This plugin is licensed to 480851 (Krysuwu)
[11:31:24] [Server thread/INFO]: [PSMenu] Server version: 1.21.4-2411-75efb97 (MC: 1.21.4) 1.21.4-R0.1-SNAPSHOT
[11:31:24] [Server thread/INFO]: [PSMenu] Done and enabled in 94.53ms
[11:31:24] [Server thread/INFO]: [EcoScrolls] Enabling EcoScrolls v1.8.0
[11:31:24] [Server thread/INFO]: [EcoScrolls] Loading EcoScrolls
[11:31:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecoscrolls [1.8.0]
[11:31:24] [Server thread/INFO]: [ToastedAFK] Enabling ToastedAFK v2.6.5.5
[11:31:24] [Server thread/INFO]: [ToastedAFK] 
 █████╗ ███████╗██╗  ██╗    ██████╗ ███████╗██╗    ██╗ █████╗ ██████╗ ██████╗ ███████╗
██╔══██╗██╔════╝██║ ██╔╝    ██╔══██╗██╔════╝██║    ██║██╔══██╗██╔══██╗██╔══██╗██╔════╝
███████║█████╗  █████╔╝     ██████╔╝█████╗  ██║ █╗ ██║███████║██████╔╝██║  ██║███████╗
██╔══██║██╔══╝  ██╔═██╗     ██╔══██╗██╔══╝  ██║███╗██║██╔══██║██╔══██╗██║  ██║╚════██║
██║  ██║██║     ██║  ██╗    ██║  ██║███████╗╚███╔███╔╝██║  ██║██║  ██║██████╔╝███████║
╚═╝  ╚═╝╚═╝     ╚═╝  ╚═╝    ╚═╝  ╚═╝╚══════╝ ╚══╝╚══╝ ╚═╝  ╚═╝╚═╝  ╚═╝╚═════╝ ╚══════╝
[11:31:24] [Server thread/INFO]: [ToastedAFK] Made by SerbanHiro
[11:31:24] [Server thread/INFO]: SUCCESS >> Initialized directory userdata in 1ms
[11:31:24] [Server thread/INFO]: SUCCESS >> Initialized directory regions in 0ms
[11:31:24] [Server thread/INFO]: SUCCESS >> Initialized directory tiers in 0ms
[11:31:24] [Server thread/INFO]: SUCCESS >> Initialized directory rewards in 0ms
[11:31:24] [Server thread/INFO]: SUCCESS >> Initialized directory logs in 0ms
[11:31:24] [Server thread/INFO]: INFO >> Values loaded!
[11:31:24] [Server thread/INFO]: INFO >> Permissions registered!
[11:31:24] [Server thread/INFO]: INFO >> Schedulers started!
[11:31:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: afkrewards [1.0.0]
[11:31:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: afktimer [1.0.0]
[11:31:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: afktimerseconds [1.0.0]
[11:31:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: afkpass [1.0.0]
[11:31:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: toastedplaytime [1.0.0]
[11:31:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: toastedplaytimepoints [1.0.0]
[11:31:24] [Server thread/INFO]: ERROR >> ShopGUI+ not found.
[11:31:24] [Server thread/INFO]: INFO >> Tasks executed in 53 ms.
[11:31:24] [Server thread/INFO]: [Tebex] Enabling Tebex v2.1.0
[11:31:25] [Server thread/INFO]: [AlonsoTags] Enabling AlonsoTags v2.2.1-BETA-PRO
[11:31:25] [Server thread/INFO]: [AlonsoTags] Max health Attribute check found. Using it..
[11:31:25] [Server thread/INFO]: [AlonsoTags] Inventory title with support for more than 32 characters. Skipping..
[11:31:25] [Server thread/INFO]: [AlonsoTags] Hex colors are available! Ready for RGB..
[11:31:25] [Server thread/INFO]: [AlonsoTags] Old constructor for HoverEvent found! Using it..
[11:31:25] [Server thread/INFO]: [AlonsoTags] New sendTitle method found! Using it..
[11:31:25] [Server thread/INFO]: [AlonsoTags] New setUnbreakable method found! Using it..
[11:31:25] [Server thread/INFO]: [AlonsoTags] New isUnbreakable method found! Using it..
[11:31:25] [Server thread/INFO]: Enabling HEX color fix for 1.8 - 1.15 players.. (This is an experimental feature
[11:31:25] [Server thread/INFO]:     _   _                 _____             ___          Running v2.2.1-BETA-PRO
[11:31:25] [Server thread/INFO]:    /_\ | |___ _ _  ___ __|_   _|_ _ __ _ __| _ \_ _ ___  Server Purpur v1.21.4-2411-75efb97 (MC: 1.21.4)
[11:31:25] [Server thread/INFO]:   / _ \| / _ \ ' \(_-</ _ \| |/ _` / _` (_-<  _/ '_/ _ \ Discord for support: https://alonsoaliaga.com/discord
[11:31:25] [Server thread/INFO]:  /_/ \_\_\___/_||_/__/\___/|_|\__,_\__, /__/_| |_| \___/ Thanks for using my plugin ❤ 501501!
[11:31:25] [Server thread/INFO]:          Developed by AlonsoAliaga |___/
[11:31:25] [Server thread/INFO]: 
[11:31:25] [Server thread/INFO]: ==============================================================================================
[11:31:25] [Server thread/INFO]: [AlonsoTags] You are using a Paper fork (Purpur), plugin should work fine!
[11:31:25] [Server thread/INFO]: [AlonsoTags] If you have issues, join us on our official support server on alonsoaliaga.com/discord
[11:31:25] [Server thread/INFO]: ==============================================================================================
[11:31:25] [Server thread/INFO]: 
[11:31:25] [Server thread/INFO]: [AlonsoTags] BungeeCord action bar available. Hooking..
[11:31:25] [Server thread/INFO]: [AlonsoTags] ProtocolLib found! Checking..
[11:31:25] [Server thread/INFO]: [Auto-update] Configuration is up-to-date!
[11:31:25] [Server thread/INFO]: [AlonsoTags] [HikariCP] Using com.mysql.cj.jdbc.MysqlDataSource for source class name..
[11:31:25] [Server thread/INFO]: [AlonsoTags] [HikariCP] Attempting to create 'alonsotags' table..
[11:31:25] [Server thread/INFO]: [AlonsoTags] [HikariCP] Table 'alonsotags' has been created if didn't exist.
[11:31:25] [Server thread/INFO]: [HikariCP] Driver available: MySQL Connector/J | 11.7.2-MariaDB-deb12
[11:31:25] [OkHttp https://plugin.tebex.io/.../INFO]: [Tebex] Connected to Survival RPG - Minecraft (Offline/Geyser) server.
[11:31:25] [Server thread/INFO]: [AlonsoTags] Column called 'purchased_tags' already exists. Skipping..
[11:31:25] [Server thread/INFO]: [AlonsoTags] Column called 'selected_color' already exists. Skipping..
[11:31:25] [Server thread/INFO]: [AlonsoTags] Column called 'selected_filter' already exists. Skipping..
[11:31:25] [Server thread/INFO]: [AlonsoTags] Successfully loaded 1 books!
[11:31:25] [Server thread/INFO]: [AlonsoTags] Forced mode is not enabled. Players can choose the mode they want..
[11:31:25] [Server thread/INFO]: [AlonsoTags] Old ItemStack constructor is available!
[11:31:25] [Server thread/INFO]: [AlonsoTags] SkullMeta#setOwningPlayer method is available for heads.
[11:31:25] [Server thread/INFO]: [AlonsoTags] SkullMeta#setOwner method is available for heads.
[11:31:25] [Server thread/INFO]: [AlonsoTags] SkullMeta#setOwnerProfile method is available for heads. Using it for heads..
[11:31:25] [Server thread/INFO]: [AlonsoTags] New setUnbreakable method found! Using it..
[11:31:25] [Server thread/INFO]: [AlonsoTags] New setOwningPlayer method is available!
[11:31:25] [Server thread/INFO]: [AlonsoTags] Old Bukkit#getOfflinePlayer(String name) method is available!
[11:31:25] [Server thread/INFO]: [AlonsoTags] New isUnbreakable method found! Using it..
[11:31:25] [Server thread/INFO]: [AlonsoTags] Currency LEVEL successfully loaded!
[11:31:25] [Server thread/INFO]: [AlonsoTags] Vault found! Hooking..
[11:31:25] [Server thread/INFO]: [AlonsoTags] Vault hooked correctly with plugin 'Essentials' because couldn't find preferred plugins!
[11:31:25] [Server thread/INFO]: [AlonsoTags] Cost type 'VAULT' has been enabled!
[11:31:25] [Server thread/INFO]: [AlonsoTags] Currency VAULT successfully loaded!
[11:31:25] [Server thread/INFO]: [AlonsoTags] PlayerPoints is not available! Disabling economy support..
[11:31:25] [Server thread/INFO]: [AlonsoTags] Currency PLAYER_POINTS not loaded!
[11:31:25] [Server thread/INFO]: [AlonsoTags] TokenManager is not available! Disabling economy support..
[11:31:25] [Server thread/INFO]: [AlonsoTags] Currency TOKEN_MANAGER not loaded!
[11:31:25] [Server thread/INFO]: [AlonsoTags] Loading 'new-tag' tag...
[11:31:25] [Server thread/INFO]: [AlonsoTags] Loading 'vip' tag...
[11:31:25] [Server thread/INFO]: [AlonsoTags] Loading 'mvp' tag...
[11:31:25] [Server thread/INFO]: [AlonsoTags] Loading 'deluxe' tag...
[11:31:25] [Server thread/INFO]: [AlonsoTags] Loading 'ultra' tag...
[11:31:25] [Server thread/INFO]: [AlonsoTags] Loading 'titan' tag...
[11:31:25] [Server thread/INFO]: [AlonsoTags] Loading 'aniver' tag...
[11:31:25] [Server thread/INFO]: [AlonsoTags] Loading 'infernal' tag...
[11:31:25] [Server thread/INFO]: [AlonsoTags] Successfully loaded 8 tags!
[11:31:25] [Server thread/INFO]: [AlonsoTags] [Start] Scheduling economy hooks..
[11:31:25] [Server thread/INFO]: [AlonsoTags] Loading 'default' color..
[11:31:25] [Server thread/INFO]: [AlonsoTags] Successfully loaded default color!
[11:31:25] [Server thread/INFO]: [AlonsoTags] Loading 'red' color..
[11:31:25] [Server thread/INFO]: [AlonsoTags] Successfully loaded red color!
[11:31:25] [Server thread/INFO]: [AlonsoTags] Loading 'green' color..
[11:31:25] [Server thread/INFO]: [AlonsoTags] Successfully loaded green color!
[11:31:25] [Server thread/INFO]: [AlonsoTags] Loading 'dark-blue' color..
[11:31:25] [Server thread/INFO]: [AlonsoTags] Successfully loaded dark-blue color!
[11:31:25] [Server thread/INFO]: [AlonsoTags] Loading 'purple' color..
[11:31:25] [Server thread/INFO]: [AlonsoTags] Successfully loaded purple color!
[11:31:25] [Server thread/INFO]: [AlonsoTags] Loading 'cyan' color..
[11:31:25] [Server thread/INFO]: [AlonsoTags] Successfully loaded cyan color!
[11:31:25] [Server thread/INFO]: [AlonsoTags] Loading 'gray' color..
[11:31:25] [Server thread/INFO]: [AlonsoTags] Successfully loaded gray color!
[11:31:25] [Server thread/INFO]: [AlonsoTags] Loading 'pink' color..
[11:31:25] [Server thread/INFO]: [AlonsoTags] Successfully loaded pink color!
[11:31:25] [Server thread/INFO]: [AlonsoTags] Loading 'lime' color..
[11:31:25] [Server thread/INFO]: [AlonsoTags] Successfully loaded lime color!
[11:31:25] [Server thread/INFO]: [AlonsoTags] Loading 'yellow' color..
[11:31:25] [Server thread/INFO]: [AlonsoTags] Successfully loaded yellow color!
[11:31:25] [Server thread/INFO]: [AlonsoTags] Loading 'aqua' color..
[11:31:25] [Server thread/INFO]: [AlonsoTags] Successfully loaded aqua color!
[11:31:25] [Server thread/INFO]: [AlonsoTags] Loading 'gold' color..
[11:31:25] [Server thread/INFO]: [AlonsoTags] Successfully loaded gold color!
[11:31:25] [Server thread/INFO]: [AlonsoTags] Loading 'white' color..
[11:31:25] [Server thread/INFO]: [AlonsoTags] Successfully loaded white color!
[11:31:25] [Server thread/INFO]: [AlonsoTags] Loading 'dark-red' color..
[11:31:25] [Server thread/INFO]: [AlonsoTags] Successfully loaded dark-red color!
[11:31:25] [Server thread/INFO]: [AlonsoTags] Loading 'black' color..
[11:31:25] [Server thread/INFO]: [AlonsoTags] Successfully loaded black color!
[11:31:25] [Server thread/INFO]: [AlonsoTags] Loading 'blue' color..
[11:31:25] [Server thread/INFO]: [AlonsoTags] Successfully loaded blue color!
[11:31:25] [Server thread/INFO]: [AlonsoTags] Loading 'brown' color..
[11:31:25] [Server thread/INFO]: [AlonsoTags] Successfully loaded brown color!
[11:31:25] [Server thread/INFO]: [AlonsoTags] Successfully loaded 17 colors!
[11:31:25] [Server thread/INFO]: [AlonsoTags] PlaceholderAPI found! Hooking..
[11:31:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: alonsotags [2.2.1-BETA-PRO]
[11:31:25] [Server thread/INFO]: [AlonsoTags] Bungee messaging system is allowed in this server. Enabling..
[11:31:25] [Server thread/INFO]: [SelectionVisualizer] Enabling SelectionVisualizer v3.3.2.1
[11:31:25] [Server thread/INFO]: [SV] WorldEdit plugin was found!
[11:31:25] [Server thread/INFO]: [SV] WorldGuard plugin was found!
[11:31:25] [Server thread/INFO]: SelectionVisualizer Version 3.3.2.1 has been enabled
[11:31:25] [Server thread/INFO]: [Ultimate_BlockRegeneration] Enabling Ultimate_BlockRegeneration v2.0.31-BETA
[11:31:25] [Server thread/INFO]: [Ultimate_BlockRegeneration] Regions Not Found In Regions.yml
[11:31:25] [Server thread/INFO]: ****************************
[11:31:25] [Server thread/INFO]:       Ultimate BlockRegen     
[11:31:25] [Server thread/INFO]:  Regenerate Blocks in Style 
[11:31:25] [Server thread/INFO]:                             
[11:31:25] [Server thread/INFO]:         V:2.0.31-BETA        
[11:31:25] [Server thread/INFO]:        Made By HmmboYt      
[11:31:25] [Server thread/INFO]:  Join Our Discord For Support  
[11:31:25] [Server thread/INFO]: ****************************
[11:31:25] [Server thread/INFO]: Thanks for using our plugin 501501 - %%__BUILTBYBIT__%%206745863
[11:31:25] [Server thread/INFO]: [Ultimate_BlockRegeneration] Vault Loaded
[11:31:25] [Server thread/WARN]: [Ultimate_BlockRegeneration] "Ultimate_BlockRegeneration v2.0.31-BETA" has registered a listener for com.destroystokyo.paper.event.brigadier.CommandRegisteredEvent on method "public void revxrsal.commands.bukkit.brigadier.PaperCommodore$CommandRegisterListener.onCommandRegistered(com.destroystokyo.paper.event.brigadier.CommandRegisteredEvent<?>)", but the event is Deprecated. "This event has been superseded by the Commands API and will be removed in a future release. Listen to LifecycleEvents.COMMANDS instead."; please notify the authors [].
[11:31:25] [Server thread/INFO]: SQLite tables created successfully!
[11:31:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ubr [1.0]
[11:31:25] [Server thread/INFO]: [PlayerVaults] Enabling PlayerVaults v4.4.3
[11:31:26] [Server thread/INFO]: [PlayerVaults] Added PUMPKIN to list of blocked materials.
[11:31:26] [Server thread/INFO]: [PlayerVaults] Added DIAMOND_BLOCK to list of blocked materials.
[11:31:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playervaults [4.4.3]
[11:31:26] [Server thread/INFO]: [PlayerVaults] Adding placeholders for PlaceholderAPI!
[11:31:26] [Server thread/INFO]: [PlayerVaults] Loaded! Took 277ms
[11:31:26] [Server thread/INFO]: [DropGuard] Enabling DropGuard v1.0.9
[11:31:26] [Server thread/INFO]: [DropGuard] Checking for plugin updates...
[11:31:26] [Server thread/INFO]: [DropGuard] Your plugin is up to date. No new updates are available
[11:31:26] [Server thread/INFO]: [MythicMobsGUI] Enabling MythicMobsGUI v1.11.1
[11:31:26] [Server thread/INFO]: [MythicMobsGUI] ----------------------[ Hooks Initializing ]----------------------
[11:31:26] [Server thread/INFO]: [MythicMobsGUI] Citizens: Not Found!
[11:31:26] [Server thread/INFO]: [MythicMobsGUI] DecentHolograms: Success! version: 2.8.15
[11:31:26] [Server thread/INFO]: [MythicMobsGUI] HolographicDisplays: Not Found!
[11:31:26] [Server thread/INFO]: [MythicMobsGUI] ItemsAdder: Not Found!
[11:31:26] [Server thread/INFO]: [MythicMobsGUI] LibsDisguises: Not Found!
[11:31:26] [Server thread/INFO]: [MythicMobsGUI] MMOCore: Not Found!
[11:31:26] [Server thread/INFO]: [MythicMobsGUI] MMOItems: Success! version: 6.10.1-SNAPSHOT
[11:31:26] [Server thread/INFO]: [MythicMobsGUI] ModelEngine: Not Found!
[11:31:26] [Server thread/INFO]: [MythicMobsGUI] MythicArtifacts: Not Found!
[11:31:26] [Server thread/INFO]: [MythicMobsGUI] MythicCrucible: Success! version: 2.2.0-SNAPSHOT
[11:31:26] [Server thread/INFO]: [MythicMobsGUI] MythicMobs: Success! version: 5.8.2-SNAPSHOT-5b666f3a
[11:31:26] [Server thread/INFO]: [MythicMobsGUI] Oraxen: Not Found!
[11:31:26] [Server thread/INFO]: [MythicMobsGUI] ProtocolLib: Success! version: 5.4.0-SNAPSHOT-742
[11:31:26] [Server thread/INFO]: [MythicMobsGUI] Vault: Success! version: 1.7.3-CMI
[11:31:26] [Server thread/INFO]: [MythicMobsGUI] WorldGuard: Success! version: 7.0.12+829a4a4
[11:31:26] [Server thread/INFO]: [UltimateShopEditor] Enabling UltimateShopEditor v0.0.8
[11:31:26] [Server thread/INFO]: [UltimateShopEditor] We can not found your message file, please try restart your server!
[11:31:26] [Server thread/INFO]: [UltimateShopEditor] Plugin is loaded. Author: PQguanfang.
[11:31:26] [Server thread/INFO]: [InventoryRollbackPlus] Enabling InventoryRollbackPlus v1.6.21
[11:31:26] [Server thread/INFO]: [InventoryRollbackPlus] Attempting support for version: 1.21.4-2411-75efb97 (MC: 1.21.4)
[11:31:26] [Server thread/INFO]: [InventoryRollbackPlus] Using CraftBukkit version: v1_21_R3
[11:31:26] [Server thread/INFO]: [InventoryRollbackPlus] Inventory backup data is set to save to: YAML
[11:31:26] [Server thread/INFO]: [InventoryRollbackPlus] bStats are enabled
[11:31:26] [Server thread/INFO]: [ExploitFixer] Enabling ExploitFixer v3.1.2
[11:31:26] [Server thread/INFO]: [ExploitFixer] Successfully hooked with HamsterAPI!
[11:31:26] [Server thread/INFO]: [ExploitFixer] Loaded languages: de, ru, pt, fr, hu, uk, sk, id, sv, ko, en, it, zh, es, cs, ar, vi, th, ja, pl, he, da, ro, nl, tr
[11:31:26] [Server thread/INFO]: [ExploitFixer] Invalid Recipe ID module initialized successfully
[11:31:26] [Server thread/INFO]: [ExploitFixer] Successfully registered commands!
[11:31:26] [Server thread/INFO]: [ExploitFixer] Successfully registered tasks!
[11:31:27] [Server thread/INFO]: [ExploitFixer] Successfully registered listeners!
[11:31:27] [Server thread/INFO]: [SimpleBlockRegen] Enabling SimpleBlockRegen v0.5.8-SNAPSHOT
[11:31:27] [Server thread/INFO]: [SimpleBlockRegen] |  __  __  __  
[11:31:27] [Server thread/INFO]: [SimpleBlockRegen] | /__`|__)|__)   SimpleBlockRegen v0.5.8-SNAPSHOT
[11:31:27] [Server thread/INFO]: [SimpleBlockRegen] | .__/|__)|  \   Author: SKJOLBERG
[11:31:27] [Server thread/INFO]: [SimpleBlockRegen] | 
[11:31:27] [Server thread/INFO]: [SimpleBlockRegen] | Encuentra la clase
[11:31:27] [Server thread/INFO]: [SimpleBlockRegen] | WorldGuard: ✔
[11:31:27] [Server thread/INFO]: [SimpleBlockRegen] | WorldEdit: ✔
[11:31:27] [Server thread/INFO]: [SimpleBlockRegen] | PlaceholderAPI: ✔
[11:31:27] [Server thread/INFO]: [SimpleBlockRegen] | Towny: ✘
[11:31:27] [Server thread/INFO]: [SimpleBlockRegen] | GriefPrevention: ✘
[11:31:27] [Server thread/INFO]: [SimpleBlockRegen] | GriefDefender: ✘
[11:31:27] [Server thread/INFO]: [SimpleBlockRegen] | MMOItems: ✔
[11:31:27] [Server thread/INFO]: [SimpleBlockRegen] | Module +1.20 has been loaded
[11:31:27] [Server thread/INFO]: [SimpleBlockRegen] |  
[11:31:27] [Server thread/INFO]: [SimpleBlockRegen] | You are using the latest version: 0.5.8-SNAPSHOT
[11:31:27] [Server thread/INFO]: [SimpleBlockRegen] |  
[11:31:27] [Server thread/INFO]: [SimpleBlockRegen] | Storage: NONE
[11:31:27] [Server thread/INFO]: [SimpleBlockRegen] | BlockBreakPriority: LOWEST
[11:31:27] [Server thread/INFO]: [SimpleBlockRegen] | BlockPlacePriority: LOWEST
[11:31:27] [Server thread/INFO]: [SimpleBlockRegen] | PlayerInteractShovelPriority: LOWEST
[11:31:27] [Server thread/INFO]: [SimpleBlockRegen] | BlockFadePriority: LOWEST
[11:31:27] [Server thread/INFO]: [SimpleBlockRegen] | EntityChangeBlockPriority: LOWEST
[11:31:27] [Server thread/INFO]: [SimpleBlockRegen] | LeavesDecayPriority: LOWEST
[11:31:27] [Server thread/INFO]: [EcoMenus] Enabling EcoMenus v0.6.0
[11:31:27] [Server thread/INFO]: [EcoMenus] Loading EcoMenus
[11:31:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecomenus [0.6.0]
[11:31:27] [Server thread/INFO]: [IllegalStack] Enabling IllegalStack v2.9.12a
[11:31:27] [Server thread/INFO]: [IllegalStack/IllegalStack] The following materials are allowed to have stacks larger than the vanilla size: POTION 
[11:31:27] [Server thread/INFO]: [IllegalStack/IllegalStack] Server is NOT an ArcLight hybrid environment, continuing as normal.
[11:31:27] [Server thread/INFO]: [IllegalStack/IllegalStack] Server is NOT a Forge hybrid environment, continuing as normal.
[11:31:27] [Server thread/INFO]: [IllegalStack/IllegalStack] Server is NOT a Fabric hybrid environment, continuing as normal.
[11:31:27] [Server thread/INFO]: [IllegalStack/IllegalStack] Server is a Paper server, enabling Paper features.
[11:31:27] [Server thread/INFO]: [IllegalStack/IllegalStack] Server does NOT have Folia components, continuing as normal.
[11:31:27] [Server thread/INFO]: [IllegalStack/IllegalStack] Chat Components found! Enabling clickable commands in /istack
[11:31:27] [Server thread/INFO]: [IllegalStack/fListener] MC Version < 1.13 detected!
[11:31:27] [Server thread/INFO]: [IllegalStack/Listener113] Enabling 1.13+ Checks
[11:31:27] [Server thread/INFO]: [IllegalStack/IllegalStack] ZombieVillagerTransformChance is set to 65 *** Only really matters if the difficulty is set to HARD ***
[11:31:27] [Server thread/INFO]: [AxKoth] Enabling AxKoth v2.13.2
[11:31:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: axkoth [1.0.0]
[11:31:28] [Server thread/INFO]: [AxKoth] Loaded plugin!
[11:31:28] [Server thread/INFO]: [ChatGames-Premium] Enabling ChatGames-Premium v1.9.9
[11:31:28] [Server thread/INFO]: [ChatGames-Premium] Connected to the database successfully.
[11:31:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chatgames [1.0.0]
[11:31:28] [Server thread/INFO]: [ChatGames-Premium] PlaceholderAPI Hooked!
[11:31:28] [Server thread/INFO]: [RPGDrops] Enabling RPGDrops v1.0.0
[11:31:28] [Server thread/INFO]: [RPGDrops] Loading RPGDrops
[11:31:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rpgdrops [1.0.0]
[11:31:28] [Server thread/INFO]: [RPGDrops] Loaded integrations: MythicMobs, LevelledMobs
[11:31:28] [Server thread/INFO]: [AdvancedKits] Enabling AdvancedKits v1.19.9
[11:31:28] [Server thread/INFO]: [AdvancedKits] Loading library boosted-yaml
[11:31:28] [Server thread/INFO]: [AdvancedKits] Loading library YamlAssist
[11:31:28] [Server thread/INFO]: [AdvancedKits] Loading library gson
[11:31:28] [Server thread/INFO]: [AdvancedKits] Loading library XSeries
[11:31:28] [Server thread/INFO]: [AdvancedKits] Loading library fast-uuid
[11:31:28] [Server thread/INFO]: [AdvancedKits] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[11:31:28] [Server thread/INFO]: [AdvancedKits] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[11:31:28] [Server thread/INFO]: [AdvancedKits] Successfully connected to the YAML database!
[11:31:28] [Server thread/INFO]: [AdvancedKits] Successfully registered economy with ID EXP!
[11:31:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedkits [1.19.9]
[11:31:28] [Server thread/INFO]: [AdvancedKits] Successfully hooked into PlaceholderAPI (EXPANSION)!
[11:31:28] [Server thread/INFO]: [AdvancedKits] Successfully hooked into PlaceholderAPI (PLACEHOLDER)!
[11:31:28] [Server thread/INFO]: [AdvancedKits] Successfully registered economy with ID VAULT!
[11:31:28] [Server thread/INFO]: [AdvancedKits] Successfully hooked into Vault (ECONOMY) [EssentialsX Economy]!
[11:31:28] [Server thread/INFO]: [AdvancedKits] Successfully hooked into ItemEdit (ITEM)!
[11:31:28] [Server thread/INFO]: [AdvancedKits] Successfully hooked into HeadDatabase (ITEM)!
[11:31:28] [Server thread/INFO]: [AdvancedKits] Successfully registered economy with ID ESSENTIALS!
[11:31:28] [Server thread/INFO]: [AdvancedKits] Successfully hooked into Essentials (ECONOMY)!
[11:31:28] [Server thread/INFO]: [AdvancedKits] Successfully hooked into MythicMobs (ITEM)!
[11:31:28] [Server thread/INFO]: [AdvancedKits] Enabled asynchronous tab completion support with PaperSpigot!
[11:31:28] [Server thread/INFO]: [AdvancedKits] Successfully enabled in 351 ms!
[11:31:28] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.4-SNAPSHOT
[11:31:28] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[11:31:28] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[11:31:28] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[11:31:28] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[11:31:28] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[11:31:28] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[11:31:28] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[11:31:28] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[11:31:28] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[11:31:28] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[11:31:28] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[11:31:28] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[11:31:28] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[11:31:28] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[11:31:28] [/INFO]: [AdvancedKits] There is not a new update available.
[11:31:28] [Server thread/INFO]: [AuroraCrafting] Enabling AuroraCrafting v2.0.0
[11:31:28] [Server thread/INFO]: [AuroraCrafting] [ACF] Enabled Asynchronous Tab Completion Support!
[11:31:28] [Server thread/INFO]: [Codex] Enabling Codex v2.3.4
[11:31:28] [Server thread/INFO]: [WorldGuard] Registering session handler cx.ajneb97.managers.dependencies.worldguard.WorldGuardEntryManager
[11:31:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: codex [2.3.4]
[11:31:28] [Server thread/INFO]: [Codex] Has been enabled! Version: 2.3.4
[11:31:28] [Server thread/INFO]: [Codex] Thanks for using my plugin!   ~Ajneb97
[11:31:28] [Server thread/INFO]: [BreakControl] Enabling BreakControl v1.0.0
[11:31:28] [Server thread/INFO]: [BreakControl] Loading BreakControl
[11:31:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: breakcontrol [1.0.0]
[11:31:29] [Server thread/ERROR]: [BreakControl] 
[11:31:29] [Server thread/ERROR]: [BreakControl] Invalid configuration found at BreakControl control setup for blocks []:
[11:31:29] [Server thread/ERROR]: [BreakControl] (Cause) Argument 'id'
[11:31:29] [Server thread/ERROR]: [BreakControl] (Reason) Invalid condition ID specified!
[11:31:29] [Server thread/ERROR]: [BreakControl] 
[11:31:29] [Server thread/INFO]: [ItsMyConfig] Enabling ItsMyConfig v4.0.0
[11:31:29] [Server thread/INFO]: [ItsMyConfig] Loading ItsMyConfig...
[11:31:29] [Server thread/INFO]: [ItsMyConfig] Loading library adventure-text-serializer-bungeecord
[11:31:29] [Server thread/INFO]: [ItsMyConfig] Loading library adventure-api
[11:31:29] [Server thread/INFO]: [ItsMyConfig] Loading library adventure-key
[11:31:29] [Server thread/INFO]: [ItsMyConfig] Loading library examination-api
[11:31:29] [Server thread/INFO]: [ItsMyConfig] Loading library examination-string
[11:31:29] [Server thread/INFO]: [ItsMyConfig] Loading library annotations
[11:31:29] [Server thread/INFO]: [ItsMyConfig] Loading library adventure-text-serializer-legacy
[11:31:29] [Server thread/INFO]: [ItsMyConfig] Loading library adventure-text-serializer-gson
[11:31:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: imc [4.0.0]
[11:31:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: itsmyconfig [4.0.0]
[11:31:29] [Server thread/INFO]: [ItsMyConfig] Loaded all 20 Placeholders in 18ms
[11:31:29] [Server thread/INFO]: [ItsMyConfig] Registering Kick Listener
[11:31:29] [Server thread/INFO]: [ItsMyConfig] ItsMyConfig loaded in 341ms
[11:31:29] [Server thread/INFO]: [Reforges] Enabling Reforges v6.71.2
[11:31:29] [Server thread/INFO]: [Reforges] Loading Reforges
[11:31:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: reforges [6.71.2]
[11:31:29] [Server thread/INFO]: [Talismans] Enabling Talismans v6.70.2
[11:31:29] [Server thread/INFO]: [Talismans] Loading Talismans
[11:31:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: talismans [6.70.2]
[11:31:29] [Server thread/INFO]: [EnchantmentSlots] Enabling EnchantmentSlots v4.3.3
[11:31:29] [Server thread/INFO]: [EnchantmentSlots] Paper is found, enabled Paper only feature!
[11:31:29] [Server thread/INFO]: [EnchantmentSlots] Loaded extra slot item: A!
[11:31:29] [Server thread/INFO]: [EnchantmentSlots] Loaded extra slot item: B!
[11:31:29] [Server thread/INFO]: [EnchantmentSlots] Loaded item slot config: example!
[11:31:29] [Server thread/INFO]: [EnchantmentSlots] Hooking into PlaceholderAPI...
[11:31:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: enchantmentslots [1.0.0]
[11:31:29] [Server thread/INFO]: [EnchantmentSlots] Finished hook!
[11:31:29] [Server thread/INFO]: [EnchantmentSlots] Hooking into InteractiveChat...
[11:31:29] [Server thread/INFO]: [EnchantmentSlots] Hooking into MMOItems...
[11:31:29] [Server thread/INFO]: [EnchantmentSlots] Hooking into EcoItems...
[11:31:29] [Server thread/INFO]: [EnchantmentSlots] Hooking into EcoArmor...
[11:31:29] [Server thread/INFO]: [EnchantmentSlots] Hooking into MythicMobs...
[11:31:29] [Server thread/INFO]: [EnchantmentSlots] Hooking into eco...
[11:31:29] [Server thread/INFO]: [EnchantmentSlots] Hooking into EcoEnchants...
[11:31:29] [Server thread/INFO]: [EnchantmentSlots] Hooking into ProtocolLib....
[11:31:29] [Server thread/INFO]: [EnchantmentSlots] New AuthLib found, enabled new skull get method!
[11:31:29] [Server thread/INFO]: [EnchantmentSlots] Your Minecraft version is: 1.21.4!
[11:31:29] [Server thread/INFO]: [EnchantmentSlots] Plugin is loaded. Author: PQguanfang.
[11:31:29] [Server thread/INFO]: [BlockEffects] Enabling BlockEffects v4.0
[11:31:29] [Server thread/INFO]: [UltimateRewards] Enabling UltimateRewards v2.10.1
[11:31:29] [Server thread/INFO]: [UltimateRewards] WorldGuardHook has been registered.
[11:31:29] [Server thread/INFO]: [UltimateRewards] EssentialsHook has been registered.
[11:31:29] [Server thread/INFO]: [UltimateRewards] HeadDatabaseHook has been registered.
[11:31:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultimaterewards [2.10.1]
[11:31:29] [Server thread/INFO]: [UltimateRewards] PlaceholderApiPreRegister has been registered.
[11:31:29] [Server thread/INFO]: [UltimateRewards] VaultHook has been registered.
[11:31:29] [Server thread/INFO]: [UltimateRewards] Loading rewards...
[11:31:29] [Server thread/INFO]: [UltimateRewards] 8 rewards have been loaded from RewardsDiarias folder!
[11:31:29] [Server thread/INFO]: [UltimateRewards] 8 rewards have been loaded from RewardsSemanales folder!
[11:31:29] [Server thread/INFO]: [UltimateRewards] 8 rewards have been loaded from RewardsMensuales folder!
[11:31:29] [Server thread/INFO]: [UltimateRewards] 4 rewards have been loaded from rewards folder!
[11:31:29] [Server thread/INFO]: [UltimateRewards] Loading guis...
[11:31:30] [Server thread/INFO]: [BetterRTPAddons] Enabling BetterRTPAddons v1.8.9
[11:31:30] [Server thread/INFO]: [ColoredArmors] Enabling ColoredArmors v1.0.0
[11:31:30] [Server thread/INFO]: [ColoredArmors] Loading ColoredArmors
[11:31:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: coloredarmors [1.0.0]
[11:31:30] [Server thread/INFO]: [libreforge] Enabling libreforge v4.74.0
[11:31:30] [Server thread/INFO]: [libreforge] Loading libreforge
[11:31:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: libreforge [4.74.0]
[11:31:30] [Server thread/INFO]: [libreforge] Loaded integrations: Citizens, TAB, LevelledMobs, Vault, WorldGuard
[11:31:30] [Server thread/INFO]: [libreforge] 
[11:31:30] [Server thread/INFO]: [libreforge] Hey, what's this plugin doing here? I didn't install it!
[11:31:30] [Server thread/INFO]: [libreforge] libreforge is the effects system for plugins like EcoEnchants,
[11:31:30] [Server thread/INFO]: [libreforge] EcoJobs, EcoItems, etc. If you're looking for config options for
[11:31:30] [Server thread/INFO]: [libreforge] things like cooldown messages, lrcdb, and stuff like that, you'll
[11:31:30] [Server thread/INFO]: [libreforge] find it under /plugins/libreforge
[11:31:30] [Server thread/INFO]: [libreforge] 
[11:31:30] [Server thread/INFO]: [libreforge] Don't worry about updating libreforge, it's handled automatically!
[11:31:30] [Server thread/INFO]: [libreforge] 
[11:31:30] [Server thread/INFO]: [spark] Starting background profiler...
[11:31:30] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[11:31:30] [Server thread/INFO]: [Ultimate_BlockRegeneration] Regions Not Found In Regions.yml
[11:31:30] [Server thread/INFO]: Done preparing level "world" (32.743s)
[11:31:30] [Server thread/INFO]: Running delayed init tasks
[11:31:30] [Craft Scheduler Thread - 10 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[11:31:30] [Craft Scheduler Thread - 14 - Essentials/INFO]: [Essentials] Obteniendo información de la versión...
[11:31:30] [Craft Scheduler Thread - 15 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[11:31:30] [Craft Scheduler Thread - 20 - InteractiveChat/INFO]: [InteractiveChat] Loading languages...
[11:31:30] [Craft Scheduler Thread - 47 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] Checking for updates...
[11:31:30] [Craft Scheduler Thread - 37 - TimedTopper/INFO]: [TimedTopper] Thank you for supporting TimedTopper. Your support is greatly appreciated
[11:31:30] [Craft Scheduler Thread - 15 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value dungeons-mining! It's neither a valid name nor UUID.
[11:31:30] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[11:31:30] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[11:31:30] [Craft Scheduler Thread - 5 - AdvancedChat/INFO]: [AdvancedChat] Loaded 3417 swear words.
[11:31:30] [Craft Scheduler Thread - 15 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value dungeons-mining! It's neither a valid name nor UUID.
[11:31:30] [Craft Scheduler Thread - 15 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value dungeons-mining! It's neither a valid name nor UUID.
[11:31:30] [Craft Scheduler Thread - 15 - DecentHolograms/INFO]: [DecentHolograms] Loaded 72 holograms!
[11:31:30] [Server thread/INFO]: [Iris]: Server type & version: 1.21.4-2411-75efb97 (MC: 1.21.4)
[11:31:30] [Server thread/INFO]: [Iris]: Java: OpenJDK 64-Bit Server VM Amazon.com Inc. (build 21.0.6+7-LTS)
[11:31:30] [Server thread/INFO]: [Iris]: Purpur is recommended to use with iris.
[11:31:30] [Server thread/INFO]: [Iris]: Bukkit distro: Purpur
[11:31:30] [Server thread/INFO]: [Iris]: Custom Biomes: 202
[11:31:30] [Craft Scheduler Thread - 8 - EcoBits/WARN]: [EcoBits] EcoBits is out of date! (Version 1.8.4)
[11:31:30] [Craft Scheduler Thread - 8 - EcoBits/WARN]: [EcoBits] The newest version is 1.8.5
[11:31:30] [Craft Scheduler Thread - 8 - EcoBits/WARN]: [EcoBits] Download the new version!
[11:31:30] [Server thread/INFO]: [Iris]: Version Information: 1.21.4-2411-75efb97 (MC: 1.21.4) | 1.21.4-R0.1-SNAPSHOT
[11:31:30] [Server thread/INFO]: [Iris]: We recommend using Purpur for the best experience with Iris.
[11:31:30] [Server thread/INFO]: [Iris]: Purpur is a fork of Paper that is optimized for performance and stability.
[11:31:30] [Server thread/INFO]: [Iris]: Plugins that work on Spigot / Paper work on Purpur.
[11:31:30] [Server thread/INFO]: [Iris]: You can download it here: https://purpurmc.org
[11:31:30] [Server thread/INFO]: [Iris]: Custom Dimensions: 2
[11:31:30] [Server thread/INFO]: [Iris]:   rrtspecial v1020
[11:31:30] [Craft Scheduler Thread - 34 - EcoPets/WARN]: [EcoPets] EcoPets is out of date! (Version 2.71.2)
[11:31:30] [Craft Scheduler Thread - 34 - EcoPets/WARN]: [EcoPets] The newest version is 2.73.0
[11:31:30] [Craft Scheduler Thread - 34 - EcoPets/WARN]: [EcoPets] Download the new version!
[11:31:30] [Craft Scheduler Thread - 21 - EcoArmor/WARN]: [EcoArmor] EcoArmor is out of date! (Version 8.71.2)
[11:31:30] [Craft Scheduler Thread - 21 - EcoArmor/WARN]: [EcoArmor] The newest version is 8.73.0
[11:31:30] [Craft Scheduler Thread - 21 - EcoArmor/WARN]: [EcoArmor] Download the new version!
[11:31:30] [Server thread/INFO]: [Iris]:   overworld v3910
[11:31:30] [Craft Scheduler Thread - 41 - Actions/WARN]: [Actions] Actions is out of date! (Version 2.70.0)
[11:31:30] [Craft Scheduler Thread - 41 - Actions/WARN]: [Actions] The newest version is 2.72.0
[11:31:30] [Craft Scheduler Thread - 41 - Actions/WARN]: [Actions] Download the new version!
[11:31:30] [Craft Scheduler Thread - 42 - DeluxeCombat/INFO]: [DeluxeCombat] Successfully fetched 14 marketplace items from the internet!
[11:31:30] [Craft Scheduler Thread - 31 - ItemEdit/INFO]: [ItemEdit] New Update at https://spigotmc.org/resources/40993
[11:31:30] [Craft Scheduler Thread - 50 - Talismans/WARN]: [Talismans] Talismans is out of date! (Version 6.70.2)
[11:31:30] [Craft Scheduler Thread - 50 - Talismans/WARN]: [Talismans] The newest version is 6.72.0
[11:31:30] [Craft Scheduler Thread - 50 - Talismans/WARN]: [Talismans] Download the new version!
[11:31:30] [Craft Scheduler Thread - 24 - EcoSkills/WARN]: [EcoSkills] EcoSkills is out of date! (Version 3.60.5)
[11:31:30] [Craft Scheduler Thread - 24 - EcoSkills/WARN]: [EcoSkills] The newest version is 3.62.0
[11:31:30] [Craft Scheduler Thread - 24 - EcoSkills/WARN]: [EcoSkills] Download the new version!
[11:31:30] [Craft Scheduler Thread - 47 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] You are running the latest version.
[11:31:30] [Server thread/INFO]: [Iris]: 
[11:31:30] [Server thread/INFO]: 
[11:31:30] [Server thread/INFO]:             @@@@@@@@@@@@@@@@@
[11:31:30] [Server thread/INFO]:          @@&&&&&&&&&&&&&&&   .(((()))).                     
[11:31:30] [Server thread/INFO]:         @@@&&&&&&&&&&&&&  .((((((())))))).                  
[11:31:30] [Server thread/INFO]:         @@@&&&&&&&&&&&&  ((((((((()))))))))                @
[11:31:30] [Server thread/INFO]:         @@@&&&&@@@@@&    ((((((((-)))))))))               @@
[11:31:30] [Server thread/INFO]:         @@@&&            ((((((({ }))))))))            &&@@@     Iris
[11:31:30] [Server thread/INFO]:         @@               ((((((((-)))))))))    &@@@@@&&&&@@@     by Volmit Software
[11:31:30] [Server thread/INFO]:         @                ((((((((()))))))))  &&&&&&&&&&&&@@@     v3.6.4-1.20.1-1.21.4
[11:31:30] [Server thread/INFO]:                           '((((((()))))))'  &&&&&&&&&&&&&@@@
[11:31:30] [Server thread/INFO]:                              '(((())))'   &&&&&&&&&&&&&&&@@
[11:31:30] [Server thread/INFO]:                                        @@@@@@@@@@@@@@@@@
[11:31:30] [Server thread/INFO]: [Iris]: Iris is running Stable
[11:31:30] [Server thread/INFO]: [Iris]: Loading World: custom | Generator: rrtspecial
[11:31:30] [Server thread/INFO]: [Iris]: Preparing Spawn for custom' using Iris:rrtspecial...
[11:31:30] [Craft Scheduler Thread - 48 - Reforges/WARN]: [Reforges] Reforges is out of date! (Version 6.71.2)
[11:31:30] [Craft Scheduler Thread - 48 - Reforges/WARN]: [Reforges] The newest version is 6.73.0
[11:31:30] [Craft Scheduler Thread - 48 - Reforges/WARN]: [Reforges] Download the new version!
[11:31:30] [Craft Scheduler Thread - 51 - UltimateRewards/INFO]: [UltimateRewards] There is a new v2.11.0 update available (You are running v2.10.1).
Outdated versions are no longer supported, get the latest one here: https://bit.ly/ultimate-rewards
[11:31:30] [Craft Scheduler Thread - 19 - EcoItems/WARN]: [EcoItems] EcoItems is out of date! (Version 5.59.2)
[11:31:30] [Craft Scheduler Thread - 19 - EcoItems/WARN]: [EcoItems] The newest version is 5.61.0
[11:31:30] [Craft Scheduler Thread - 19 - EcoItems/WARN]: [EcoItems] Download the new version!
[11:31:31] [Craft Scheduler Thread - 16 - UltraRegions/INFO]: [UltraRegions] Translations successfully loaded & applied (35 UltraRegions and Base Translation files found)
[11:31:31] [Craft Scheduler Thread - 28 - LevelledMobs/WARN]: [LevelledMobs] Your LevelledMobs version is a pre-release. Latest release version is 4.3.0.1 b109. (You're running 4.3.1 b111)
[11:31:31] [Server thread/INFO]: [Iris]: Loaded Prefetch Cache to reduce generation disk use.
[11:31:31] [Server thread/INFO]: [Iris]: Initializing Engine: custom/rrtspecial (IrisRange(min=-64.0, max=1024.0) height) Seed: 1337
[11:31:31] [Server thread/INFO]: [Iris]: Injected Iris Biome Source into custom
[11:31:31] [Server thread/INFO]: Preparing start region for dimension minecraft:custom
[11:31:31] [Server thread/INFO]: Preparing spawn area: 0%
[11:31:31] [Server thread/INFO]: Time elapsed: 50 ms
[11:31:31] [Server thread/INFO]: [WorldGuard] (custom) TNT ignition is PERMITTED.
[11:31:31] [Server thread/INFO]: [WorldGuard] (custom) Lighters are PERMITTED.
[11:31:31] [Server thread/INFO]: [WorldGuard] (custom) Lava fire is PERMITTED.
[11:31:31] [Server thread/INFO]: [WorldGuard] (custom) Fire spread is UNRESTRICTED.
[11:31:31] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'custom'
[11:31:31] [Server thread/WARN]: [Ultimate_BlockRegeneration] Loading Regions Again (After World Loads)
[11:31:31] [Server thread/INFO]: [Ultimate_BlockRegeneration] Regions Not Found In Regions.yml
[11:31:31] [Server thread/INFO]: [Iris]: Loaded custom!
[11:31:31] [Server thread/INFO]: [AdvancedChat] 1
[11:31:31] [Server thread/INFO]: [AdvancedChat] 6
[11:31:32] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-CMI)!
[11:31:32] [Server thread/INFO]: [BeautyQuests] 0 quests loaded (0.012s)!
[11:31:32] [Server thread/INFO]: [BeautyQuests] Periodic saves task started (18000 ticks). Task ID: 1822
[11:31:32] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop SHADOWCASTER_HEAD_INCOMBAT HEAD
[11:31:32] [Server thread/WARN]: [MythicMobs] --| File: EquipMechanic
[11:31:32] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[11:31:32] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop SHADOWCASTER_HEAD_INCOMBAT HEAD
[11:31:32] [Server thread/WARN]: [MythicMobs] --| File: EquipMechanic
[11:31:32] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[11:31:32] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop SHADOWCASTER_HEAD HEAD
[11:31:32] [Server thread/WARN]: [MythicMobs] --| File: /home/mycraft/rpg/plugins/MythicMobs/mobs/VanillaMobs.yml
[11:31:32] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[11:31:33] [Server thread/WARN]: Default tier specified in celeste_armor elytra is invalid! Defaulting to 'default'
[11:31:33] [Server thread/WARN]: Default tier specified in celeste_armor elytra is invalid! Defaulting to 'default'
[11:31:34] [Server thread/INFO]: [40ServidoresMC] No se ha encontrado plugin para la versión de servidor que estas ejecutando
[11:31:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iris [3.6.4-1.20.1-1.21.4]
[11:31:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: random [2.1.0]
[11:31:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[11:31:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: playerlist [3.0.8]
[11:31:34] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playerstats due to a missing plugin: PlayerStats
[11:31:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: math [2.0.2]
[11:31:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[11:31:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: changeoutput [1.2.2]
[11:31:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: worldguard [1.4.2]
[11:31:34] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion randomizer due to a missing plugin: Randomizer
[11:31:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[11:31:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[11:31:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: world [1.2.2]
[11:31:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: randomcolor [1.2.0]
[11:31:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.7.3]
[11:31:34] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playertime due to a missing plugin: PlayerTime
[11:31:34] [Server thread/INFO]: 12 placeholder hook(s) registered!
[11:31:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultimaterewards [2.10.1]
[11:31:34] [Server thread/INFO]: Done (82.096s)! For help, type "help"
[11:31:34] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2542ms or 50 ticks behind
[11:31:34] [Server thread/INFO]: [eco] Loaded eco
[11:31:34] [Server thread/INFO]: [EcoBits] Loaded EcoBits
[11:31:34] [Craft Scheduler Thread - 58 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[11:31:34] [Server thread/INFO]: [EcoEnchants] Loaded EcoEnchants
[11:31:34] [Server thread/WARN]: Default tier specified in celeste_armor elytra is invalid! Defaulting to 'default'
[11:31:34] [Server thread/WARN]: Default tier specified in celeste_armor elytra is invalid! Defaulting to 'default'
[11:31:34] [Server thread/WARN]: [PlaceholderAPI] [math] Invalid Placeholder detected!
[11:31:34] [Server thread/WARN]: [PlaceholderAPI] [math] Placeholder: %math_0:1_min(max({aurora_collections_mining_emerald_count_raw} / 3000, 0), 350)%
[11:31:34] [Server thread/WARN]: [PlaceholderAPI] [math] Cause:       'min(max({aurora_collections_mining_emerald_count_raw} / 3000, 0), 350)' is not a valid Math expression.
[11:31:34] [Server thread/ERROR]: [EcoArmor] 
[11:31:34] [Server thread/ERROR]: [EcoArmor] Invalid configuration found at Armor Set rotten_armor_f1) -> helmet:
[11:31:34] [Server thread/ERROR]: [EcoArmor] (Cause) Argument 'triggers'
[11:31:34] [Server thread/ERROR]: [EcoArmor] (Reason) Triggers are not allowed on permanent effects: knockback_resistance_multiplier!
[11:31:34] [Server thread/ERROR]: [EcoArmor] 
[11:31:34] [Server thread/ERROR]: [EcoArmor] 
[11:31:34] [Server thread/ERROR]: [EcoArmor] Invalid configuration found at Armor Set rotten_armor_master_f2:
[11:31:34] [Server thread/ERROR]: [EcoArmor] (Cause) Argument 'triggers'
[11:31:34] [Server thread/ERROR]: [EcoArmor] (Reason) Triggers are not allowed on permanent effects: knockback_resistance_multiplier!
[11:31:34] [Server thread/ERROR]: [EcoArmor] 
[11:31:34] [Server thread/ERROR]: [EcoArmor] 
[11:31:34] [Server thread/ERROR]: [EcoArmor] Invalid configuration found at Armor Set rotten_armor_master_f2) -> helmet:
[11:31:34] [Server thread/ERROR]: [EcoArmor] (Cause) Argument 'triggers'
[11:31:34] [Server thread/ERROR]: [EcoArmor] (Reason) Triggers are not allowed on permanent effects: knockback_resistance_multiplier!
[11:31:34] [Server thread/ERROR]: [EcoArmor] 
[11:31:34] [Server thread/ERROR]: [EcoArmor] 
[11:31:34] [Server thread/ERROR]: [EcoArmor] Invalid configuration found at Armor Set rotten_armor_master_f2) -> chestplate:
[11:31:34] [Server thread/ERROR]: [EcoArmor] (Cause) Argument 'triggers'
[11:31:34] [Server thread/ERROR]: [EcoArmor] (Reason) Triggers are not allowed on permanent effects: knockback_resistance_multiplier!
[11:31:34] [Server thread/ERROR]: [EcoArmor] 
[11:31:34] [Server thread/ERROR]: [EcoArmor] 
[11:31:34] [Server thread/ERROR]: [EcoArmor] Invalid configuration found at Armor Set rotten_armor_master_f2) -> leggings:
[11:31:34] [Server thread/ERROR]: [EcoArmor] (Cause) Argument 'triggers'
[11:31:34] [Server thread/ERROR]: [EcoArmor] (Reason) Triggers are not allowed on permanent effects: knockback_resistance_multiplier!
[11:31:34] [Server thread/ERROR]: [EcoArmor] 
[11:31:34] [Server thread/ERROR]: [EcoArmor] 
[11:31:34] [Server thread/ERROR]: [EcoArmor] Invalid configuration found at Armor Set rotten_armor_master_f2) -> boots:
[11:31:34] [Server thread/ERROR]: [EcoArmor] (Cause) Argument 'triggers'
[11:31:34] [Server thread/ERROR]: [EcoArmor] (Reason) Triggers are not allowed on permanent effects: knockback_resistance_multiplier!
[11:31:34] [Server thread/ERROR]: [EcoArmor] 
[11:31:34] [Server thread/ERROR]: [EcoArmor] 
[11:31:34] [Server thread/ERROR]: [EcoArmor] Invalid configuration found at Armor Set spider_hat) -> helmet:
[11:31:34] [Server thread/ERROR]: [EcoArmor] (Cause) Argument 'triggers'
[11:31:34] [Server thread/ERROR]: [EcoArmor] (Reason) damage_multiplier does not support trigger entity_damage_by_entity
[11:31:34] [Server thread/ERROR]: [EcoArmor] 
[11:31:34] [Server thread/WARN]: [EcoArmor] 
[11:31:34] [Server thread/WARN]: [EcoArmor] Warning at Armor Set squid_hat) -> helmet:
[11:31:34] [Server thread/WARN]: [EcoArmor] (Cause) Argument 'id'
[11:31:34] [Server thread/WARN]: [EcoArmor] (Reason) Effect drop_random_item_for_player is deprecated: Use drop_random_item instead. It will be removed in the future.
[11:31:34] [Server thread/WARN]: [EcoArmor] 
[11:31:34] [Server thread/INFO]: [EcoArmor] Loaded EcoArmor
[11:31:34] [Server thread/INFO]: [EcoSkills] Loaded EcoSkills
[11:31:34] [Server thread/INFO]: [EcoJobs] Loaded EcoJobs
[11:31:34] [Server thread/INFO]: [EcoPets] Loaded EcoPets
[11:31:35] [Server thread/INFO]: [Workstations] Loaded Workstations
[11:31:35] [Server thread/INFO]: [Actions] Loaded Actions
[11:31:35] [Server thread/INFO]: [EcoScrolls] Loaded EcoScrolls
[11:31:35] [Server thread/INFO]: [EcoMenus] Loaded EcoMenus
[11:31:35] [Server thread/INFO]: [RPGDrops] Loaded 2 drops
[11:31:35] [Server thread/INFO]: [RPGDrops] Loaded RPGDrops
[11:31:35] [Server thread/INFO]: [BreakControl] Loaded BreakControl
[11:31:35] [Server thread/ERROR]: [Reforges] 
[11:31:35] [Server thread/ERROR]: [Reforges] Invalid configuration found at Reforge guardian:
[11:31:35] [Server thread/ERROR]: [Reforges] (Cause) Argument 'triggers'
[11:31:35] [Server thread/ERROR]: [Reforges] (Reason) You must specify at least one trigger for triggered effects: item_durability_multiplier!
[11:31:35] [Server thread/ERROR]: [Reforges] 
[11:31:35] [Server thread/INFO]: [Reforges] Loaded Reforges
[11:31:35] [Server thread/WARN]: [Talismans] Crafting recipe talismans:blaze_belt consists only
[11:31:35] [Server thread/WARN]: [Talismans] of air or invalid items! It will not be registered.
[11:31:35] [Server thread/ERROR]: [Talismans] 
[11:31:35] [Server thread/ERROR]: [Talismans] Invalid configuration found at Talisman medallonsentinela:
[11:31:35] [Server thread/ERROR]: [Talismans] (Cause) Argument 'triggers'
[11:31:35] [Server thread/ERROR]: [Talismans] (Reason) You must specify at least one trigger for triggered effects: damage_multiplier!
[11:31:35] [Server thread/ERROR]: [Talismans] 
[11:31:35] [Server thread/INFO]: [Talismans] Loaded Talismans
[11:31:35] [Server thread/INFO]: [ColoredArmors] Loaded ColoredArmors
[11:31:35] [Server thread/INFO]: [libreforge] Loaded libreforge
[11:31:35] [Server thread/INFO]: [UltimateClans] Start moderation loader...
[11:31:35] [Server thread/INFO]: [UltimateClans] Loaded 1 moderations(s).
[11:31:35] [Server thread/INFO]: [AdvancedChat] Successfully hooked into ProtocolLib, PlaceholderAPI, Vault, LuckPerms, ViaVersion.
[11:31:35] [Craft Scheduler Thread - 54 - BetterProfiles/INFO]: [BetterProfiles] Checking for updates...
[11:31:35] [Craft Scheduler Thread - 54 - BetterProfiles/INFO]: [BetterProfiles] New version available: 1.6-BETA
[11:31:35] [Craft Scheduler Thread - 54 - BetterProfiles/INFO]: [BetterProfiles] Please download the latest version to get support!
[11:31:35] [Craft Scheduler Thread - 54 - BetterProfiles/INFO]: [BetterProfiles] Download: https://www.spigotmc.org/resources/83529/
[11:31:35] [Server thread/ERROR]: [UltraRegions] Failed to register events for class com.lucifer.addon.EcoSkills because com/willfp/ecoskills/api/PlayerSkillExpGainEvent does not exist.
[11:31:35] [Craft Scheduler Thread - 28 - DeluxeCombat/INFO]: [DeluxeCombat] Checking for new updates...
[11:31:35] [Craft Scheduler Thread - 28 - DeluxeCombat/INFO]: [DeluxeCombat] New version v.1.70.3 is out!. You're still on: v.1.70.2
[11:31:35] [Craft Scheduler Thread - 28 - DeluxeCombat/INFO]: [DeluxeCombat] Update at: https://www.spigotmc.org/resources/63970/
[11:31:35] [Server thread/INFO]: [MythicMobs] Loading ProtocolLib listeners...
[11:31:36] [Server thread/INFO]: [AxAuctions] Hooked into Vault!
[11:31:36] [Server thread/INFO]: [AxAuctions] Hooked into EcoBits!
[11:31:36] [Craft Scheduler Thread - 4 - Iris/INFO]: [Iris]: Checking Data Packs...
[11:31:36] [Craft Scheduler Thread - 29 - AlonsoTags/INFO]: [AlonsoTags] Checking for updates...
[11:31:36] [Craft Scheduler Thread - 29 - AlonsoTags/INFO]: [AlonsoTags] Plugin up-to-date! You have the latest version!
[11:31:36] [Server thread/WARN]: [WorldGuard-TitleX] Failed to register WorldGuard session handler: Cannot invoke "java.lang.Class.getName()" because the return value of "java.lang.Class.getEnclosingClass()" is null
[11:31:36] [Server thread/INFO]: [WorldGuard-TitleX] Region listener events registered successfully!
[11:31:36] [Server thread/INFO]: AuroraCrafting | -------------------------------------------
[11:31:36] [Server thread/INFO]: AuroraCrafting | Recipe book structure:
[11:31:36] [Server thread/INFO]: AuroraCrafting |   root
[11:31:36] [Server thread/INFO]: AuroraCrafting |     drops
[11:31:36] [Server thread/INFO]: AuroraCrafting |     talismanes
[11:31:36] [Server thread/INFO]: AuroraCrafting |     pesca
[11:31:36] [Server thread/INFO]: AuroraCrafting |     mineria
[11:31:36] [Server thread/INFO]: AuroraCrafting |     agricultura
[11:31:36] [Server thread/INFO]: AuroraCrafting |     carpinteria
[11:31:36] [Server thread/INFO]: AuroraCrafting | -------------------------------------------
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:blaze_powder_compress in recipe: fire_talisman
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:blaze_powder_compress in recipe: fire_talisman
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:blaze_powder_compress in recipe: fire_talisman
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:blaze_powder_compress in recipe: fire_talisman
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:blaze_powder_compress in recipe: fire_talisman
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:blaze_powder_compress in recipe: fire_talisman
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:blaze_powder_compress in recipe: fire_talisman
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:blaze_powder_compress in recipe: fire_talisman
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:blaze_powder_compress in recipe: fire_talisman
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint fire_talisman: Duplicate recipe ID, skipping... Source: aurora/talismanes other sources: [aurora/talismanes, aurora/talismanes]
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:brownmush_compress in recipe: brownmushroom_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint brownmushroom_compress in source: aurora/agricultura, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:brownmush_compress in recipe: brownmush_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:brownmush_compress in recipe: brownmush_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:brownmush_compress in recipe: brownmush_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:brownmush_compress in recipe: brownmush_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:brownmush_compress in recipe: brownmush_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:brownmush_block_compress in recipe: brownmush_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint brownmush_block_compress in source: aurora/agricultura, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:cactus_compress in recipe: cactus_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint cactus_compress in source: aurora/agricultura, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:carrot_compress in recipe: carrot_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint carrot_compress in source: aurora/agricultura, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:carrot_compress in recipe: carrot_golden_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:carrot_compress in recipe: carrot_golden_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:gold_compress in recipe: carrot_golden_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:carrot_compress in recipe: carrot_golden_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:carrot_compress in recipe: carrot_golden_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:carrot_golden_compress in recipe: carrot_golden_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint carrot_golden_compress in source: aurora/agricultura, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:cocoa_compress in recipe: cocoa_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint cocoa_compress in source: aurora/agricultura, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:cocoa_compress in recipe: cookie_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:cocoa_compress in recipe: cookie_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:hay_compress in recipe: cookie_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:cocoa_compress in recipe: cookie_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:cocoa_compress in recipe: cookie_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:cookie_compress in recipe: cookie_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint cookie_compress in source: aurora/agricultura, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:hay_compress in recipe: hay_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint hay_compress in source: aurora/agricultura, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:hay_compress in recipe: hay_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:hay_compress in recipe: hay_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:hay_compress in recipe: hay_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:hay_compress in recipe: hay_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:hay_compress in recipe: hay_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:hay_block_compress in recipe: hay_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint hay_block_compress in source: aurora/agricultura, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:melon_compress in recipe: melon_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint melon_compress in source: aurora/agricultura, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:melon_compress in recipe: melon_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:melon_compress in recipe: melon_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:melon_compress in recipe: melon_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:melon_compress in recipe: melon_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:melon_compress in recipe: melon_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:melon_block_compress in recipe: melon_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint melon_block_compress in source: aurora/agricultura, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:netherwart_compress in recipe: netherwart_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint netherwart_compress in source: aurora/agricultura, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:netherwart_compress in recipe: netherwart_mutant_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:netherwart_compress in recipe: netherwart_mutant_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:netherwart_compress in recipe: netherwart_mutant_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:netherwart_compress in recipe: netherwart_mutant_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:netherwart_compress in recipe: netherwart_mutant_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:netherwart_mutant_compress in recipe: netherwart_mutant_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint netherwart_mutant_compress in source: aurora/agricultura, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:potato_compress in recipe: potato_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint potato_compress in source: aurora/agricultura, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:potato_compress in recipe: potato_baked_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:potato_compress in recipe: potato_baked_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:potato_compress in recipe: potato_baked_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:potato_compress in recipe: potato_baked_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:potato_compress in recipe: potato_baked_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:potato_baked_compress in recipe: potato_baked_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint potato_baked_compress in source: aurora/agricultura, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:pumpkin_compress in recipe: pumpkin_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint pumpkin_compress in source: aurora/agricultura, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:pumpkin_compress in recipe: pumpkin_pulished_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:pumpkin_compress in recipe: pumpkin_pulished_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:pumpkin_compress in recipe: pumpkin_pulished_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:pumpkin_compress in recipe: pumpkin_pulished_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:pumpkin_compress in recipe: pumpkin_pulished_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:pumpkin_pulished_compress in recipe: pumpkin_pulished_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint pumpkin_pulished_compress in source: aurora/agricultura, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:redmush_compress in recipe: redmush_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint redmush_compress in source: aurora/agricultura, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:redmush_compress in recipe: redmush_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:redmush_compress in recipe: redmush_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:redmush_compress in recipe: redmush_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:redmush_compress in recipe: redmush_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:redmush_compress in recipe: redmush_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:redmush_block_compress in recipe: redmush_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint redmush_block_compress in source: aurora/agricultura, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:seeds_compress in recipe: seeds_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint seeds_compress in source: aurora/agricultura, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:seeds_compress in recipe: seeds_box_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:seeds_compress in recipe: seeds_box_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:seeds_compress in recipe: seeds_box_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:seeds_compress in recipe: seeds_box_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:seeds_compress in recipe: seeds_box_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:seeds_box_compress in recipe: seeds_box_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint seeds_box_compress in source: aurora/agricultura, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:sugarcane_compress in recipe: sugarcane_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint sugarcane_compress in source: aurora/agricultura, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:sugarcane_compress in recipe: sugarcane_sugar_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:sugarcane_compress in recipe: sugarcane_sugar_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:sugarcane_compress in recipe: sugarcane_sugar_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:sugarcane_compress in recipe: sugarcane_sugar_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:sugarcane_compress in recipe: sugarcane_sugar_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:sugarcane_sugar_compress in recipe: sugarcane_sugar_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint sugarcane_sugar_compress in source: aurora/agricultura, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:sugarcane_compress in recipe: paper_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:sugarcane_compress in recipe: paper_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:sugarcane_compress in recipe: paper_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:paper_compress in recipe: paper_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint paper_compress in source: aurora/agricultura, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:coal_compress in recipe: coal_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint coal_compress in source: aurora/mineria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:coal_compress in recipe: coal_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:coal_compress in recipe: coal_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:coal_compress in recipe: coal_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:coal_compress in recipe: coal_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:coal_compress in recipe: coal_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:coal_block_compress in recipe: coal_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint coal_block_compress in source: aurora/mineria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:diamond_compress in recipe: diamond_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint diamond_compress in source: aurora/mineria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:diamond_compress in recipe: diamond_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:diamond_compress in recipe: diamond_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:diamond_compress in recipe: diamond_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:diamond_compress in recipe: diamond_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:diamond_compress in recipe: diamond_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:diamond_block_compress in recipe: diamond_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint diamond_block_compress in source: aurora/mineria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:emerald_compress in recipe: emerald_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint emerald_compress in source: aurora/mineria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:emerald_compress in recipe: emerald_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:emerald_compress in recipe: emerald_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:emerald_compress in recipe: emerald_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:emerald_compress in recipe: emerald_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:emerald_compress in recipe: emerald_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:emerald_block_compress in recipe: emerald_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint emerald_block_compress in source: aurora/mineria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: Aurora | Failed to resolve item: minecraft:endstone using AIR instead.
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: minecraft:endstone in recipe: endstone_compress
[11:31:36] [Server thread/INFO]: Aurora | Failed to resolve item: minecraft:endstone using AIR instead.
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: minecraft:endstone in recipe: endstone_compress
[11:31:36] [Server thread/INFO]: Aurora | Failed to resolve item: minecraft:endstone using AIR instead.
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: minecraft:endstone in recipe: endstone_compress
[11:31:36] [Server thread/INFO]: Aurora | Failed to resolve item: minecraft:endstone using AIR instead.
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: minecraft:endstone in recipe: endstone_compress
[11:31:36] [Server thread/INFO]: Aurora | Failed to resolve item: minecraft:endstone using AIR instead.
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: minecraft:endstone in recipe: endstone_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:endstone_compress in recipe: endstone_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint endstone_compress in source: aurora/mineria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:endstone_compress in recipe: endstone_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:endstone_compress in recipe: endstone_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:endstone_compress in recipe: endstone_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:endstone_compress in recipe: endstone_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:endstone_compress in recipe: endstone_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:endstone_block_compress in recipe: endstone_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint endstone_block_compress in source: aurora/mineria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:glowstone_powder_compress in recipe: glowstone_powder_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint glowstone_powder_compress in source: aurora/mineria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:glowstone_powder_compress in recipe: glowstone_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:glowstone_powder_compress in recipe: glowstone_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:glowstone_powder_compress in recipe: glowstone_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:glowstone_powder_compress in recipe: glowstone_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:glowstone_powder_compress in recipe: glowstone_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:glowstone_block_compress in recipe: glowstone_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint glowstone_block_compress in source: aurora/mineria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:gold_compress in recipe: gold_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint gold_compress in source: aurora/mineria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:gold_compress in recipe: gold_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:gold_compress in recipe: gold_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:gold_compress in recipe: gold_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:gold_compress in recipe: gold_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:gold_compress in recipe: gold_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:gold_block_compress in recipe: gold_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint gold_block_compress in source: aurora/mineria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:flint_compress in recipe: flint_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint flint_compress in source: aurora/mineria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:flint_compress in recipe: gravel_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:flint_compress in recipe: gravel_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:flint_compress in recipe: gravel_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:flint_compress in recipe: gravel_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:flint_compress in recipe: gravel_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:gravel_block_compress in recipe: gravel_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint gravel_block_compress in source: aurora/mineria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:ice_compress in recipe: ice_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint ice_compress in source: aurora/mineria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:ice_compress in recipe: ice_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:ice_compress in recipe: ice_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:ice_compress in recipe: ice_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:ice_compress in recipe: ice_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:ice_compress in recipe: ice_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:ice_block_compress in recipe: ice_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint ice_block_compress in source: aurora/mineria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:iron_compress in recipe: iron_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint iron_compress in source: aurora/mineria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:iron_compress in recipe: iron_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:iron_compress in recipe: iron_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:iron_compress in recipe: iron_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:iron_compress in recipe: iron_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:iron_compress in recipe: iron_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:iron_block_compress in recipe: iron_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint iron_block_compress in source: aurora/mineria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:lapis_compress in recipe: lapis_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint lapis_compress in source: aurora/mineria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:lapis_compress in recipe: lapis_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:lapis_compress in recipe: lapis_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:lapis_compress in recipe: lapis_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:lapis_compress in recipe: lapis_block_compress
[11:31:36] [Craft Scheduler Thread - 4 - Iris/INFO]: [Iris]: Data Packs Setup!
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:lapis_compress in recipe: lapis_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:lapis_block_compress in recipe: lapis_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint lapis_block_compress in source: aurora/mineria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:mycelium_compress in recipe: mycelium_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint mycelium_compress in source: aurora/mineria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:netherrack_compress in recipe: netherrack_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint netherrack_compress in source: aurora/mineria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:netherrack_compress in recipe: netherrack_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:netherrack_compress in recipe: netherrack_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:netherrack_compress in recipe: netherrack_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:netherrack_compress in recipe: netherrack_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:netherrack_compress in recipe: netherrack_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:netherrack_block_compress in recipe: netherrack_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint netherrack_block_compress in source: aurora/mineria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:obsidiana_compress in recipe: obsidiana_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint obsidiana_compress in source: aurora/mineria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:obsidiana_compress in recipe: obsidiana_crying_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:obsidiana_compress in recipe: obsidiana_crying_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:obsidiana_compress in recipe: obsidiana_crying_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:obsidiana_compress in recipe: obsidiana_crying_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:obsidiana_compress in recipe: obsidiana_crying_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:obsidiana_crying_compress in recipe: obsidiana_crying_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint obsidiana_crying_compress in source: aurora/mineria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:quartz_compress in recipe: quartz_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint quartz_compress in source: aurora/mineria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:quartz_compress in recipe: quartz_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:quartz_compress in recipe: quartz_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:quartz_compress in recipe: quartz_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:quartz_compress in recipe: quartz_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:quartz_compress in recipe: quartz_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:quartz_block_compress in recipe: quartz_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint quartz_block_compress in source: aurora/mineria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:red_sand_compress in recipe: red_sand_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint red_sand_compress in source: aurora/mineria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:red_sand_compress in recipe: red_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:red_sand_compress in recipe: red_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:red_sand_compress in recipe: red_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:red_sand_compress in recipe: red_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:red_sand_compress in recipe: red_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:red_block_compress in recipe: red_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint red_block_compress in source: aurora/mineria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:redstone_dust_compress in recipe: redstone_dust_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint redstone_dust_compress in source: aurora/mineria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:redstone_dust_compress in recipe: redstone_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:redstone_block_compress in recipe: redstone_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:redstone_block_compress in recipe: redstone_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:redstone_block_compress in recipe: redstone_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:redstone_block_compress in recipe: redstone_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:redstone_block_compress in recipe: redstone_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint redstone_block_compress in source: aurora/mineria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:sand_compress in recipe: sand_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint sand_compress in source: aurora/mineria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:sand_compress in recipe: sand_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:sand_compress in recipe: sand_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:sand_compress in recipe: sand_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:sand_compress in recipe: sand_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:sand_compress in recipe: sand_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:sand_block_compress in recipe: sand_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint sand_block_compress in source: aurora/mineria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:birch_compress in recipe: birch_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint birch_compress in source: aurora/carpinteria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:cherry_compress in recipe: cherry_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint cherry_compress in source: aurora/carpinteria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:dark_oak_compress in recipe: dark_oak_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint dark_oak_compress in source: aurora/carpinteria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:jungle_compress in recipe: jungle_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint jungle_compress in source: aurora/carpinteria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:mangle_compress in recipe: mangle_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint mangle_compress in source: aurora/carpinteria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:oak_compress in recipe: oak_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint oak_compress in source: aurora/carpinteria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:spruce_compress in recipe: spruce_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint spruce_compress in source: aurora/carpinteria, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:blaze_powder_compress in recipe: blaze_powder_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint blaze_powder_compress in source: aurora/drops, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:blaze_powder_compress in recipe: blaze_rod_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:blaze_powder_compress in recipe: blaze_rod_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:blaze_powder_compress in recipe: blaze_rod_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:blaze_powder_compress in recipe: blaze_rod_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:blaze_powder_compress in recipe: blaze_rod_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:blaze_rod_compress in recipe: blaze_rod_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint blaze_rod_compress in source: aurora/drops, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:bone_compress in recipe: bone_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint bone_compress in source: aurora/drops, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:bone_compress in recipe: bone_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:bone_compress in recipe: bone_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:bone_compress in recipe: bone_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:bone_compress in recipe: bone_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:bone_compress in recipe: bone_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:bone_block_compress in recipe: bone_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint bone_block_compress in source: aurora/drops, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:enderpearl_compress in recipe: enderpearl_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint enderpearl_compress in source: aurora/drops, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:blaze_powder_compress in recipe: endereye_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:blaze_powder_compress in recipe: endereye_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:enderpearl_compress in recipe: endereye_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:blaze_powder_compress in recipe: endereye_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:blaze_powder_compress in recipe: endereye_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:endereye_compress in recipe: endereye_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint endereye_compress in source: aurora/drops, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:ghast_tear_compress in recipe: ghast_tear_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint ghast_tear_compress in source: aurora/drops, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:gunpowder_compress in recipe: gunpowder_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint gunpowder_compress in source: aurora/drops, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:gunpowder_compress in recipe: tnt_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:sand_compress in recipe: tnt_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:gunpowder_compress in recipe: tnt_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:sand_compress in recipe: tnt_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:gunpowder_compress in recipe: tnt_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:sand_compress in recipe: tnt_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:gunpowder_compress in recipe: tnt_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:sand_compress in recipe: tnt_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:gunpowder_compress in recipe: tnt_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:tnt_compress in recipe: tnt_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint tnt_compress in source: aurora/drops, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:slime_compress in recipe: slime_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint slime_compress in source: aurora/drops, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:slime_compress in recipe: slime_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:slime_compress in recipe: slime_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:slime_compress in recipe: slime_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:slime_compress in recipe: slime_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:slime_compress in recipe: slime_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:slime_block_compress in recipe: slime_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint slime_block_compress in source: aurora/drops, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:blaze_powder_compress in recipe: magma_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:slime_compress in recipe: magma_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:magma_compress in recipe: magma_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint magma_compress in source: aurora/drops, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:magma_compress in recipe: magma_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:magma_compress in recipe: magma_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:magma_compress in recipe: magma_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:magma_compress in recipe: magma_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:magma_compress in recipe: magma_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Can't validate item id: eco:ecoitems:magma_block_compress in recipe: magma_block_compress
[11:31:36] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint magma_block_compress in source: aurora/drops, reason: Invalid item ID: minecraft:air
[11:31:36] [Server thread/INFO]: AuroraCrafting | Registered 2 recipes for workbench: default
[11:31:36] [Server thread/INFO]: AuroraCrafting | Registered 1 recipes for workbench: vanilla-smoker
[11:31:36] [Server thread/INFO]: AuroraCrafting | Registered 1 recipes for workbench: vanilla-smithing-table
[11:31:36] [Server thread/INFO]: AuroraCrafting | Registered 1 recipes for workbench: vanilla-crafting-table
[11:31:36] [Server thread/INFO]: AuroraCrafting | Registered 1 recipes for workbench: vanilla-blast-furnace
[11:31:36] [Server thread/INFO]: AuroraCrafting | Registered 1 recipes for workbench: vanilla-campfire
[11:31:36] [Server thread/INFO]: AuroraCrafting | Registered 1 recipes for workbench: vanilla-stone-cutter
[11:31:36] [Server thread/INFO]: AuroraCrafting | Registered 1 recipes for workbench: vanilla-furnace
[11:31:37] [Server thread/INFO]: [WorldGuard-TitleX] Configured regions: [example_region, spawn, pvp_arena]
[11:31:37] [Server thread/INFO]: [AlonsoTags] [Scheduled] Loading economy hooks..
[11:31:37] [Server thread/INFO]: [AlonsoTags] No vault hooks queued to be registered. Skipping..
[11:31:39] [Craft Scheduler Thread - 7 - MythicMobs/INFO]: [Generation] Starting Pack Generator...
[11:31:39] [Server thread/INFO]: [UltimateClans] Additional hooks...
[11:31:41] [Server thread/INFO]: [DeluxeCombat] Hooked into UltimateClans, MMOItems, packetevents, PlaceholderAPI, Citizens, ProtectionStones, BetterRTP, Vault and Vault.
[11:31:41] [Craft Scheduler Thread - 7 - MythicMobs/INFO]: [Generation] Generating Custom Blocks...
[11:31:41] [Craft Scheduler Thread - 7 - MythicMobs/INFO]: [Generation] Generating Items...
[11:31:41] [Craft Scheduler Thread - 7 - MythicMobs/INFO]: [Generation] Assigning Legacy CMD Materials...
[11:31:41] [Craft Scheduler Thread - 7 - MythicMobs/INFO]: [Generation] Generating Legacy Definitions...
[11:31:41] [Craft Scheduler Thread - 7 - MythicMobs/INFO]: [Generation] Generating Sounds...
[11:31:41] [Craft Scheduler Thread - 7 - MythicMobs/INFO]: [Generation] Linking Custom Blocks...
[11:31:41] [Craft Scheduler Thread - 7 - MythicMobs/INFO]: [Generation] Generating Atlas...
[11:31:41] [Craft Scheduler Thread - 7 - MythicMobs/INFO]: [Generation] Zipping Pack...
[11:31:42] [Craft Scheduler Thread - 7 - MythicMobs/INFO]: [Generation] Generation Completed in 2771ms
[11:31:43] [Server thread/INFO]: [UltimateShop] Auto saving data...
[11:31:43] [Server thread/INFO]: [UltimateShop] If this lead to server TPS drop, you should consider disable auto save feature at config.yml!
[11:31:43] [Server thread/INFO]: ℹ Server Plugins (107):
[11:31:43] [Server thread/INFO]: Paper Plugins (6):
[11:31:43] [Server thread/INFO]:  - AdvancedKits, ColoredArmors, EcoBits, EcoMenus, MarriageMaster, RPGDrops
[11:31:43] [Server thread/INFO]: Bukkit Plugins (101):
[11:31:43] [Server thread/INFO]:  - 40ServidoresMC, Actions, AdvancedChat, AlonsoTags, *asCMD, Aurora, AuroraCollections, AuroraCrafting, AuroraLevels, AxAuctions
[11:31:43] [Server thread/INFO]:  AxBoosters, AxDarkAuctions, AxKoth, BeautyQuests, BetterProfiles, BetterRTP, BetterRTPAddons, BlockEffects, BreakControl, ChatGames-Premium
[11:31:43] [Server thread/INFO]:  Chunky, Citizens, CMILib, Codex, DecentHolograms, DeluxeCombat, DeluxeMenus, DropGuard, EasyArmorStands, eco
[11:31:43] [Server thread/INFO]:  EcoArmor, EcoEnchants, EcoItems, EcoJobs, EcoPets, EcoPets-Addon, EcoScrolls, EcoSkills, EnchantmentDisabler, EnchantmentSlots
[11:31:43] [Server thread/INFO]:  Essentials, EssentialsChat, EssentialsProtect, EssentialsSpawn, ExploitFixer, FastAsyncWorldEdit, floodgate, HamsterAPI, HeadDatabase, IllegalStack
[11:31:43] [Server thread/INFO]:  Interactions, InteractiveChat, InventoryRollbackPlus, Iris, ItemEdit, ItsMyConfig, JPremium, LevelledMobs, libreforge, LiteBans
[11:31:43] [Server thread/INFO]:  LuckPerms, MMOItems, MythicChanger, MythicCrucible, MythicLib, MythicMobs, MythicMobsGUI, NBTAPI, nightcore, packetevents
[11:31:43] [Server thread/INFO]:  PlaceholderAPI, PlayerVaults, ProtectionStones, ProtocolLib, PSMenu, Reforges, RoyaleEconomy, SelectionVisualizer, Shopkeepers, SimpleBlockRegen
[11:31:43] [Server thread/INFO]:  SpawnerLegacy, TAB, Talismans, Tebex, TimedTopper, ToastedAFK, Topper, Ultimate_BlockRegeneration, UltimateClans, UltimateRewards
[11:31:43] [Server thread/INFO]:  UltimateShop, UltimateShopEditor, UltraRegions, Vault, ViaBackwards, ViaVersion, Workstations, WorldGuard, WorldGuard-TitleX, WorldGuardExtraFlags
[11:31:43] [Server thread/INFO]:  WorldGuardRegionProtect
[11:36:43] [Server thread/INFO]: [UltimateShop] Auto saving data...
[11:36:43] [Server thread/INFO]: [UltimateShop] If this lead to server TPS drop, you should consider disable auto save feature at config.yml!
[11:41:43] [Server thread/INFO]: [UltimateShop] Auto saving data...
[11:41:43] [Server thread/INFO]: [UltimateShop] If this lead to server TPS drop, you should consider disable auto save feature at config.yml!
[11:42:30] [Craft Scheduler Thread - 32 - LiteBans/INFO]: [LiteBans] A plugin update is available! Your version: 2.16.1, latest version: 2.16.5
[11:42:30] [Craft Scheduler Thread - 32 - LiteBans/INFO]: [LiteBans] Updates can be downloaded from here:
[11:42:30] [Craft Scheduler Thread - 32 - LiteBans/INFO]: [LiteBans] https://www.spigotmc.org/resources/litebans.3715/