Paste #126318: James_Bachs Logs

Date: 2024/09/06 03:55:45 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


[12:31:31] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.3+9-LTS; Amazon.com Inc. Corretto-21.0.3.9.1) on Linux 6.1.0-11-amd64 (amd64)
[12:31:31] [ServerMain/INFO]: [bootstrap] Loading Purpur 1.21.1-2301-ver/1.21.1@a43711d (2024-09-03T05:59:31Z) for Minecraft 1.21.1
[12:31:32] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[12:31:33] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Remapping plugin 'plugins/Citizens.jar'...
[12:31:35] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Done remapping plugin 'plugins/Citizens.jar' in 2241ms.
[12:31:37] [ServerMain/INFO]: [PluginInitializerManager] Initialized 101 plugins
[12:31:37] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (3):
 - HuskHomes (4.5.4), HuskSync (3.6.8), TempFly (1.3.6)
[12:31:37] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (98):
 - AdvancedChests (40.9), AdvancedEnderchest (1.2.0-Migration-Update), AdvancedRegionMarket (3.5.3), AdventureBackpacks (1.0.4-Release), AngelChest (13.6.1), AntiPopup (9.2), AnvilEnhanced (1.6.2), ArmShopBridge (1.3.0), AutoShulker (3.5.2), AxShulkers (1.5.4), BackToBlock (3.0.1), BeaconPlus3 (3.0.77), BetterFarming (5.9.2), BlockImpact (3.0.0), BottledExp (3.2.2.3), CMI (9.7.6.0), CMILib (1.5.1.3), ChatControlRed (10.27.9), ChestProtect (5.18.4), Citizens (2.0.35-SNAPSHOT (build 3545)), CommandPanels (3.21.4.1), ContainerPassthrough (1.2.2), CoreProtect (22.2), Coupon (1.2.0), CreativeManager (1.35.10), CustomCrafting (4.17-beta.5), DisableJoinMessage (1.0), DiscordSRV (1.28.1-SNAPSHOT), EcoJobs (3.69.6), Elevator (3.13.0), Ersatz (1.0), ExcellentCrates (5.3.2), FastAsyncWorldEdit (2.11.2-SNAPSHOT-889;f5f9ae6), FileCleaner (s2.1.1), Furnish (0.4), HeadDatabase (4.20.0), HopperSorter (2.6.57), HuskHomesGUI (2.3), InteractiveBoard (2.1.0), InventorySaver (3.8.3-VERSION-1.20), JSEngine (3.1.1), JetsAntiAFKPro (3.7.1), JetsMinions (7.10.10), LeaderOS (1.1.5), LiteBans (2.15.1), LuckPerms (5.4.117), LumberJack (5.3.0), Mclogs (2.3.1), MobsToEggs (1.7.13), NBTAPI (2.13.2), NetworkManager (2.16.4), NexEngine (2.2.12), Oraxen (1.181.0), PlaceholderAPI (2.11.6), PluginVersions (1.3.3), PremiumVanish (2.9.14), ProtocolLib (5.3.0-SNAPSHOT-726), QuickShop-Hikari (6.2.0.7), RecyclerPlus (1.3.7), ReferralSystem (3.3.0), RentIt-Worlds (1.6.1), RoyaleEconomy (2.3.9.6), SCore (42.42.42), ServerNPC (1.17.4-RELEASE-b1), ServerSaver (1.0), Shopkeepers (2.23.0), SkBee (3.6.1), SkQuery (4.1.10), Skellett (2.0.10), Skript (2.9.1), SoundMuffler (1.0.0), SurvivalInvisiframes (2.1.0), TAB (4.1.5), TAB-Bridge (5.0.6), TheCore (2.7.0), Tooltips (1.7.1), Triton (4.0.0-SNAPSHOT), TuneBlock (1.0), UltimateAutoRestart (2024.07), UltimateRewards (2.2.0), UltraScoreboards (1.5.2), Vault (1.7.3-b${env.TRAVIS_BUILD_NUMBER}), VendingMachines (1.5.9), VillagerBank (1.5.3), VillagerMarket (1.12.0), VotingPlugin (6.17.1), Vulcan (2.9.0), WildChests (2024.3-b57), WolfyUtilities (4.17-beta.7), WorldGuard (7.0.11-beta1+a801a9d), WorldGuardExtraFlags (4.2.1), eco (6.74.1), mcMMO (2.1.226), nightcore (2.6.3), skRayFall (1.9.28), skript-gui (1.3), voicechat (2.5.20), xaero-map-spigot (1.0.0)
[12:31:44] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[12:31:46] [ServerMain/INFO]: Loaded 1290 recipes
[12:31:47] [ServerMain/INFO]: Loaded 1399 advancements
[12:31:47] [Server thread/INFO]: Starting minecraft server version 1.21.1
[12:31:47] [Server thread/INFO]: Loading properties
[12:31:47] [Server thread/INFO]: This server is running Purpur version 1.21.1-2301-ver/1.21.1@a43711d (2024-09-03T05:59:31Z) (Implementing API version 1.21.1-R0.1-SNAPSHOT)
[12:31:48] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[12:31:49] [Server thread/INFO]: Server Ping Player Sample Count: 12
[12:31:49] [Server thread/INFO]: Using 4 threads for Netty based IO
[12:31:49] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 2 worker threads, and population gen parallelism of 2 threads
[12:31:49] [Server thread/INFO]: [Pufferfish] Max SIMD vector size on this system is 256 bits (int)
[12:31:49] [Server thread/INFO]: [Pufferfish] Max SIMD vector size on this system is 256 bits (float)
[12:31:49] [Server thread/INFO]: [Pufferfish] SIMD operations detected as functional. Will replace some operations with faster versions.
[12:31:49] [Server thread/INFO]: Default game type: SURVIVAL
[12:31:49] [Server thread/INFO]: Generating keypair
[12:31:49] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25569
[12:31:49] [Server thread/INFO]: Using epoll channel type
[12:31:49] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[12:31:49] [Server thread/INFO]: Paper: Using OpenSSL 3.0.x (Linux x86_64) cipher from Velocity.
[12:31:50] [Server thread/INFO]: [SpigotLibraryLoader] [NetworkManager] Loading 1 libraries... please wait
[12:31:50] [Server thread/INFO]: [SpigotLibraryLoader] [NetworkManager] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/jsoup/jsoup/1.17.2/jsoup-1.17.2.jar
[12:31:51] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loading 10 libraries... please wait
[12:31:51] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/springframework/spring-expression/6.0.6/spring-expression-6.0.6.jar
[12:31:51] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/springframework/spring-core/6.0.6/spring-core-6.0.6.jar
[12:31:51] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/springframework/spring-jcl/6.0.6/spring-jcl-6.0.6.jar
[12:31:51] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/apache/httpcomponents/httpmime/4.5.13/httpmime-4.5.13.jar
[12:31:51] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar
[12:31:51] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar
[12:31:51] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
[12:31:51] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/commons-codec/commons-codec/1.11/commons-codec-1.11.jar
[12:31:51] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/joml/joml/1.10.5/joml-1.10.5.jar
[12:31:51] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/net/kyori/adventure-text-minimessage/4.17.0/adventure-text-minimessage-4.17.0.jar
[12:31:51] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.jar
[12:31:51] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/net/kyori/adventure-key/4.17.0/adventure-key-4.17.0.jar
[12:31:51] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[12:31:51] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[12:31:51] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[12:31:51] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/net/kyori/adventure-text-serializer-plain/4.17.0/adventure-text-serializer-plain-4.17.0.jar
[12:31:51] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/net/kyori/adventure-text-serializer-ansi/4.17.0/adventure-text-serializer-ansi-4.17.0.jar
[12:31:51] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/net/kyori/ansi/1.0.3/ansi-1.0.3.jar
[12:31:51] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/net/kyori/adventure-platform-bukkit/4.3.3/adventure-platform-bukkit-4.3.3.jar
[12:31:51] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/net/kyori/adventure-platform-api/4.3.3/adventure-platform-api-4.3.3.jar
[12:31:51] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.3/adventure-text-serializer-bungeecord-4.3.3.jar
[12:31:51] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[12:31:51] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[12:31:51] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[12:31:51] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[12:31:51] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/net/kyori/adventure-platform-facet/4.3.3/adventure-platform-facet-4.3.3.jar
[12:31:51] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/net/kyori/adventure-platform-viaversion/4.3.3/adventure-platform-viaversion-4.3.3.jar
[12:31:51] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar
[12:31:51] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/apache/commons/commons-lang3/3.14.0/commons-lang3-3.14.0.jar
[12:31:51] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/gs/mclo/java/2.2.1/java-2.2.1.jar
[12:31:53] [Server thread/INFO]: [eco] Initializing eco
[12:31:54] [Server thread/INFO]: [com.willfp.eco.libs.hikari.HikariDataSource] HikariPool-1 - Starting...
[12:31:54] [Server thread/INFO]: [com.willfp.eco.libs.hikari.pool.HikariPool] HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@51d952d1
[12:31:54] [Server thread/INFO]: [com.willfp.eco.libs.hikari.HikariDataSource] HikariPool-1 - Start completed.
[12:31:58] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loading 3 libraries... please wait
[12:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/com/google/inject/guice/5.1.0/guice-5.1.0.jar
[12:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/javax/inject/javax.inject/1/javax.inject-1.jar
[12:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/aopalliance/aopalliance/1.0/aopalliance-1.0.jar
[12:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/com/google/guava/guava/30.1-jre/guava-30.1-jre.jar
[12:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar
[12:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar
[12:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar
[12:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/checkerframework/checker-qual/3.5.0/checker-qual-3.5.0.jar
[12:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.jar
[12:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar
[12:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
[12:31:59] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/it/unimi/dsi/fastutil/8.5.6/fastutil-8.5.6.jar
[12:32:02] [Server thread/INFO]: [me.wolfyscript.lib.org.reflections.Reflections] Reflections took 837 ms to scan 1 urls, producing 924 keys and 3724 values
[12:32:02] [Server thread/INFO]: [WolfyUtilities] Register Default StackIdentifiers
[12:32:02] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loading 2 libraries... please wait
[12:32:02] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[12:32:02] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[12:32:02] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/it/unimi/dsi/fastutil-core/8.5.13/fastutil-core-8.5.13.jar
[12:32:02] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loading 1 libraries... please wait
[12:32:02] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[12:32:02] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[12:32:02] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[12:32:02] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[12:32:02] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[12:32:02] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[12:32:03] [Server thread/INFO]: [AngelChest] Hooked into WorldGuard 7.0.11-beta1+a801a9d
[12:32:03] [Server thread/INFO]: [SpigotLibraryLoader] [xaero-map-spigot] Loading 1 libraries... please wait
[12:32:03] [Server thread/INFO]: [SpigotLibraryLoader] [xaero-map-spigot] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/bstats/bstats-bukkit/3.0.0/bstats-bukkit-3.0.0.jar
[12:32:03] [Server thread/INFO]: [SpigotLibraryLoader] [xaero-map-spigot] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/bstats/bstats-base/3.0.0/bstats-base-3.0.0.jar
[12:32:04] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loading 2 libraries... please wait
[12:32:04] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[12:32:04] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[12:32:04] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/it/unimi/dsi/fastutil/8.5.11/fastutil-8.5.11.jar
[12:32:05] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[12:32:16] [Server thread/WARN]: Legacy plugin Ersatz v1.0 does not specify an api-version.
[12:32:16] [Server thread/WARN]: Legacy plugin ServerSaver v1.0 does not specify an api-version.
[12:32:16] [Server thread/WARN]: Legacy plugin DisableJoinMessage v1.0 does not specify an api-version.
[12:32:16] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loading 3 libraries... please wait
[12:32:17] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/apache/commons/commons-lang3/3.13.0/commons-lang3-3.13.0.jar
[12:32:17] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/mysql/mysql-connector-java/8.0.28/mysql-connector-java-8.0.28.jar
[12:32:17] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/com/google/protobuf/protobuf-java/3.11.4/protobuf-java-3.11.4.jar
[12:32:17] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/mariadb/jdbc/mariadb-java-client/3.1.1/mariadb-java-client-3.1.1.jar
[12:32:17] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/com/github/waffle/waffle-jna/3.2.0/waffle-jna-3.2.0.jar
[12:32:17] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/net/java/dev/jna/jna/5.12.1/jna-5.12.1.jar
[12:32:17] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/net/java/dev/jna/jna-platform/5.12.1/jna-platform-5.12.1.jar
[12:32:17] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/slf4j/jcl-over-slf4j/1.7.36/jcl-over-slf4j-1.7.36.jar
[12:32:17] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[12:32:17] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/com/github/ben-manes/caffeine/caffeine/2.9.3/caffeine-2.9.3.jar
[12:32:17] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/com/google/errorprone/error_prone_annotations/2.10.0/error_prone_annotations-2.10.0.jar
[12:32:17] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/checkerframework/checker-qual/3.23.0/checker-qual-3.23.0.jar
[12:32:17] [Server thread/INFO]: [EcoJobs] Initializing EcoJobs
[12:32:20] [Server thread/INFO]: [com.willfp.eco.libs.reflections.Reflections] Reflections took 3102 ms to scan 111 urls, producing 103 keys and 39800 values 
[12:32:22] [Server thread/INFO]: [AutoShulker] Hooked into WorldGuard 7.0.11-beta1+a801a9d
[12:32:22] [Server thread/INFO]: [SpigotLibraryLoader] [RentIt-Worlds] Loading 2 libraries... please wait
[12:32:22] [Server thread/INFO]: [SpigotLibraryLoader] [RentIt-Worlds] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/com/mysql/mysql-connector-j/8.0.33/mysql-connector-j-8.0.33.jar
[12:32:22] [Server thread/INFO]: [SpigotLibraryLoader] [RentIt-Worlds] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/com/google/protobuf/protobuf-java/3.21.9/protobuf-java-3.21.9.jar
[12:32:22] [Server thread/INFO]: [SpigotLibraryLoader] [RentIt-Worlds] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/mariadb/jdbc/mariadb-java-client/3.4.0/mariadb-java-client-3.4.0.jar
[12:32:22] [Server thread/INFO]: [SpigotLibraryLoader] [RentIt-Worlds] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/com/github/waffle/waffle-jna/3.3.0/waffle-jna-3.3.0.jar
[12:32:22] [Server thread/INFO]: [SpigotLibraryLoader] [RentIt-Worlds] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/net/java/dev/jna/jna/5.13.0/jna-5.13.0.jar
[12:32:22] [Server thread/INFO]: [SpigotLibraryLoader] [RentIt-Worlds] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/net/java/dev/jna/jna-platform/5.13.0/jna-platform-5.13.0.jar
[12:32:22] [Server thread/INFO]: [SpigotLibraryLoader] [RentIt-Worlds] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/slf4j/jcl-over-slf4j/2.0.7/jcl-over-slf4j-2.0.7.jar
[12:32:22] [Server thread/INFO]: [SpigotLibraryLoader] [RentIt-Worlds] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/slf4j/slf4j-api/2.0.7/slf4j-api-2.0.7.jar
[12:32:22] [Server thread/INFO]: [SpigotLibraryLoader] [RentIt-Worlds] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/com/github/ben-manes/caffeine/caffeine/2.9.3/caffeine-2.9.3.jar
[12:32:22] [Server thread/INFO]: [SpigotLibraryLoader] [RentIt-Worlds] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/com/google/errorprone/error_prone_annotations/2.10.0/error_prone_annotations-2.10.0.jar
[12:32:22] [Server thread/INFO]: [SpigotLibraryLoader] [RentIt-Worlds] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/checkerframework/checker-qual/3.32.0/checker-qual-3.32.0.jar
[12:32:23] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loading 4 libraries... please wait
[12:32:23] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/openjdk/nashorn/nashorn-core/15.4/nashorn-core-15.4.jar
[12:32:23] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[12:32:23] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[12:32:23] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[12:32:23] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[12:32:23] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[12:32:23] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/com/zaxxer/HikariCP/5.1.0/HikariCP-5.1.0.jar
[12:32:23] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[12:32:23] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/mariadb/jdbc/mariadb-java-client/3.3.3/mariadb-java-client-3.3.3.jar
[12:32:23] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/com/github/waffle/waffle-jna/3.3.0/waffle-jna-3.3.0.jar
[12:32:23] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/net/java/dev/jna/jna/5.13.0/jna-5.13.0.jar
[12:32:23] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/net/java/dev/jna/jna-platform/5.13.0/jna-platform-5.13.0.jar
[12:32:23] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/slf4j/jcl-over-slf4j/2.0.7/jcl-over-slf4j-2.0.7.jar
[12:32:23] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/com/github/ben-manes/caffeine/caffeine/2.9.3/caffeine-2.9.3.jar
[12:32:23] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/com/google/errorprone/error_prone_annotations/2.10.0/error_prone_annotations-2.10.0.jar
[12:32:23] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/checkerframework/checker-qual/3.32.0/checker-qual-3.32.0.jar
[12:32:23] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/com/mysql/mysql-connector-j/8.3.0/mysql-connector-j-8.3.0.jar
[12:32:23] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/com/google/protobuf/protobuf-java/3.25.1/protobuf-java-3.25.1.jar
[12:32:23] [Server thread/INFO]: [SpigotLibraryLoader] [MobsToEggs] Loading 1 libraries... please wait
[12:32:23] [Server thread/INFO]: [SpigotLibraryLoader] [MobsToEggs] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/jetbrains/kotlin/kotlin-stdlib/1.9.22/kotlin-stdlib-1.9.22.jar
[12:32:23] [Server thread/INFO]: [SpigotLibraryLoader] [MobsToEggs] Loaded library /home/amp/.ampdata/instances/EigeneWelten/Minecraft/libraries/org/jetbrains/annotations/13.0/annotations-13.0.jar
[12:32:24] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.3.0-SNAPSHOT-726
[12:32:24] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.21.1) has not yet been tested! Proceed with caution.
[12:32:24] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[12:32:24] [Server thread/INFO]: [NetworkManager] Loading server plugin NetworkManager v2.16.4
[12:32:24] [Server thread/INFO]: [NetworkManager] Loading Libraries...
[12:32:24] [Server thread/INFO]: [NetworkManager] Note: This might take a few minutes on first run. Kindly ensure internet connectivity.
[12:32:25] [Server thread/INFO]: [NetworkManager] Loaded libraries in 0,445 seconds
[12:32:25] [Server thread/INFO]: [RoyaleEconomy] Loading server plugin RoyaleEconomy v2.3.9.6
[12:32:25] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.117
[12:32:25] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b${env.TRAVIS_BUILD_NUMBER}
[12:32:25] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.11.2-SNAPSHOT-889;f5f9ae6
[12:32:29] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@25bf12f0]
[12:32:29] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.11-beta1+a801a9d
[12:32:29] [Server thread/INFO]: [mcMMO] Loading server plugin mcMMO v2.1.226
[12:32:29] [Server thread/INFO]: [mcMMO] [D] Registered WG flags successfully!
[12:32:29] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.13.2
[12:32:29] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[12:32:29] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[12:32:29] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'NBTAPI' to create a bStats instance!
[12:32:29] [Server thread/INFO]: [VendingMachines] Loading server plugin VendingMachines v1.5.9
[12:32:29] [Server thread/INFO]: [HeadDatabase] Loading server plugin HeadDatabase v4.20.0
[12:32:29] [Server thread/INFO]: [Vulcan] Loading server plugin Vulcan v2.9.0
[12:32:29] [Thread-11/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[12:32:30] [Server thread/INFO]: [Oraxen] Loading server plugin Oraxen v1.181.0
[12:32:30] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.5.1.3
[12:32:30] [Server thread/INFO]: [eco] Loading server plugin eco v6.74.1
[12:32:30] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v22.2
[12:32:30] [Server thread/INFO]: [CMI] Loading server plugin CMI v9.7.6.0
[12:32:30] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.9.1
[12:32:30] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.35-SNAPSHOT (build 3545)
[12:32:30] [Server thread/INFO]: [SCore] Loading server plugin SCore v42.42.42
[12:32:30] [Server thread/INFO]: [PremiumVanish] Loading server plugin PremiumVanish v2.9.14
[12:32:30] [Server thread/INFO]: [HuskHomes] Loading server plugin HuskHomes v4.5.4
[12:32:30] [Server thread/INFO]: [BetterFarming] Loading server plugin BetterFarming v5.9.2
[12:32:31] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[12:32:31] [Server thread/WARN]: [BetterFarming] [Farms] ackerbau: Fuel time not configured: fuel.max
[12:32:31] [Server thread/WARN]: [BetterFarming] [Farms] ackerbau: Invalid armor stand helmet: eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjgwNzI3ZDM5MGMzYjM0ZDgwOWE0ZDU5MDhjNThiNWVkNmE4OTFiOGJkZDBiY2ExNjA2NWNkNTVmMGQ4ZGUwYyJ9fX0=
[12:32:31] [Server thread/WARN]: [BetterFarming] [Farms] ackerbau2: Fuel time not configured: fuel.max
[12:32:31] [Server thread/WARN]: [BetterFarming] [Farms] ackerbau2: Invalid armor stand helmet: eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjgwNzI3ZDM5MGMzYjM0ZDgwOWE0ZDU5MDhjNThiNWVkNmE4OTFiOGJkZDBiY2ExNjA2NWNkNTVmMGQ4ZGUwYyJ9fX0=
[12:32:31] [Server thread/WARN]: [BetterFarming] [Farms] holzfaeller: Fuel time not configured: fuel.max
[12:32:31] [Server thread/WARN]: [BetterFarming] [Farms] holzfaeller: Invalid armor stand helmet: eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNTAwN2M0YTNlM2I4ZDMxYjk0YTk1MTczYmMyYWVhNGI3MThjMTUwZjAxNjZmMGM5NjRjYTllMDRiZTY2NGEyMiJ9fX0=
[12:32:31] [Server thread/WARN]: [BetterFarming] [Farms] wirrstielfaeller: Fuel time not configured: fuel.max
[12:32:31] [Server thread/WARN]: [BetterFarming] [Farms] wirrstielfaeller: Invalid armor stand helmet: eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDRkNjE1MmY5MTUxYmFjNzgwNmYyYzcwOTM5MWU2NWMzZmEwMjUxOGFhNDBjMmQ1NDMxYmNiYjJhNDUzYTY2ZSJ9fX0=
[12:32:31] [Server thread/WARN]: [BetterFarming] [Farms] karmesinstielfaeller: Fuel time not configured: fuel.max
[12:32:31] [Server thread/WARN]: [BetterFarming] [Farms] karmesinstielfaeller: Invalid armor stand helmet: eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNWFjNmQ5NTk4Y2Y5OGY4M2FmODljNzViMTRhZmY5MGZmYzZiN2UyMmFlOGU2ZmRiODVlMWJjNWRmN2M1ZmQwZiJ9fX0=
[12:32:31] [Server thread/WARN]: [BetterFarming] [Farms] huehnerfarm: Fuel time not configured: fuel.max
[12:32:31] [Server thread/WARN]: [BetterFarming] [Farms] huehnerfarm: Invalid armor stand helmet: eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvY2EzNTgyY2U0ODg5MzMzZGFkMzI5ZTRlMjQzNzJhMDNhNWRhYTJjMzQyODBjNTYyNTZhZjUyODNlZGIwNDNmOCJ9fX0=
[12:32:31] [Server thread/WARN]: [BetterFarming] [Farms] blumenfarmer: Fuel time not configured: fuel.max
[12:32:31] [Server thread/WARN]: [BetterFarming] [Farms] blumenfarmer: Invalid armor stand helmet: eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOTljYmEyNWVhYjczYjgwMjE4NmUxYzU4NzMzNzZmMTVlOTFkZDZiNWM4ZTNhNzRkMjZlZGYxY2U3YjY0Y2JkYSJ9fX0=
[12:32:31] [Server thread/WARN]: [BetterFarming] [Farms] wollefarmer: Fuel time not configured: fuel.max
[12:32:31] [Server thread/WARN]: [BetterFarming] [Farms] wollefarmer: Invalid armor stand helmet: eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODM5MjFlNDAzMGIyMGY3ZGVmZDEyMDJlMDM5NDRmNGU3MzYzNmMyMzk3MzllNzQ5NGZlZDIwMjhkZGUwMmRhYSJ9fX0=
[12:32:31] [Server thread/INFO]: [WildChests] Loading server plugin WildChests v2024.3-b57
[12:32:31] [Server thread/INFO]: [AdvancedChests] Loading server plugin AdvancedChests v40.9
[12:32:31] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.28.1-SNAPSHOT
[12:32:31] [Server thread/INFO]: [TheCore] Loading server plugin TheCore v2.7.0
[12:32:31] [Server thread/INFO]: [SkBee] Loading server plugin SkBee v3.6.1
[12:32:31] [Server thread/INFO]: [AdvancedRegionMarket] Loading server plugin AdvancedRegionMarket v3.5.3
[12:32:31] [Server thread/INFO]: [Shopkeepers] Loading server plugin Shopkeepers v2.23.0
[12:32:33] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (1422 ms).
[12:32:33] [Server thread/INFO]: [Shopkeepers] Loading config.
[12:32:33] [Server thread/WARN]: [Shopkeepers] Config: Ignoring mob type 'MUSHROOM_COW' in setting 'enabled-living-shops'. This mob was renamed in MC 1.20.5: Consider replacing it with 'MOOSHROOM'.
[12:32:33] [Server thread/WARN]: [Shopkeepers] Config: Ignoring mob type 'SNOWMAN' in setting 'enabled-living-shops'. This mob was renamed in MC 1.20.5: Consider replacing it with 'SNOW_GOLEM'.
[12:32:33] [Server thread/WARN]: [Shopkeepers] Config: All existing entity type names can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/entity/EntityType.html
[12:32:33] [Server thread/INFO]: [Shopkeepers] Loading language file: language-de.yml
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Unknown message: shop-create-fail
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Unknown message: high-currency-items-given
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Unknown message: high-currency-items-received
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Unknown message: high-currency-disabled
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: date-time-format
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: shop-object-type-hanging-sign
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: button-equipment
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: button-equipment-lore
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: button-move
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: button-move-lore
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: button-horse-saddle
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: button-horse-saddle-lore
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: button-goat-left-horn
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: button-goat-left-horn-lore
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: button-goat-right-horn
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: button-goat-right-horn-lore
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: button-tropical-fish-pattern
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: button-tropical-fish-pattern-lore
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: button-tropical-fish-body-color
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: button-tropical-fish-body-color-lore
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: button-tropical-fish-pattern-color
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: button-tropical-fish-pattern-color-lore
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: button-puffer-fish-puff-state
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: button-puffer-fish-puff-state-lore
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: button-frog-variant
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: button-frog-variant-lore
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: button-wolf-variant
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: button-wolf-variant-lore
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: equipment-editor-title
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: equipment-slot-lore
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: equipment-slot-mainhand
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: equipment-slot-offhand
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: equipment-slot-feet
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: equipment-slot-legs
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: equipment-slot-chest
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: equipment-slot-head
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: equipment-slot-body
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: must-target-block
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: missing-spawn-location
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: spawn-block-not-empty
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: invalid-spawn-block-face
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: mob-cannot-spawn-on-peaceful-difficulty
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: restricted-area
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: location-already-in-use
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: click-new-shop-location
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: shopkeeper-moved
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: shopkeeper-move-aborted
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: unknown-currency
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: must-hold-item-in-main-hand
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: currency-item-set-to-main-hand-item
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: traded-command-set
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: traded-command-removed
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: traded-command-view
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: traded-command-view-unset
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: selling-shop.empty-trade.result-item
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: selling-shop.empty-trade.result-item-lore
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: selling-shop.empty-trade.item1
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: selling-shop.empty-trade.item1-lore
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: selling-shop.empty-trade.item2
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: selling-shop.empty-trade.item2-lore
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: selling-shop.empty-item1
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: selling-shop.empty-item1-lore
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: selling-shop.empty-item2
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: selling-shop.empty-item2-lore
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: buying-shop.empty-trade.result-item
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: buying-shop.empty-trade.result-item-lore
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: buying-shop.empty-trade.item1
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: buying-shop.empty-trade.item1-lore
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: buying-shop.empty-result-item
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: buying-shop.empty-result-item-lore
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: trading-shop.empty-trade.result-item
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: trading-shop.empty-trade.result-item-lore
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: trading-shop.empty-trade.item1
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: trading-shop.empty-trade.item1-lore
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: trading-shop.empty-trade.item2
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: trading-shop.empty-trade.item2-lore
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: trading-shop.empty-result-item
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: trading-shop.empty-result-item-lore
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: trading-shop.empty-item1
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: trading-shop.empty-item1-lore
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: trading-shop.empty-item2
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: trading-shop.empty-item2-lore
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: book-shop.empty-trade.result-item
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: book-shop.empty-trade.result-item-lore
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: book-shop.empty-trade.item1
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: book-shop.empty-trade.item1-lore
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: book-shop.empty-trade.item2
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: book-shop.empty-trade.item2-lore
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: book-shop.empty-item1
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: book-shop.empty-item1-lore
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: book-shop.empty-item2
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: book-shop.empty-item2-lore
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: no-shops-found
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: shop-no-longer-exists
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: confirm-replace-all-shops-with-vanilla-villagers
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: all-shops-replaced-with-vanilla-villagers
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: snapshot-list-header
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: snapshot-list-entry
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: invalid-snapshot-id
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: invalid-snapshot-name
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: snapshot-name-too-long
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: snapshot-name-invalid
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: snapshot-name-already-exists
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: snapshot-created
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: confirm-remove-snapshot
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: confirm-remove-all-snapshots
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: action-aborted-snapshots-changed
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: snapshot-removed
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: snapshot-removed-all
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: snapshot-restore-failed
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: snapshot-restored
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: command-entity-argument-no-villager
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: command-description-set-currency
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: command-description-settradedcommand
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: command-description-snapshot-list
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: command-description-snapshot-create
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: command-description-snapshot-remove
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: command-description-snapshot-restore
[12:32:33] [Server thread/WARN]: [Shopkeepers] Language: Missing message: command-description-replace-all-with-vanilla-villagers
[12:32:33] [Server thread/WARN]: [Shopkeepers] Config: Ignoring mob type 'MUSHROOM_COW' in setting 'enabled-living-shops'. This mob was renamed in MC 1.20.5: Consider replacing it with 'MOOSHROOM'.
[12:32:33] [Server thread/WARN]: [Shopkeepers] Config: Ignoring mob type 'SNOWMAN' in setting 'enabled-living-shops'. This mob was renamed in MC 1.20.5: Consider replacing it with 'SNOW_GOLEM'.
[12:32:33] [Server thread/WARN]: [Shopkeepers] Config: All existing entity type names can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/entity/EntityType.html
[12:32:33] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[12:32:33] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[12:32:33] [Server thread/INFO]: [WolfyUtilities] Loading server plugin WolfyUtilities v4.17-beta.7
[12:32:33] [Server thread/INFO]: [WolfyUtilities] Register JSON de-/serializers
[12:32:33] [Server thread/INFO]: [WolfyUtilities] Register JSON Operators
[12:32:33] [Server thread/INFO]: [WolfyUtilities] Register JSON Value Providers
[12:32:33] [Server thread/INFO]: [WolfyUtilities] Register CustomItem NBT Checks
[12:32:33] [Server thread/INFO]: [WolfyUtilities] Register CustomItem Actions
[12:32:33] [Server thread/INFO]: [WolfyUtilities] Register CustomItem Events
[12:32:33] [Server thread/INFO]: [WolfyUtilities] Register Particle Animators
[12:32:33] [Server thread/INFO]: [WolfyUtilities] Register Particle Shapes
[12:32:33] [Server thread/INFO]: [WolfyUtilities] Register Particle Timers
[12:32:33] [Server thread/INFO]: [WolfyUtilities] Register Custom Block Data
[12:32:33] [Server thread/INFO]: [WolfyUtilities] Register Custom Player Data
[12:32:33] [Server thread/INFO]: [WolfyUtilities] Register NBT Query Nodes
[12:32:33] [Server thread/INFO]: [nightcore] Loading server plugin nightcore v2.6.3
[12:32:33] [Server thread/INFO]: [VotingPlugin] Loading server plugin VotingPlugin v6.17.1
[12:32:33] [Server thread/INFO]: [LiteBans] Loading server plugin LiteBans v2.15.1
[12:32:33] [Server thread/INFO]: [BackToBlock] Loading server plugin BackToBlock v3.0.1
[12:32:33] [Server thread/INFO]: [AngelChest] Loading server plugin AngelChest v13.6.1
[12:32:33] [Server thread/INFO]: [AngelChest] Successfully registered WorldGuard flags.
[12:32:33] [Server thread/INFO]: [HuskHomesGUI] Loading server plugin HuskHomesGUI v2.3
[12:32:33] [Server thread/INFO]: [AnvilEnhanced] Loading server plugin AnvilEnhanced v1.6.2
[12:32:33] [Server thread/INFO]: [Tooltips] Loading server plugin Tooltips v1.7.1
[12:32:33] [Server thread/INFO]: [xaero-map-spigot] Loading server plugin xaero-map-spigot v1.0.0
[12:32:33] [Server thread/INFO]: [CreativeManager] Loading server plugin CreativeManager v1.35.10
[12:32:33] [Server thread/INFO]: [BeaconPlus] Loading server plugin BeaconPlus3 v3.0.77
[12:32:33] [Server thread/INFO]: [BeaconPlus] Plugin API version has been changed to 1.13
[12:32:33] [Server thread/INFO]: [Skellett] Loading server plugin Skellett v2.0.10
[12:32:33] [Server thread/INFO]: [UltimateAutoRestart] Loading server plugin UltimateAutoRestart v2024.07
[12:32:33] [Server thread/INFO]: [ChestProtect] Loading server plugin ChestProtect v5.18.4
[12:32:34] [Server thread/INFO]: [ChestProtect] Added flag 'chestprotect-lock' to the plugin WorldGuard.
[12:32:34] [Server thread/INFO]: [ChestProtect] [Protectables] Added unsupported protectable block from protectables.yml: oak_fence_gate
[12:32:34] [Server thread/INFO]: [ChestProtect] [Protectables] Added unsupported protectable block from protectables.yml: spruce_fence_gate
[12:32:34] [Server thread/INFO]: [ChestProtect] [Protectables] Added unsupported protectable block from protectables.yml: birch_fence_gate
[12:32:34] [Server thread/INFO]: [ChestProtect] [Protectables] Added unsupported protectable block from protectables.yml: jungle_fence_gate
[12:32:34] [Server thread/INFO]: [ChestProtect] [Protectables] Added unsupported protectable block from protectables.yml: acacia_fence_gate
[12:32:34] [Server thread/INFO]: [ChestProtect] [Protectables] Added unsupported protectable block from protectables.yml: dark_oak_fence_gate
[12:32:34] [Server thread/INFO]: [ChestProtect] [Protectables] Added unsupported protectable block from protectables.yml: crimson_fence_gate
[12:32:34] [Server thread/INFO]: [ChestProtect] [Protectables] Added unsupported protectable block from protectables.yml: warped_fence_gate
[12:32:34] [Server thread/INFO]: [ChestProtect] [Protectables] Added unsupported protectable block from protectables.yml: lever
[12:32:34] [Server thread/INFO]: [ChestProtect] [Protectables] Added unsupported protectable block from protectables.yml: stone_button
[12:32:34] [Server thread/INFO]: [ChestProtect] [Protectables] Added unsupported protectable block from protectables.yml: oak_button
[12:32:34] [Server thread/INFO]: [ChestProtect] [Protectables] Added unsupported protectable block from protectables.yml: spruce_button
[12:32:34] [Server thread/INFO]: [ChestProtect] [Protectables] Added unsupported protectable block from protectables.yml: birch_button
[12:32:34] [Server thread/INFO]: [ChestProtect] [Protectables] Added unsupported protectable block from protectables.yml: jungle_button
[12:32:34] [Server thread/INFO]: [ChestProtect] [Protectables] Added unsupported protectable block from protectables.yml: acacia_button
[12:32:34] [Server thread/INFO]: [ChestProtect] [Protectables] Added unsupported protectable block from protectables.yml: dark_oak_button
[12:32:34] [Server thread/INFO]: [ChestProtect] [Protectables] Added unsupported protectable block from protectables.yml: crimson_button
[12:32:34] [Server thread/INFO]: [ChestProtect] [Protectables] Added unsupported protectable block from protectables.yml: warped_button
[12:32:34] [Server thread/INFO]: [ChestProtect] [Protectables] Added unsupported protectable block from protectables.yml: polished_blackstone_button
[12:32:34] [Server thread/INFO]: [ChestProtect] [Protectables] Added unsupported protectable block from protectables.yml: anvil
[12:32:34] [Server thread/INFO]: [ChestProtect] [Protectables] Added unsupported protectable block from protectables.yml: jukebox
[12:32:34] [Server thread/INFO]: [ChestProtect] [Protectables] Added unsupported protectable block from protectables.yml: beacon
[12:32:34] [Server thread/INFO]: [ChestProtect] [Protectables] Added unsupported protectable block from protectables.yml: composter
[12:32:34] [Server thread/WARN]: [ChestProtect] Missing icon material for the following protectable in protectables.yml: water_cauldron Material: WATER_CAULDRON You need to add an icon property to that protection type.
[12:32:34] [Server thread/INFO]: [ChestProtect] [Protectables] Added unsupported protectable block from protectables.yml: water_cauldron
[12:32:34] [Server thread/INFO]: [ChestProtect] [Protectables] Added unsupported protectable block from protectables.yml: chiseled_bookshelf
[12:32:34] [Server thread/WARN]: [ChestProtect] Missing icon material for the following protectable in protectables.yml: sweet_berry_bush Material: SWEET_BERRY_BUSH You need to add an icon property to that protection type.
[12:32:34] [Server thread/INFO]: [ChestProtect] [Protectables] Added unsupported protectable block from protectables.yml: sweet_berry_bush
[12:32:34] [Server thread/INFO]: [ChestProtect] Using SQLite: /home/amp/.ampdata/instances/EigeneWelten/Minecraft/plugins/ChestProtect/Data
[12:32:34] [Server thread/INFO]: [ChestProtect] Successfully connected to SQL database.
[12:32:34] [Server thread/INFO]: [ChestProtect] Setting up general tables...
[12:32:34] [Server thread/INFO]: [ContainerPassthrough] Loading server plugin ContainerPassthrough v1.2.2
[12:32:34] [Server thread/INFO]: [LumberJack] Loading server plugin LumberJack v5.3.0
[12:32:34] [Server thread/INFO]: [Triton] Loading server plugin Triton v4.0.0-SNAPSHOT
[12:32:34] [Server thread/INFO]: [SurvivalInvisiframes] Loading server plugin SurvivalInvisiframes v2.1.0
[12:32:34] [Server thread/INFO]: [HuskSync] Loading server plugin HuskSync v3.6.8
[12:32:34] [Server thread/INFO]: [HuskSync] Initializing plugin config & locale files...
[12:32:35] [Server thread/INFO]: [HuskSync] Successfully initialized plugin config & locale files
[12:32:35] [Server thread/INFO]: [HopperSorter] Loading server plugin HopperSorter v2.6.57
[12:32:35] [Server thread/INFO]: [ReferralSystem] Loading server plugin ReferralSystem v3.3.0
[12:32:35] [Server thread/INFO]: [BlockImpact] Loading server plugin BlockImpact v3.0.0
[12:32:35] [Server thread/INFO]: [AdventureBackpacks] Loading server plugin AdventureBackpacks v1.0.4-Release
[12:32:35] [Server thread/INFO]: [NexEngine] Loading server plugin NexEngine v2.2.12
[12:32:35] [Server thread/INFO]: [JSEngine] Loading server plugin JSEngine v3.1.1
[12:32:35] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.1.5
[12:32:35] [Server thread/INFO]: [FileCleaner] Loading server plugin FileCleaner vs2.1.1
[12:32:35] [Server thread/INFO]: [Ersatz] Loading server plugin Ersatz v1.0
[12:32:35] [Server thread/INFO]: [Elevator] Loading server plugin Elevator v3.13.0
[12:32:35] [Server thread/INFO]: [ServerSaver] Loading server plugin ServerSaver v1.0
[12:32:35] [Server thread/INFO]: [DisableJoinMessage] Loading server plugin DisableJoinMessage v1.0
[12:32:35] [Server thread/INFO]: [ServerNPC] Loading server plugin ServerNPC v1.17.4-RELEASE-b1
[12:32:35] [Server thread/INFO]: [AxShulkers] Loading server plugin AxShulkers v1.5.4
[12:32:35] [Server thread/INFO]: [UltimateRewards] Loading server plugin UltimateRewards v2.2.0
[12:32:35] [Server thread/INFO]: [AntiPopup] Loading server plugin AntiPopup v9.2
[12:32:35] [Server thread/WARN]: [AntiPopup] [packetevents] We currently do not support the minecraft version 1.21.1, so things might break. PacketEvents will behave as if the minecraft version were 1.21.0!
[12:32:39] [Server thread/INFO]: [AntiPopup] Loaded PacketEvents.
[12:32:39] [Server thread/INFO]: [TempFly] Loading server plugin TempFly v1.3.6
[12:32:39] [Server thread/INFO]: [Coupon] Loading server plugin Coupon v1.2.0
[12:32:39] [Server thread/INFO]: [SkQuery] Loading server plugin SkQuery v4.1.10
[12:32:39] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.1
[12:32:39] [Server thread/INFO]: [Furnish] Loading server plugin Furnish v0.4
[12:32:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: furnish [1.0]
[12:32:39] [Server thread/INFO]: [ArmShopBridge] Loading server plugin ArmShopBridge v1.3.0
[12:32:39] [Server thread/INFO]: [EcoJobs] Loading server plugin EcoJobs v3.69.6
[12:32:39] [Server thread/INFO]: [libreforge] Initializing libreforge
[12:32:39] [Server thread/INFO]: [libreforge] Loading server plugin libreforge v4.71.6
[12:32:39] [Server thread/INFO]: [voicechat] Loading server plugin voicechat v2.5.20
[12:32:39] [Server thread/INFO]: [JetsMinions] Loading server plugin JetsMinions v7.10.10
[12:32:39] [Server thread/INFO]: [UltraScoreboards] Loading server plugin UltraScoreboards v1.5.2
[12:32:39] [Server thread/INFO]: [BottledExp] Loading server plugin BottledExp v3.2.2.3
[12:32:39] [Server thread/INFO]: [AdvancedEnderchest] Loading server plugin AdvancedEnderchest v1.2.0-Migration-Update
[12:32:39] [Server thread/INFO]: [TAB-Bridge] Loading server plugin TAB-Bridge v5.0.6
[12:32:39] [Server thread/INFO]: [TuneBlock] Loading server plugin TuneBlock v1.0
[12:32:39] [Server thread/INFO]: [InteractiveBoard] Loading server plugin InteractiveBoard v2.1.0
[12:32:39] [Server thread/INFO]: [CustomCrafting] Loading server plugin CustomCrafting v4.17-beta.5
[12:32:39] [Server thread/INFO]: [CustomCrafting] WolfyUtils API: v4.17-beta.7
[12:32:39] [Server thread/INFO]: [CustomCrafting] CustomCrafting: v4.17-beta.5
[12:32:39] [Server thread/INFO]: [CustomCrafting] Environment   : PROD
[12:32:39] [Server thread/INFO]: [CustomCrafting] Registering CustomItem Data
[12:32:39] [Server thread/INFO]: [CustomCrafting] Registering Custom Block Data
[12:32:39] [Server thread/INFO]: [CustomCrafting] Registering Result Extensions
[12:32:39] [Server thread/INFO]: [CustomCrafting] Registering Result Merge Adapters
[12:32:39] [Server thread/INFO]: [CustomCrafting] Registering Recipe Conditions
[12:32:40] [Server thread/INFO]: [CustomCrafting] Registering Recipe Types
[12:32:40] [Server thread/INFO]: [CustomCrafting] Registering Anvil Recipe Tasks
[12:32:40] [Server thread/INFO]: [CustomCrafting] Registering Type Registries
[12:32:40] [Server thread/INFO]: [skRayFall] Loading server plugin skRayFall v1.9.28
[12:32:40] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v5.3.2
[12:32:40] [Server thread/INFO]: [LeaderOS] Loading server plugin LeaderOS v1.1.5
[12:32:40] [Server thread/INFO]: [skript-gui] Loading server plugin skript-gui v1.3
[12:32:40] [Server thread/INFO]: [CommandPanels] Loading server plugin CommandPanels v3.21.4.1
[12:32:40] [Server thread/INFO]: [AutoShulker] Loading server plugin AutoShulker v3.5.2
[12:32:40] [Server thread/INFO]: [PluginVersions] Loading server plugin PluginVersions v1.3.3
[12:32:40] [Server thread/INFO]: [SoundMuffler] Loading server plugin SoundMuffler v1.0.0
[12:32:40] [Server thread/INFO]: [RentIt-Worlds] Loading server plugin RentIt-Worlds v1.6.1
[12:32:40] [Server thread/INFO]: [InventorySaver] Loading server plugin InventorySaver v3.8.3-VERSION-1.20
[12:32:40] [Server thread/INFO]: [RecyclerPlus] Loading server plugin RecyclerPlus v1.3.7
[12:32:40] [Server thread/INFO]: [VillagerMarket] Loading server plugin VillagerMarket v1.12.0
[12:32:40] [Server thread/INFO]: [VillagerBank] Loading server plugin VillagerBank v1.5.3
[12:32:40] [Server thread/INFO]: [JetsAntiAFKPro] Loading server plugin JetsAntiAFKPro v3.7.1
[12:32:40] [Server thread/INFO]: [ChatControlRed] Loading server plugin ChatControlRed v10.27.9
[12:32:40] [Server thread/INFO]: [QuickShop-Hikari] Loading server plugin QuickShop-Hikari v6.2.0.7
[12:32:40] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Execute the initialization sequence
[12:32:40] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Bootloader preparing for startup, please wait...
[12:32:40] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Initializing libraries...
[12:32:46] [Server thread/INFO]: [QuickShop-Hikari] Maven repository mirror test result:
[12:32:46] [Server thread/INFO]: [QuickShop-Hikari] [CN] TENCENT: 94ms
[12:32:46] [Server thread/INFO]: [QuickShop-Hikari] [US] CENTRAL: 98ms
[12:32:46] [Server thread/INFO]: [QuickShop-Hikari] [US] APACHE: 102ms
[12:32:46] [Server thread/INFO]: [QuickShop-Hikari] [CN] ALIYUN: 4759ms
[12:32:46] [Server thread/INFO]: [QuickShop-Hikari] [CN] HUAWEI: 5718ms
[12:32:46] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading 12 libraries (0 skipped libraries)...
[12:32:46] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library org.apache.commons:commons-lang3:3.14.0 [1/12]
[12:32:46] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
[12:32:46] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: Defaulting to no-operation (NOP) logger implementation
[12:32:46] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
[12:32:46] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library org.apache.commons:commons-compress:1.25.0 [2/12]
[12:32:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.google.code.gson:gson:2.10.1 [3/12]
[12:32:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.google.guava:guava:33.1.0-jre [4/12]
[12:32:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.rollbar:rollbar-java:1.9.0 [5/12]
[12:32:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library cc.carm.lib:easysql-hikaricp:0.4.7 [6/12]
[12:32:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.h2database:h2:2.1.214 [7/12]
[12:32:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.konghq:unirest-java:3.14.5 [8/12]
[12:32:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library net.sourceforge.csvjdbc:csvjdbc:1.0.42 [9/12]
[12:32:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library org.dom4j:dom4j:2.1.4 [10/12]
[12:32:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.vdurmont:semver4j:3.1.0 [11/12]
[12:32:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.ghostchu.crowdin:crowdinota:1.0.3 [12/12]
[12:32:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Initialing Unirest...
[12:32:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Initializing platform...
[12:32:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Platform detected: Paper
[12:32:47] [Server thread/INFO]: [QuickShop-Hikari] Slf4jLogger initialized
[12:32:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Platform initialized: com.ghostchu.quickshop.platform.paper.PaperPlatform
[12:32:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Boot QuickShop instance...
[12:32:47] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Creating QuickShop instance...
[12:32:47] [Server thread/INFO]: [QuickShop-Hikari] Registering Bukkit Service: com.ghostchu.quickshop.api.QuickShopProvider
[12:32:47] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari - Early boot step - Booting up
[12:32:47] [Server thread/INFO]: [QuickShop-Hikari] Self testing...
[12:32:47] [Server thread/INFO]: [QuickShop-Hikari] Reading the configuration...
[12:32:47] [Server thread/INFO]: [QuickShop-Hikari] [ConfigUpdater] Saving configuration changes...
[12:32:47] [Server thread/INFO]: [QuickShop-Hikari] Setting up privacy controller...
[12:32:47] [Server thread/INFO]: [QuickShop-Hikari] Setting up QuickShop registry....
[12:32:47] [Server thread/INFO]: [QuickShop-Hikari] Setting up metrics manager...
[12:32:47] [Server thread/INFO]: [QuickShop-Hikari] Loading player name and unique id mapping...
[12:32:47] [Server thread/INFO]: [QuickShop-Hikari] Loading translations (This may take a while)...
[12:32:47] [Server thread/INFO]: [QuickShop-Hikari] Please wait us fetch the translation updates from Crowdin OTA service...
[12:32:47] [Server thread/INFO]: [CrowdinOTA] Downloading Crowdin distribution manifest from remote server...
[12:32:48] [Server thread/INFO]: [OTAFileInstance-0] Downloading translations for 0 locales...
[12:32:48] [Server thread/WARN]: [QuickShop-Hikari] Cannot initialize the CrowdinOTA instance!
com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 1 column 3016 path $
    at com.google.gson.Gson.assertFullConsumption(Gson.java:1148) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1138) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1047) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1014) ~[gson-2.10.1.jar:?]
    at QuickShop-Hikari-6.2.0.7.jar/com.ghostchu.crowdin.OTAFileCache.loadMemory(OTAFileCache.java:167) ~[QuickShop-Hikari-6.2.0.7.jar:?]
    at QuickShop-Hikari-6.2.0.7.jar/com.ghostchu.crowdin.OTAFileCache.<init>(OTAFileCache.java:43) ~[QuickShop-Hikari-6.2.0.7.jar:?]
    at QuickShop-Hikari-6.2.0.7.jar/com.ghostchu.crowdin.OTAFileInstance.<init>(OTAFileInstance.java:50) ~[QuickShop-Hikari-6.2.0.7.jar:?]
    at QuickShop-Hikari-6.2.0.7.jar/com.ghostchu.crowdin.OTAInstance.initFileInstances(OTAInstance.java:69) ~[QuickShop-Hikari-6.2.0.7.jar:?]
    at QuickShop-Hikari-6.2.0.7.jar/com.ghostchu.crowdin.OTAInstance.<init>(OTAInstance.java:30) ~[QuickShop-Hikari-6.2.0.7.jar:?]
    at QuickShop-Hikari-6.2.0.7.jar/com.ghostchu.crowdin.CrowdinOTA.createOTAInstance(CrowdinOTA.java:88) ~[QuickShop-Hikari-6.2.0.7.jar:?]
    at QuickShop-Hikari-6.2.0.7.jar/com.ghostchu.crowdin.CrowdinOTA.<init>(CrowdinOTA.java:70) ~[QuickShop-Hikari-6.2.0.7.jar:?]
    at QuickShop-Hikari-6.2.0.7.jar/com.ghostchu.quickshop.localization.text.SimpleTextManager.<init>(SimpleTextManager.java:86) ~[QuickShop-Hikari-6.2.0.7.jar:?]
    at QuickShop-Hikari-6.2.0.7.jar/com.ghostchu.quickshop.QuickShop.loadTextManager(QuickShop.java:445) ~[QuickShop-Hikari-6.2.0.7.jar:?]
    at QuickShop-Hikari-6.2.0.7.jar/com.ghostchu.quickshop.QuickShop.onLoad(QuickShop.java:370) ~[QuickShop-Hikari-6.2.0.7.jar:?]
    at QuickShop-Hikari-6.2.0.7.jar/com.ghostchu.quickshop.QuickShopBukkit.initQuickShop(QuickShopBukkit.java:300) ~[QuickShop-Hikari-6.2.0.7.jar:?]
    at QuickShop-Hikari-6.2.0.7.jar/com.ghostchu.quickshop.QuickShopBukkit.onLoad(QuickShopBukkit.java:70) ~[QuickShop-Hikari-6.2.0.7.jar:?]
    at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:59) ~[purpur-1.21.1.jar:1.21.1-2301-a43711d]
    at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:18) ~[purpur-1.21.1.jar:1.21.1-2301-a43711d]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:39) ~[purpur-1.21.1.jar:1.21.1-2301-a43711d]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:40) ~[purpur-1.21.1.jar:1.21.1-2301-a43711d]
    at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:560) ~[purpur-1.21.1.jar:1.21.1-2301-a43711d]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329) ~[purpur-1.21.1.jar:1.21.1-2301-a43711d]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1231) ~[purpur-1.21.1.jar:1.21.1-2301-a43711d]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:334) ~[purpur-1.21.1.jar:1.21.1-2301-a43711d]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 1 column 3016 path $
    at com.google.gson.stream.JsonReader.syntaxError(JsonReader.java:1659) ~[gson-2.10.1.jar:?]
    at com.google.gson.stream.JsonReader.checkLenient(JsonReader.java:1465) ~[gson-2.10.1.jar:?]
    at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:551) ~[gson-2.10.1.jar:?]
    at com.google.gson.stream.JsonReader.peek(JsonReader.java:433) ~[gson-2.10.1.jar:?]
    at com.google.gson.Gson.assertFullConsumption(Gson.java:1144) ~[gson-2.10.1.jar:?]
    ... 24 more
[12:32:48] [Server thread/INFO]: [QuickShop-Hikari] Loading up translations from Crowdin OTA, this may need a while...
[12:32:48] [Server thread/INFO]: [QuickShop-Hikari] CrowdinOTA not initialized, skipping for over-the-air translation updates.
[12:32:48] [Server thread/INFO]: [QuickShop-Hikari] Loading up translations from Crowdin OTA, this may need a while...
[12:32:48] [Server thread/INFO]: [QuickShop-Hikari] CrowdinOTA not initialized, skipping for over-the-air translation updates.
[12:32:48] [Server thread/INFO]: [QuickShop-Hikari] Register InventoryWrapper...
[12:32:48] [Server thread/INFO]: [QuickShop-Hikari] Initializing NexusManager...
[12:32:48] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari - Early boot step - Complete
[12:32:48] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Complete (7942ms). Waiting for enable...
[12:32:48] [Server thread/INFO]: [MobsToEggs] Loading server plugin MobsToEggs v1.7.13
[12:32:48] [Server thread/INFO]: [Mclogs] Loading server plugin Mclogs v2.3.1
[12:32:48] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[12:32:48] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.3.0-SNAPSHOT-726
[12:32:48] [Server thread/INFO]: [NetworkManager] Enabling NetworkManager v2.16.4
[12:32:49] [Server thread/INFO]: [nl.chimpgamer.networkmanager.lib.hikari.HikariDataSource] networkmanager-pool - Starting...
[12:32:49] [Server thread/INFO]: [nl.chimpgamer.networkmanager.lib.hikari.HikariDataSource] networkmanager-pool - Start completed.
[12:32:49] [Server thread/INFO]: [NetworkManager] Initializing Messaging Service... [Redis]
[12:32:49] [Server thread/INFO]: [NetworkManager] | Starting NetworkManager
[12:32:50] [Server thread/INFO]: [NetworkManager] Initialized Brigadier support!
[12:32:51] [Server thread/INFO]: [NetworkManager] Enabling extensions...
[12:32:51] [Server thread/INFO]: [RoyaleEconomy] Enabling RoyaleEconomy v2.3.9.6
[12:32:51] [Server thread/INFO]: [RoyaleEconomy] -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
[12:32:51] [Server thread/INFO]: [RoyaleEconomy]   Plugin: RoyaleEconomy
[12:32:51] [Server thread/INFO]: [RoyaleEconomy]   Version: 2.3
[12:32:51] [Server thread/INFO]: [RoyaleEconomy]   Author: qKing12 (Dragos-Dumitru Ghinea)
[12:32:51] [Server thread/INFO]: [RoyaleEconomy]   Copyright: 2020-2024 All Rights Reserved
[12:32:51] [Server thread/INFO]: [RoyaleEconomy] -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
[12:32:51] [Server thread/INFO]: [me.qKing12.RoyaleEconomy.hikari.HikariDataSource] RoyaleEconomyMySQLPool - Starting...
[12:32:51] [Server thread/INFO]: [me.qKing12.RoyaleEconomy.hikari.HikariDataSource] RoyaleEconomyMySQLPool - Start completed.
[12:32:52] [Server thread/INFO]: [RoyaleEconomy] Succesfully connected to the Player Purse MySQL.
[12:32:52] [Server thread/INFO]: [RoyaleEconomy] Succesfully connected to the Personal Banks MySQL.
[12:32:52] [Server thread/INFO]: [RoyaleEconomy] Succesfully loaded the interest.
[12:32:52] [Server thread/INFO]: [RoyaleEconomy] Succesfully connected to the Shared Banks MySQL.
[12:32:52] [Server thread/INFO]: [RoyaleEconomy] Succesfully connected to the External Generated Data MySQL.
[12:32:53] [Server thread/INFO]: [RoyaleEconomy] Vault detected, economy register attempted.
[12:32:53] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.117
[12:32:54] [Server thread/INFO]:         __    
[12:32:54] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.117
[12:32:54] [Server thread/INFO]:   |___ |      Running on Bukkit - Purpur
[12:32:54] [Server thread/INFO]: 
[12:32:54] [Server thread/INFO]: [LuckPerms] Loading configuration...
[12:32:55] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MYSQL]
[12:32:55] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[12:32:56] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[12:32:57] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[12:32:58] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[12:32:58] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[12:32:59] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 6235ms)
[12:32:59] [Server thread/INFO]: [NetworkManager] hooked into LuckPerms!
[12:32:59] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b${env.TRAVIS_BUILD_NUMBER}
[12:33:00] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[12:33:00] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b${env.TRAVIS_BUILD_NUMBER}
[12:33:00] [Server thread/INFO]: [NetworkManager] | NetworkManager hooked into Vault version 1.7.3-b${env.TRAVIS_BUILD_NUMBER}
[12:33:00] [Server thread/INFO]: [RoyaleEconomy] Vault detected, economy register attempted.
[12:33:00] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[12:33:00] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.11.2-SNAPSHOT-889;f5f9ae6
[12:33:01] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
[12:33:01] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!                                                                !!!
[12:33:01] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    Using history database whilst deleting disk history!        !!!
[12:33:01] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    You will not be able to rollback edits after a user logs    !!!
[12:33:01] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    out, recommended to disable delete-disk-on-logout if you    !!!
[12:33:01] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    you want to have full history rollback functionality.       !!!
[12:33:01] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    Disable use-database if you do not need to have rollback    !!!
[12:33:01] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    functionality and wish to disable this warning.             !!!
[12:33:01] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!                                                                !!!
[12:33:01] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
[12:33:01] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[12:33:01] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[12:33:01] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[12:33:01] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[12:33:02] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_R1.PaperweightFaweAdapter as the Bukkit adapter
[12:33:03] [Server thread/INFO]: [eco] Enabling eco v6.74.1
[12:33:03] [Server thread/INFO]: [eco] Loading eco
[12:33:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: eco [6.74.1]
[12:33:03] [Server thread/INFO]: [eco] Loaded integrations: Oraxen, CustomCrafting, Vulcan, mcMMO, HeadDatabase, Vault, CMI, RoyaleEconomy, PlaceholderAPI, WorldGuard
[12:33:03] [Server thread/INFO]: [eco] Scanning for conflicts...
[12:33:03] [Server thread/WARN]: [eco] MobsToEggs will likely conflict with eco! Reason: Kotlin found in libraries (lib-loader)
[12:33:03] [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!
[12:33:03] [Server thread/WARN]: [eco] Only remove potentially conflicting plugins if you see Loader Constraint Violation / LinkageError anywhere
[12:33:03] [Server thread/INFO]: [TheCore] Enabling TheCore v2.7.0
[12:33:03] [Server thread/INFO]: [TheCore] - - - - - - - - Loading - - - - - - - -
[12:33:04] [Server thread/INFO]: [TheCore] MYSQL Integration
[12:33:04] [Server thread/INFO]: [TheCore]   Connected to MYSQL!
[12:33:04] [Server thread/INFO]: [TheCore] - - - - - Successfully loaded - - - - -
[12:33:04] [Server thread/INFO]: [WolfyUtilities] Enabling WolfyUtilities v4.17-beta.7
[12:33:04] [Server thread/INFO]: [WolfyUtilities] Minecraft version: 1.21.1
[12:33:04] [Server thread/INFO]: [WolfyUtilities] WolfyUtils version: 4.17.0.0
[12:33:04] [Server thread/INFO]: [WolfyUtilities] Environment: PROD
[12:33:04] [Server thread/INFO]: [WolfyUtilities] Loading Plugin integrations: 
[12:33:04] [Server thread/INFO]: [WolfyUtilities]  - PlaceholderAPI
[12:33:04] [Server thread/INFO]: [WolfyUtilities]  - Oraxen
[12:33:04] [Server thread/INFO]: [WolfyUtilities]  - eco
[12:33:04] [Server thread/INFO]: [WolfyUtilities] Create & Init Plugin integrations: 
[12:33:04] [Server thread/INFO]: [WolfyUtilities] Enabled plugin integration for eco
[12:33:04] [Server thread/INFO]: [WolfyUtilities] Register API references
[12:33:05] [Server thread/INFO]: [WolfyUtilities] Loading stored Custom Items
[12:33:05] [Server thread/INFO]: [WolfyUtilities] Loading Creative Mode Tabs
[12:33:05] [Server thread/INFO]: [nightcore] Enabling nightcore v2.6.3
[12:33:06] [Server thread/WARN]: [nightcore] Locale file for 'de' language not found. Using default 'en' locale.
[12:33:06] [Server thread/INFO]: [nightcore] Found permissions provider: LuckPerms
[12:33:06] [Server thread/INFO]: [nightcore] Found economy provider: RoyaleEconomy
[12:33:06] [Server thread/INFO]: [nightcore] Found chat provider: LuckPerms
[12:33:06] [Server thread/INFO]: [nightcore] Server Version: 1.21 ✔
[12:33:06] [Server thread/INFO]: [nightcore] Entity Id Counter: OK ✔
[12:33:06] [Server thread/INFO]: [nightcore] Item NBT Compress: OK ✔
[12:33:06] [Server thread/WARN]: [nightcore] ========== WARNING ==========
[12:33:06] [Server thread/WARN]: [nightcore] Enabled Mojang's DataFixer for ItemStacks to update/fix NBT structure from <= 1.20.4 to 1.20.6+
[12:33:06] [Server thread/WARN]: [nightcore] This may significally affect server's performance.
[12:33:06] [Server thread/WARN]: [nightcore] Please, re-save all configuration(s) using in-game GUI editor(s) (if there is any).
[12:33:06] [Server thread/WARN]: [nightcore] Then disable this 'feature' in the config.yml of nightcore.
[12:33:06] [Server thread/INFO]: [nightcore] Plugin loaded in 381 ms!
[12:33:06] [Server thread/INFO]: [xaero-map-spigot] Enabling xaero-map-spigot v1.0.0
[12:33:06] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.12
[12:33:06] [Server thread/INFO]: [NexEngine] Seems like we have Paper based fork here...
[12:33:06] [Server thread/WARN]: [NexEngine] ==================================
[12:33:06] [Server thread/WARN]: [NexEngine] WARNING: You're running an outdated/deprecated server version (Unknown)!
[12:33:06] [Server thread/WARN]: [NexEngine] Support for this version will be dropped soon.
[12:33:06] [Server thread/WARN]: [NexEngine] Please, upgrade your server to at least 1.18.2.
[12:33:06] [Server thread/WARN]: [NexEngine] ==================================
[12:33:06] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[12:33:06] [Server thread/INFO]: [NexEngine] Successfully hooked with RoyaleEconomy economy
[12:33:06] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[12:33:06] [Server thread/INFO]: [NexEngine] Plugin loaded in 204 ms!
[12:33:06] [Server thread/INFO]: [JSEngine] Enabling JSEngine v3.1.1
[12:33:06] [Server thread/INFO]: [JSEngine] JSEngine version 3.1.1 is Enabled
[12:33:06] [Server thread/INFO]: [UltraScoreboards] Enabling UltraScoreboards v1.5.2
[12:33:06] [Server thread/INFO]: [UltraScoreboards] Loading Plugin...
[12:33:08] [Server thread/INFO]: [UltraScoreboards] Successfully loaded in 2060 ms
[12:33:08] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[12:33:08] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[12:33:08] [Server thread/WARN]: Whilst this makes it possible to use Velocity, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[12:33:08] [Server thread/WARN]: Please see https://docs.papermc.io/velocity/security for further information.
[12:33:08] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[12:33:08] [Server thread/INFO]: Preparing level "Spawn"
[12:33:10] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[12:33:13] [Server thread/INFO]: Time elapsed: 3630 ms
[12:33:13] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[12:33:15] [Server thread/INFO]: Time elapsed: 1506 ms
[12:33:15] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[12:33:15] [Server thread/INFO]: Time elapsed: 292 ms
[12:33:15] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[12:33:16] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[12:33:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: networkmanager [2.16.4]
[12:33:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: royaleeconomy [2.3.9.6]
[12:33:16] [Server thread/INFO]: [WolfyUtilities] init PAPI event
[12:33:16] [Server thread/INFO]: [WolfyUtilities] Enabled plugin integration for PlaceholderAPI
[12:33:16] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.11-beta1+a801a9d
[12:33:16] [Server thread/INFO]: [WorldGuard] (Spawn) TNT ignition is PERMITTED.
[12:33:16] [Server thread/INFO]: [WorldGuard] (Spawn) Lighters are PERMITTED.
[12:33:16] [Server thread/INFO]: [WorldGuard] (Spawn) Lava fire is PERMITTED.
[12:33:16] [Server thread/INFO]: [WorldGuard] (Spawn) Fire spread is UNRESTRICTED.
[12:33:16] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Spawn'
[12:33:16] [Server thread/INFO]: [WorldGuard] (Spawn_nether) TNT ignition is PERMITTED.
[12:33:16] [Server thread/INFO]: [WorldGuard] (Spawn_nether) Lighters are PERMITTED.
[12:33:16] [Server thread/INFO]: [WorldGuard] (Spawn_nether) Lava fire is PERMITTED.
[12:33:16] [Server thread/INFO]: [WorldGuard] (Spawn_nether) Fire spread is UNRESTRICTED.
[12:33:16] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Spawn_nether'
[12:33:16] [Server thread/INFO]: [WorldGuard] (Spawn_the_end) TNT ignition is PERMITTED.
[12:33:16] [Server thread/INFO]: [WorldGuard] (Spawn_the_end) Lighters are PERMITTED.
[12:33:16] [Server thread/INFO]: [WorldGuard] (Spawn_the_end) Lava fire is PERMITTED.
[12:33:16] [Server thread/INFO]: [WorldGuard] (Spawn_the_end) Fire spread is UNRESTRICTED.
[12:33:16] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Spawn_the_end'
[12:33:16] [Server thread/INFO]: [WorldGuard] Loading region data...
[12:33:17] [Server thread/INFO]: [mcMMO] Enabling mcMMO v2.1.226
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_EMPTY
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_WATER_UNCRAFTABLE
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_ABSORPTION
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_BLINDNESS
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_DECAY
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_DULLNESS
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_HASTE
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_HEALTH_BOOST
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_HUNGER
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_NAUSEA
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_RESISTANCE
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_SATURATION
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_ABSORPTION_EXTENDED
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_BLINDNESS_EXTENDED
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_DECAY_EXTENDED
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_DULLNESS_EXTENDED
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_HASTE_EXTENDED
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_HEALTH_BOOST_EXTENDED
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_HUNGER_EXTENDED
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_NAUSEA_EXTENDED
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_RESISTANCE_EXTENDED
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_SATURATION_EXTENDED
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_ABSORPTION_II
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_BLINDNESS_II
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_DECAY_II
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_DULLNESS_II
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_HASTE_II
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_HEALTH_BOOST_II
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_HUNGER_II
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_NAUSEA_II
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_RESISTANCE_II
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: POTION_OF_SATURATION_II
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_EMPTY
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_ABSORPTION
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_BLINDNESS
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_DECAY
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_DULLNESS
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_HASTE
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_HEALTH_BOOST
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_HUNGER
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_NAUSEA
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_RESISTANCE
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_SATURATION
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_ABSORPTION_EXTENDED
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_BLINDNESS_EXTENDED
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_DECAY_EXTENDED
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_DULLNESS_EXTENDED
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_HASTE_EXTENDED
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_HEALTH_BOOST_EXTENDED
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_HUNGER_EXTENDED
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_NAUSEA_EXTENDED
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_RESISTANCE_EXTENDED
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_SATURATION_EXTENDED
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_ABSORPTION_II
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_BLINDNESS_II
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_DECAY_II
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_DULLNESS_II
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_HASTE_II
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_HEALTH_BOOST_II
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_HUNGER_II
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_NAUSEA_II
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_RESISTANCE_II
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: SPLASH_POTION_OF_SATURATION_II
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_EMPTY
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_ABSORPTION
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_BLINDNESS
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_DECAY
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_DULLNESS
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_HASTE
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_HEALTH_BOOST
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_HUNGER
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_NAUSEA
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_RESISTANCE
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_SATURATION
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_ABSORPTION_EXTENDED
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_BLINDNESS_EXTENDED
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_DECAY_EXTENDED
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_DULLNESS_EXTENDED
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_HASTE_EXTENDED
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_HEALTH_BOOST_EXTENDED
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_HUNGER_EXTENDED
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_NAUSEA_EXTENDED
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_RESISTANCE_EXTENDED
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_SATURATION_EXTENDED
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_ABSORPTION_II
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_BLINDNESS_II
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_DECAY_II
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_DULLNESS_II
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_HASTE_II
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_HEALTH_BOOST_II
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_HUNGER_II
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_NAUSEA_II
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_RESISTANCE_II
[12:33:18] [Server thread/WARN]: [mcMMO] Failed to load Alchemy potion: LINGERING_POTION_OF_SATURATION_II
[12:33:19] [Server thread/INFO]: [mcMMO] Killing orphans
[12:33:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mcmmo [1.0,0]
[12:33:20] [Server thread/INFO]: [VendingMachines] Enabling VendingMachines v1.5.9
[12:33:21] [Server thread/INFO]: VendingMachines v1.5.9 is loading...
[12:33:21] [Server thread/INFO]: [VendingMachines] Using Oraxen! :D
[12:33:21] [Server thread/INFO]: [VendingMachines]  VMs Oraxen config files for VMs found!
[12:33:21] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.20.0
[12:33:22] [Server thread/INFO]: [HeadDatabase] Verwende "de_DE.lang" erstellt von Knatschkopp
[12:33:22] [Server thread/WARN]: [HeadDatabase] Economy was not loaded, some features will be disabled!
[12:33:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: hdb [4.20.0]
[12:33:22] [Server thread/INFO]: [Vulcan] Enabling Vulcan v2.9.0
[12:33:24] [Server thread/INFO]: [Vulcan] Server Version: 1.21 detected!
[12:33:24] [Server thread/INFO]: [Vulcan] mcMMO found. Enabling hook!
[12:33:24] [Server thread/INFO]: [Vulcan] BStats enabled!
[12:33:24] [Server thread/INFO]: [Vulcan] Registered mcMMO listener!
[12:33:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: Vulcan [2.9.0]
[12:33:24] [Server thread/INFO]: [Vulcan] PlaceholderAPI found. Enabling hook!
[12:33:24] [Server thread/INFO]: [Oraxen] Enabling Oraxen v1.181.0
[12:33:25] [Server thread/INFO]: IM | Version v1_21_R1 has been detected.
[12:33:25] [Server thread/INFO]: IM | Oraxen will use the NMSHandler for this version.
[12:33:25] [Server thread/INFO]: IM | Papers block-updates.disable-noteblock-updates is not enabled.
[12:33:25] [Server thread/INFO]: IM | It is recommended to enable this setting for improved performance and prevent bugs with noteblocks
[12:33:25] [Server thread/INFO]: IM | Otherwise Oraxen needs to listen to very taxing events, which also introduces some bugs
[12:33:25] [Server thread/INFO]: IM | You can enable this setting in ServerFolder/config/paper-global.yml
[12:33:25] [Server thread/INFO]: IM | Papers block-updates.disable-tripwire-updates is not enabled.
[12:33:25] [Server thread/INFO]: IM | It is recommended to enable this setting for improved performance and prevent bugs with tripwires
[12:33:25] [Server thread/INFO]: IM | Otherwise Oraxen needs to listen to very taxing events, which also introduces some bugs
[12:33:25] [Server thread/INFO]: IM | You can enable this setting in ServerFolder/config/paper-global.yml
[12:33:27] [Server thread/INFO]: IM | hamburger is using deprecated Food-Mechanic...
[12:33:27] [Server thread/INFO]: IM | It is heavily advised to swap to the new `food`-property on 1.20.5+ servers...
[12:33:27] [Server thread/INFO]: IM | energy is using deprecated Food-Mechanic...
[12:33:27] [Server thread/INFO]: IM | It is heavily advised to swap to the new `food`-property on 1.20.5+ servers...
[12:33:27] [Server thread/INFO]: IM | nutella is using deprecated Food-Mechanic...
[12:33:27] [Server thread/INFO]: IM | It is heavily advised to swap to the new `food`-property on 1.20.5+ servers...
[12:33:27] [Server thread/INFO]: IM | hammer is using deprecated Durability-Mechanic...
[12:33:27] [Server thread/INFO]: IM | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[12:33:27] [Server thread/INFO]: IM | Slicing gui-textures to 1.20.2-format...
[12:33:27] [Server thread/INFO]: IM | Successfully sliced gui-textures for 1.20.2
[12:33:28] [Server thread/INFO]: IM | Converting global lang file to individual language files...
[12:33:28] [Server thread/INFO]: IM | Verifying formatting for textures and models...
[12:33:28] [Server thread/INFO]: IM | Found invalid texture-path inside model-file assets/minecraft/models/custom/backtools/adventure_backpack.json: custom/models/adventure_backpack
[12:33:28] [Server thread/INFO]: IM | Verify that you have a texture in said path.
[12:33:28] [Server thread/INFO]: IM | Found invalid texture-path inside model-file assets/minecraft/models/custom/backtools/adventure_backpack.json: custom/models/adventure_backpack
[12:33:28] [Server thread/INFO]: IM | Verify that you have a texture in said path.
[12:33:28] [Server thread/INFO]: IM | Pack contains malformed texture(s) and/or model(s)
[12:33:28] [Server thread/INFO]: IM | These need to be fixed, otherwise the resourcepack will be broken
[12:33:28] [Server thread/INFO]: IM | Generating atlas-file for 1.19.3+ Resource Pack format
[12:33:28] [Server thread/INFO]: IM | Attempting to exclude malformed textures from atlas-file
[12:33:28] [Server thread/INFO]: 
[12:33:28] [Server thread/INFO]: IM | Attempting to merge imported font files...
[12:33:29] [Server thread/INFO]: IM | Merged 2 duplicate font files into a final assets/minecraft/font/default.json
[12:33:29] [Server thread/INFO]: IM | The imported font files have not been deleted.
[12:33:29] [Server thread/INFO]: IM | If anything seems wrong, there might be conflicting unicodes assigned.
[12:33:29] [Server thread/INFO]: 
[12:33:29] [Server thread/INFO]: IM | Erfolgreich geladen auf Debian GNU/Linux 12 (bookworm)
[12:33:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: oraxen [1.181.0]
[12:33:29] [Server thread/INFO]: IM | Plugin "PlaceholderAPI" erkannt, Hooks aktiviert
[12:33:29] [Server thread/INFO]: [WolfyUtilities] Enabled plugin integration for Oraxen
[12:33:29] [Server thread/INFO]: [CMILib] Enabling CMILib v1.5.1.3
[12:33:31] [Server thread/INFO]: Server version: v1_21_R1 - 1.21.1 - paper  1.21.1-2301-a43711d (MC: 1.21.1)
[12:33:31] [Server thread/INFO]: CMI hooked.
[12:33:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.5.1.3]
[12:33:31] [Server thread/INFO]: PlaceholderAPI hooked.
[12:33:31] [Server thread/INFO]: Updated (EN) language file. Took 120ms
[12:33:31] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v22.2
[12:33:32] [Folia Async Scheduler Thread #0/INFO]: [HeadDatabase] Successfully loaded 76629 heads!
[12:33:32] [Folia Async Scheduler Thread #0/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[12:33:32] [Server thread/INFO]: [CoreProtect] CoreProtect ist jetzt aktiviert! 
[12:33:32] [Server thread/INFO]: [CoreProtect] Verwenden von SQLite zur Datenspeicherung.
[12:33:32] [Server thread/INFO]: --------------------
[12:33:32] [Server thread/INFO]: [CoreProtect] Genießen CoreProtect? Tritt unser... bei Discord!
[12:33:32] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[12:33:32] [Server thread/INFO]: --------------------
[12:33:32] [Server thread/INFO]: [CMI] Enabling CMI v9.7.6.0
[12:33:32] [Server thread/INFO]: _______________________________________________________
[12:33:32] [Server thread/INFO]: ┏━━━┓ ┏━┓┏━┓ ┏━━┓
[12:33:32] [Server thread/INFO]: ┃┏━┓┃ ┃ ┗┛ ┃ ┗┫┣┛
[12:33:32] [Server thread/INFO]: ┃┃ ┗┛ ┃┏┓┏┓┃  ┃┃ 
[12:33:32] [Server thread/INFO]: ┃┃ ┏┓ ┃┃┃┃┃┃  ┃┃ 
[12:33:32] [Server thread/INFO]: ┃┗━┛┃ ┃┃┃┃┃┃ ┏┫┣┓
[12:33:32] [Server thread/INFO]: ┗━━━┛ ┗┛┗┛┗┛ ┗━━┛
[12:33:32] [Server thread/INFO]: _______________________________________________________
[12:33:32] [Server thread/INFO]: Integrating PaperSpigot async methods
[12:33:32] [Server thread/INFO]: Vault found. (Loaded: true)
[12:33:32] [Server thread/INFO]: Citizens found. (Loaded: false)
[12:33:33] [Server thread/INFO]: 53 Enabled and 13 Disabled modules
[12:33:33] [Server thread/INFO]: ProtocolLib found. (Loaded: true)
[12:33:34] [Server thread/INFO]: Initialized Cipher256 AES
[12:33:36] [Server thread/INFO]: Loaded (61) regular alias into memory. Took 81ms
[12:33:36] [Server thread/INFO]: Loaded (9) custom text's into memory. Took 22ms
[12:33:37] [Server thread/INFO]: (RandomTeleportation) Can't find world with (Farmwelt_Normal) name
[12:33:37] [Server thread/INFO]: (RandomTeleportation) Can't find world with (Farmwelt_Normal_2) name
[12:33:37] [Server thread/INFO]: (RandomTeleportation) Can't find world with (Farmwelt_Nether) name
[12:33:37] [Server thread/INFO]: (RandomTeleportation) Can't find world with (Farmwelt_End) name
[12:33:37] [Server thread/INFO]: (RandomTeleportation) Can't find world with (FreeBuild) name
[12:33:37] [Server thread/INFO]: 3.46.0 data base type detected
[12:33:37] [Server thread/INFO]: Started SqLite data base. Took 137ms
[12:33:37] [Server thread/INFO]: Vault was found - Enabling capabilities. Economy: RoyaleEconomy
[12:33:38] [Server thread/INFO]: Loaded (5) warning categories into memory. Took 1ms
[12:33:38] [Server thread/INFO]: Loaded (3) warning commands into memory. Took 0ms
[12:33:38] [Server thread/INFO]: Loaded (0) cooldowns into memory. Took 0ms
[12:33:38] [Server thread/INFO]: Loaded (142) custom mob heads into memory. Took 25ms
[12:33:39] [Server thread/INFO]: Initializing BungeeCord
[12:33:39] [Server thread/INFO]: Loaded (7) kits into memory. Took 12ms
[12:33:39] [Server thread/INFO]: Loaded (1) ranks into memory. Took 14ms
[12:33:39] [Server thread/INFO]: Loaded (1295) player data into memory. Took 297ms
[12:33:39] [Server thread/INFO]: Loaded (4992) playtime records into memory. Took 74ms
[12:33:39] [Server thread/INFO]: Loaded (0) playtime reward records into memory. Took 0ms
[12:33:39] [Server thread/INFO]: Loaded (47) custom alias into memory. Took 4ms
[12:33:40] [Server thread/INFO]: Loaded (4) interactive commands into memory. Took 11ms
[12:33:40] [Server thread/INFO]: Registered events. Took 357ms
[12:33:40] [Server thread/INFO]: Loaded (0) event action commands into memory. Took 6ms
[12:33:40] [Server thread/INFO]: Loaded (EN) language file into memory. Took 138ms
[12:33:40] [Server thread/INFO]: Loaded (DE) language file into memory. Took 92ms
[12:33:40] [Server thread/INFO]: Loaded (245) worth values into memory. Took 26ms
[12:33:40] [Server thread/INFO]: Loaded (1) warps into memory. Took 8ms
[12:33:40] [Server thread/INFO]: VaultPermissions found. (Loaded: true)
[12:33:40] [Server thread/INFO]: PlaceholderAPI found. (Loaded: true)
[12:33:40] [Server thread/INFO]: mcMMO found. (Loaded: true)
[12:33:40] [Server thread/INFO]: Cleaning.
[12:33:40] [Server thread/INFO]: Creating directory: plugins/Essentials
[12:33:40] [Server thread/INFO]: DIR created: plugins/Essentials/userdata_backup
[12:33:40] [Server thread/INFO]: Initializing world manager.
[12:33:40] [Server thread/INFO]: Loaded (4) schedules into memory. Took 13ms
[12:33:40] [Server thread/INFO]: Loaded GeoLiteCity
[12:33:40] [Server thread/INFO]: Loaded (30) holograms into memory. Took 230ms
[12:33:40] [Server thread/INFO]: Loaded (112) skin cache entries into memory. Took 14ms
[12:33:40] [Server thread/INFO]: [CMI] Preloading playtimetop statistics
[12:33:40] [Server thread/INFO]: Loaded (0) ArmorStand templates into memory. Took 0ms
[12:33:41] [Server thread/INFO]: Version 9.7.6.0 has been enabled
[12:33:41] [Server thread/INFO]: _______________________________________________________
[12:33:41] [Server thread/INFO]: [Skript] Enabling Skript v2.9.1
[12:33:41] [Server thread/INFO]: [Skript]     'alpha' and 'beta' are no longer valid release channels. Use 'prerelease' instead.
[12:33:42] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] A new version of Skript is available: 2.9.2 (you're currently running 2.9.1)
[12:33:42] [ForkJoinPool.commonPool-worker-1/INFO]: Download it at: <aqua><u><link:https://github.com/SkriptLang/Skript/releases/download/2.9.2/Skript-2.9.2.jar>https://github.com/SkriptLang/Skript/releases/download/2.9.2/Skript-2.9.2.jar
[12:33:56] [Server thread/INFO]: [Skript] Loaded 233074 aliases in 14226ms
[12:33:58] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[12:33:58] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.35-SNAPSHOT (build 3545)
[12:33:58] [Server thread/INFO]: [Citizens] Loading external libraries
[12:34:27] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[12:34:28] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[12:34:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[12:34:28] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[12:34:29] [Server thread/INFO]: [SCore] Enabling SCore v42.42.42
[12:34:29] [Server thread/INFO]: ================ SCore ================
[12:34:29] [Server thread/INFO]: SCore Version of the server 1.21.1-2301-a43711d (MC: 1.21.1) !
[12:34:29] [Server thread/INFO]: SCore PlaceholderAPI hooked !  (2.11.6)  Load Before
[12:34:29] [Server thread/INFO]: SCore WorldGuard hooked !  (7.0.11-beta1+a801a9d)  Load Before
[12:34:29] [Server thread/INFO]: SCore Vault hooked !  (1.7.3-b${env.TRAVIS_BUILD_NUMBER})  Load Before
[12:34:29] [Server thread/INFO]: SCore CoreProtect hooked !  (22.2)  Load Before
[12:34:29] [Server thread/INFO]: SCore ProtocolLib hooked !
[12:34:29] [Server thread/INFO]: SCore Locale setup: EN
[12:34:29] [Server thread/INFO]: SCore NBTAPI hooked !  (2.13.2)  Load Before
[12:34:29] [Server thread/INFO]: SCore HeadDatabase hooked !  (4.20.0)  Load Before
[12:34:29] [Server thread/INFO]: SCore CMI hooked !  (9.7.6.0)  Load Before
[12:34:29] [Server thread/INFO]: SCore Oraxen hooked !  (1.181.0)  Load Before
[12:34:29] [Server thread/INFO]: SCore TAB hooked !  (4.1.5) Load After
[12:34:29] [Server thread/INFO]: SCore JetsMinions hooked !  (7.10.10) Load After
[12:34:29] [Server thread/INFO]: SCore CustomCrafting hooked !  (4.17-beta.5) Load After
[12:34:29] [Server thread/INFO]: SCore WorldEdit hooked !  (2.11.2-SNAPSHOT-889;f5f9ae6)  Load Before
[12:34:29] [Server thread/INFO]: SCore Language of the editor setup on EN
[12:34:29] [Server thread/INFO]: SCore Language for in-game messages setup on EN
[12:34:29] [Server thread/INFO]: SCore will connect to the database hosted: MySQL
[12:34:29] [Server thread/INFO]: SCore Creating table SecurityOP if not exists...
[12:34:29] [Server thread/INFO]: SCore Creating table Commands if not exists...
[12:34:29] [Server thread/INFO]: SCore Creating table Cooldowns if not exists...
[12:34:29] [Server thread/INFO]: SCore Creating table Commands Player if not exists...
[12:34:29] [Server thread/INFO]: SCore Creating table Commands Entity if not exists...
[12:34:29] [Server thread/INFO]: SCore Creating table Commands Block if not exists...
[12:34:29] [Server thread/INFO]: SCore Creating table UsePerDay if not exists...
[12:34:29] [Server thread/INFO]: SCore Creating table Variables if not exists...
[12:34:30] [Server thread/INFO]: SCore SCore loaded 1 variables from local files !
[12:34:30] [Server thread/INFO]: SCore SCore loaded 1 variables from your MySQL Database !
[12:34:30] [Server thread/INFO]: SCore SCore loaded 0 delayed commands saved
[12:34:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: SCore [1.0.0]
[12:34:30] [Server thread/INFO]: ================ SCore ================
[12:34:30] [Server thread/INFO]: [PremiumVanish] Enabling PremiumVanish v2.9.14
[12:34:30] [Server thread/INFO]: [de.myzelyam.libraries.com.zaxxer.hikari.HikariDataSource] PremiumVanish Database - Starting...
[12:34:32] [Server thread/INFO]: [de.myzelyam.libraries.com.zaxxer.hikari.HikariDataSource] PremiumVanish Database - Start completed.
[12:34:32] [Server thread/INFO]: [PremiumVanish] Hooked into PaperSpigot for server list ping support
[12:34:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: premiumvanish [2.9.14]
[12:34:32] [Server thread/INFO]: [PremiumVanish] Hooked into PlaceholderAPI
[12:34:32] [Server thread/INFO]: [PremiumVanish] Hooked into CMI
[12:34:32] [Server thread/INFO]: [PremiumVanish] Hooked into Citizens
[12:34:32] [Server thread/INFO]: [PremiumVanish] Hooked into PaperSpigot for advancement interception
[12:34:32] [Server thread/INFO]: [HuskHomes] Enabling HuskHomes v4.5.4
[12:34:32] [Server thread/INFO]: [HuskHomes] Initializing plugin config & locale files...
[12:34:32] [Server thread/INFO]: [HuskHomes] Successfully initialized plugin config & locale files
[12:34:32] [Server thread/INFO]: [HuskHomes] Initializing MariaDB database connection...
[12:34:32] [Server thread/INFO]: [net.william278.huskhomes.libraries.hikari.HikariDataSource] HuskHomesHikariPool - Starting...
[12:34:32] [Server thread/INFO]: [net.william278.huskhomes.libraries.hikari.pool.HikariPool] HuskHomesHikariPool - Added connection org.mariadb.jdbc.Connection@4308c410
[12:34:32] [Server thread/INFO]: [net.william278.huskhomes.libraries.hikari.HikariDataSource] HuskHomesHikariPool - Start completed.
[12:34:32] [Server thread/INFO]: [HuskHomes] Successfully initialized MariaDB database connection
[12:34:32] [Server thread/INFO]: [HuskHomes] Initializing Plugin Messages message broker...
[12:34:32] [Server thread/INFO]: [HuskHomes] Successfully initialized Plugin Messages message broker
[12:34:32] [Server thread/INFO]: [HuskHomes] Initializing hooks...
[12:34:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: huskhomes [4.5.4]
[12:34:32] [Server thread/INFO]: [HuskHomes] Registered 1 plugin hooks: PlaceholderAPI
[12:34:32] [Server thread/INFO]: [HuskHomes] Successfully initialized hooks
[12:34:32] [Server thread/INFO]: [HuskHomes] Initializing events...
[12:34:32] [Server thread/INFO]: [HuskHomes] Successfully initialized events
[12:34:32] [Server thread/INFO]: [HuskHomes] Initializing commands...
[12:34:33] [Server thread/INFO]: [HuskHomes] Successfully initialized commands
[12:34:33] [Server thread/INFO]: [HuskHomes] Initializing API...
[12:34:33] [Server thread/INFO]: [HuskHomes] Successfully initialized API
[12:34:33] [Server thread/INFO]: [HuskHomes] Initializing metrics...
[12:34:33] [Server thread/INFO]: [HuskHomes] Successfully initialized metrics
[12:34:33] [Server thread/INFO]: [BetterFarming] Enabling BetterFarming v5.9.2
[12:34:33] [ForkJoinPool.commonPool-worker-1/WARN]: [HuskHomes] A new version of HuskHomes is available: v4.7 (running v4.5.4)
[12:34:33] [Server thread/INFO]: [BetterFarming] Version: 5.9.2 Previous: 5.9.2
[12:34:33] [Server thread/INFO]: [BetterFarming] Server: 1.21.1 running Paper
[12:34:33] [Server thread/INFO]: [BetterFarming] Licensed to: 562062
[12:34:33] [Server thread/INFO]: [BetterFarming] Experiencing issues or having questions? Join our Discord!
[12:34:33] [Server thread/INFO]: [BetterFarming] Discord: https://discord.gg/B4MAJVk
[12:34:33] [Server thread/INFO]: [BetterFarming] Wiki: https://github.com/Angeschossen/BetterFarming/wiki
[12:34:33] [Server thread/INFO]: [BetterFarming]  
[12:34:33] [Server thread/INFO]: [BetterFarming] [Integrations] Successfully integrated CMI as hologram manager.
[12:34:33] [Server thread/INFO]: [BetterFarming] [Integrations] Added support for the vanish feature of the plugin CMI.
[12:34:33] [Server thread/INFO]: [BetterFarming] [Integrations] Added support for the vanish feature of the plugin SuperVanish.
[12:34:33] [Server thread/INFO]: [BetterFarming] Using MySQL as database driver.
[12:34:33] [Server thread/INFO]: [BetterFarming] Successful connected to SQL database.
[12:34:35] [Server thread/INFO]: [BetterFarming] Database is ready.
[12:34:35] [Server thread/INFO]: [WildChests] Enabling WildChests v2024.3-b57
[12:34:35] [Server thread/INFO]: [WildChests] ******** ENABLE START ********
[12:34:35] [Server thread/INFO]: [WildChests] Loading configuration started...
[12:34:35] [Server thread/INFO]: [WildChests]  - Found 1 chests in config.yml.
[12:34:35] [Server thread/INFO]: [WildChests] Loading configuration done (Took 25ms)
[12:34:35] [Server thread/INFO]: [WildChests] Loading messages started...
[12:34:35] [Server thread/INFO]: [WildChests]  - Found 42 messages in lang.yml.
[12:34:35] [Server thread/INFO]: [WildChests] Loading messages done (Took 1ms)
[12:34:35] [Server thread/INFO]: [WildChests] ******** ENABLE DONE ********
[12:34:35] [Server thread/INFO]: [AdvancedChests] Enabling AdvancedChests v40.9
[12:34:36] [Server thread/INFO]: [ExtraTruhe] NBTAPI was found, please make sure to have it enabled on config for a better experience
[12:34:39] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.28.1-SNAPSHOT
[12:34:39] [Server thread/INFO]: [PremiumVanish] Hooked into DiscordSRV
[12:34:39] [Server thread/INFO]: [SkBee] Enabling SkBee v3.6.1
[12:34:40] [Server thread/INFO]: [SkBee] Loading NBTApi...
[12:34:40] [Server thread/INFO]: [SkBee] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[12:34:40] [Server thread/INFO]: [SkBee] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[12:34:40] [Server thread/INFO]: [SkBee] Successfully loaded NBTApi!
[12:34:40] [Server thread/INFO]: [SkBee] NBT Elements successfully loaded
[12:34:40] [Server thread/INFO]: [SkBee] Text Component Elements successfully loaded
[12:34:40] [Server thread/INFO]: [SkBee] Advancement Elements successfully loaded
[12:34:40] [Server thread/INFO]: [SkBee] BossBar Elements successfully loaded
[12:34:41] [Server thread/INFO]: [SkBee] Bound Elements successfully loaded
[12:34:41] [Server thread/INFO]: [SkBee] Damage Source elements successfully loaded
[12:34:41] [Server thread/INFO]: [SkBee] Display Entity elements successfully loaded
[12:34:41] [Server thread/INFO]: [SkBee] Fishing elements successfully loaded
[12:34:41] [Server thread/INFO]: [SkBee] Game Event Elements successfully loaded
[12:34:41] [Server thread/INFO]: [SkBee] Item Component Elements successfully loaded
[12:34:41] [Server thread/INFO]: [SkBee] Particle Elements successfully loaded
[12:34:41] [Server thread/INFO]: [SkBee] RayTrace elements successfully loaded
[12:34:41] [Server thread/INFO]: [SkBee] Recipe Elements successfully loaded
[12:34:41] [Server thread/INFO]: [SkBee] Scoreboard Elements successfully loaded
[12:34:41] [Server thread/INFO]: [SkBee] Scoreboard Objective Elements successfully loaded
[12:34:41] [Server thread/INFO]: [SkBee] Statistic Elements successfully loaded
[12:34:41] [Server thread/INFO]: [SkBee] Structure Elements successfully loaded
[12:34:41] [Server thread/INFO]: [SkBee] Minecraft Tag elements successfully loaded
[12:34:41] [Server thread/INFO]: [SkBee] Team Elements successfully loaded
[12:34:41] [Server thread/INFO]: [SkBee] Tick Manager elements successfully loaded
[12:34:41] [pool-77-thread-1/INFO]: [DiscordSRV] This build of DiscordSRV is identical to develop. [latest public dev build]
[12:34:41] [Server thread/INFO]: [SkBee] Villager Elements successfully loaded
[12:34:41] [Server thread/INFO]: [SkBee] Virtual Furnace Elements disabled via config
[12:34:41] [Server thread/INFO]: [SkBee] World Border Elements successfully loaded
[12:34:41] [Server thread/INFO]: [SkBee] World Creator Elements successfully loaded
[12:34:41] [Server thread/INFO]: [SkBee] Chunk Generator Elements successfully loaded
[12:34:41] [Server thread/INFO]: [SkBee] Loaded (427) elements:
[12:34:41] [Server thread/INFO]: [SkBee]  - 56 events
[12:34:41] [Server thread/INFO]: [SkBee]  - 70 effects
[12:34:41] [Server thread/INFO]: [SkBee]  - 259 expressions
[12:34:41] [Server thread/INFO]: [SkBee]  - 27 conditions
[12:34:41] [Server thread/INFO]: [SkBee]  - 15 sections
[12:34:41] [Server thread/INFO]: [SkBee] Checking for update...
[12:34:42] [Server thread/INFO]: [SkBee] Plugin is up to date!
[12:34:42] [Server thread/INFO]: [SkBee] Successfully enabled v3.6.1 in 2.66 seconds
[12:34:42] [Server thread/INFO]: [AdvancedRegionMarket] Enabling AdvancedRegionMarket v3.5.3
[12:34:42] [Server thread/INFO]: [AdvancedRegionMarket] Using WorldGuard7 adapter
[12:34:42] [Server thread/INFO]: [AdvancedRegionMarket] Using WorldEdit7 adapter
[12:34:42] [Server thread/INFO]: [AdvancedRegionMarket] Using MC 1.20 adapter
[12:34:43] [Server thread/WARN]: Could not find EntityType BAT for EntityLimitGroup examplelimit3! Ignoring it
[12:34:43] [Server thread/INFO]: [AdvancedRegionMarket] Regions loaded!
[12:34:43] [Server thread/INFO]: [AdvancedRegionMarket] Programmed by Alex9849
[12:34:43] [Server thread/INFO]: [AdvancedRegionMarket] I'm always searching for better translations of AdvancedRegionMarket. If you've translated the plugin it would be very nice if you would send me your translation via spigot private message! :)
[12:34:43] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.23.0
[12:34:44] [Server thread/INFO]: [Shopkeepers] Citizens found: Enabling NPC shopkeepers.
[12:34:44] [Server thread/INFO]: [Shopkeepers] Loading the data of 2 shopkeepers ...
[12:34:44] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.17.1
[12:34:44] [Server thread/INFO]: [VotingPlugin] Loaded LuckPerms hook!
[12:34:44] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[12:34:45] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[12:34:45] [Server thread/INFO]: [VotingPlugin] Using BungeeMethod: PLUGINMESSAGING
[12:34:45] [Server thread/INFO]: [VotingPlugin] Loaded plugin message channels: vp:vp
[12:34:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: votingplugin [1.6]
[12:34:45] [Server thread/INFO]: [VotingPlugin] Loading PlaceholderAPI expansion
[12:34:46] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[12:34:46] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'Spawn' have been background saved
[12:34:46] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Konsolenkanal-ID ist ungültig, keine Konsolenausgabe Weiterleitung aktiv
[12:34:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Aktiviere LuckPerms Verbindung
[12:34:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Aktiviere PlaceholderAPI Verbindung
[12:34:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] 1 alert registered
[12:34:47] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[12:34:47] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.17.1
[12:34:47] [Server thread/WARN]: [VotingPlugin] No rewards detected for the site: MC-Servers_com. See https://github.com/BenCodez/VotingPlugin/wiki/Rewards
[12:34:47] [Server thread/WARN]: [VotingPlugin] No rewards detected for the site: Minelist_net. See https://github.com/BenCodez/VotingPlugin/wiki/Rewards
[12:34:47] [Server thread/WARN]: [VotingPlugin] No rewards detected for the site: MCSL. See https://github.com/BenCodez/VotingPlugin/wiki/Rewards
[12:34:47] [Server thread/WARN]: [VotingPlugin] No rewards detected for the site: serverliste_net. See https://github.com/BenCodez/VotingPlugin/wiki/Rewards
[12:34:47] [Server thread/WARN]: [VotingPlugin] No rewards detected for the site: Minecraft-servers_com. See https://github.com/BenCodez/VotingPlugin/wiki/Rewards
[12:34:47] [Server thread/WARN]: [VotingPlugin] No rewards detected for the site: Minecraft-mp_com. See https://github.com/BenCodez/VotingPlugin/wiki/Rewards
[12:34:47] [Server thread/WARN]: [VotingPlugin] No rewards detected for the site: MCTools_org. See https://github.com/BenCodez/VotingPlugin/wiki/Rewards
[12:34:47] [Server thread/WARN]: [VotingPlugin] No rewards detected for the site: minecraft-server_eu. See https://github.com/BenCodez/VotingPlugin/wiki/Rewards
[12:34:47] [Server thread/WARN]: [VotingPlugin] No rewards detected for the site: Planetminecraft_com. See https://github.com/BenCodez/VotingPlugin/wiki/Rewards
[12:34:47] [Server thread/WARN]: [VotingPlugin] No rewards detected for the site: Minecraft-MP_com. See https://github.com/BenCodez/VotingPlugin/wiki/Rewards
[12:34:47] [Server thread/WARN]: [VotingPlugin] No rewards detected for the site: ServerLocator. See https://github.com/BenCodez/VotingPlugin/wiki/Rewards
[12:34:47] [Server thread/WARN]: [VotingPlugin] No rewards detected for the site: Minecraft-Serverlist_net. See https://github.com/BenCodez/VotingPlugin/wiki/Rewards
[12:34:47] [Server thread/WARN]: [VotingPlugin] No rewards detected for the site: Top Minecraft Servers. See https://github.com/BenCodez/VotingPlugin/wiki/Rewards
[12:34:47] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.15.1
[12:34:48] [Server thread/INFO]: [LiteBans] Using default database drivers (version:8).
[12:34:48] [Server thread/INFO]: [LiteBans] Using system locale (en)
[12:34:48] [Server thread/INFO]: [LiteBans] Loaded 2 templates from templates.yml!
[12:34:48] [Server thread/INFO]: [LiteBans] Loading SQL driver: mariadb 3.1.2 (org.mariadb.jdbc.Driver)
[12:34:48] [Server thread/INFO]: [LiteBans] Connecting to database...
[12:34:48] [Server thread/INFO]: [LiteBans] litebans-pool - Starting...
[12:34:48] [Server thread/INFO]: [LiteBans] litebans-pool - Start completed.
[12:34:48] [Server thread/INFO]: [LiteBans] Connected to MariaDB database successfully (102,2 ms).
[12:34:48] [Server thread/INFO]: [LiteBans] Database connection fully initialized (162,3 ms).
[12:34:48] [Server thread/INFO]: [LiteBans] v2.15.1 enabled. Startup took 481 ms.
[12:34:48] [Server thread/INFO]: [BackToBlock] Enabling BackToBlock v3.0.1
[12:34:48] [Server thread/INFO]: [AngelChest] Enabling AngelChest v13.6.1
[12:34:49] [Server thread/INFO]: [AngelChest] groups.yml does not exist, skipping custom group settings.
[12:34:49] [Server thread/INFO]: [AngelChest] blacklist.yml does not exist, disabling item blacklist.
[12:34:49] [Server thread/INFO]: [AngelChest] No graveyards.yml found, disabling Graveyards feature
[12:34:49] [Server thread/WARN]: [AngelChest] Could not add usage/description to command acopen
[12:34:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: angelchest [GENERIC]
[12:34:49] [Server thread/INFO]: [AngelChest] Successfully hooked into Vault and the EconomyProvider, enabling economy functions.
[12:34:49] [Server thread/INFO]: [AngelChest] [ACF] Enabled Asynchronous Tab Completion Support!
[12:34:49] [Server thread/INFO]: [AngelChest] Successfully enabled AngelChest Plus v13.6.1/(562062) (Premium: true)
[12:34:49] [Server thread/INFO]: [HuskHomesGUI] Enabling HuskHomesGUI v2.3
[12:34:50] [Server thread/INFO]: [HuskHomesGUI] Successfully enabled HuskHomes v2.3
[12:34:50] [Server thread/INFO]: [AnvilEnhanced] Enabling AnvilEnhanced v1.6.2
[12:34:51] [Server thread/INFO]: [AnvilEnhanced] Permission plugin found: LuckPerms
[12:34:51] [Server thread/INFO]: [AnvilEnhanced] Successfully enabled
[12:34:51] [Server thread/INFO]: [Tooltips] Enabling Tooltips v1.7.1
[12:34:51] [Server thread/INFO]: [Tooltips] Used furniture plugin: OraxenFurnitureProvider
[12:34:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tooltips [1.1]
[12:34:51] [Server thread/INFO]: [Tooltips] Loading schemas...
[12:34:51] [Server thread/INFO]: [Tooltips] Loading icons...
[12:34:51] [Server thread/INFO]: [Tooltips] Loaded 4 icons.
[12:34:51] [Server thread/INFO]: [Tooltips] Loading themes...
[12:34:51] [Server thread/INFO]: [Tooltips] Loaded 5 themes.
[12:34:51] [Server thread/INFO]: [Tooltips] Loading presets...
[12:34:51] [Server thread/INFO]: [Tooltips] Loaded 10 presets.
[12:34:51] [Server thread/INFO]: [Tooltips] Generating resources...
[12:34:51] [Server thread/INFO]: [CreativeManager] Enabling CreativeManager v1.35.10
[12:34:51] [Server thread/INFO]: [CreativeManager] =============================================================
[12:34:51] [Server thread/INFO]: [CreativeManager] CreativeManager v1.35.10
[12:34:51] [Server thread/INFO]: [CreativeManager] =============================================================
[12:34:51] [Server thread/INFO]: [CreativeManager] Created by K0bus for AkuraGaming
[12:34:51] [Server thread/INFO]: [CreativeManager] =============================================================
[12:34:51] [Server thread/INFO]: [CreativeManager] Check config file for update
[12:34:51] [Server thread/INFO]: [CreativeManager] Loading config file
[12:34:51] [Server thread/INFO]: [CreativeManager] Configuration loaded
[12:34:51] [Server thread/INFO]: [CreativeManager] Language loaded [en_EN]
[12:34:51] [Server thread/INFO]: [CreativeManager] Listener registered
[12:34:51] [Server thread/INFO]: [CreativeManager] Commands registered
[12:34:52] [Server thread/INFO]: [CreativeManager] Entities permissions registered ! [131]
[12:34:52] [Server thread/INFO]: [CreativeManager] Log loaded from database ! [49466]
[12:34:52] [Server thread/INFO]: [CreativeManager] Tag loaded from Spigot ! [311]
[12:34:52] [Server thread/INFO]: [CreativeManager] =============================================================
[12:34:52] [Server thread/INFO]: [BeaconPlus] Enabling BeaconPlus3 v3.0.77
[12:34:53] [Server thread/INFO]: [BeaconPlus] Registered Effect Parser: COMMAND_EXECUTOR
[12:34:53] [Server thread/INFO]: [BeaconPlus] Registered Effect Parser: EXP_BOOST
[12:34:53] [Server thread/INFO]: [BeaconPlus] Registered Effect Parser: FLY
[12:34:53] [Server thread/INFO]: [BeaconPlus] Registered Effect Parser: FURNACE_BOOST
[12:34:53] [Server thread/INFO]: [BeaconPlus] Registered Effect Parser: CROPS_BOOST
[12:34:53] [Server thread/INFO]: [BeaconPlus] Registered Effect Parser: MAGNET
[12:34:53] [Server thread/INFO]: [BeaconPlus] Registered Effect Parser: POTION_EFFECT
[12:34:53] [Server thread/INFO]: [BeaconPlus] Registered Effect Parser: POTION_DURATION_BOOST
[12:34:53] [Server thread/INFO]: [BeaconPlus] Registered Effect Parser: STUPID_AI
[12:34:53] [Server thread/INFO]: [BeaconPlus] Registered Effect Parser: SPAWNER_BOOST
[12:34:53] [Server thread/INFO]: [BeaconPlus] Registered Effect Parser: FIRE_CONTROL
[12:34:53] [Server thread/INFO]: [BeaconPlus] Registered Effect Parser: SATURATION
[12:34:53] [Server thread/INFO]: [BeaconPlus] Registered Effect Parser: COOLDOWN_REDUCTION
[12:34:53] [Server thread/INFO]: [BeaconPlus] Registered Effect Parser: EXP_GAIN
[12:34:53] [Server thread/INFO]: [BeaconPlus] Registered Effect Parser: IMMORTALITY_FIELD
[12:34:53] [Server thread/INFO]: [BeaconPlus] Registered Effect Parser: PERMISSION
[12:34:53] [Server thread/INFO]: [BeaconPlus] Registered Effect Parser: ATTRIBUTE_MODIFIER
[12:34:53] [Server thread/INFO]: [BeaconPlus] Registered Effect Parser: PREVENT_MOB_SPAWNING
[12:34:53] [Server thread/INFO]: [BeaconPlus] Uses Paper Entity Finder
[12:34:53] [pool-94-thread-1/INFO]: WorldHandle: class net.minecraft.server.level.ServerLevelUsing Modern Recipe Manager
[12:34:53] [pool-94-thread-1/INFO]: [BeaconPlus] Unloaded 0 chunks (0 beacons)
[12:34:53] [pool-94-thread-1/INFO]: [BeaconPlus] Uses FILE data storage
[12:34:53] [Server thread/INFO]: [Skellett] Enabling Skellett v2.0.10
[12:34:53] [pool-94-thread-1/INFO]: [BeaconPlus] Added power source: GOLD_BLOCK (1.0)
[12:34:53] [pool-94-thread-1/INFO]: [BeaconPlus] Added power source: IRON_BLOCK (1.0)
[12:34:53] [pool-94-thread-1/INFO]: [BeaconPlus] Added power source: EMERALD_BLOCK (3.0)
[12:34:53] [pool-94-thread-1/INFO]: [BeaconPlus] Added power source: DIAMOND_BLOCK (2.0)
[12:34:53] [pool-94-thread-1/INFO]: [BeaconPlus] Added power source: NETHERITE_BLOCK (4.0)
[12:34:53] [pool-94-thread-1/INFO]: [BeaconPlus] Uses Percentile Range calculator
[12:34:53] [Server thread/INFO]: [Skellett] Syntax.Events.AnvilPrepare syntax is for 1.11.2+ spigot versions!
[12:34:53] [Server thread/INFO]: [Skellett] SpectralArrow syntax is for 1.10+ spigot versions!
[12:34:53] [Server thread/INFO]: [Skellett] Main.PrepareEnchant syntax is for 1.11.2+ spigot versions!
[12:34:53] [Server thread/INFO]: [Skellett] Main.PrepareEnchant syntax is for 1.11.2+ spigot versions!
[12:34:54] [Server thread/INFO]: [Skellett] Syntax.Events.AnvilPrepare syntax is for 1.11.2+ spigot versions!
[12:34:54] [pool-94-thread-1/INFO]: [BeaconPlus] Loaded effect: furnace
[12:34:54] [Server thread/INFO]: [Skellett] Main.PrepareEnchant syntax is for 1.11.2+ spigot versions!
[12:34:54] [Server thread/INFO]: [Skellett] Main.Maps syntax is for 1.11+ spigot versions!
[12:34:54] [pool-94-thread-1/INFO]: [BeaconPlus] Loaded effect: strength
[12:34:54] [pool-94-thread-1/INFO]: [BeaconPlus] Loaded effect: invisible
[12:34:54] [pool-94-thread-1/INFO]: [BeaconPlus] Loaded effect: regeneration
[12:34:54] [pool-94-thread-1/INFO]: [BeaconPlus] Loaded effect: resist
[12:34:54] [pool-94-thread-1/INFO]: [BeaconPlus] Loaded effect: fastdig
[12:34:54] [pool-94-thread-1/INFO]: [BeaconPlus] Loaded effect: cure
[12:34:54] [pool-94-thread-1/INFO]: [BeaconPlus] Loaded effect: crops
[12:34:54] [Server thread/INFO]: [Skellett] Main.PrepareEnchant syntax is for 1.11.2+ spigot versions!
[12:34:54] [pool-94-thread-1/INFO]: [BeaconPlus] Loaded effect: spawners
[12:34:54] [pool-94-thread-1/INFO]: [BeaconPlus] Loaded effect: slowdown
[12:34:54] [pool-94-thread-1/INFO]: [BeaconPlus] Loaded effect: speed
[12:34:54] [pool-94-thread-1/INFO]: [BeaconPlus] Loaded effect: peaceful
[12:34:54] [pool-94-thread-1/INFO]: [BeaconPlus] Loaded effect: nightvision
[12:34:54] [pool-94-thread-1/INFO]: [BeaconPlus] Loaded effect: exp_boost
[12:34:54] [pool-94-thread-1/INFO]: [BeaconPlus] Loaded effect: luck
[12:34:54] [pool-94-thread-1/INFO]: [BeaconPlus] Loaded effect: burner
[12:34:54] [pool-94-thread-1/INFO]: [BeaconPlus] Loaded effect: water_breathing
[12:34:54] [pool-94-thread-1/INFO]: [BeaconPlus] Loaded effect: fireExtinguisher
[12:34:54] [pool-94-thread-1/INFO]: [BeaconPlus] Loaded effect: poison
[12:34:54] [pool-94-thread-1/INFO]: [BeaconPlus] Loaded effect: gravity_well
[12:34:54] [pool-94-thread-1/INFO]: [BeaconPlus] Loaded effect: jump
[12:34:54] [Server thread/INFO]: [Skellett] Syntax.Events.BrewingFuel syntax is for 1.11.2+ spigot versions!
[12:34:54] [Server thread/INFO]: [Skellett] CollidableState syntax is for 1.9+ spigot versions!
[12:34:54] [Server thread/INFO]: [Skellett] ItemCooldown syntax is for 1.11.2+ spigot versions!
[12:34:54] [Server thread/INFO]: [Skellett] Syntax.Events.BrewingFuel syntax is for 1.11.2+ spigot versions!
[12:34:54] [Server thread/INFO]: [Skellett] Registered 26 Effects, 11 Conditions, 59 Expressions and 16 Events
[12:34:54] [Server thread/INFO]: [UltimateAutoRestart] Enabling UltimateAutoRestart v2024.07
[12:34:54] [Server thread/INFO]: [UltimateAutoRestart+] 2024.07, a premium resource by Norska - Thanks for purchasing!
[12:34:54] [Server thread/INFO]: [UltimateAutoRestart+] Join www.norska.dev/discord/ for support!
[12:34:54] [Server thread/INFO]: [UltimateAutoRestart+] Attempting hooks...
[12:34:54] [Server thread/INFO]: [ChestProtect] Enabling ChestProtect v5.18.4
[12:34:54] [Server thread/INFO]: [ChestProtect] Version: 5.18.4 Previous: 5.18.4
[12:34:54] [Server thread/INFO]: [ChestProtect] Server: 1.21.1 running Paper
[12:34:54] [Server thread/INFO]: [ChestProtect] Licensed to: 562062
[12:34:54] [Server thread/INFO]: [ChestProtect] Experiencing issues or having questions? Join our Discord!
[12:34:54] [Server thread/INFO]: [ChestProtect] Discord: https://discord.gg/B4MAJVk
[12:34:54] [Server thread/INFO]: [ChestProtect] Wiki: https://github.com/Angeschossen/ChestProtect/wiki
[12:34:54] [Server thread/INFO]: [ChestProtect]  
[12:34:54] [Server thread/INFO]: [ChestProtect] [Integrations] Successfully integrated CMI as hologram manager.
[12:34:54] [Server thread/INFO]: [ChestProtect] [Integrations] Added support for the vanish feature of the plugin CMI.
[12:34:54] [Server thread/INFO]: [ChestProtect] [Integrations] Added support for the vanish feature of the plugin SuperVanish.
[12:34:55] [Server thread/INFO]: [ContainerPassthrough] Enabling ContainerPassthrough v1.2.2
[12:34:55] [Server thread/INFO]: [LumberJack] Enabling LumberJack v5.3.0
[12:34:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lumberjack [5.3.0]
[12:34:55] [Server thread/INFO]: [Triton] Enabling Triton v4.0.0-SNAPSHOT
[12:34:55] [Server thread/WARN]: [Triton] It seems like your messages.yml file is outdated
[12:34:55] [Server thread/WARN]: [Triton] You can get an up-to-date copy at https://triton.rexcantor64.com/messagesyml
[12:34:55] [Server thread/INFO]: [Triton] Loaded MySQL storage manager
[12:34:55] [Server thread/INFO]: [Triton] Successfully setup the Language Manager! 2 languages loaded!
[12:34:56] [Server thread/INFO]: [Triton] Successfully setup the Translation Manager! 511 text translations and 27 sign translations loaded!
[12:34:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: triton [4.0.0-SNAPSHOT]
[12:34:56] [Server thread/INFO]: [SurvivalInvisiframes] Enabling SurvivalInvisiframes v2.1.0
[12:34:56] [Server thread/INFO]: [HuskSync] Enabling HuskSync v3.6.8
[12:34:56] [Server thread/INFO]: [HuskSync] Initializing commands...
[12:34:56] [Server thread/INFO]: [HuskSync] Successfully initialized commands
[12:34:56] [Server thread/INFO]: [HuskSync] Initializing data adapter...
[12:34:56] [Server thread/INFO]: [HuskSync] Successfully initialized data adapter
[12:34:56] [Server thread/INFO]: [HuskSync] Initializing data serializers...
[12:34:56] [Server thread/INFO]: [HuskSync] Successfully initialized data serializers
[12:34:56] [Server thread/INFO]: [HuskSync] Initializing data migrators/converters...
[12:34:56] [Server thread/INFO]: [HuskSync] Successfully initialized data migrators/converters
[12:34:56] [Server thread/INFO]: [HuskSync] Initializing MySQL database connection...
[12:34:56] [Server thread/INFO]: [net.william278.husksync.libraries.hikari.HikariDataSource] HuskSyncHikariPool - Starting...
[12:34:56] [Server thread/INFO]: [net.william278.husksync.libraries.hikari.pool.HikariPool] HuskSyncHikariPool - Added connection com.mysql.cj.jdbc.ConnectionImpl@28816c41
[12:34:56] [Server thread/INFO]: [net.william278.husksync.libraries.hikari.HikariDataSource] HuskSyncHikariPool - Start completed.
[12:34:57] [Server thread/INFO]: [HuskSync] Successfully initialized MySQL database connection
[12:34:57] [Server thread/INFO]: [HuskSync] Initializing Redis server connection...
[12:34:57] [Server thread/INFO]: [HuskSync] Successfully initialized Redis server connection
[12:34:57] [Server thread/INFO]: [HuskSync] Initializing data syncer...
[12:34:57] [Server thread/INFO]: [HuskSync] Successfully initialized data syncer
[12:34:57] [Server thread/INFO]: [HuskSync] Initializing events...
[12:34:57] [husksync:redis_subscriber/INFO]: [HuskSync] Redis subscribed to channel 'husksync:::update_user_data'
[12:34:57] [husksync:redis_subscriber/INFO]: [HuskSync] Redis subscribed to channel 'husksync:::request_user_data'
[12:34:57] [husksync:redis_subscriber/INFO]: [HuskSync] Redis subscribed to channel 'husksync:::return_user_data'
[12:34:57] [Server thread/INFO]: [HuskSync] Using ProtocolLib to cancel packets for locked players
[12:34:57] [Server thread/INFO]: [HuskSync] Successfully initialized events
[12:34:57] [Server thread/INFO]: [HuskSync] Initializing hooks...
[12:34:57] [Server thread/INFO]: [HuskSync] Successfully initialized hooks
[12:34:57] [Server thread/INFO]: [HuskSync] Initializing api...
[12:34:57] [Server thread/INFO]: [HuskSync] Successfully initialized api
[12:34:57] [Server thread/INFO]: [HuskSync] Initializing metrics...
[12:34:57] [Server thread/INFO]: [HuskSync] Successfully initialized metrics
[12:34:57] [Server thread/INFO]: [HopperSorter] Enabling HopperSorter v2.6.57
[12:34:57] [Server thread/INFO]:          ____
[12:34:57] [Server thread/INFO]:   |   | /       HopperSorter v2.6.57
[12:34:57] [Server thread/INFO]:   |___| \___    
[12:34:57] [Server thread/INFO]:   |   |     \   Developed by: LegameMc, Jamesparkdev
[12:34:57] [Server thread/INFO]:   |   | ____/
[12:34:57] [Server thread/INFO]:  
[12:34:57] [Server thread/INFO]: [HopperSorter] Info - v1_21_R1
[12:34:57] [Server thread/INFO]: [HopperSorter] Info - Loading v1_21_R1 class
[12:34:57] [Server thread/INFO]: [HopperSorter] Info - Plugin is up to date.
[12:34:57] [Server thread/INFO]: [HopperSorter] Info - CMI plugin detected. Hooking holograms....
[12:34:57] [Server thread/INFO]: [HopperSorter] Info - Loading settings...
[12:34:57] [Server thread/INFO]: [HopperSorter] Info - Loading hoppersorter recipe...
[12:34:57] [Server thread/INFO]: [HopperSorter] Info - Loading messages...
[12:34:57] [Server thread/INFO]: [HopperSorter] Info - Detected AdvancedChests . Hooking...
[12:34:58] [Server thread/INFO]: [HopperSorter] Info - Detected WildChests plugin. Hooking...
[12:34:58] [Server thread/INFO]: [ReferralSystem] Enabling ReferralSystem v3.3.0
[12:34:59] [Server thread/INFO]: -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
[12:34:59] [Server thread/INFO]:   ___      __                  _ ___         _             
[12:34:59] [Server thread/INFO]:  | _ \___ / _|___ _ _ _ _ __ _| / __|_  _ __| |_ ___ _ __  
[12:34:59] [Server thread/INFO]:  |   / -_)  _/ -_) '_| '_/ _` | \__ \ || (_-<  _/ -_) '  \ 
[12:34:59] [Server thread/INFO]:  |_|_\___|_| \___|_| |_| \__,_|_|___/\_, /__/\__\___|_|_|_|
[12:34:59] [Server thread/INFO]:                                      |__/                  
[12:34:59] [Server thread/INFO]: -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
[12:34:59] [Server thread/INFO]: [ReferralSystem] Plugin Create by PedroJM96.
[12:34:59] [Server thread/INFO]: [ReferralSystem] Loading Libraries...
[12:34:59] [Server thread/INFO]: [ReferralSystem] Loading library commons-lang-commons-lang-2.6
[12:34:59] [Server thread/INFO]: [ReferralSystem] commons-lang-commons-lang-2.6 library loaded successfully.
[12:34:59] [Server thread/INFO]: [ReferralSystem] Loading library commons-codec-commons-codec-1.15
[12:34:59] [Server thread/INFO]: [ReferralSystem] commons-codec-commons-codec-1.15 library loaded successfully.
[12:34:59] [Server thread/INFO]: [ReferralSystem] Loading library com.google.code.gson-gson-2.9.0
[12:34:59] [Server thread/INFO]: [ReferralSystem] com.google.code.gson-gson-2.9.0 library loaded successfully.
[12:34:59] [Server thread/INFO]: [ReferralSystem] Loading library org.slf4j-slf4j-api-1.7.25
[12:34:59] [Server thread/INFO]: [ReferralSystem] org.slf4j-slf4j-api-1.7.25 library loaded successfully.
[12:34:59] [Server thread/INFO]: [ReferralSystem] Loading library org.slf4j-slf4j-simple-1.7.25
[12:34:59] [Server thread/INFO]: [ReferralSystem] org.slf4j-slf4j-simple-1.7.25 library loaded successfully.
[12:34:59] [Server thread/INFO]: [ReferralSystem] Loading library com.zaxxer-HikariCP-3.4.1
[12:34:59] [Server thread/INFO]: [ReferralSystem] com.zaxxer-HikariCP-3.4.1 library loaded successfully.
[12:35:00] [Server thread/INFO]: [ReferralSystem] Loading configuration...
[12:35:00] [Server thread/INFO]: [ReferralSystem] Load config.yml
[12:35:00] [Server thread/INFO]: [ReferralSystem] config.yml loaded.
[12:35:00] [Server thread/INFO]: [ReferralSystem] Load messages_EN.yml
[12:35:00] [Server thread/INFO]: [ReferralSystem] messages_EN.yml loaded.
[12:35:00] [Server thread/INFO]: [ReferralSystem] Load claim.yml
[12:35:00] [Server thread/INFO]: [ReferralSystem] claim.yml loaded.
[12:35:00] [Server thread/INFO]: [ReferralSystem] Register player command: referral
[12:35:00] [Server thread/INFO]: [ReferralSystem] Register player sub-command: help
[12:35:00] [Server thread/INFO]: [ReferralSystem] Register player sub-command: claim
[12:35:00] [Server thread/INFO]: [ReferralSystem] Register player sub-command: code
[12:35:00] [Server thread/INFO]: [ReferralSystem] Register player sub-command: list
[12:35:00] [Server thread/INFO]: [ReferralSystem] Register player sub-command: reload
[12:35:00] [Server thread/INFO]: [ReferralSystem] Register player sub-command: info
[12:35:00] [Server thread/INFO]: [ReferralSystem] Register player sub-command: top
[12:35:00] [Server thread/INFO]: [ReferralSystem] Register player sub-command: addPoints
[12:35:00] [Server thread/INFO]: [ReferralSystem] Register player sub-command: setPoints
[12:35:00] [Server thread/INFO]: [ReferralSystem] Register player sub-command: admincode
[12:35:00] [Server thread/INFO]: [ReferralSystem] Hooked Vault economy
[12:35:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: referralsystem [3.3.0]
[12:35:00] [Server thread/INFO]: [ReferralSystem] Hooked PlaceholderAPI
[12:35:00] [Server thread/INFO]: [ReferralSystem] Data set to MySQL
[12:35:00] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ReferralSystem-MySQLPool - Starting...
[12:35:00] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] ReferralSystem-MySQLPool - Added connection com.mysql.cj.jdbc.ConnectionImpl@247d912f
[12:35:00] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ReferralSystem-MySQLPool - Start completed.
[12:35:00] [Server thread/INFO]: [ReferralSystem] Loaded database
[12:35:00] [Server thread/INFO]: [ReferralSystem] [id,INT] [name,VARCHAR] [uuid,VARCHAR] [ip,VARCHAR] [code,INT] [referrals,INT] [points,INT] [referring,INT] [claim_bonus,BIT] [playtime,BIGINT] [purchases,VARCHAR] [time,BIGINT] 
[12:35:00] [Server thread/INFO]: -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
[12:35:00] [Server thread/INFO]: [BlockImpact] Enabling BlockImpact v3.0.0
[12:35:00] [Server thread/INFO]: [AdventureBackpacks] Enabling AdventureBackpacks v1.0.4-Release
[12:35:02] [Server thread/INFO]: [TAB] Enabling TAB v4.1.5
[12:35:02] [Server thread/INFO]: [TAB] Loaded NMS hook in 130ms
[12:35:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [4.1.5]
[12:35:03] [Server thread/INFO]: [TAB] Enabled in 856ms
[12:35:03] [Server thread/INFO]: [FileCleaner] Enabling FileCleaner vs2.1.1
[12:35:03] [Server thread/INFO]: [FileCleaner] Starting file cleaning task...
[12:35:03] [Server thread/INFO]: [FileCleaner] Successfully deleted file "./logs/2024-09-01-1.log.gz"
[12:35:03] [Server thread/INFO]: [FileCleaner] Done!
[12:35:03] [Server thread/INFO]: [Ersatz] Enabling Ersatz v1.0*
[12:35:03] [Server thread/INFO]: [Elevator] Enabling Elevator v3.13.0
[12:35:04] [Server thread/INFO]: [ServerSaver] Enabling ServerSaver v1.0*
[12:35:04] [Server thread/INFO]: [DisableJoinMessage] Enabling DisableJoinMessage v1.0*
[12:35:04] [Server thread/INFO]: ===================================
[12:35:04] [Server thread/INFO]: ===================================
[12:35:04] [Server thread/INFO]: Check out my other Plugins!
[12:35:04] [Server thread/INFO]: I also sell a BedWars Plugin!
[12:35:04] [Server thread/INFO]: ===================================
[12:35:04] [Server thread/INFO]: ===================================
[12:35:04] [Server thread/INFO]: [ServerNPC] Enabling ServerNPC v1.17.4-RELEASE-b1
[12:35:04] [Server thread/INFO]: [ServerNPC] Loading ServerNPC... (V:v1_21_R1)
[12:35:04] [Server thread/INFO]: [ServerNPC] Trying to load EntityCreator. (v1_21_R1)
[12:35:04] [Server thread/INFO]: [ServerNPC] Loading commands...
[12:35:04] [Server thread/INFO]: [ServerNPC] Hooked PlaceholderAPI
[12:35:04] [Server thread/INFO]: [ServerNPC] ServerNPC Hooked CMI (Holograms)
[12:35:04] [Server thread/INFO]: [ServerNPC] Loading 5 skins from cache.
[12:35:04] [Server thread/INFO]: [ServerNPC] REGISTER: Loading files...
[12:35:05] [Server thread/INFO]: [AxShulkers] Enabling AxShulkers v1.5.4
[12:35:05] [Server thread/INFO]: [AxShulkers] Loaded plugin! Using H2 database to store data!
[12:35:05] [Server thread/INFO]: [UltimateRewards] Enabling UltimateRewards v2.2.0
[12:35:06] [Server thread/INFO]: [dev.revivalo.ultimaterewards.shaded.hikari.HikariDataSource] ultimaterewards-pool - Starting...
[12:35:07] [Server thread/INFO]: [dev.revivalo.ultimaterewards.shaded.hikari.HikariDataSource] ultimaterewards-pool - Start completed.
[12:35:07] [Server thread/INFO]: [UltimateRewards] dev.revivalo.ultimaterewards.hook.register.OraxenHook has been registered.
[12:35:07] [Server thread/INFO]: [UltimateRewards] dev.revivalo.ultimaterewards.hook.register.DiscordSRVHook has been registered.
[12:35:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultimaterewards [2.2.0]
[12:35:07] [Server thread/INFO]: [UltimateRewards] dev.revivalo.ultimaterewards.hook.register.PlaceholderApiPreRegister has been registered.
[12:35:07] [Server thread/INFO]: [UltimateRewards] dev.revivalo.ultimaterewards.hook.register.VaultHook has been registered.
[12:35:08] [Server thread/INFO]: [UltimateRewards] 5 rewards have been loaded from rewards folder!
[12:35:08] [Server thread/INFO]: [AntiPopup] Enabling AntiPopup v9.2
[12:35:08] [Server thread/INFO]: [AntiPopup] Config enabled.
[12:35:08] [Server thread/INFO]: [AntiPopup] Initiated PacketEvents.
[12:35:08] [Server thread/INFO]: [AntiPopup] Hooked on 1.21
[12:35:08] [Server thread/INFO]: [AntiPopup] Commands registered.
[12:35:08] [Server thread/INFO]: [AntiPopup] Logger filter enabled.
[12:35:08] [Server thread/INFO]: [TempFly] Enabling TempFly v1.3.6
[12:35:08] [Server thread/INFO]: [TempFly] [LICENSE] The Plugin is licensed to: 562062. The Download Hash is: %%__NONCE__%%
[12:35:08] [Server thread/INFO]: [TempFly] {SQL} starting SQL . . .
[12:35:08] [Server thread/INFO]: [TempFly] {SQL} Connecting to MYSQL Database...
[12:35:08] [Server thread/INFO]: [TempFly] {SQL} successfully connected to Database.
[12:35:08] [Server thread/INFO]: [TempFly] Vault Economy System was found.
[12:35:08] [Server thread/INFO]: [TempFly] LuckPerms Permission System was found.
[12:35:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: TempFly [1.3.6]
[12:35:08] [Server thread/INFO]: [TempFly] PlacerHolderAPI was found and registered!
[12:35:08] [Server thread/INFO]: [TempFly] Oraxen was found and linked!
[12:35:08] [Server thread/INFO]: [WorldGuard] Registering session handler me.truemb.tempfly.hooks.WGEntry
[12:35:08] [Server thread/INFO]: [TempFly] WorldGuard was found and hooked!
[12:35:09] [Server thread/INFO]: IM | Plugin "TempFly" erkannt, Hooks aktiviert
[12:35:09] [Server thread/INFO]: [Coupon] Enabling Coupon v1.2.0
[12:35:09] [Server thread/INFO]: [Coupon] - - - - - - - - Loading - - - - - - - -
[12:35:09] [Server thread/INFO]: [Coupon] Options Validation
[12:35:09] [Server thread/INFO]: [Coupon]   Warnings: 0
[12:35:09] [Server thread/INFO]: [Coupon]   Errors: 0
[12:35:09] [Server thread/INFO]: [Coupon] MYSQL Integration
[12:35:09] [Server thread/INFO]: [Coupon]   Connected to MYSQL!
[12:35:09] [Server thread/INFO]: [Coupon] Command Registration
[12:35:09] [Server thread/INFO]: [Coupon]   Command Code has been registered
[12:35:09] [Server thread/INFO]: [Coupon]   Loaded 26 Command paths
[12:35:09] [Server thread/INFO]: [Coupon]   Components has been registered
[12:35:09] [Server thread/INFO]: [Coupon]   Parsers has been registered
[12:35:09] [Server thread/INFO]: [Coupon]   Range validators has been registered
[12:35:09] [Server thread/INFO]: [Coupon]   Custom invokers has been registered
[12:35:09] [Server thread/INFO]: [Coupon]   Tab value resolvers has been registered
[12:35:09] [Server thread/INFO]: [Coupon] Loading extensive logger
[12:35:09] [Server thread/INFO]: [Coupon]  Successfully loaded.
[12:35:09] [Server thread/INFO]: [Coupon] Trying to hook with External placeholder services
[12:35:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: coupon [1.2.0]
[12:35:09] [Server thread/INFO]: [Coupon]  Successfully hooked
[12:35:09] [Server thread/INFO]: [Coupon] Loading Coupon figure
[12:35:09] [Server thread/INFO]: [Coupon]   Cannot find figure location!
[12:35:10] [Server thread/INFO]: [Coupon] GUI ItemData Initialization
[12:35:10] [Server thread/INFO]: [Coupon]   Loaded 114 ItemData
[12:35:10] [Server thread/INFO]: [Coupon] - - - - - Successfully loaded - - - - -
[12:35:10] [Server thread/INFO]: [SkQuery] Enabling SkQuery v4.1.10
[12:35:10] [Server thread/INFO]: [skQuery] Locating classes from SkQuery...
[12:35:10] [Server thread/INFO]: [skQuery] Beginning to process a total of 117 from SkQuery
[12:35:10] [Server thread/INFO]: [skQuery] Out of 117 classes, 117 classes were loaded from SkQuery
[12:35:10] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.1
[12:35:10] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[12:35:10] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[12:35:10] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[12:35:10] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[12:35:10] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[12:35:10] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[12:35:10] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[12:35:10] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[12:35:10] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[12:35:10] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[12:35:10] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[12:35:10] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[12:35:10] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[12:35:10] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[12:35:10] [Server thread/INFO]: [Furnish] Enabling Furnish v0.4
[12:35:10] [Server thread/INFO]: [ArmShopBridge] Enabling ArmShopBridge v1.3.0
[12:35:10] [Server thread/INFO]: [ArmShopBridge] Successfully hooked into Shopkeepers
[12:35:10] [Server thread/INFO]: [EcoJobs] Enabling EcoJobs v3.69.6
[12:35:10] [Server thread/INFO]: [EcoJobs] Loading EcoJobs
[12:35:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecojobs [3.69.6]
[12:35:12] [Server thread/INFO]: [voicechat] Enabling voicechat v2.5.20
[12:35:12] [Server thread/INFO]: [voicechat] Initializing compatibility for Bukkit version 1.21.1-R0.1
[12:35:12] [Server thread/INFO]: [voicechat] Compatibility version 18
[12:35:12] [Server thread/INFO]: [voicechat] Successfully initialized commodore command completion
[12:35:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: voicechat [2.5.20]
[12:35:12] [Server thread/INFO]: [voicechat] Successfully registered PlaceholderAPI expansion
[12:35:12] [Server thread/INFO]: [JetsMinions] Enabling JetsMinions v7.10.10
[12:35:12] [Server thread/INFO]: [JetsMinions] Initialising Plugin v7.10.10...
[12:35:12] [Server thread/INFO]: [JetsMinions] hooks.yml found, loading!
[12:35:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: jetsminions [1.0.0]
[12:35:12] [Server thread/INFO]: [JetsMinions] skins.yml found, loading!
[12:35:12] [Server thread/INFO]: [JetsMinions] config.yml found, loading!
[12:35:13] [Server thread/INFO]: [JetsMinions] messages.yml found, loading!
[12:35:13] [Server thread/INFO]: [JetsMinions] controlpanel.yml found, loading!
[12:35:13] [Server thread/INFO]: [JetsMinions] players.yml found, loading!
[12:35:13] [Server thread/INFO]: [JetsMinions] store.yml found, loading!
[12:35:13] [Server thread/INFO]: [JetsMinions] Loaded Minion: Miner Made by Jet315
[12:35:13] [Server thread/INFO]: [JetsMinions] Loaded Minion: Slayer Made by Jet315
[12:35:13] [Server thread/INFO]: [JetsMinions] Loaded Minion: Collector Made by Jet315
[12:35:13] [Server thread/INFO]: [JetsMinions] Loaded Minion: Feeder Made by Jet315
[12:35:13] [Server thread/INFO]: [JetsMinions] Loaded Minion: Lumberjack Made by Jet315
[12:35:13] [Server thread/INFO]: [JetsMinions] Loaded Minion: Farmer Made by Jet315
[12:35:13] [Server thread/INFO]: [JetsMinions] Loaded Minion: Fisher Made by Jet315
[12:35:13] [Server thread/INFO]: [JetsMinions] Loaded Minion: Seller Made by Jet315
[12:35:13] [Server thread/INFO]: [JetsMinions] Loaded 0/2 Minions
[12:35:13] [Server thread/INFO]: [JetsMinions] Waiting for server to load before loading 2 Minions
[12:35:13] [Server thread/INFO]: [JetsMinions] Initialising Complete in 795ms
[12:35:13] [Server thread/INFO]: [BottledExp] Enabling BottledExp v3.2.2.3
[12:35:13] [Server thread/INFO]: Your server version is not compatible with this plugins version! craftbukkit
[12:35:13] [Server thread/INFO]: Some functionality will be disabled until plugin gets updated for this specific server version
[12:35:13] [Server thread/INFO]: [AdvancedEnderchest] Enabling AdvancedEnderchest v1.2.0-Migration-Update
[12:35:13] [Server thread/INFO]: [AdvancedEnderchest] Enabling PlaceholderAPI support
[12:35:13] [Server thread/INFO]: [TAB-Bridge] Enabling TAB-Bridge v5.0.6
[12:35:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [5.0.6]
[12:35:13] [Server thread/INFO]: [TuneBlock] Enabling TuneBlock v1.0
[12:35:13] [Server thread/INFO]: [InteractiveBoard] Enabling InteractiveBoard v2.1.0
[12:35:14] [InteractiveBoard-Main/INFO]: [InteractiveBoard] Enabling plugin
[12:35:14] [Server thread/INFO]: [CustomCrafting] Enabling CustomCrafting v4.17-beta.5
[12:35:14] [InteractiveBoard-Main/INFO]: [InteractiveBoard] Plugin enabled
[12:35:14] [Server thread/INFO]: [CustomCrafting] Loaded fallback language "en_US" v6.1.0 translated by WolfyScript
[12:35:14] [Server thread/INFO]: [CustomCrafting] Loaded active language "de_DE" v5.0.0 translated by EmielRegis
[12:35:14] [Server thread/INFO]: [CustomCrafting] ____ _  _ ____ ___ ____ _  _ ____ ____ ____ ____ ___ _ _  _ ____ 
[12:35:14] [Server thread/INFO]: [CustomCrafting] |    |  | [__   |  |  | |\/| |    |__/ |__| |___  |  | |\ | | __ 
[12:35:14] [Server thread/INFO]: [CustomCrafting] |___ |__| ___]  |  |__| |  | |___ |  \ |  | |     |  | | \| |__]
[12:35:14] [Server thread/INFO]: [CustomCrafting]     Version      | v4.17-beta.5
[12:35:14] [Server thread/INFO]: [CustomCrafting]     WolfyUtils   | v4.17-beta.7
[12:35:14] [Server thread/INFO]: [CustomCrafting]     Bukkit       | 1.21.1-2301-a43711d (MC: 1.21.1)(API: 1.21.1-R0.1-SNAPSHOT)
[12:35:14] [Server thread/INFO]: [CustomCrafting] 
[12:35:14] [Server thread/INFO]: [CustomCrafting] Special thanks to my Patrons for supporting this project: 
[12:35:14] [Server thread/INFO]: [CustomCrafting] Omarlatif, Nat R, Obsidian_Sword, LiveJunye, Mithran, Teddy
[12:35:14] [Server thread/INFO]: [CustomCrafting] Invictus_Vulpes , Luuk Musch, fioxu, JorshStark, Perny Dev, Charlie
[12:35:14] [Server thread/INFO]: [CustomCrafting] iachen, whja t, Green Masks, lance fector, Jack Snellings, MineHouse Server
[12:35:14] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[12:35:14] [Server thread/INFO]: [CustomCrafting] Detected ProtocolLib... initiating additional features.
[12:35:14] [Server thread/INFO]: [CustomCrafting] Registriere PlaceHolder
[12:35:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: customcrafting [4.17-beta.5]
[12:35:14] [Server thread/INFO]: [CustomCrafting] Data destination: LOCAL
[12:35:15] [Server thread/INFO]: [CustomCrafting] Initialisiere Inventar GUIs
[12:35:15] [Server thread/INFO]: [CustomCrafting] Register ItemCreator Tabs
[12:35:16] [Server thread/INFO]: [CustomCrafting] Lade Rezepte & Items
[12:35:16] [Server thread/INFO]: [CustomCrafting] - - - - [Local Storage] - - - -
[12:35:16] [Server thread/INFO]: [CustomCrafting] [LOCAL] Using 10 threads
[12:35:16] [Server thread/INFO]: [CustomCrafting] [LOCAL] Looking through data folder...
[12:35:16] [Server thread/INFO]: [CustomCrafting] [LOCAL] Lade Items
[12:35:16] [Server thread/INFO]: [CustomCrafting] [LOCAL] Lade Rezepte
[12:35:17] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loaded 53 recipes in 292ms
[12:35:17] [Server thread/INFO]: [CustomCrafting] Indexing Recipe Book...
[12:35:17] [Server thread/INFO]: [CustomCrafting] Indexed Recipe Book!
[12:35:17] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[12:35:17] [Server thread/INFO]: [skRayFall] Enabling skRayFall v1.9.28
[12:35:17] [Server thread/INFO]: [skRayFall] Yay! You are running skRayFall 1.9.28!
[12:35:17] [Server thread/INFO]: [skRayFall] Nathan and Lewis <3 you.
[12:35:17] [Server thread/INFO]: [skRayFall] Cooking Bacon...
[12:35:17] [Server thread/INFO]: [skRayFall] Getting more bacon for the army of citizens...
[12:35:17] [Server thread/INFO]: [skRayFall] Got bacon for the EffectLib particle ninjas!
[12:35:17] [Server thread/INFO]: [skRayFall] No Votifier Found! *Checks oven for finished bacon*
[12:35:17] [Server thread/WARN]: [skRayFall] Unable to get bacon for the CoreProtect loggers [Unsupported API version (9)].
[12:35:17] [Server thread/INFO]: [skRayFall] Enabling general 1.8+ bacon!
[12:35:17] [Server thread/INFO]: [skRayFall] Getting the general 1.9+ bacon!
[12:35:17] [Server thread/INFO]: [skRayFall] Getting the extra special 1.17+ bacon!
[12:35:17] [Server thread/INFO]: [skRayFall] Bacon is ready!
[12:35:17] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v5.3.2
[12:35:17] [Server thread/INFO]: [ExcellentCrates] Powered by nightcore
[12:35:17] [Server thread/INFO]: [ExcellentCrates] Read database configuration...
[12:35:18] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@3391473b
[12:35:18] [Server thread/INFO]: [ExcellentCrates] Enabled data synchronization with 10 seconds interval.
[12:35:18] [Server thread/INFO]: [ExcellentCrates] Registered currency: xp
[12:35:18] [Server thread/INFO]: [ExcellentCrates] Registered currency: levels
[12:35:18] [Server thread/INFO]: [ExcellentCrates] Registered currency: money
[12:35:18] [Server thread/INFO]: [ExcellentCrates] Loaded 8 crate openings.
[12:35:18] [Server thread/INFO]: [ExcellentCrates] Loaded 7 crate keys.
[12:35:18] [Server thread/INFO]: [ExcellentCrates] Loaded 4 rarities!
[12:35:19] [Server thread/INFO]: [ExcellentCrates] Loaded 7 crates.
[12:35:19] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[12:35:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [5.3.2]
[12:35:19] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 1488 ms!
[12:35:19] [Server thread/INFO]: [LeaderOS] Enabling LeaderOS v1.1.5
[12:35:19] [Server thread/INFO]: LeaderOS » Credit closed.
[12:35:19] [Server thread/INFO]: LeaderOS » WebStore closed.
[12:35:19] [Server thread/INFO]: LeaderOS » Donations closed.
[12:35:19] [Server thread/INFO]: LeaderOS » Auth closed.
[12:35:19] [Server thread/INFO]: LeaderOS » Connect enabled.
[12:35:19] [Server thread/INFO]: LeaderOS » Bazaar closed.
[12:35:19] [Server thread/INFO]: LeaderOS » Discord enabled.
[12:35:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: leaderos-cache [1.0]
[12:35:19] [Server thread/INFO]: LeaderOS » Cache enabled.
[12:35:19] [Server thread/INFO]: LeaderOS » Voucher has not started due missing dependency. [1. Credit]
[12:35:19] [Server thread/INFO]: [skript-gui] Enabling skript-gui v1.3
[12:35:19] [pusher-java-client eventQueue/INFO]: LeaderOS Connect: State changed from DISCONNECTED to CONNECTING
[12:35:19] [Server thread/INFO]: [Skript]     Missing version in default.lang
[12:35:19] [Server thread/INFO]: [CommandPanels] Enabling CommandPanels v3.21.4.1
[12:35:19] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.21.4.1 Plugin Loading...
[12:35:19] [pusher-java-client eventQueue/INFO]: LeaderOS Connect: State changed from CONNECTING to CONNECTED
[12:35:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: commandpanels [1.0.0]
[12:35:19] [pusher-java-client eventQueue/INFO]: LeaderOS » Connect module has been successfully connected to the server!
[12:35:20] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.21.4.1 Plugin Loaded!
[12:35:20] [Server thread/INFO]: [AutoShulker] Enabling AutoShulker v3.5.2
[12:35:20] [Server thread/INFO]: [PluginVersions] Enabling PluginVersions v1.3.3
[12:35:20] [Server thread/INFO]: [SoundMuffler] Enabling SoundMuffler v1.0.0
[12:35:20] [Server thread/INFO]: [RentIt-Worlds] Enabling RentIt-Worlds v1.6.1
[12:35:20] [Server thread/INFO]: [RentIt-Worlds] [LICENSE] The Plugin is licensed to: %%__USER__%%. The Download Hash is: %%__NONCE__%%
[12:35:20] [Server thread/INFO]: [RentIt-Worlds] Paper Server was detected!
[12:35:20] [Server thread/INFO]: [RentIt-Worlds] Vault Economy System was found.
[12:35:20] [Server thread/INFO]: [RentIt-Worlds] LuckPerms Permission System was found.
[12:35:20] [Server thread/INFO]: [RentIt-Worlds] Citizens was found and gets integrated!
[12:35:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: riw [1.6.1]
[12:35:20] [Server thread/INFO]: [RentIt-Worlds] PlacerHolderAPI was found and registered!
[12:35:20] [Server thread/INFO]: [RentIt-Worlds] Oraxen was found and linked!
[12:35:20] [Server thread/INFO]: [RentIt-Worlds] HuskHomes was found and registered!
[12:35:20] [Server thread/INFO]: [RentIt-Worlds] HuskHomes was found and registered!
[12:35:20] [Server thread/INFO]: [RentIt-Worlds] CMI (Homes) was found and registered!
[12:35:20] [Server thread/INFO]: [RentIt-Worlds] {SQL} starting SQL . . .
[12:35:20] [Server thread/INFO]: [RentIt-Worlds] {SQL} Connecting to MARIADB Database...
[12:35:21] [Server thread/INFO]: [RentIt-Worlds] Loading all Playerworlds...
[12:35:21] [Server thread/INFO]: Preparing start region for dimension minecraft:plugins/rentit-worlds/playerworlds/riw_1
[12:35:21] [Server thread/INFO]: Time elapsed: 1 ms
[12:35:21] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_1) TNT ignition is PERMITTED.
[12:35:21] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_1) Lighters are PERMITTED.
[12:35:21] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_1) Lava fire is PERMITTED.
[12:35:21] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_1) Fire spread is UNRESTRICTED.
[12:35:21] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'plugins/RentIt-Worlds/PlayerWorlds/riw_1'
[12:35:21] [Server thread/INFO]: [RentIt-Worlds] World '1' was loaded.
[12:35:22] [Server thread/INFO]: Preparing start region for dimension minecraft:plugins/rentit-worlds/playerworlds/riw_4
[12:35:22] [Server thread/INFO]: Time elapsed: 103 ms
[12:35:22] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_4) TNT ignition is PERMITTED.
[12:35:22] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_4) Lighters are PERMITTED.
[12:35:22] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_4) Lava fire is PERMITTED.
[12:35:22] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_4) Fire spread is UNRESTRICTED.
[12:35:22] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'plugins/RentIt-Worlds/PlayerWorlds/riw_4'
[12:35:22] [Server thread/INFO]: [RentIt-Worlds] World '4' was loaded.
[12:35:22] [Server thread/INFO]: Preparing start region for dimension minecraft:plugins/rentit-worlds/playerworlds/riw_6
[12:35:22] [Server thread/INFO]: Time elapsed: 49 ms
[12:35:22] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_6) TNT ignition is PERMITTED.
[12:35:22] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_6) Lighters are PERMITTED.
[12:35:22] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_6) Lava fire is PERMITTED.
[12:35:22] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_6) Fire spread is UNRESTRICTED.
[12:35:22] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'plugins/RentIt-Worlds/PlayerWorlds/riw_6'
[12:35:22] [Server thread/INFO]: [RentIt-Worlds] World '6' was loaded.
[12:35:22] [Server thread/INFO]: Preparing start region for dimension minecraft:plugins/rentit-worlds/playerworlds/riw_7
[12:35:22] [Server thread/INFO]: Time elapsed: 38 ms
[12:35:22] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_7) TNT ignition is PERMITTED.
[12:35:22] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_7) Lighters are PERMITTED.
[12:35:22] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_7) Lava fire is PERMITTED.
[12:35:22] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_7) Fire spread is UNRESTRICTED.
[12:35:22] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'plugins/RentIt-Worlds/PlayerWorlds/riw_7'
[12:35:22] [Server thread/INFO]: [RentIt-Worlds] World '7' was loaded.
[12:35:22] [Server thread/INFO]: Preparing start region for dimension minecraft:plugins/rentit-worlds/playerworlds/riw_8
[12:35:22] [Server thread/INFO]: Time elapsed: 58 ms
[12:35:22] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_8) TNT ignition is PERMITTED.
[12:35:22] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_8) Lighters are PERMITTED.
[12:35:22] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_8) Lava fire is PERMITTED.
[12:35:22] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_8) Fire spread is UNRESTRICTED.
[12:35:22] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'plugins/RentIt-Worlds/PlayerWorlds/riw_8'
[12:35:22] [Server thread/INFO]: [RentIt-Worlds] World '8' was loaded.
[12:35:22] [Server thread/INFO]: Preparing start region for dimension minecraft:plugins/rentit-worlds/playerworlds/riw_10
[12:35:22] [Server thread/INFO]: Time elapsed: 36 ms
[12:35:22] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_10) TNT ignition is PERMITTED.
[12:35:22] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_10) Lighters are PERMITTED.
[12:35:22] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_10) Lava fire is PERMITTED.
[12:35:22] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_10) Fire spread is UNRESTRICTED.
[12:35:22] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'plugins/RentIt-Worlds/PlayerWorlds/riw_10'
[12:35:22] [Server thread/INFO]: [RentIt-Worlds] World '10' was loaded.
[12:35:22] [Server thread/INFO]: Preparing start region for dimension minecraft:plugins/rentit-worlds/playerworlds/riw_11
[12:35:23] [Server thread/INFO]: Time elapsed: 75 ms
[12:35:23] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_11) TNT ignition is PERMITTED.
[12:35:23] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_11) Lighters are PERMITTED.
[12:35:23] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_11) Lava fire is PERMITTED.
[12:35:23] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_11) Fire spread is UNRESTRICTED.
[12:35:23] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'plugins/RentIt-Worlds/PlayerWorlds/riw_11'
[12:35:23] [Server thread/INFO]: [RentIt-Worlds] World '11' was loaded.
[12:35:23] [Server thread/INFO]: Preparing start region for dimension minecraft:plugins/rentit-worlds/playerworlds/riw_13
[12:35:23] [Server thread/INFO]: Time elapsed: 15 ms
[12:35:23] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_13) TNT ignition is PERMITTED.
[12:35:23] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_13) Lighters are PERMITTED.
[12:35:23] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_13) Lava fire is PERMITTED.
[12:35:23] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_13) Fire spread is UNRESTRICTED.
[12:35:23] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'plugins/RentIt-Worlds/PlayerWorlds/riw_13'
[12:35:23] [Server thread/INFO]: [RentIt-Worlds] World '13' was loaded.
[12:35:23] [Server thread/INFO]: Preparing start region for dimension minecraft:plugins/rentit-worlds/playerworlds/riw_14
[12:35:23] [Server thread/INFO]: Time elapsed: 62 ms
[12:35:23] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_14) TNT ignition is PERMITTED.
[12:35:23] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_14) Lighters are PERMITTED.
[12:35:23] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_14) Lava fire is PERMITTED.
[12:35:23] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_14) Fire spread is UNRESTRICTED.
[12:35:23] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'plugins/RentIt-Worlds/PlayerWorlds/riw_14'
[12:35:23] [Server thread/INFO]: [RentIt-Worlds] World '14' was loaded.
[12:35:23] [Server thread/INFO]: Preparing start region for dimension minecraft:plugins/rentit-worlds/playerworlds/riw_16
[12:35:23] [Server thread/INFO]: Time elapsed: 87 ms
[12:35:23] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_16) TNT ignition is PERMITTED.
[12:35:23] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_16) Lighters are PERMITTED.
[12:35:23] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_16) Lava fire is PERMITTED.
[12:35:23] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_16) Fire spread is UNRESTRICTED.
[12:35:23] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'plugins/RentIt-Worlds/PlayerWorlds/riw_16'
[12:35:23] [Server thread/INFO]: [RentIt-Worlds] World '16' was loaded.
[12:35:23] [Server thread/INFO]: Preparing start region for dimension minecraft:plugins/rentit-worlds/playerworlds/riw_17
[12:35:23] [Server thread/INFO]: Time elapsed: 34 ms
[12:35:23] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_17) TNT ignition is PERMITTED.
[12:35:23] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_17) Lighters are PERMITTED.
[12:35:23] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_17) Lava fire is PERMITTED.
[12:35:23] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_17) Fire spread is UNRESTRICTED.
[12:35:23] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'plugins/RentIt-Worlds/PlayerWorlds/riw_17'
[12:35:23] [Server thread/INFO]: [RentIt-Worlds] World '17' was loaded.
[12:35:23] [Server thread/INFO]: Preparing start region for dimension minecraft:plugins/rentit-worlds/playerworlds/riw_18
[12:35:23] [Server thread/INFO]: Time elapsed: 26 ms
[12:35:23] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_18) TNT ignition is PERMITTED.
[12:35:23] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_18) Lighters are PERMITTED.
[12:35:23] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_18) Lava fire is PERMITTED.
[12:35:23] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_18) Fire spread is UNRESTRICTED.
[12:35:23] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'plugins/RentIt-Worlds/PlayerWorlds/riw_18'
[12:35:23] [Server thread/INFO]: [RentIt-Worlds] World '18' was loaded.
[12:35:23] [Server thread/INFO]: Preparing start region for dimension minecraft:plugins/rentit-worlds/playerworlds/riw_19
[12:35:23] [Server thread/INFO]: Time elapsed: 8 ms
[12:35:23] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_19) TNT ignition is PERMITTED.
[12:35:23] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_19) Lighters are PERMITTED.
[12:35:23] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_19) Lava fire is PERMITTED.
[12:35:23] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_19) Fire spread is UNRESTRICTED.
[12:35:23] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'plugins/RentIt-Worlds/PlayerWorlds/riw_19'
[12:35:23] [Server thread/INFO]: [RentIt-Worlds] World '19' was loaded.
[12:35:24] [Server thread/INFO]: Preparing start region for dimension minecraft:plugins/rentit-worlds/playerworlds/riw_21
[12:35:24] [Server thread/INFO]: Time elapsed: 93 ms
[12:35:24] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_21) TNT ignition is PERMITTED.
[12:35:24] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_21) Lighters are PERMITTED.
[12:35:24] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_21) Lava fire is PERMITTED.
[12:35:24] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_21) Fire spread is UNRESTRICTED.
[12:35:24] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'plugins/RentIt-Worlds/PlayerWorlds/riw_21'
[12:35:24] [Server thread/INFO]: [RentIt-Worlds] World '21' was loaded.
[12:35:24] [Server thread/INFO]: Preparing start region for dimension minecraft:plugins/rentit-worlds/playerworlds/riw_23
[12:35:24] [Server thread/INFO]: Time elapsed: 39 ms
[12:35:24] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_23) TNT ignition is PERMITTED.
[12:35:24] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_23) Lighters are PERMITTED.
[12:35:24] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_23) Lava fire is PERMITTED.
[12:35:24] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_23) Fire spread is UNRESTRICTED.
[12:35:24] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'plugins/RentIt-Worlds/PlayerWorlds/riw_23'
[12:35:24] [Server thread/INFO]: [RentIt-Worlds] World '23' was loaded.
[12:35:24] [Server thread/INFO]: Preparing start region for dimension minecraft:plugins/rentit-worlds/playerworlds/riw_33
[12:35:24] [Server thread/INFO]: Time elapsed: 29 ms
[12:35:24] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_33) TNT ignition is PERMITTED.
[12:35:24] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_33) Lighters are PERMITTED.
[12:35:24] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_33) Lava fire is PERMITTED.
[12:35:24] [Server thread/INFO]: [WorldGuard] (plugins/RentIt-Worlds/PlayerWorlds/riw_33) Fire spread is UNRESTRICTED.
[12:35:24] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'plugins/RentIt-Worlds/PlayerWorlds/riw_33'
[12:35:24] [Server thread/INFO]: [RentIt-Worlds] World '33' was loaded.
[12:35:24] [Server thread/INFO]: [RentIt-Worlds] All Playerworlds are loaded.
[12:35:24] [Server thread/INFO]: [RentIt-Worlds] {SQL} successfully connected to Database.
[12:35:25] [Server thread/INFO]: IM | Plugin "RentIt-Worlds" erkannt, Hooks aktiviert
[12:35:25] [Server thread/INFO]: [InventorySaver] Enabling InventorySaver v3.8.3-VERSION-1.20
[12:35:25] [Server thread/INFO]: [InventorySaver] Configuration file found. Loading configuration file.
[12:35:25] [Server thread/INFO]: [InventorySaver] [History - MySQL] Database connection was successful created.
[12:35:26] [Server thread/INFO]: [RecyclerPlus] Enabling RecyclerPlus v1.3.7
[12:35:27] [Server thread/INFO]: [RecyclerPlus] Success load custom items.
[12:35:27] [Server thread/INFO]: [VillagerMarket] Enabling VillagerMarket v1.12.0
[12:35:27] [Server thread/INFO]: [VillagerMarket] Loaded 51 shops in 476 ms!
[12:35:28] [Server thread/INFO]: [VillagerMarket] Auto config update is enabled
[12:35:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: vm [1.12.0]
[12:35:28] [Server thread/INFO]: [VillagerBank] Enabling VillagerBank v1.5.3
[12:35:28] [Server thread/INFO]: [JetsAntiAFKPro] Enabling JetsAntiAFKPro v3.7.1
[12:35:28] [Server thread/INFO]: 
[12:35:28] [Server thread/INFO]: [JetsAntiAFKPro] Initializing Plugin v3.7.1
[12:35:28] [Server thread/INFO]: [JetsAntiAFKPro] config.yml found, loading!
[12:35:28] [Server thread/INFO]: [JetsAntiAFKPro] Unable to load TITLE ACTION due to TitleAPI not being installed (Please download TitleAPI in order to use titles on 1.8)
[12:35:28] [Server thread/INFO]: [JetsAntiAFKPro] Unable to load TITLE ACTION due to TitleAPI not being installed (Please download TitleAPI in order to use titles on 1.8)
[12:35:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: jetsantiafkpro [1.0.0]
[12:35:28] [Server thread/INFO]: [JetsAntiAFKPro] timeplayedgui.yml found, loading!
[12:35:28] [Server thread/INFO]: [JetsAntiAFKPro] messages.yml found, loading!
[12:35:28] [Server thread/INFO]: [JetsAntiAFKPro] Initializing Complete in 136 Ms
[12:35:28] [Server thread/INFO]: 
[12:35:28] [Server thread/INFO]: [ChatControlRed] Enabling ChatControlRed v10.27.9
[12:35:28] [Server thread/INFO]:  ____ _  _ ____ ___ ____ ____ _  _ ___ ____ ____ _     
[12:35:28] [Server thread/INFO]:  |    |__| |__|  |  |    |  | |\ |  |  |__/ |  | |    
[12:35:28] [Server thread/INFO]:  |___ |  | |  |  |  |___ |__| | \|  |  |  \ |__| |___
[12:35:28] [Server thread/INFO]:   
[12:35:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chatcontrolred [10.27.9]
[12:35:31] [Server thread/INFO]: Connecting to external database...
[12:35:31] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Starting...
[12:35:31] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-2 - Added connection com.mysql.cj.jdbc.ConnectionImpl@55c88e25
[12:35:31] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Start completed.
[12:35:32] [Server thread/INFO]: Note: Hooked into mcMMO to spy channels
[12:35:32] [Server thread/INFO]: [DiscordSRV] API listener org.mineacademy.chatcontrol.lib.model.DiscordListener$DiscordListenerImpl Abmeldung
[12:35:32] [Server thread/INFO]: [DiscordSRV] API listener org.mineacademy.chatcontrol.lib.model.DiscordListener$DiscordListenerImpl Anmeldung (3 Methoden)
[12:35:32] [Server thread/INFO]: [QuickShop-Hikari] Enabling QuickShop-Hikari v6.2.0.7
[12:35:32] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Execute the enable sequence
[12:35:32] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari
[12:35:32] [Server thread/INFO]: [QuickShop-Hikari] Registering Bukkit Service: com.ghostchu.quickshop.api.QuickShopProvider
[12:35:32] [Server thread/INFO]: [QuickShop-Hikari] Starting plugin self-test, please wait...
[12:35:32] [Server thread/INFO]: [QuickShop-Hikari] [OK] Spigot Based Server Test
[12:35:32] [Server thread/INFO]: [QuickShop-Hikari] [OK] Old QuickShop Test
[12:35:32] [Server thread/INFO]: [QuickShop-Hikari] [OK] ModdedServer Based Test
[12:35:32] [Server thread/INFO]: [QuickShop-Hikari] [OK] ModdedServer Database Driver Test
[12:35:32] [Server thread/INFO]: [QuickShop-Hikari] [OK] CoreSupport Test
[12:35:32] [Server thread/INFO]: [QuickShop-Hikari] [OK] Virtual DisplayItem Support Test
[12:35:32] [Server thread/INFO]: [QuickShop-Hikari] [OK] ProtocolLib Incorrect Locate Test
[12:35:32] [Server thread/INFO]: [QuickShop-Hikari] [OK] GameVersion supporting Test
[12:35:32] [Server thread/INFO]: [QuickShop-Hikari] [OK] Permission Manager Test
[12:35:32] [Server thread/INFO]: [QuickShop-Hikari] [OK] PacketListenerAPI Conflict Test
[12:35:32] [Server thread/INFO]: [QuickShop-Hikari] [OK] Reremake Test
[12:35:32] [Server thread/INFO]: [QuickShop-Hikari] [OK] EcoEnchants V11 Check
[12:35:32] [Server thread/INFO]: [QuickShop-Hikari] [OK] End of life Test
[12:35:32] [Server thread/INFO]: [QuickShop-Hikari] Reading the configuration...
[12:35:32] [Server thread/INFO]: [QuickShop-Hikari] [ConfigUpdater] Saving configuration changes...
[12:35:32] [Server thread/INFO]: [QuickShop-Hikari] Contributors: Ghost_chu, PotatoCraft Studio, Netherfoam, Timtower, KaiNoMood (KaiKikuchi), sandtechnology, jho5245, cakoyo, Andre601, Ectabro, Chris6ix, portlek, log4b0at, deadman96385, tiararinne, DoctaEnkoda, CarmJos, YuanYuanOwO, Mgazul, mart-r, Tim269, raphtaliapt, creatorfromhell, LoneDev6, Steven-OS, confuxeon, ibmibmibm, judgetread, mfnalex, Warriorrrr, PyvesB, yannicklamprecht, ORelio, RMSCA, Starmism, yiwenwang2090, PaulBGD, Nlkomaru, harry0198, Draesia, Localized community members on Crowdin
[12:35:32] [Server thread/INFO]: [QuickShop-Hikari] Original author: Netherfoam, Timtower, KaiNoMood, sandtechnology
[12:35:32] [Server thread/INFO]: [QuickShop-Hikari] Let's start loading the plugin
[12:35:32] [Server thread/INFO]: [QuickShop-Hikari] Setting up ItemExpressionRegistry...
[12:35:32] [Server thread/INFO]: [QuickShop-Hikari] Using Virtual Item display, loading ProtocolLib support...
[12:35:32] [Server thread/INFO]: [QuickShop-Hikari] Successfully loaded ProtocolLib support!
[12:35:32] [Server thread/INFO]: [QuickShop-Hikari] Setting up database...
[12:35:32] [Server thread/INFO]: [QuickShop-Hikari] Create database backup...
[12:35:33] [Server thread/INFO]: [QuickShop-Hikari] Checking and updating database columns, it may take a while...
[12:35:33] [Server thread/INFO]: [QuickShop-Hikari] Finished!
[12:35:33] [Server thread/INFO]: [QuickShop-Hikari] Selected permission provider: Bukkit
[12:35:33] [Server thread/INFO]: [QuickShop-Hikari] Registering commands...
[12:35:33] [Server thread/INFO]: [QuickShop-Hikari] Loaded 1 rules for listener blacklist.
[12:35:33] [Server thread/INFO]: [QuickShop-Hikari] EventManager selected: QSEventManager
[12:35:34] [Server thread/INFO]: [QuickShop-Hikari] Loading shops from database...
[12:35:34] [Server thread/INFO]: [QuickShop-Hikari] Used 157ms to fetch 296 shops from database.
[12:35:34] [Server thread/INFO]: [QuickShop-Hikari] Loading shops into memory...
[12:35:35] [Server thread/INFO]: [QuickShop-Hikari] Used 1232ms to load 132 shops into memory (164 shops will be loaded after chunks/world loaded).
[12:35:35] [Server thread/INFO]: [QuickShop-Hikari] Registering listeners...
[12:35:35] [Server thread/INFO]: [QuickShop-Hikari] Cleaning MsgUtils...
[12:35:35] [Server thread/INFO]: [QuickShop-Hikari] Cleaning purchase messages from the database that are over a week old...
[12:35:35] [Server thread/INFO]: [QuickShop-Hikari] Log actions is enabled. Actions will be logged in the qs.log file!
[12:35:35] [Server thread/INFO]: [QuickShop-Hikari] [Shop Purger] Purge not enabled!
[12:35:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: qs [6.2.0.7]
[12:35:36] [Server thread/INFO]: [QuickShop-Hikari] Successfully loaded PlaceHolderAPI support!
[12:35:36] [Server thread/INFO]: [QuickShop-Hikari] [OK] Virtual DisplayItem Support Test
[12:35:36] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> All Complete. (3496ms)
[12:35:36] [Server thread/INFO]: [MobsToEggs] Enabling MobsToEggs v1.7.13
[12:35:36] [Server thread/INFO]: [MobsToEggs] Loading files for MobsToEggs...
[12:35:36] [Server thread/INFO]: [MobsToEggs] Loading language: en
[12:35:36] [Server thread/INFO]: [MobsToEggs] Using Dependencies:
[12:35:36] [Server thread/INFO]: [MobsToEggs] ✔️ [Vault, WorldGuard, NBTAPI]
[12:35:36] [Server thread/INFO]: [MobsToEggs] ❌ [MythicMobs, StackMob, Towny]
[12:35:36] [Server thread/INFO]: [Mclogs] Enabling Mclogs v2.3.1
[12:35:36] [Server thread/INFO]: [libreforge] Enabling libreforge v4.71.6
[12:35:36] [Server thread/INFO]: [libreforge] Loading libreforge
[12:35:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: libreforge [4.71.6]
[12:35:36] [Server thread/INFO]: [libreforge] Loaded integrations: Citizens, TAB, mcMMO, Vault, WorldGuard
[12:35:36] [Server thread/INFO]: [libreforge] 
[12:35:36] [Server thread/INFO]: [libreforge] Hey, what's this plugin doing here? I didn't install it!
[12:35:36] [Server thread/INFO]: [libreforge] libreforge is the effects system for plugins like EcoEnchants,
[12:35:36] [Server thread/INFO]: [libreforge] EcoJobs, EcoItems, etc. If you're looking for config options for
[12:35:36] [Server thread/INFO]: [libreforge] things like cooldown messages, lrcdb, and stuff like that, you'll
[12:35:36] [Server thread/INFO]: [libreforge] find it under /plugins/libreforge
[12:35:36] [Server thread/INFO]: [libreforge] 
[12:35:36] [Server thread/INFO]: [libreforge] Don't worry about updating libreforge, it's handled automatically!
[12:35:36] [Server thread/INFO]: [libreforge] 
[12:35:37] [Server thread/INFO]: [spark] Starting background profiler...
[12:35:38] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[12:35:38] [Server thread/INFO]: Done preparing level "Spawn" (149.574s)
[12:35:38] [Server thread/INFO]: Starting GS4 status listener
[12:35:38] [Server thread/INFO]: Thread Query Listener started
[12:35:38] [Server thread/INFO]: Starting remote control listener
[12:35:38] [Query Listener #1/INFO]: Query running on 0.0.0.0:25569
[12:35:38] [Server thread/INFO]: Thread RCON Listener started
[12:35:38] [Server thread/INFO]: RCON running on 0.0.0.0:25575
[12:35:38] [Server thread/INFO]: JMX monitoring enabled
[12:35:38] [Server thread/INFO]: Running delayed init tasks
[12:35:38] [Craft Scheduler Thread - 8 - TheCore/INFO]: [TheCore] Checking for update...
[12:35:38] [Craft Scheduler Thread - 16 - VotingPlugin/INFO]: [VotingPlugin] CMI found, loading hook
[12:35:38] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[12:35:38] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[12:35:38] [Craft Scheduler Thread - 19 - Coupon/INFO]: [Coupon] Checking for update...
[12:35:38] [Craft Scheduler Thread - 23 - UltimateRewards/INFO]: [UltimateRewards] You are running a development build (2.2.0).
[12:35:38] [Craft Scheduler Thread - 26 - AdvancedEnderchest/INFO]: [AdvancedEnderchest] Database connected: 89.58.14.63
[12:35:38] [Craft Scheduler Thread - 26 - AdvancedEnderchest/INFO]: [AdvancedEnderchest] Database wait_timeout = 28800s
[12:35:38] [Craft Scheduler Thread - 29 - RecyclerPlus/INFO]: [RecyclerPlus] There is not a new update available.
[12:35:39] [Craft Scheduler Thread - 8 - TheCore/INFO]: [TheCore]   You are using the latest version.
[12:35:39] [Craft Scheduler Thread - 19 - Coupon/INFO]: [Coupon]   You are using the latest version.
[12:35:39] [Craft Scheduler Thread - 30 - Vault/INFO]: [Vault] Checking for Updates ... 
[12:35:39] [Craft Scheduler Thread - 37 - QuickShop-Hikari/INFO]: [QuickShop-Hikari] Start to caching usernames (async)...
[12:35:39] [Craft Scheduler Thread - 30 - Vault/INFO]: [Vault] No new version available
[12:35:44] [Craft Scheduler Thread - 9 - UltraScoreboards/INFO]: [UltraScoreboards] Translations successfully loaded & applied (34 UltraScoreboards and Base Translation files found)
[12:35:57] [Server thread/INFO]: Loaded 1290 recipes
[12:35:58] [Server thread/INFO]: Loaded 1399 advancements
[12:35:59] [Server thread/INFO]: [CoreProtect] WorldEdit erfolgreich anmelden initialisiert.
[12:35:59] [Server thread/INFO]: [CMI] Permission plugin: LuckPerms5.4.117
[12:35:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmi [9.7.6.0]
[12:35:59] [Server thread/INFO]: [CMI] PlaceholderAPI hooked.
[12:35:59] [Server thread/INFO]: [Skript] Loading variables...
[12:35:59] [Server thread/INFO]: [Skript] Loaded 56 variables in 0.0 seconds
[12:36:00] [Server thread/INFO]: [Skript] All scripts loaded without errors.
[12:36:00] [Server thread/INFO]: [Skript] Loaded 9 scripts with a total of 43 structures in 0.67 seconds
[12:36:00] [Server thread/INFO]: [Skript] Finished loading.
[12:36:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrv [1.28.1-SNAPSHOT]
[12:36:00] [Server thread/WARN]: A manual (plugin-induced) save has been detected while server is configured to auto-save. This may affect performance.
[12:36:00] [Thread-71/INFO]: --------------------
[12:36:00] [Thread-71/INFO]: [CoreProtect] Ausführung 22.4 ist nun verfügbar.
[12:36:00] [Thread-71/INFO]: [CoreProtect] Herunterladen: www.coreprotect.net/download/
[12:36:00] [Thread-71/INFO]: --------------------
[12:36:03] [Server thread/INFO]: [!] [lang]world.save.info[/lang]
[12:36:06] [Server thread/INFO]: [Citizens] Loaded 64 NPCs.
[12:36:06] [Server thread/INFO]: [BetterFarming] [Integrations] Successfully integrated PlaceholderAPI for parsing placeholders from 3rd party plugins in chat messages and GUI menus
[12:36:06] [Server thread/INFO]: [BetterFarming] [Integrations] Successfully integrated LuckPerms for offline permission lookups.
[12:36:06] [Server thread/INFO]: [BetterFarming] Successfully added region provider: WorldGuard Type: SERVER
[12:36:06] [Server thread/INFO]: [ChestProtect] [Integrations] Successfully integrated PlaceholderAPI for parsing placeholders from 3rd party plugins in chat messages and GUI menus
[12:36:06] [Server thread/INFO]: [ChestProtect] [Integrations] Successfully integrated LuckPerms for offline permission lookups.
[12:36:06] [Server thread/INFO]: [ChestProtect] Successfully added region provider: WorldGuard Type: SERVER
[12:36:06] [Server thread/INFO]: [Triton] Registered ProtocolLib listeners
[12:36:07] [Server thread/INFO]: [QuickShop-Hikari] Using economy system: RoyaleEconomy
[12:36:07] [Server thread/INFO]: [QuickShop-Hikari] Selected economy bridge: BuiltIn-Vault
[12:36:07] [Server thread/INFO]: [LumberJack] You are using the latest version of LumberJack.
[12:36:07] [Server thread/WARN]: java.lang.ArrayIndexOutOfBoundsException: Index 3 out of bounds for length 3
[12:36:07] [Server thread/WARN]:     at com.extendedclip.papi.expansion.server.ServerExpansion.<init>(ServerExpansion.java:65)
[12:36:07] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62)
[12:36:07] [Server thread/WARN]:     at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502)
[12:36:07] [Server thread/WARN]:     at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486)
[12:36:07] [Server thread/WARN]:     at PlaceholderAPI-2.11.6.jar//me.clip.placeholderapi.expansion.manager.LocalExpansionManager.createExpansionInstance(LocalExpansionManager.java:453)
[12:36:07] [Server thread/WARN]:     at PlaceholderAPI-2.11.6.jar//me.clip.placeholderapi.expansion.manager.LocalExpansionManager.register(LocalExpansionManager.java:173)
[12:36:07] [Server thread/WARN]:     at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197)
[12:36:07] [Server thread/WARN]:     at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179)
[12:36:07] [Server thread/WARN]:     at java.base/java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1708)
[12:36:07] [Server thread/WARN]:     at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509)
[12:36:07] [Server thread/WARN]:     at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499)
[12:36:07] [Server thread/WARN]:     at java.base/java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:921)
[12:36:07] [Server thread/WARN]:     at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)
[12:36:07] [Server thread/WARN]:     at java.base/java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:682)
[12:36:07] [Server thread/WARN]:     at PlaceholderAPI-2.11.6.jar//me.clip.placeholderapi.expansion.manager.LocalExpansionManager.lambda$registerAll$4(LocalExpansionManager.java:366)
[12:36:07] [Server thread/WARN]:     at PlaceholderAPI-2.11.6.jar//me.clip.placeholderapi.util.Futures.lambda$null$0(Futures.java:46)
[12:36:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86)
[12:36:07] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475)
[12:36:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1242)
[12:36:07] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:334)
[12:36:07] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[12:36:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.6.0]
[12:36:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: bungee [1.0.1]
[12:36:07] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion multiverse due to a missing plugin: Multiverse-Core
[12:36:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.7.0]
[12:36:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: playerlist [2.1]
[12:36:07] [Server thread/WARN]: [PlaceholderAPI] Failed to load external expansion votingplugin. Identifier is already in use.
[12:36:07] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion votingplugin due to an unknown issue.
[12:36:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.2]
[12:36:07] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playertime due to a missing plugin: PlayerTime
[12:36:07] [Server thread/INFO]: 5 placeholder hook(s) registered! 5 placeholder hook(s) have an update available.
[12:36:07] [Server thread/INFO]: [PluginVersions] Found new version: 1.3.5
[12:36:07] [Server thread/INFO]: Done (276.839s)! For help, type "help"
[12:36:07] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 28845ms or 576 ticks behind
[12:36:07] [Craft Scheduler Thread - 17 - Oraxen/INFO]: IM | Das automatische Hochladen des Ressourcenpacks ist aktiviert, Hochladen...
[12:36:07] [Server thread/INFO]: [eco] Loaded eco
[12:36:07] [Server thread/INFO]: [CMI] DiscordSRV found. (Loaded: true)
[12:36:07] [Server thread/INFO]: [DiscordSRV] API listener com.Zrips.CMI.Modules.DiscordSRV.DiscordSRVListener Anmeldung (2 Methoden)
[12:36:07] [Server thread/INFO]: [EcoJobs] Loaded EcoJobs
[12:36:07] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[12:36:07] [Server thread/INFO]: [libreforge] Loaded libreforge
[12:36:07] [Server thread/INFO]: [JetsMinions] skins.yml found, loading!
[12:36:07] [Server thread/INFO]: [JetsMinions] config.yml found, loading!
[12:36:07] [Server thread/INFO]: [JetsMinions] messages.yml found, loading!
[12:36:07] [Server thread/INFO]: [JetsMinions] hooks.yml found, loading!
[12:36:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: jetsminions [1.0.0]
[12:36:07] [Server thread/INFO]: [JetsMinions] controlpanel.yml found, loading!
[12:36:07] [Server thread/INFO]: [JetsMinions] store.yml found, loading!
[12:36:07] [Server thread/INFO]: [WildChests] - Couldn't find any prices providers, using default one
[12:36:07] [Server thread/INFO]: [BeaconPlus] Registering recipe: example_recipe
[12:36:08] [pool-94-thread-1/INFO]: [BeaconPlus] Loaded 2859 chunks (2 beacons)
[12:36:08] [Server thread/INFO]: [voicechat] Loading plugins
[12:36:08] [Server thread/INFO]: [voicechat] Loaded 0 plugin(s)
[12:36:08] [Server thread/INFO]: [voicechat] Initializing plugins
[12:36:08] [Server thread/INFO]: [voicechat] Initialized 0 plugin(s)
[12:36:08] [Server thread/WARN]: [voicechat] Running in offline mode - Voice chat encryption is not secure!
[12:36:08] [VoiceChatServerThread/INFO]: [voicechat] Using server-ip as bind address: 0.0.0.0
[12:36:08] [VoiceChatServerThread/INFO]: [voicechat] Voice chat server started at 0.0.0.0:24455
[12:36:08] [Server thread/INFO]: Saving the game (this may take a moment!)
[12:36:09] [Server thread/INFO]: Saved the game
[12:36:09] [Server thread/INFO]: [WildChests] Trying to connect to SQLite database...
[12:36:09] [Server thread/INFO]: [WildChests] Successfully established connection with SQLite database!
[12:36:10] [Craft Scheduler Thread - 17 - Oraxen/INFO]: IM | Ressourcenpack auf Url http://atlas.oraxen.com:8080/pack.zip?id=65309137ca53fbc13d97ebd2e8506ddfd01f36af in 10901 ms hochgeladen
[12:36:10] [Server thread/INFO]: [CMI] Checking... 86/86
[12:36:10] [Server thread/INFO]: [CMI] Finished cleaning
[12:36:10] [Server thread/INFO]: [CMI] Player data files removed: 0 Keeping: 86
[12:36:11] [Server thread/INFO]: [BetterFarming] [Integrations] Successfully integrated Vault economy into economy system. Name: RoyaleEconomy
[12:36:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chestprotect [5.18.4]
[12:36:11] [Server thread/INFO]: [ChestProtect] [Integrations] Successfully integrated PlaceholderAPI into chat system.
[12:36:12] [Server thread/INFO]: [VillagerMarket] Nice to see you Villager Bank!
[12:36:12] [Server thread/INFO]: [VillagerBank] You too Villager Market!
[12:36:17] [Craft Scheduler Thread - 36 - AdvancedEnderchest/INFO]: [AdvancedEnderchest] Creating database backup: aec_chests_backup_before_1_2_0_Migration_Update
[12:36:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultimateautorestart [2024.07]
[12:36:17] [Server thread/INFO]: [UltimateAutoRestart+] Hooked into PlaceholderAPI!
[12:36:17] [Server thread/INFO]: [UltimateAutoRestart+] Successfully performed 1 hooks!
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: !!! AEC Warning
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: !!! AEC Warning
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: !!! AEC Warning
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: !!! AEC Warning
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: !!! AEC Warning
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: !!! AEC Warning
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: !!! AEC Warning
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: !!! AEC Warning
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: !!! AEC Warning
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: !!! AEC Warning
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: !!! AEC Warning
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: !!! AEC Warning
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: !!! AEC Warning
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: !!! AEC Warning
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: !!! AEC Warning
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: !!! AEC Warning
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: !!! AEC Warning
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: !!! AEC Warning
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: !!! AEC Warning
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: !!! AEC Warning
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: !!! AEC Warning
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: !!! AEC Warning
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: !!! AEC Warning
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: !!! AEC Warning
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: !!! AEC Warning
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: ---
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: You are Running AEC on a 1.20.6+ Server without migrating all data from previous version!
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: In Minecraft 1.20.6+ Mojang changed the code structure of items so a database rebuild is needed
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: What to do? -> Please execute /aec migrate  (console only) on a minecraft server < 1.20.6!
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: Unmigrated chests can not be opened because of the risk of losing items
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: The command will create a full backup of your database before migrating!
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: It is no problem if the server crashes or is stopped during migration process. Just run the command again
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: Please backup your mysql database anyway just to be sure
[12:36:17] [Craft Scheduler Thread - 40 - AdvancedEnderchest/INFO]: There are 1 Chests that need to be migrated before they can be opened
[12:36:18] [Craft Scheduler Thread - 17 - HopperSorter/INFO]: [HopperSorter] Info - Loading HopperSorterGui...
[12:36:18] [Craft Scheduler Thread - 17 - HopperSorter/INFO]: [HopperSorter] Info - Loading ItemSelectGui...
[12:36:18] [Craft Scheduler Thread - 17 - HopperSorter/INFO]: [HopperSorter] Info - Loading TypeSelectGui...
[12:36:18] [Craft Scheduler Thread - 17 - HopperSorter/INFO]: [HopperSorter] Info - Loading LinkedBlocksListGui...
[12:36:18] [Craft Scheduler Thread - 17 - HopperSorter/INFO]: [HopperSorter] Info - Loading HopperFuelGui...
[12:36:18] [Craft Scheduler Thread - 17 - HopperSorter/INFO]: [HopperSorter] Info - Loading HopperOptionsGui...
[12:36:18] [Craft Scheduler Thread - 17 - HopperSorter/INFO]: [HopperSorter] Info - Loading LinkedBlockSettingsGui...
[12:36:18] [Craft Scheduler Thread - 17 - HopperSorter/INFO]: [HopperSorter] Info - Loading LinkedMaterialModifyGui...
[12:36:18] [Craft Scheduler Thread - 17 - HopperSorter/INFO]: [HopperSorter] Info - Loading ManageSubUserGui...
[12:36:18] [Craft Scheduler Thread - 17 - HopperSorter/INFO]: [HopperSorter] Info - Loading SubUsersListGui...
[12:36:18] [Craft Scheduler Thread - 17 - HopperSorter/INFO]: [HopperSorter] Info - Loading FurnaceGui...
[12:36:18] [Craft Scheduler Thread - 17 - HopperSorter/INFO]: [HopperSorter] Info - Loading UpgradeGui...
[12:36:18] [Craft Scheduler Thread - 17 - HopperSorter/INFO]: [HopperSorter] Info - Loading ConfirmationGui...
[12:36:18] [Craft Scheduler Thread - 17 - HopperSorter/INFO]: [HopperSorter] Info - Fetching data from database...
[12:36:18] [Craft Scheduler Thread - 32 - VotingPlugin/WARN]: [VotingPlugin] Detected an issue with voting sites, check the server startup log for more details: https://github.com/BenCodez/VotingPlugin/wiki/Votifier-Troubleshooting
[12:36:18] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[12:36:18] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[12:36:18] [ForkJoinPool.commonPool-worker-9/INFO]: [ChestProtect] You're using the latest version.
[12:36:19] [ForkJoinPool.commonPool-worker-1/INFO]: [BetterFarming] You're using the latest version.
[12:36:20] [Craft Scheduler Thread - 22 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin is up to date! Version: 6.17.1
[12:36:23] [Craft Scheduler Thread - 17 - HopperSorter/INFO]: [HopperSorter] Info - Finished fetching data!
[12:36:23] [Craft Scheduler Thread - 17 - HopperSorter/INFO]: [HopperSorter] Info - Loading data...
[12:36:24] [Server thread/INFO]: [HopperSorter] Info - Finished loading data!
[12:40:00] [Server thread/INFO]: Saving the game (this may take a moment!)
[12:40:00] [Server thread/INFO]: Saved the game
[12:45:00] [Server thread/INFO]: Saving the game (this may take a moment!)
[12:45:00] [Server thread/INFO]: Saved the game
[12:46:07] [Server thread/INFO]: [!] [lang]world.save.info[/lang]
[12:49:47] [User Authenticator #0/INFO]: UUID of player James_Bach is 01a8638b-f66d-447f-92f9-5e5b8b0070a1
[12:49:49] [Server thread/INFO]: [ProfileStorage] Using Remote mode for loading properties!
[12:49:49] [TAB Processing Thread/INFO]: [TAB] [WARN] Player James_Bach's group (leitung) is not in sorting list! Sorting list: owner,manager,admin,mod,default. Player will be sorted on the bottom.
[12:49:50] [Server thread/INFO]: [ProfileStorage] ProfileCache
[12:49:50] [Server thread/INFO]: [ProfileStorage]   Able to store 128 items of ProfileCacheData at the same time
[12:49:50] [Server thread/INFO]: Unknown or incomplete command, see below for error
bettersleeping reload<--[HERE]
[12:49:50] [Server thread/INFO]: [CreativeManager] Load inventory of user James_Bach in file 01a8638b-f66d-447f-92f9-5e5b8b0070a1.yml for gamemode SURVIVAL
[12:49:51] [Server thread/INFO]: James_Bach[/          ip          ] logged in with entity id 18743 at ([Spawn]-602.133678977917, 186.0, -174.00765818911097)
[12:49:51] [Server thread/INFO]: [CMI] CMI proxy plugin detected
[12:49:51] [Server thread/INFO]: In der Welt Spawn bewegt sich die Zeit wieder.
[12:49:51] [Server thread/INFO]: In der Welt Spawn_nether bewegt sich die Zeit wieder.
[12:49:51] [Server thread/INFO]: In der Welt Spawn_the_end bewegt sich die Zeit wieder.
[12:49:51] [Server thread/INFO]: In der Welt plugins/RentIt-Worlds/PlayerWorlds/riw_1 bewegt sich die Zeit wieder.
[12:49:51] [Server thread/INFO]: In der Welt plugins/RentIt-Worlds/PlayerWorlds/riw_4 bewegt sich die Zeit wieder.
[12:49:51] [Server thread/INFO]: In der Welt plugins/RentIt-Worlds/PlayerWorlds/riw_6 bewegt sich die Zeit wieder.
[12:49:51] [Server thread/INFO]: In der Welt plugins/RentIt-Worlds/PlayerWorlds/riw_7 bewegt sich die Zeit wieder.
[12:49:51] [Server thread/INFO]: In der Welt plugins/RentIt-Worlds/PlayerWorlds/riw_8 bewegt sich die Zeit wieder.
[12:49:51] [Server thread/INFO]: In der Welt plugins/RentIt-Worlds/PlayerWorlds/riw_10 bewegt sich die Zeit wieder.
[12:49:51] [Server thread/INFO]: In der Welt plugins/RentIt-Worlds/PlayerWorlds/riw_11 bewegt sich die Zeit wieder.
[12:49:51] [Server thread/INFO]: In der Welt plugins/RentIt-Worlds/PlayerWorlds/riw_13 bewegt sich die Zeit wieder.
[12:49:51] [Server thread/INFO]: In der Welt plugins/RentIt-Worlds/PlayerWorlds/riw_14 bewegt sich die Zeit wieder.
[12:49:51] [Server thread/INFO]: In der Welt plugins/RentIt-Worlds/PlayerWorlds/riw_16 bewegt sich die Zeit wieder.
[12:49:51] [Server thread/INFO]: In der Welt plugins/RentIt-Worlds/PlayerWorlds/riw_17 bewegt sich die Zeit wieder.
[12:49:51] [Server thread/INFO]: In der Welt plugins/RentIt-Worlds/PlayerWorlds/riw_18 bewegt sich die Zeit wieder.
[12:49:51] [Server thread/INFO]: In der Welt plugins/RentIt-Worlds/PlayerWorlds/riw_19 bewegt sich die Zeit wieder.
[12:49:51] [Server thread/INFO]: In der Welt plugins/RentIt-Worlds/PlayerWorlds/riw_21 bewegt sich die Zeit wieder.
[12:49:51] [Server thread/INFO]: In der Welt plugins/RentIt-Worlds/PlayerWorlds/riw_23 bewegt sich die Zeit wieder.
[12:49:51] [Server thread/INFO]: In der Welt plugins/RentIt-Worlds/PlayerWorlds/riw_33 bewegt sich die Zeit wieder.
[12:49:51] [Server thread/INFO]: Unknown or incomplete command, see below for error
ssreload<--[HERE]
[12:49:51] [Server thread/INFO]: Unknown or incomplete command, see below for error
velocitab reload<--[HERE]
[12:49:51] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 3104ms or 62 ticks behind
[12:49:51] [Server thread/INFO]: [CMI] CMI detected Velocity network
[12:49:52] [Server thread/INFO]: [CMI] CMI detected Velocity network
[12:49:52] [Server thread/INFO]: [ProfileStorage] Profile data of player James_Bach were updated!
[12:49:53] [Server thread/INFO]: James_Bach has made the advancement [Isn't It Scute?]
[12:49:57] [Server thread/INFO]: Du hast James_Bachs Flugmodus auf Disabled gesetzt. (Online).
[12:50:00] [Server thread/INFO]: Saving the game (this may take a moment!)
[12:50:00] [Server thread/INFO]: Saved the game
[12:50:02] [Server thread/INFO]: Du hast James_Bachs Flugmodus auf Disabled gesetzt. (Online).
[12:50:10] [Server thread/INFO]: James_Bach issued server command: /npc select
[12:50:14] [Server thread/INFO]: James_Bach issued server command: /npc lookclose
[12:50:15] [Server thread/INFO]: James_Bach issued server command: /npc lookclose
[12:50:28] [Server thread/INFO]: James_Bach issued server command: /cc
[12:50:32] [Server thread/INFO]: James_Bach issued server command: /chatclear
[12:50:35] [Server thread/INFO]: James_Bach issued server command: /clearchat
[12:50:42] [Server thread/INFO]: James_Bach issued server command: /chatcontrol clear
[12:50:43] [Server thread/INFO]: [ChatControlRed 10.27.9] Command /chc clear took 34.56 ms
[12:50:51] [Server thread/INFO]: James_Bach issued server command: /npc select
[12:50:56] [Server thread/INFO]: James_Bach issued server command: /npc lookclose
[12:50:58] [Server thread/INFO]: James_Bach issued server command: /npc lookclose
[12:51:14] [Server thread/INFO]: James_Bach issued server command: /npc rename Test
[12:51:17] [Server thread/INFO]: James_Bach issued server command: /chatcontrol clear
[12:51:17] [Server thread/INFO]: [ChatControlRed 10.27.9] Command /chc clear took 27.13 ms
[12:51:21] [Server thread/INFO]: James_Bach issued server command: /npc select
[12:51:24] [Server thread/INFO]: James_Bach issued server command: /npc lookclose
[12:51:26] [Server thread/INFO]: James_Bach issued server command: /npc lookclose
[12:52:46] [Server thread/INFO]: James_Bach issued server command: /spigot
[12:52:50] [Server thread/INFO]: James_Bach issued server command: /version Citizens
[12:53:06] [Server thread/INFO]: James_Bach issued server command: /ver Citizens